@font-face {
    font-family: 'IranYekan';
    src: url('../fonts/IranYekan.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'IranYekan';
    src: url('../fonts/IranYekan.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

:root {
    --bs-body-font-family: 'IranYekan', sans-serif !important;
    /* Primary brand color - Deep Black/Charcoal */
    --gaz-green: #1a1a1a;
    /* Deep Black */
    --gaz-gold: #d4af37;
    /* Metallic Gold */
    --gaz-dark: #000000;
    /* Off-white */
    --gaz-light: #f5f5f5;
    --gaz-grey: #2c2c2c;
}

/* Override Bootstrap Colors */
.text-success {
    color: var(--gaz-green) !important;
}

.bg-success {
    background-color: var(--gaz-green) !important;
}

.btn-success {
    background-color: var(--gaz-green) !important;
    border-color: var(--gaz-green) !important;
}

.btn-outline-success {
    color: var(--gaz-green) !important;
    border-color: var(--gaz-green) !important;
}

.btn-outline-success:hover {
    background-color: var(--gaz-green) !important;
    color: white !important;
}

.text-warning {
    color: var(--gaz-gold) !important;
}

.bg-warning {
    background-color: var(--gaz-gold) !important;
}


body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div,
input,
button,
select,
textarea,
label,
.btn,
.alert,
.card-header,
.nav-link,
.dropdown-item {
    font-family: 'IranYekan', sans-serif !important;
}

/* Global Bootstrap Card Override for Dark Theme */
.card {
    background-color: #1e1e1e;
    color: #e0e0e0;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.text-muted {
    color: #a0a0a0 !important;
}

.font-yekan {
    font-family: 'IranYekan', sans-serif !important;
}

html,
body {
    font-family: 'Vazirmatn', sans-serif !important;
    background-color: #121212;
    color: #e0e0e0;
    overflow-x: hidden;
    /* Fix horizontal scroll on mobile */
    direction: rtl;
    width: 100%;
}

/* --- Advanced Animations --- */

/* 1. Floating Animation (Vertical) */
@keyframes float-y {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* 2. Floating Animation (Horizontal/Diagonal) */
@keyframes float-diagonal {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(10px, -15px);
    }

    100% {
        transform: translate(0, 0);
    }
}

/* 3. Pulse Glow Effect */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* 4. Shimmer/Shine Effect for Buttons */
@keyframes shimmer {
    0% {
        left: -100%;
        top: -100%;
    }

    100% {
        left: 200%;
        top: 200%;
    }
}

/* 5. Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* 6. Rotating Badge */
@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Classes to apply animations */
.animate-float-y {
    animation: float-y 6s ease-in-out infinite;
}

.animate-float-diagonal {
    animation: float-diagonal 7s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s infinite;
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.animate-rotate {
    animation: rotate-slow 20s linear infinite;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* Hero Section Refinements */
.hero-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: radial-gradient(circle at top right, #1a1a1a 0%, #000000 100%);
}

.hero-bg-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: float-diagonal 10s infinite alternate;
}

.newsletter-decoration {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gaz-gold) 0%, transparent 70%);
    opacity: 0.3;
    /* Increased opacity */
    filter: blur(30px);
    /* Reduced blur to see shape better */
    animation: float-diagonal 8s infinite alternate;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem) !important;
    font-weight: 900;
    color: var(--gaz-dark);
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 1);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.8rem) !important;
    color: #f3f3f3;
    margin-bottom: 45px;
    line-height: 1.8;
}

/* Super Premium Buttons */
.btn-premium-3d {
    position: relative;
    padding: 18px 45px;
    border-radius: 25px;
    border: none;
    background: linear-gradient(135deg, var(--gaz-gold) 0%, #b8860b 100%);
    color: #000;
    font-weight: 900;
    font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    box-shadow: 0 10px 0 #8c6b12, 0 15px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    overflow: hidden;
    margin: 10px;
    z-index: 10;
}

.btn-premium-3d:active {
    transform: translateY(10px);
    box-shadow: 0 0 0 #8c6b12, 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-premium-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}

.btn-outline-glass {
    padding: 18px 45px;
    border-radius: 25px;
    border: 3px solid var(--gaz-dark);
    color: var(--gaz-dark);
    font-weight: 800;
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s;
    min-width: 200px;
    margin: 10px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.btn-outline-glass:hover {
    background: var(--gaz-gold);
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Product Cards */
.product-card {
    border: none;
    border-radius: 25px;
    background: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.2);
    z-index: 5;
}

.product-image {
    height: 300px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.card-badge-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    color: var(--gaz-dark);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Premium Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--gaz-dark) 0%, #594200 100%);
    /* Greenish gradient */
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
    /* Reduced padding */
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(89, 66, 0, 0.2);
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    font-size: 1rem;
    border-radius: 50px !important;
    /* Full pill */
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: none;
    color: white;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn-newsletter {
    background: var(--gaz-gold);
    color: var(--gaz-dark);
    font-weight: 700;
    border-radius: 50px !important;
    padding: 15px 35px !important;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5);
    background: #e5c150;
    color: var(--gaz-dark);
}

/* Premium Feature List */
.feature-box {
    background: #1e1e1e;
    padding: 15px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.1);
    border-color: var(--gaz-gold);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.02);
}


