/* ============================================
   PREMIUM SECTIONS - Reference Inspired
   Cinematic hero, premium cards, amber accents
   ============================================ */

/* ============================================
   HERO SECTION - Cinematic & Powerful
   ============================================ */

.hero-cinematic {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    overflow: hidden;
    padding: var(--space-24) 0;
}

/* Cinematic Particle Background */
.hero-cinematic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(252, 211, 77, 0.08) 0%, transparent 60%);
    filter: blur(80px);
    animation: heroParticles 25s ease-in-out infinite;
    pointer-events: none;
}

.hero-cinematic::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
    pointer-events: none;
}

@keyframes heroParticles {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
        opacity: 0.8;
    }
    66% {
        transform: translate(-30px, 30px) scale(0.95);
        opacity: 0.9;
    }
}

/* Hero Content */
.hero-content-cinematic {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--space-8);
}

/* Eyebrow Text */
.hero-eyebrow {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--amber-bright);
    margin-bottom: var(--space-6);
    animation: fadeInUp 0.8s ease-out;
}

/* Hero Title - Massive & Bold */
.hero-title-cinematic {
    font-size: var(--text-7xl);
    font-weight: var(--weight-extrabold);
    line-height: var(--leading-tight);
    color: var(--text-primary);
    margin-bottom: var(--space-8);
    letter-spacing: var(--tracking-tight);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Hero Subtitle */
.hero-subtitle-cinematic {
    font-size: var(--text-xl);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
    margin-bottom: var(--space-12);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* CTA Button Group */
.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   STATS / TRUST SECTION
   ============================================ */

.stats-trust-section {
    padding: var(--space-32) 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.stats-trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--border-medium) 50%, transparent 100%);
}

.stats-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-16);
}

.stat-card-premium {
    text-align: center;
    padding: var(--space-10);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(15, 20, 25, 0.05) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
}

.stat-card-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--glow-amber) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.stat-card-premium:hover::before {
    opacity: 1;
}

.stat-card-premium:hover {
    transform: translateY(-8px);
    border-color: var(--border-strong);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), var(--shadow-glow-amber);
}

.stat-number-premium {
    font-size: var(--text-7xl);
    font-weight: var(--weight-extrabold);
    line-height: 1;
    background: linear-gradient(135deg, var(--amber-bright) 0%, var(--amber-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-4);
}

.stat-label-premium {
    font-size: var(--text-lg);
    color: var(--text-primary);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-2);
}

.stat-desc-premium {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
}

/* ============================================
   SECTION HEADERS - Consistent Style
   ============================================ */

.section-header-premium {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-16);
}

.section-eyebrow {
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--amber-primary);
    margin-bottom: var(--space-4);
}

.section-title-premium {
    font-size: var(--text-5xl);
    font-weight: var(--weight-extrabold);
    line-height: var(--leading-tight);
    color: var(--text-primary);
    margin-bottom: var(--space-6);
}

.section-subtitle-premium {
    font-size: var(--text-lg);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
}

/* ============================================
   CATEGORY CARDS - Premium Grid
   ============================================ */

.category-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-16);
}

.category-card-premium {
    position: relative;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    text-decoration: none;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.category-card-premium:hover {
    transform: translateY(-8px);
    border-color: var(--border-strong);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--shadow-glow-amber);
}

.category-card-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.category-card-premium:hover .category-card-image img {
    transform: scale(1.1);
}

.category-card-content {
    padding: var(--space-8);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-card-title {
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-3);
}

.category-card-desc {
    font-size: var(--text-base);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
    flex: 1;
}

