/* 主题颜色 - 紫色配色方案 */
:root {
    --primary-color: #7c3aed;        /* 紫色主色 */
    --primary-dark: #5b21b6;         /* 深紫色 */
    --primary-light: #a855f7;        /* 浅紫色 */
    --primary-gradient: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    --primary-light-10: rgba(124, 58, 237, 0.1);
    --primary-light-15: rgba(124, 58, 237, 0.15);
    --secondary-color: #4c1d95;      /* 深紫色调 */
    --dark-blue: #4c1d95;
    --light-blue: #faf5ff;          /* 浅紫背景 */
    --accent-color: #f59e0b;         /* 金色点缀 */
    --success-color: #10b981;        /* 绿色 */
    --warning-color: #f59e0b;        /* 橙色 */
    --danger-color: #ef4444;         /* 红色 */
    --text-color: #262626;           /* 主文字颜色 */
    --light-text: #8c8c8c;           /* 次要文字颜色 */
    --border-color: #d9d9d9;         /* 边框颜色 */
    --black-08: rgba(0, 0, 0, 0.08); /* 黑色透明度 */
    --card-shadow: 0 12px 28px -5px rgba(124, 58, 237, 0.08), 0 8px 16px -6px rgba(124, 58, 237, 0.04);
    --hover-shadow: 0 20px 40px -5px rgba(124, 58, 237, 0.12), 0 12px 20px -5px rgba(124, 58, 237, 0.08);
    --primary-shadow: rgba(124, 58, 237, 0.25);
}

/* 全局样式 */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
    background-color: #f8fafc;
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--secondary-color);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: #5b21b6;
}

/* 导航样式 */
.navbar {
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-item .nav-link {
    font-weight: 500;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item .nav-link:hover {
    opacity: 0.85;
}

.nav-item .nav-link.active::after {
    content: '';
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.5rem;
    height: 2px;
    background-color: currentColor;
    border-radius: 1px;
}

/* 下拉菜单的active状态 */
.nav-item.dropdown.active .nav-link {
    color: var(--primary-color) !important;
    background-color: var(--primary-light-10) !important;
    font-weight: 600;
    box-shadow: 0 4px 10px var(--black-08);
    border-radius: 6px;
}

/* 确保active状态在悬停时保持 */
.nav-item.dropdown.active .nav-link:hover {
    color: var(--primary-color) !important;
    background-color: var(--primary-light-15) !important;
    transform: translateY(-2px);
}

.nav-item.dropdown.active .nav-link::after {
    content: '';
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.5rem;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 1px;
}

/* 按钮样式 */
.btn {
    border-radius: 0.5rem;
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-gradient);
    border-color: var(--primary-dark);
    box-shadow: 0 8px 25px var(--primary-shadow);
    transform: translateY(-2px);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-gradient);
    border-color: transparent;
    box-shadow: 0 8px 25px var(--primary-shadow);
    transform: translateY(-2px);
}

.btn-sm {
    font-size: 0.875rem;
    padding: 0.375rem 0.875rem;
    border-radius: 0.375rem;
}

/* 卡片样式 */
.card {
    border: none;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border-radius: 0.75rem;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hover-shadow);
}

.card-title {
    color: var(--secondary-color);
    font-weight: 600;
}

.card-header {
    background-color: var(--primary-color);
    color: white;
    border-bottom: none;
    padding: 1rem 1.25rem;
}

.card-body {
    padding: 1.25rem;
}

/* VPS 卡片样式 */
.vps-card {
    border-radius: 0.75rem;
    overflow: hidden;
}

.vps-card .card-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 1.25rem;
    position: relative;
    overflow: hidden;
}

.vps-card .card-header::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 100%);
    transform: skewX(-30deg) translateX(80%);
}

.vps-spec {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.vps-spec:last-child {
    border-bottom: none;
}

.vps-spec span:first-child {
    font-weight: 500;
    color: var(--secondary-color);
}

.vps-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}