.feature-text {
    font-weight: 700;
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Login Page Styles */
.btn-gold {
    background-color: var(--gaz-gold);
    color: var(--gaz-dark);
    border: none;
    transition: all 0.3s;
}

.btn-gold:hover {
    background-color: #e5c150;
    color: var(--gaz-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.login-brand-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    z-index: -1;
    animation: pulse-glow 5s infinite alternate;
}

.login-decoration-circle {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.form-control:focus {
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gaz-gold);
}

.text-gold {
    color: var(--gaz-gold) !important;
}

.hover-underline:hover {
    text-decoration: underline !important;
}

.hover-lift:hover {
    transform: translateY(-3px);
}

.social-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--gaz-gold);
    color: white !important;
    transform: rotate(15deg);
}

.object-fit-cover {
    object-fit: cover;
}

/* Premium Dark Footer */
.footer-premium {
    background-color: var(--gaz-dark);
    background: #252525;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--gaz-gold);
}

.faq-accordion .accordion-item {
    background-color: #1a1a1a;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 10px;
    border-radius: 10px !important;
    overflow: hidden;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: #2c2c2c;
    color: var(--gaz-gold);
    box-shadow: none;
    border-bottom: 1px solid var(--gaz-gold);
}

.faq-accordion .accordion-button {
    background-color: #1a1a1a;
    color: #f5f5f5;
    font-weight: 700;
}

.faq-accordion .accordion-body {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.8;
}

.faq-accordion .accordion-button::after {
    filter: invert(1) sepia(100%) hue-rotate(0deg) saturate(3000%) brightness(1);
    /* Gold filter approximation for the arrow */
}

.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    fill: var(--gaz-dark);
}

/* Filter Button - Outline Gold with Visible Text */
.btn-outline-gold {
    color: var(--gaz-gold) !important;
    border: 1px solid var(--gaz-gold);
    background: transparent;
    transition: all 0.3s;
}

.btn-outline-gold:hover,
.btn-outline-gold.active {
    background: var(--gaz-gold);
    color: #000 !important;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.footer-title {
    font-weight: 800;
    color: var(--gaz-gold);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--gaz-gold);
    border-radius: 2px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--gaz-gold);
    transform: translateX(-5px);
    padding-right: 5px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    margin-left: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--gaz-gold);
    color: var(--gaz-dark);
    transform: translateY(-5px);
    border-color: var(--gaz-gold);
}

.copyright-bar {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* --- Luxury Product Card Styles (V2) --- */

/* --- Classic Luxury Product Card (Rebuilt) --- */

.card-classic-luxury {
    background: #1a1a1a;
    border: 1px solid var(--gaz-gold);
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    /* Clean Slate */
}

.card-classic-luxury:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    border-color: #fff;
}

/* Image Container - The "Stage" */
.luxury-img-wrapper {
    background-color: #2c3137;
    width: 100%;
    height: 260px;
    /* Fixed height for consistency */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    border-bottom: 3px solid var(--gaz-gold);
    position: relative;
}

.luxury-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    /* Ensures entire product is visible */
    transition: transform 0.5s ease;
}

.card-classic-luxury:hover .luxury-img-wrapper img {
    transform: scale(1.05);
}

/* Badge */
.luxury-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: var(--gaz-gold);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    border: 1px solid var(--gaz-gold);
    z-index: 10;
}

