/* Component Styles - Luxury Redesign */

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    border-radius: 4px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-bg-dark);
    font-weight: 800;
}

.btn-primary:hover {
    background-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(255, 230, 0, 0.2);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-border);
    color: var(--color-primary);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.05);
}

/* --- Header & Navbar --- */
.main-header {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 var(--spacing-md);
    transition: all 0.4s ease;
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.4s ease;

    /* Initial state transparent */
    background: transparent;
}

.main-header.scrolled .header-inner {
    background: rgba(5, 10, 20, 0.85);
    /* Dark semi-transparent */
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.logo img {
    height: 60px;
    /* Larger logo */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-secondary);
    position: relative;
    text-transform: uppercase;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cart-trigger {
    color: var(--color-primary);
    position: relative;
    margin-left: 2rem;
    padding: 0.5rem;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -5px;
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img,
.hero-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
    /* Slightly brighter for luxury feel */
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    padding: 0 var(--spacing-md);
    z-index: 2;
}

.hero-subtitle {
    display: block;
    color: var(--color-accent);
    font-size: 1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: fadeIn 1s ease-out;
}

.hero h1 {
    margin-bottom: 3rem;
    line-height: 1;
    animation: fadeInUp 1s 0.2s backwards;
}

/* --- Product Grid & Cards --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
}

.product-card {
    background: transparent;
    border-bottom: 1px solid transparent;
    padding: 2rem;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Minimalist Card Style */
.product-card:hover {
    background: rgba(255, 255, 255, 0.02);
    border-bottom-color: var(--color-accent);
}

.card-image {
    height: 250px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.card-image img {
    max-height: 100%;
    max-width: 100%;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

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

.card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.card-price {
    color: var(--color-accent);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.add-to-cart-btn {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-secondary);
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    color: var(--color-primary);
    border-color: var(--color-accent);
}

/* --- Footer --- */
.main-footer {
    background: #010205;
    padding: var(--spacing-xl) 0 3rem;
    margin-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    margin-bottom: 2rem;
    opacity: 0.8;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: #fff;
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: #888;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--color-accent);
}

/* --- Cart Sidebar --- */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: #020610;
    /* Solid dark */
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.2, 1, 0.2, 1);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    overflow-y: auto;
}

.cart-header {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-overlay.open .cart-sidebar {
    transform: translateX(0);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Form Styles */
.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    color: var(--color-secondary);
}

.form-input,
.form-textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    color: #fff;
    font-family: inherit;
    border-radius: 4px;
    transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.05);
}

/* Page Headers */
.page-header {
    padding-top: 180px;
    padding-bottom: 80px;
    text-align: center;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--color-accent);
    color: #000;
    /* Black text for contrast on yellow */
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 230, 0, 0.3);
    z-index: 1999;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border: 2px solid transparent;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 230, 0, 0.5);
    color: #000;
}

/* --- Testimonials Carousel (Google Style) --- */
.testimonials-slider {
    overflow: hidden;
    padding: 2rem 0;
    white-space: nowrap;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.testimonials-track {
    display: inline-flex;
    animation: scroll-left 40s linear infinite;
    gap: 2rem;
}

.testimonials-slider:hover .testimonials-track {
    animation-play-state: paused;
}

.testimonial-card-google {
    width: 350px;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    white-space: normal;
    /* Allow text wrapping inside card */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.google-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.google-logo {
    width: 24px;
    height: 24px;
}

.stars {
    color: #ffd700;
    /* Gold stars */
    letter-spacing: 2px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

    /* Assumes track has 2 sets of items */
}

/* === STATS COUNTER SECTION === */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
    padding: 4rem 0;
}

.stat-card {
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), #f59e0b);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 230, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* === PHOTO GALLERY === */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
}