/* 厂商卡片样式 */
.vendor-card {
    text-align: center;
    transition: all 0.3s ease;
}

.vendor-card:hover {
    transform: translateY(-6px);
}

.vendor-logo {
    width: 160px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 1rem;
    padding: 10px;
    max-width: 100%;
    transition: all 0.3s ease;
}

.vendor-logo-sm {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.375rem;
    padding: 0.25rem 0.5rem;
    height: 28px;
    backdrop-filter: blur(4px);
}

.vendor-description {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.5em;
    line-height: 1.5;
    color: var(--light-text);
}

.payment-methods {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.payment-method {
    background-color: var(--light-blue);
    color: var(--primary-color);
    font-size: 0.75rem;
    padding: 0.25rem 0.625rem;
    border-radius: 1rem;
    white-space: nowrap;
}

/* 文章卡片样式 */
.article-card {
    overflow: hidden;
}

.article-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: all 0.6s ease;
}

.article-card:hover .card-img-top {
    transform: scale(1.05);
}

.article-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    line-height: 1.35;
}

.article-meta {
    font-size: 0.8125rem;
    color: var(--light-text);
    margin-bottom: 0.75rem;
}

.article-excerpt {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* 文章内容样式 */
.article-content {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.article-content img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
    box-shadow: var(--card-shadow);
}

.article-content h2, 
.article-content h3, 
.article-content h4 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.article-content ul, 
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background-color: var(--light-blue);
    border-radius: 0.375rem;
    font-style: italic;
    color: var(--text-color);
}

/* 页脚样式 */
.footer {
    background-color: #1a2234;
    color: #b4bbc5;
}

.footer-main {
    background-color: #1a2234;
}

.footer-bottom {
    background-color: #131825;
}

.footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background-color: #3e8ed0;
}

.footer-brand img {
    filter: brightness(1.2);
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b4bbc5;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: none;
    padding-left: 5px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #b4bbc5;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #3e8ed0;
    color: #ffffff;
    transform: translateY(-3px);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-section h1 {
        font-size: 2.25rem;
    }
    
    .vendor-logo {
        width: 120px;
        height: 90px;
    }
}

/* 移动端下拉菜单样式 */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        position: static !important;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: var(--bg-secondary);
        border: none;
        border-radius: 0;
        box-shadow: none;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: none;
    }

    .navbar-nav .dropdown-menu.show {
        display: block !important;
    }

    .navbar-nav .dropdown-item {
        padding: 0.75rem 1.5rem;
        color: var(--text-secondary);
        border-bottom: 1px solid var(--border-light);
    }

    .navbar-nav .dropdown-item:hover,
    .navbar-nav .dropdown-item:focus {
        background-color: var(--bg-tertiary);
        color: var(--text-primary);
    }

    .navbar-nav .dropdown-grid {
        display: block !important;
        grid-template-columns: none !important;
        gap: 0 !important;
    }

    .navbar-nav .dropdown-grid-item {
        display: block !important;
        padding: 1rem 1.5rem !important;
        border-bottom: 1px solid var(--border-light);
        border-radius: 0 !important;
    }

    .navbar-nav .dropdown-grid-item:hover {
        background-color: var(--bg-tertiary);
        transform: none !important;
    }

    .navbar-nav .dropdown-grid-item .title {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .navbar-nav .dropdown-grid-item .desc {
        font-size: 0.8rem;
        opacity: 0.8;
    }

    .navbar-nav .dropdown-toggle::after {
        margin-left: auto;
    }
}