/* Content Body */
.luxury-content {
    padding: 20px;
    background: #1a1a1a;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Title */
.luxury-title {
    margin-bottom: 15px;
    width: 100%;
}

.luxury-title a {
    color: #ffffff !important;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    /* Limit to 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3.2rem;
    /* Reserve space for 2 lines */
}

/* Price */
.luxury-price {
    font-size: 1.3rem;
    color: var(--gaz-gold);
    font-weight: 800;
    margin-bottom: 20px;
    margin-top: auto;
    /* Push to bottom of flex container */
    font-family: 'IranYekan', sans-serif;
}

.luxury-price small {
    font-size: 0.8rem;
    color: #aeaeae;
    margin-right: 5px;
}

/* Button */
.btn-luxury-action {
    background: var(--gaz-gold);
    color: #000 !important;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.btn-luxury-action:hover {
    background: #ffd700;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.soft-price {
    font-size: 1.25rem;
    color: var(--gaz-gold);
    font-weight: 800;
    margin-bottom: 1rem;
}

/* Button Refinement */
.btn-sleek-gold {
    background: linear-gradient(45deg, var(--gaz-gold), #b4932a);
    color: #000 !important;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    padding: 12px;
    width: 100%;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-sleek-gold:hover {
    background: linear-gradient(45deg, #ffd700, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

/* Typography & Content */
.soft-card-body {
    padding: 1.5rem;
    background: #1e1e1e;
    position: relative;
    z-index: 2;
}

.soft-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #f5f5f5;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.product-card-soft:hover .soft-title {
    color: var(--gaz-gold);
}

.soft-price {
    font-size: 1.25rem;
    color: var(--gaz-gold);
    font-weight: 700;
    font-family: 'IranYekan', sans-serif;
    display: block;
    margin-bottom: 1.2rem;
}

/* Sleek Button */
.btn-sleek-gold {
    background: var(--gaz-gold);
    color: #fff;
    border-radius: 12px;
    padding: 12px 0;
    font-weight: 700;
    font-size: 0.95rem;
    width: 100%;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-sleek-gold:hover {
    background: #1a2e1a;
    /* Dark Green on Hover */
    color: #d4af37;
    /* Gold Text */
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 46, 26, 0.3);
}

/* Badges */
.badge-floating {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(26, 46, 26, 0.9);
    /* Dark Green */
    color: #d4af37;
    /* Gold Text */
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Helpers --- */
.bg-gold {
    background-color: var(--gaz-gold) !important;
}

.group-hover-btn-glow:hover {
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5) !important;
    transform: translateY(-2px);
}


.font-heading {
    font-family: 'IranYekan', sans-serif !important;
    letter-spacing: -0.5px;
}

.font-numeric {
    font-family: 'IranYekan', sans-serif;
    /* IranYekan supports Persian numbers well */
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.bg-opacity-60 {
    background-color: rgba(255, 255, 255, 0.6);
}

.z-10 {
    z-index: 10;
}

.ls-2 {
    letter-spacing: 2px;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-500 {
    transition-duration: 500ms;
}

.duration-700 {
    transition-duration: 700ms;
}

.translate-y-100 {
    transform: translateY(100%);
}


/* --- Strict Color Enforcement --- */
.text-royal {
    color: var(--gaz-green) !important;
}

.bg-royal {
    background-color: var(--gaz-green) !important;
}

.border-royal {
    border-color: var(--gaz-green) !important;
}

.text-gold {
    color: var(--gaz-gold) !important;
}

.bg-gold {
    background-color: var(--gaz-gold) !important;
}

.border-gold {
    border-color: var(--gaz-gold) !important;
}

/* Force all links to respect the palette */
a {
    color: var(--gaz-dark);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--gaz-gold);
}

/* Specific override for product titles if they are in cards */


.product-card-soft:hover .soft-title a {
    color: var(--gaz-gold) !important;
}

/* Override any potential blue defaults */
.text-primary,
.text-info {
    color: var(--gaz-green) !important;
}

.bg-primary,
.bg-info {
    background-color: var(--gaz-green) !important;
}

.btn-primary,
.btn-info {
    background-color: var(--gaz-green) !important;
    border-color: var(--gaz-green) !important;
}

/* --- Mobile Optimizations (Added by AI) --- */
@media (max-width: 768px) {
    .btn-luxury-action {
        padding: 8px 5px !important;
        /* Minimal padding */
        font-size: 0.85rem !important;
        /* Smaller text */
        white-space: nowrap;
        /* Force single line */
        height: auto;
        min-height: 35px;
    }

    .luxury-content {
        padding: 10px !important;
        /* Tighten content area */
    }

    .luxury-title {
        margin-bottom: 5px;
    }

    .luxury-title a {
        font-size: 0.95rem !important;
        /* Slightly smaller title */
        min-height: 2.8rem;
    }

    .luxury-price {
        font-size: 1.1rem !important;
        margin-bottom: 15px;
    }

    .luxury-img-wrapper {
        height: 180px;
        /* Reduce image height on mobile */
        padding: 10px;
    }

    /* Also fix the premium button if it wraps */
    .btn-premium-3d {
        padding: 15px 30px;
        min-width: unset;
        width: 100%;
        font-size: 1.1rem;
    }
}