.gallery-item:hover {
    border-color: rgba(255, 230, 0, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* === FAQ ACCORDION === */
.faq-section {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 230, 0, 0.2);
}

.faq-item.active {
    border-color: rgba(255, 230, 0, 0.3);
    background: rgba(255, 230, 0, 0.03);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    text-align: left;
    gap: 1rem;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: var(--color-accent);
}

.faq-item.active .faq-icon {
    background: var(--color-accent);
    color: #000;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === CHAMPIONSHIP LOGOS === */
.championship-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding: 3rem 0;
}

.championship-logo {
    width: 120px;
    height: 120px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.championship-logo:hover {
    transform: scale(1.1);
    border-color: rgba(255, 230, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.championship-logo img {
    max-width: 90px;
    max-height: 90px;
    object-fit: contain;
    filter: brightness(1.2);
}

/* === PICKUP/DELIVERY SERVICE === */
.pickup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.pickup-card {
    padding: 3rem;
    background: #020610;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pickup-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), #f59e0b);
}

.pickup-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 230, 0, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pickup-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-accent), #f59e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.pickup-card h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.pickup-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* === PALMARES CARDS === */
.palmares-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.palmares-card {
    padding: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.palmares-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 230, 0, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.palmares-card .palmares-emoji {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.palmares-card h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.palmares-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* === TIMELINE STORY === */
.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-section.reverse {
    direction: rtl;
}

.story-section.reverse>* {
    direction: ltr;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.story-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    border: 2px solid rgba(255, 230, 0, 0.15);
    pointer-events: none;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-section,
    .story-section.reverse {
        grid-template-columns: 1fr;
        gap: 3rem;
        direction: ltr;
    }

    .pickup-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .championship-logos {
        gap: 1.5rem;
    }

    .championship-logo {
        width: 90px;
        height: 90px;
    }

    .palmares-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-question {
        padding: 1.2rem 1.5rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 480px) {
    .palmares-grid {
        grid-template-columns: 1fr;
    }

    .championship-logo {
        width: 70px;
        height: 70px;
    }

    .championship-logo img {
        max-width: 55px;
        max-height: 55px;
    }
}

/* === RESPONSIVE CONTACT GRID === */
.contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* === RESPONSIVE FOOTER === */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-col {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
}

/* === MOBILE MENU & HEADER RESPONSIVE === */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 2000;
}

.menu-toggle .bar {
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Animations for Hamburger to X */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background-color: var(--color-accent);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background-color: var(--color-accent);
}

@media (max-width: 768px) {

    /* Reset Floating Header for Mobile */
    .main-header {
        top: 0;
        padding: 0;
        background: rgba(2, 6, 16, 0.9);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .header-inner {
        padding: 1rem 1.5rem;
        border-radius: 0;
        background: transparent !important;
        /* Remove inner bg since header handles it */
        border: none;
        box-shadow: none;
    }

    .menu-toggle {
        display: flex;
        z-index: 2001;
        /* Above nav-menu */
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(2, 6, 16, 0.98);
        /* Solid background for menu */
        backdrop-filter: blur(15px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2000;
        padding-top: 60px;
        /* Space for header */
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nav-link {
        font-size: 1.5rem;
        font-weight: 700;
    }

    .logo img {
        height: 45px;
        /* Smaller logo on mobile */
    }

    .header-inner {
        padding: 0.8rem 1.5rem;
    }
}

/* === RESPONSIVE 3D PARTNERS CAROUSEL === */
.partners-3d-container {
    perspective: 1000px;
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-3d {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotateCarousel 20s linear infinite;
}

.carousel-3d:hover {
    animation-play-state: paused;
}

/* Define CSS Variables for Rotation */
.partner-3d-card {
    position: absolute;
    left: 50%;
    top: 50%;
    /* 5 items = 360 / 5 = 72deg each */
    transform: translate(-50%, -50%) rotateY(calc(var(--i) * 72deg)) translateZ(350px);
    transition: transform 0.5s;
    width: 280px;
}

.partner-content {
    padding: 2.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: all 0.4s ease;
}

.partner-logo-box {
    width: 140px;
    height: 140px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-logo-box img {
    max-width: 120px;
    max-height: 120px;
    object-fit: contain;
    filter: brightness(1.3);
}

.partner-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #fff;
    font-weight: 700;
}

.partner-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.partner-3d-card:hover .partner-content {
    transform: scale(1.05);
    border-color: var(--color-accent);
    box-shadow: 0 0 40px rgba(255, 230, 0, 0.1);
}

/* Specific Accent Colors per Partner (Optional) */
.partner-raptor {
    border-color: rgba(59, 130, 246, 0.2) !important;
}

.partner-rivaracing {
    border-color: rgba(59, 130, 246, 0.2) !important;
}

/* Responsive 3D Carousel */
@media (max-width: 768px) {
    .partners-3d-container {
        height: 350px;
        perspective: 800px;
    }

    .partner-3d-card {
        width: 220px;
        /* Reduce translateZ for smaller screens to bring cards closer */
        transform: translate(-50%, -50%) rotateY(calc(var(--i) * 72deg)) translateZ(240px);
    }

    .partner-content {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .partner-logo-box {
        width: 100px;
        height: 100px;
        margin-bottom: 1rem;
    }

    .partner-logo-box img {
        max-width: 80px;
        max-height: 80px;
    }

    .partner-content h4 {
        font-size: 1.2rem;
    }

    .partner-content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .partners-3d-container {
        height: 300px;
    }

    .partner-3d-card {
        width: 180px;
        transform: translate(-50%, -50%) rotateY(calc(var(--i) * 72deg)) translateZ(190px);
    }

    .partner-content {
        padding: 1rem;
    }

    /* Hide text on very small screens if needed, or make it smaller */
    .partner-content p {
        display: none;
    }
}

/* === RETURNS POLICY RESPONSIVE === */
.returns-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.returns-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), transparent);
}

.returns-layout {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.returns-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 230, 0, 0.1);
    border: 2px solid rgba(255, 230, 0, 0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.returns-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-return {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-return:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent);
}

@media (max-width: 768px) {
    .returns-card {
        padding: 1.5rem;
    }

    .returns-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .returns-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .btn-return {
        width: 100%;
        justify-content: center;
    }
}