@media (max-width: 768px) {
    .hero-section {
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section img {
        margin-top: 1rem;
        max-height: 200px;
    }
    
    .card-deck {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    /* 移动端隐藏页脚 */
    .footer {
        display: none !important;
    }
    
    .footer-title {
        margin-top: 20px;
        margin-bottom: 15px;
    }
    
    .footer-bottom .row > div {
        text-align: center !important;
    }
    
    .footer-bottom .row > div:first-child {
        margin-bottom: 10px;
    }
}

/* 英雄区域样式 */
.hero-section {
    background: linear-gradient(135deg, #4361ee, #3a50d9);
    color: white;
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/hero-pattern.svg');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(-20deg);
    z-index: 0;
    animation: pulse 8s infinite alternate ease-in-out;
}

@keyframes pulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-section p {
    font-size: 1.125rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 0.5rem;
}

.hero-section .badge {
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.hero-section .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.hero-section img {
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.2));
    max-height: 280px;
    animation: float 5s infinite ease-in-out alternate;
}

@keyframes float {
    0% { transform: perspective(1000px) rotateY(-5deg) translateY(0); }
    100% { transform: perspective(1000px) rotateY(-2deg) translateY(-10px); }
}

.hero-section:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

/* 置顶和推荐标签样式 */
.badge.bg-danger {
    background: linear-gradient(135deg, #e53935, #d32f2f) !important;
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.3);
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    animation: pulseBadge 2s infinite;
}

.badge.bg-primary {
    background: linear-gradient(135deg, #4361ee, #3a50d9) !important;
    box-shadow: 0 2px 8px rgba(67, 97, 238, 0.3);
    padding: 0.4rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.badge.bg-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 40%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: skewX(-25deg);
}

@keyframes pulseBadge {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* 产品卡片优先级样式 */
.product-top {
    border: 2px solid #e53935;
    box-shadow: 0 15px 30px rgba(229, 57, 53, 0.15);
    transform: translateY(-5px);
    z-index: 2;
    position: relative;
}

.product-top::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 55px;
    height: 55px;
    background-color: #e53935;
    border-radius: 50%;
    z-index: -1;
    box-shadow: 0 4px 8px rgba(229, 57, 53, 0.3);
    animation: pulse 2s infinite;
}

.product-top::after {
    content: '\f005';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -4px;
    right: 6px;
    color: white;
    font-size: 12px;
    z-index: 3;
    animation: sparkle 4s infinite;
}

.product-recommended {
    border: 2px solid #4361ee;
    box-shadow: 0 12px 25px rgba(67, 97, 238, 0.15);
}

.product-item:not(.product-top):not(.product-recommended):hover {
    transform: translateY(-5px);
}

.product-top:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(229, 57, 53, 0.2);
}

.product-recommended:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(67, 97, 238, 0.2);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

@keyframes sparkle {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(10deg) scale(1.1);
    }
    50% {
        transform: rotate(0deg) scale(1);
    }
    75% {
        transform: rotate(-10deg) scale(1.1);
    }
}

/* 角标样式 */
.ribbon-top,
.ribbon-recommended {
    width: 60px;
    height: 60px;
    position: absolute;
    top: -5px;
    right: -5px;
    overflow: hidden;
    z-index: 10;
}

.ribbon-top::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    right: 0;
    border-width: 0 60px 60px 0;
    border-style: solid;
    border-color: transparent #e53935 transparent transparent;
    z-index: -1;
}

.ribbon-recommended::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    right: 0;
    border-width: 0 60px 60px 0;
    border-style: solid;
    border-color: transparent #4361ee transparent transparent;
    z-index: -1;
}

.ribbon-top::after,
.ribbon-recommended::after {
    position: absolute;
    content: '';
    top: 12px;
    right: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 2;
}

@media (max-width: 767px) {
    .ribbon-top,
    .ribbon-recommended {
        width: 50px;
        height: 50px;
    }
    
    .ribbon-top::before {
        border-width: 0 50px 50px 0;
    }
    
    .ribbon-recommended::before {
        border-width: 0 50px 50px 0;
    }
    
    .ribbon-top::after,
    .ribbon-recommended::after {
        top: 10px;
        right: 8px;
        width: 8px;
        height: 8px;
    }
}