.category-badges {
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.badge {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    border-radius: var(--radius-md);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

.badge-yellow {
    background: rgba(251, 191, 36, 0.15);
    color: var(--amber-bright);
    border: 1px solid var(--border-medium);
}

.badge-blue {
    background: rgba(59, 130, 246, 0.15);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* ============================================
   PRODUCT CARDS - Premium Style
   ============================================ */

.product-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-16);
}

.product-card-premium {
    position: relative;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    text-decoration: none;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.product-card-premium:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 40px var(--glow-amber);
}

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card-premium:hover .product-card-image img {
    transform: scale(1.08);
}

.product-card-body {
    padding: var(--space-6);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-title {
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-2);
    line-height: var(--leading-snug);
}

.product-card-category {
    font-size: var(--text-sm);
    color: var(--amber-primary);
    margin-bottom: var(--space-3);
}

.product-card-desc {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
    flex: 1;
}

/* ============================================
   FEATURED PRODUCT SHOWCASE
   ============================================ */

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.product-showcase-visual {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.showcase-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    background: rgba(251, 191, 36, 0.92);
    color: #0a0e1a;
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 0.3rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    z-index: 2;
}

.product-showcase-actions {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-6);
    flex-wrap: wrap;
}

.product-showcase-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-showcase-visual:hover img {
    transform: scale(1.03);
}

.product-showcase-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.product-showcase-label {
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--amber-primary);
}

.product-showcase-title {
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--text-primary);
    line-height: var(--leading-tight);
}

.product-showcase-desc {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
}

.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-top: var(--space-2);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border-subtle);
}

.product-spec-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
}

.product-spec-label {
    font-size: 0.65rem;
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--amber-primary);
}

.product-spec-value {
    font-size: var(--text-lg);
    font-weight: var(--weight-bold);
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .product-showcase {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .product-showcase-visual {
        aspect-ratio: 16/10;
        max-height: 280px;
    }

    .product-showcase-title {
        font-size: var(--text-2xl);
    }

    .product-showcase-desc {
        font-size: var(--text-sm);
    }

    .product-specs {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3);
    }

    .product-spec-item {
        padding: var(--space-3);
    }

    .product-spec-value {
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    .product-showcase-visual {
        max-height: 220px;
    }

    .product-showcase-title {
        font-size: var(--text-xl);
    }

    .product-spec-value {
        font-size: var(--text-sm);
    }
}

/* ============================================
   CORPORATE / ABOUT SECTION
   ============================================ */

.corporate-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-12);
    align-items: center;
}

.corporate-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    max-height: 420px;
}

.corporate-image img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--border-subtle);
}

.corporate-subtitle {
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    letter-spacing: var(--tracking-widest);
    text-transform: uppercase;
    color: var(--amber-primary);
    margin-bottom: var(--space-3);
}

.corporate-title {
    font-size: var(--text-4xl);
    font-weight: var(--weight-bold);
    color: var(--text-primary);
    margin-bottom: var(--space-4);
    line-height: var(--leading-tight);
}

.corporate-text {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-3);
}

.corporate-stats {
    display: flex;
    gap: var(--space-8);
    margin-top: var(--space-6);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border-subtle);
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-size: var(--text-4xl);
    font-weight: var(--weight-extrabold);
    background: linear-gradient(135deg, var(--amber-bright) 0%, var(--amber-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-item .stat-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
    font-weight: var(--weight-medium);
    margin-top: var(--space-1);
}

@media (max-width: 768px) {
    .corporate-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    .corporate-image {
        max-height: 250px;
    }
    .corporate-image img {
        max-height: 250px;
    }
    .corporate-title {
        font-size: var(--text-2xl);
    }
    .corporate-text {
        font-size: var(--text-sm);
    }
    .corporate-stats {
        gap: var(--space-4);
        flex-wrap: wrap;
        justify-content: center;
    }
    .stat-item .stat-number {
        font-size: var(--text-2xl);
    }
}

@media (max-width: 480px) {
    .corporate-image {
        max-height: 200px;
    }
    .corporate-image img {
        max-height: 200px;
    }
    .corporate-title {
        font-size: var(--text-xl);
    }
    .stat-item .stat-number {
        font-size: var(--text-xl);
    }
}

/* ============================================
   CERTIFICATES SECTION
   ============================================ */

.certificates-premium-section {
    padding: var(--space-32) 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.certificates-premium-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, var(--glow-amber) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.certificates-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.certificates-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.certificate-card-premium {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-surface) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid var(--border-subtle);
    transition: all var(--transition-base);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.certificate-card-premium:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), var(--shadow-glow-amber-strong);
    border-color: var(--border-strong);
}

.certificate-card-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.certificate-card-premium:hover img {
    transform: scale(1.05);
}

.certificate-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-6);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.certificate-name {
    font-size: var(--text-base);
    color: var(--text-primary);
    font-weight: var(--weight-semibold);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 1024px) {
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
}

@media (max-width: 768px) {
    .hero-cinematic {
        min-height: 70vh;
        padding: var(--space-16) 0;
    }
    
    .hero-content-cinematic {
        padding: 0 var(--space-4);
    }
    
    .hero-title-cinematic {
        font-size: var(--text-4xl);
    }
    
    .hero-subtitle-cinematic {
        font-size: var(--text-base);
    }
    
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }
    
    .hero-cta-group .btn-premium {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .stats-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
    
    .stat-card-premium {
        padding: var(--space-6);
    }
    
    .stat-number-premium {
        font-size: var(--text-4xl);
    }
    
    .category-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .product-grid-premium {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-card-content {
        padding: var(--space-5);
    }
    
    .certificates-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title-premium {
        font-size: var(--text-3xl);
    }
    
    .section-subtitle-premium {
        font-size: var(--text-sm);
    }
}

@media (max-width: 480px) {
    .hero-cinematic {
        min-height: 60vh;
        padding: var(--space-12) 0;
    }
    
    .hero-title-cinematic {
        font-size: var(--text-3xl);
    }
    
    .stats-grid-premium {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-3);
    }
    
    .stat-card-premium {
        padding: var(--space-4);
    }
    
    .stat-number-premium {
        font-size: var(--text-3xl);
    }
    
    .category-card-content {
        padding: var(--space-4);
    }
    
    .category-card-title {
        font-size: var(--text-lg);
    }
    
    .product-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .certificates-showcase {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

[data-scroll-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-scroll-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   FEATURED PRODUCTS GRID - Multiple Products
   ============================================ */

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.featured-product-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
}

.featured-product-card:hover {
    border-color: var(--amber-primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3), 0 0 20px rgba(251,191,36,0.08);
}

.featured-product-image {
    position: relative;
    aspect-ratio: 4/3;
    background: var(--bg-tertiary);
    overflow: hidden;
}

.featured-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.3s ease;
}

.featured-product-card:hover .featured-product-image img {
    transform: scale(1.05);
}

.featured-product-badge {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    background: rgba(251, 191, 36, 0.9);
    color: #0a0e1a;
    padding: 0.2rem 0.6rem;
    border-radius: 2rem;
    font-size: 0.62rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-product-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-product-category {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--amber-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem 0;
}

.featured-product-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.featured-product-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0 0 1rem 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-product-specs {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.featured-spec {
    font-size: 0.63rem;
    font-weight: 600;
    padding: 0.18rem 0.45rem;
    border-radius: 0.2rem;
    background: rgba(251,191,36,0.08);
    color: var(--amber-primary);
    border: 1px solid rgba(251,191,36,0.15);
}

.featured-product-actions {
    margin-top: auto;
}

.btn-featured {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, var(--amber-primary), var(--amber-dark));
    color: var(--bg-primary);
    border-radius: var(--radius-md);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
    justify-content: center;
}

.btn-featured:hover {
    box-shadow: 0 4px 20px rgba(251,191,36,0.4);
    transform: translateY(-1px);
}

.featured-products-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .featured-product-name {
        font-size: 0.9rem;
    }
    
    .featured-product-desc {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .featured-products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