/* 价格样式优化 */
.price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
}

.price-tag {
    display: flex;
    align-items: baseline;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--primary-color);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.price-period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--light-text);
    margin-left: 0.25rem;
}

.secondary-price {
    font-size: 0.9rem;
    color: var(--light-text);
    text-align: center;
}

.yearly-price-tag {
    font-weight: 500;
}

.price-tag::before {
    content: '';
    position: absolute;
    left: -5px;
    top: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle at center, rgba(67, 97, 238, 0.15) 0%, rgba(67, 97, 238, 0) 70%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover .price-tag::before {
    opacity: 1;
}

/* VPS卡片中价格显示增强 */
.col-md-4 .price-container {
    position: relative;
    padding: 0.5rem;
    background-color: rgba(124, 58, 237, 0.05);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.col-md-4 .price-container:hover {
    background-color: rgba(124, 58, 237, 0.1);
    transform: scale(1.05);
}

.col-md-4 .price-amount {
    color: #5b21b6;
    font-size: 2.25rem;
    transition: all 0.3s ease;
}

.card:hover .col-md-4 .price-amount {
    color: var(--primary-color);
} 

/* 查找动画定义开始 */
.badge-plus-time::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    /* 删除动画 */ 
}

/* 删除动画关键帧 */

/* 下一个动画定义 */
.badge-pulse {
    position: relative; 
}

/* PC模式下产品分类卡片样式优化 */
@media (min-width: 992px) {
    .row-cols-lg-8 .category-item {
        padding: 0.75rem !important;
    }
    
    .row-cols-lg-8 .icon-circle {
        padding: 1.75rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .row-cols-lg-8 .icon-circle i {
        font-size: 2.25rem !important;
    }
    
    /* 强制一行显示8个卡片 */
    .row-cols-lg-8 > .col {
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
}

/* 移动端样式优化 */
@media (max-width: 767.98px) {
    /* 产品英雄区域优化 */
    .product-hero .specs-highlight-value {
        font-size: 1rem !important;
    }
    
    .product-hero .specs-highlight-label {
        font-size: 0.7rem !important;
    }
    
    /* 产品卡片参数优化 */
    .param-item {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100% !important;
    }
    
    /* 产品参数网格布局优化 */
    .product-params-grid {
        display: flex !important;
        flex-wrap: wrap !important;
        margin-right: -4px !important;
        margin-left: -4px !important;
        width: calc(100% + 8px) !important;
    }
    
    .product-params-grid > .col-6 {
        width: 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
        padding-right: 4px !important;
        padding-left: 4px !important;
        margin-bottom: 8px !important;
    }
    
    .product-params-grid .param-item,
    .product-params-grid .bg-light.rounded {
        height: 100% !important;
        width: 100% !important;
    }
    
    /* 确保参数卡片铺满整行 */
    .row.g-2 > .col-6 {
        width: 50% !important;
        padding-left: 4px !important;
        padding-right: 4px !important;
        float: left !important;
    }
    
    .row.g-2 {
        display: block !important;
        width: 100% !important;
        margin-left: -4px !important;
        margin-right: -4px !important;
        overflow: hidden !important;
    }
    
    .bg-light.rounded.p-2.text-center,
    .param-item.text-center.p-2.bg-light.rounded {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    
    /* 同厂商产品卡片优化 */
    .vendor-product-card .badge {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: left !important;
        white-space: normal !important;
        width: 100% !important;
    }
    
    .vendor-product-card .row.g-2 {
        margin-left: -4px !important;
        margin-right: -4px !important;
        width: 100% !important;
    }
    
    /* 推荐产品卡片优化 */
    .hover-shadow-lg {
        transition: all 0.3s ease;
    }
    
    .hover-shadow-lg:hover {
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
        transform: translateY(-2px);
    }
    
    .transition-all {
        transition: all 0.3s ease;
    }
}