/* ================================
   ALIDHAAR - Premium Perfumery
   Elegant White Theme
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Cormorant+Garamond:wght@300;400;500;600&family=Inter:wght@300;400;500;600&display=swap');

:root {
    --primary: #1A1A1A;
    --primary-light: #333333;
    --accent: #C9A227;
    --accent-light: #D4AF37;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --cream: #F5F3EF;
    --gray: #888888;
    --gray-light: #E5E5E5;
    --gray-dark: #555555;
    
    --font-heading: 'Playfair Display', serif;
    --font-elegant: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================
   NAVIGATION
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    max-width: 1600px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 32px;
    width: auto;
    filter: brightness(0);
    transition: var(--transition);
}

.nav-logo:hover img {
    opacity: 0.7;
}

.nav-menu {
    display: flex;
    gap: 50px;
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
    position: relative;
    padding: 5px 0;
}

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

.nav-link:hover {
    color: var(--accent);
}

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

.nav-cart {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -10px;
    right: -12px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 1.5px;
    background: var(--primary);
    transition: var(--transition);
}

/* ================================
   HERO SLIDER SECTION
   ================================ */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.7) 40%, transparent 70%);
}

.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 80px;
}

.hero-tagline {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    color: var(--accent);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--primary);
}

.hero-subtitle {
    font-family: var(--font-elegant);
    font-size: 1.3rem;
    color: var(--gray-dark);
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-slider-nav {
    position: absolute;
    bottom: 50px;
    left: 80px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    background: transparent;
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 18px 55px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ================================
   SECTIONS
   ================================ */
.section {
    padding: 120px 0;
}

.section-alt {
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    font-family: var(--font-elegant);
    font-size: 1rem;
    color: var(--accent);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 400;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--primary);
}

.section-divider {
    width: 80px;
    height: 1px;
    background: var(--accent);
    margin: 25px auto 0;
}

/* ================================
   EXCLUSIVE PRODUCTS (HOME PAGE)
   ================================ */
.exclusive-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ================================
   PRODUCT CARDS
   ================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
    padding: 20px 0;
}

.product-card {
    background: var(--white);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--gray-light);
}

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

.product-image {
    position: relative;
    height: 400px;
    background: var(--off-white);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.product-image .img-primary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.product-image .img-secondary {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image .img-primary {
    opacity: 0;
}

.product-card:hover .product-image .img-secondary {
    opacity: 1;
}

.product-card:hover .img-primary {
    opacity: 0;
}

.product-card:hover .img-hover {
    opacity: 1;
}

.product-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.product-category.men {
    background: #2C3E50;
}

.product-category.women {
    background: #8E4585;
}

.product-category.unisex {
    background: var(--accent);
    color: var(--primary);
}

.product-info {
    padding: 28px;
    text-align: center;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary);
    font-weight: 400;
}

.product-notes {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 18px;
    line-height: 1.7;
}

.product-notes span {
    color: var(--accent);
    font-weight: 500;
}

.product-price {
    font-family: var(--font-elegant);
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 22px;
}

.btn-add-cart {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: var(--transition);
}

.btn-add-cart:hover {
    background: var(--primary);
    color: var(--white);
}

/* Category Filter Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.category-tab {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gray);
    cursor: pointer;
    padding: 10px 0;
    position: relative;
    transition: var(--transition);
}

.category-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.category-tab.active,
.category-tab:hover {
    color: var(--primary);
}

.category-tab.active::after {
    width: 100%;
}

/* ================================
   CART PAGE
   ================================ */
.cart-section {
    min-height: 80vh;
    padding-top: 140px;
    padding-bottom: 80px;
    background: var(--off-white);
}

.cart-empty {
    text-align: center;
    padding: 100px 20px;
}

.cart-empty h2 {
    margin-bottom: 20px;
    color: var(--gray);
    font-weight: 400;
}

.cart-items {
    margin-bottom: 40px;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto auto auto;
    gap: 30px;
    align-items: center;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--gray-light);
    margin-bottom: 15px;
    transition: var(--transition);
}

.cart-item:hover {
    box-shadow: var(--shadow);
}

.cart-item-image {
    width: 120px;
    height: 120px;
    background: var(--off-white);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 400;
}

.cart-item-details p {
    color: var(--gray);
    font-size: 0.9rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
}

.qty-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.qty-value {
    font-size: 1.1rem;
    min-width: 30px;
    text-align: center;
}

.cart-item-price {
    font-family: var(--font-elegant);
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 500;
    min-width: 130px;
    text-align: right;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 1.5rem;
    padding: 5px 10px;
    transition: var(--transition);
}

.cart-item-remove:hover {
    color: #cc0000;
}

.cart-summary {
    background: var(--white);
    border: 1px solid var(--gray-light);
    padding: 40px;
    max-width: 420px;
    margin-left: auto;
}

.cart-summary h3 {
    font-size: 1.4rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-light);
    font-weight: 400;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1rem;
}

.summary-row.total {
    font-size: 1.4rem;
    font-family: var(--font-elegant);
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
    margin-top: 25px;
    font-weight: 500;
}

.btn-checkout {
    display: block;
    width: 100%;
    margin-top: 30px;
    padding: 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-checkout:hover {
    background: var(--primary-light);
}

/* ================================
   CART SIDEBAR POPUP
   ================================ */
.cart-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 2000;
}

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

.cart-sidebar {
    position: fixed;
    top: 0;
    left: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100%;
    background: var(--white);
    z-index: 2001;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.15);
}

.cart-sidebar.active {
    left: 0;
}

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid var(--gray-light);
}

.cart-sidebar-header h3 {
    font-size: 1.3rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-sidebar-header h3 span {
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
}

.cart-sidebar-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
    padding: 5px;
}

.cart-sidebar-close:hover {
    color: var(--primary);
    transform: rotate(90deg);
}

.cart-sidebar-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 30px;
}

.cart-sidebar-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--gray-light);
    animation: slideInLeft 0.4s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cart-sidebar-item-image {
    width: 80px;
    height: 80px;
    background: var(--off-white);
    flex-shrink: 0;
}

.cart-sidebar-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-sidebar-item-details {
    flex: 1;
}

.cart-sidebar-item-details h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.cart-sidebar-item-details p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.cart-sidebar-item-details .price {
    font-family: var(--font-elegant);
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 500;
}

.cart-sidebar-item-remove {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
    align-self: center;
}

.cart-sidebar-item-remove:hover {
    color: #cc0000;
}

.cart-sidebar-empty {
    text-align: center;
    padding: 60px 30px;
    color: var(--gray);
}

.cart-sidebar-empty svg {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.cart-sidebar-footer {
    padding: 25px 30px;
    border-top: 1px solid var(--gray-light);
    background: var(--off-white);
}

.cart-sidebar-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.cart-sidebar-total span:last-child {
    font-family: var(--font-elegant);
    font-size: 1.4rem;
}

.cart-sidebar-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-sidebar-buttons .btn {
    width: 100%;
    text-align: center;
    padding: 16px;
}

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

.btn-view-cart:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-sidebar-checkout {
    background: var(--primary);
    color: var(--white);
    border: none;
}

.btn-sidebar-checkout:hover {
    background: var(--accent);
}

/* ================================
   CHECKOUT PAGE - FULLY RESPONSIVE
   ================================ */
.checkout-section {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FFFFFF 0%, #FDF8F0 25%, #FFFAF3 50%, #F8F5F0 75%, #FFFFFF 100%);
}

.checkout-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, rgba(212, 175, 55, 0.08) 40%, transparent 70%);
    pointer-events: none;
    animation: floatGlow 8s ease-in-out infinite;
}

.checkout-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 162, 39, 0.1) 0%, rgba(255, 215, 0, 0.05) 40%, transparent 70%);
    pointer-events: none;
    animation: floatGlow 10s ease-in-out infinite reverse;
}

.checkout-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #C9A227, #FFD700);
    border-radius: 50%;
    opacity: 0;
    animation: sparkleFloat 6s ease-in-out infinite;
}

.sparkle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.sparkle:nth-child(2) { left: 20%; top: 60%; animation-delay: 1s; }
.sparkle:nth-child(3) { left: 30%; top: 40%; animation-delay: 2s; }
.sparkle:nth-child(4) { left: 50%; top: 30%; animation-delay: 0.5s; }
.sparkle:nth-child(5) { left: 70%; top: 70%; animation-delay: 1.5s; }
.sparkle:nth-child(6) { left: 80%; top: 25%; animation-delay: 2.5s; }
.sparkle:nth-child(7) { left: 90%; top: 55%; animation-delay: 3s; }
.sparkle:nth-child(8) { left: 15%; top: 80%; animation-delay: 3.5s; }
.sparkle:nth-child(9) { left: 60%; top: 15%; animation-delay: 4s; }
.sparkle:nth-child(10) { left: 45%; top: 85%; animation-delay: 4.5s; }

@keyframes sparkleFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
    20% { opacity: 1; transform: translateY(-20px) scale(1); }
    50% { opacity: 0.8; transform: translateY(-40px) scale(1.2); }
    80% { opacity: 0.3; transform: translateY(-60px) scale(0.8); }
}

@keyframes floatGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.checkout-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.checkout-title {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    margin-bottom: 40px;
    font-weight: 400;
    position: relative;
    z-index: 1;
    color: var(--primary);
    text-align: center;
}

@supports (-webkit-background-clip: text) {
    .checkout-title {
        background: linear-gradient(135deg, #1A1A1A 0%, #C9A227 50%, #1A1A1A 100%);
        background-size: 200% auto;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 4s ease-in-out infinite;
    }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.checkout-form,
.checkout-summary {
    animation: fadeSlideUp 0.8s ease forwards;
    opacity: 0;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.checkout-form {
    animation-delay: 0.2s;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: clamp(20px, 4vw, 35px);
    border-radius: 20px;
    border: 1px solid rgba(201, 162, 39, 0.2);
    box-shadow: 0 20px 60px rgba(201, 162, 39, 0.1);
}

.checkout-summary {
    animation-delay: 0.4s;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(253, 248, 240, 0.95));
    backdrop-filter: blur(10px);
    padding: clamp(20px, 4vw, 35px);
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
}

.checkout-summary::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #C9A227, #FFD700, #C9A227, #FFD700);
    background-size: 300% 300%;
    border-radius: 22px;
    z-index: -1;
    animation: glowingBorder 3s ease infinite;
}

@keyframes glowingBorder {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

.checkout-form h2,
.checkout-summary h2 {
    font-size: clamp(1.2rem, 3vw, 1.6rem);
    margin-bottom: clamp(20px, 4vw, 35px);
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-light);
    font-weight: 400;
}

.form-group {
    margin-bottom: clamp(18px, 3vw, 28px);
    animation: fadeSlideUp 0.6s ease forwards;
    opacity: 0;
}

.form-group:nth-child(1) { animation-delay: 0.3s; }
.form-group:nth-child(2) { animation-delay: 0.4s; }
.form-group:nth-child(3) { animation-delay: 0.5s; }

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: clamp(0.75rem, 2vw, 0.85rem);
    color: var(--gray-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: clamp(12px, 2vw, 16px);
    background: var(--off-white);
    border: 1px solid var(--gray-light);
    border-radius: 10px;
    color: var(--primary);
    font-family: var(--font-body);
    font-size: 16px;
    transition: var(--transition);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C9A227;
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
    background: #FFFFFF;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.bank-details {
    background: linear-gradient(135deg, #FDF8F0 0%, #FFFAF3 50%, #F5EFE6 100%);
    border: 2px solid rgba(201, 162, 39, 0.3);
    padding: clamp(15px, 3vw, 30px);
    margin: clamp(20px, 4vw, 35px) 0;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(201, 162, 39, 0.1);
    animation: fadeSlideUp 0.6s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.bank-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.bank-details h3 {
    color: var(--primary);
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    margin-bottom: 15px;
    font-weight: 500;
}

.bank-note {
    color: var(--gray);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    margin-bottom: 20px;
}

.bank-info-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bank-info {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}

.bank-info:last-child {
    border-bottom: none;
}

.bank-label {
    color: var(--gray);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    min-width: 100px;
}

.bank-value {
    color: var(--primary);
    font-size: clamp(0.85rem, 2vw, 0.95rem);
    word-break: break-all;
}

.bank-value.iban {
    font-size: clamp(0.75rem, 1.8vw, 0.9rem);
}

.checkout-note {
    color: var(--gray);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    margin-top: 20px;
    line-height: 1.6;
}

.btn-whatsapp {
    width: 100%;
    padding: clamp(14px, 3vw, 20px);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 50%, #25D366 100%);
    background-size: 200% auto;
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: clamp(0.85rem, 2vw, 1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    transition: all 0.4s ease;
    animation: fadeSlideUp 0.6s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp svg {
    width: clamp(18px, 3vw, 24px);
    height: clamp(18px, 3vw, 24px);
    flex-shrink: 0;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-whatsapp:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:active {
    transform: translateY(-1px) scale(0.98);
}

.order-items {
    margin-bottom: 20px;
    max-height: 250px;
    overflow-y: auto;
}

.order-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: clamp(12px, 2vw, 18px) 0;
    border-bottom: 1px solid var(--gray-light);
    gap: 8px;
    animation: fadeSlideUp 0.5s ease forwards;
    opacity: 0;
}

.order-item:nth-child(1) { animation-delay: 0.5s; }
.order-item:nth-child(2) { animation-delay: 0.6s; }
.order-item:nth-child(3) { animation-delay: 0.7s; }
.order-item:nth-child(4) { animation-delay: 0.8s; }
.order-item:nth-child(5) { animation-delay: 0.9s; }

.order-item-name {
    flex: 1;
    min-width: 120px;
    font-size: clamp(0.85rem, 2vw, 1rem);
}

.order-item-qty {
    color: var(--gray);
    font-size: clamp(0.8rem, 2vw, 0.9rem);
    margin: 0 10px;
}

.order-item-price {
    font-weight: 500;
    font-size: clamp(0.85rem, 2vw, 1rem);
}

.summary-totals {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-light);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: clamp(0.85rem, 2vw, 1rem);
}

.summary-row.total {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-family: var(--font-elegant);
    font-weight: 600;
    padding-top: 15px;
    margin-top: 10px;
    border-top: 2px solid var(--accent);
    animation: fadeSlideUp 0.6s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0;
}

.confetti.active {
    animation: confettiFall 3s ease-out forwards;
}

@keyframes confettiFall {
    0% { opacity: 1; transform: translateY(0) rotate(0deg) scale(1); }
    100% { opacity: 0; transform: translateY(100vh) rotate(720deg) scale(0.5); }
}

/* Checkout Responsive - Tablets */
@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .checkout-container {
        width: 94%;
    }
}

/* Checkout Responsive - Mobile */
@media (max-width: 768px) {
    .checkout-section {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .checkout-container {
        width: 95%;
        padding: 0 10px;
    }
    
    .checkout-title {
        margin-bottom: 25px;
    }
    
    .checkout-grid {
        gap: 25px;
    }
    
    .checkout-form,
    .checkout-summary {
        border-radius: 16px;
    }
}

/* Checkout Responsive - Small Phones */
@media (max-width: 480px) {
    .checkout-section {
        padding-top: 90px;
        padding-bottom: 30px;
    }
    
    .checkout-container {
        width: 100%;
        padding: 0 12px;
    }
    
    .checkout-form,
    .checkout-summary {
        padding: 18px;
        border-radius: 14px;
    }
    
    .bank-info {
        flex-direction: column;
        gap: 4px;
    }
    
    .bank-label {
        min-width: auto;
    }
    
    .btn-whatsapp {
        padding: 14px 16px;
        font-size: 0.8rem;
        letter-spacing: 0.05em;
    }
    
    .order-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .order-item-qty {
        margin: 0;
    }
}

/* Very Small Phones */
@media (max-width: 360px) {
    .checkout-form,
    .checkout-summary {
        padding: 15px;
    }
    
    .bank-details {
        padding: 12px;
    }
    
    .btn-whatsapp {
        font-size: 0.75rem;
        padding: 12px;
    }
}

/* ================================
   INFO PAGES
   ================================ */
.info-section {
    min-height: 70vh;
    padding-top: 140px;
    padding-bottom: 100px;
}

.info-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-content h1 {
    font-size: 2.8rem;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 400;
}

.info-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--gray-dark);
    margin-bottom: 25px;
}

.contact-info {
    background: var(--cream);
    border: 1px solid var(--gray-light);
    padding: 50px;
    margin-top: 50px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--white);
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-details p {
    color: var(--gray);
    font-size: 1rem;
    margin: 0;
}

.contact-details a {
    color: var(--primary);
}

.contact-details a:hover {
    color: var(--accent);
}

/* ================================
   PRODUCT DETAIL PAGE
   ================================ */
.product-detail-section {
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FDF8F0 50%, #FFFFFF 100%);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.product-detail-image {
    position: relative;
}

.product-image-main {
    background: var(--off-white);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.product-image-main img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
}

.product-badge-container {
    position: absolute;
    top: 20px;
    left: 20px;
}

.product-badge {
    display: inline-block;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 30px;
}

.product-badge.badge-men {
    background: linear-gradient(135deg, #2563EB, #1E40AF);
    color: white;
}

.product-badge.badge-women {
    background: linear-gradient(135deg, #EC4899, #BE185D);
    color: white;
}

.product-badge.badge-unisex {
    background: linear-gradient(135deg, #8B5CF6, #6D28D9);
    color: white;
}

.product-detail-info {
    padding: 20px 0;
}

.product-detail-info .product-tagline {
    font-size: 0.85rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    font-weight: 500;
}

.product-detail-name {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 1.2;
}

.product-inspired {
    font-size: 1rem;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 30px;
}

.product-detail-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 30px;
}

.product-detail-price .price {
    font-family: var(--font-elegant);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary);
}

.product-detail-price .size {
    font-size: 1rem;
    color: var(--gray);
    background: var(--cream);
    padding: 6px 15px;
    border-radius: 20px;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 40px;
}

.fragrance-notes {
    background: var(--cream);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
}

.fragrance-notes h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.notes-pyramid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.note-level {
    display: flex;
    align-items: center;
    gap: 20px;
}

.note-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.note-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.note-content {
    flex: 1;
}

.note-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}

.note-value {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 500;
}

.btn-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px 40px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-add-to-cart svg {
    width: 22px;
    height: 22px;
}

.btn-add-to-cart:hover {
    background: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.3);
}

.delivery-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
    padding: 18px 25px;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 12px;
    border: 1px dashed var(--accent);
}

.delivery-info svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.delivery-info span {
    font-size: 0.95rem;
    color: var(--gray-dark);
}

.product-image-link,
.product-name-link {
    text-decoration: none;
    color: inherit;
}

.product-name-link:hover .product-name {
    color: var(--accent);
}

.product-card .product-tagline {
    font-size: 0.75rem;
    color: var(--gray);
    margin-bottom: 8px;
}

.product-card .product-size {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 15px;
}

.delivery-row {
    border-top: 1px dashed var(--gray-light);
    margin-top: 10px;
    padding-top: 15px !important;
}

@media (max-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-detail-name {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding-top: 100px;
    }
    
    .product-detail-price .price {
        font-size: 1.8rem;
    }
}

/* ================================
   RECOMMENDED PRODUCTS SECTION
   ================================ */
.recommended-section {
    padding: 80px 0;
    background: var(--off-white);
}

.recommended-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.scroll-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

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

.scroll-btn:hover svg {
    stroke: white;
}

.scroll-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.recommended-scroll {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.recommended-scroll::-webkit-scrollbar {
    display: none;
}

.recommended-card {
    flex-shrink: 0;
    width: 280px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.recommended-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.recommended-image {
    position: relative;
    height: 220px;
    background: var(--cream);
    overflow: hidden;
}

.recommended-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.recommended-category {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    color: white;
}

.recommended-category.men {
    background: linear-gradient(135deg, #2563EB, #1E40AF);
}

.recommended-category.women {
    background: linear-gradient(135deg, #EC4899, #BE185D);
}

.recommended-category.unisex {
    background: linear-gradient(135deg, #8B5CF6, #6D28D9);
}

.recommended-info {
    padding: 20px;
}

.recommended-info h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--primary);
}

.recommended-tagline {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 10px;
}

.recommended-price {
    font-family: var(--font-elegant);
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent);
}

/* ================================
   CUSTOMER REVIEWS SECTION
   ================================ */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FDF8F0 100%);
}

.reviews-subtitle {
    color: var(--gray);
    font-size: 1rem;
    margin-top: 15px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #D4AF37);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
}

.review-author {
    flex: 1;
}

.review-author h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 3px;
}

.review-location {
    font-size: 0.8rem;
    color: var(--gray);
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating svg {
    width: 16px;
    height: 16px;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-dark);
    font-style: italic;
    margin-bottom: 20px;
}

.review-badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    background: var(--cream);
    color: var(--accent);
}

.review-verified {
    background: rgba(201, 162, 39, 0.15);
    color: var(--accent);
}

.review-men,
.review-women {
    background: rgba(201, 162, 39, 0.15);
    color: var(--accent);
}

.review-boys,
.review-girls {
    background: rgba(139, 92, 246, 0.15);
    color: #7C3AED;
}

/* ================================
   GOLDEN BILL GAME
   ================================ */
.golden-bill-game {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    border-radius: 24px;
    padding: 50px 40px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    border: 2px solid #C9A227;
    box-shadow: 0 20px 60px rgba(201, 162, 39, 0.2), inset 0 0 100px rgba(201, 162, 39, 0.05);
}

.golden-bill-game::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A227' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.game-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.game-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #C9A227, #FFD700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-glow 2s ease-in-out infinite;
}

.game-icon svg {
    width: 35px;
    height: 35px;
    stroke: #1a1a1a;
    fill: #1a1a1a;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(201, 162, 39, 0.5); }
    50% { box-shadow: 0 0 40px rgba(201, 162, 39, 0.8), 0 0 60px rgba(255, 215, 0, 0.4); }
}

.game-header h2 {
    font-size: 2rem;
    background: linear-gradient(135deg, #C9A227, #FFD700, #C9A227);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-weight: 600;
}

.game-header p {
    color: #aaa;
    font-size: 1.1rem;
}

.game-header strong {
    color: #FFD700;
}

.wheel-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 30px;
}

.wheel-pointer {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.wheel-pointer svg {
    width: 40px;
    height: 40px;
    transform: rotate(180deg);
}

.spin-wheel {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(
        #C9A227 0deg 45deg,
        #444444 45deg 90deg,
        #25D366 90deg 135deg,
        #C9A227 135deg 180deg,
        #A855F7 180deg 225deg,
        #F59E0B 225deg 270deg,
        #C9A227 270deg 315deg,
        #444444 315deg 360deg
    );
    box-shadow: 0 0 0 8px #C9A227, 0 0 0 12px #1a1a1a, 0 0 30px rgba(201, 162, 39, 0.3);
    transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
}

.wheel-segment {
    position: absolute;
    width: 50%;
    height: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: 100% 100%;
}

.wheel-segment span {
    position: absolute;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    transform: rotate(22.5deg);
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    white-space: nowrap;
}

.segment-1 { transform: rotate(-22.5deg); }
.segment-1 span { left: 20%; top: 35%; }
.segment-2 { transform: rotate(22.5deg); }
.segment-2 span { left: 10%; top: 55%; }
.segment-3 { transform: rotate(67.5deg); }
.segment-3 span { left: 15%; top: 50%; }
.segment-4 { transform: rotate(112.5deg); }
.segment-4 span { left: 20%; top: 35%; }
.segment-5 { transform: rotate(157.5deg); }
.segment-5 span { left: 10%; top: 55%; }
.segment-6 { transform: rotate(202.5deg); }
.segment-6 span { left: 15%; top: 50%; }
.segment-7 { transform: rotate(247.5deg); }
.segment-7 span { left: 20%; top: 35%; }
.segment-8 { transform: rotate(292.5deg); }
.segment-8 span { left: 10%; top: 55%; }

.spin-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C9A227, #FFD700);
    border: 4px solid #1a1a1a;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 5;
}

.spin-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(201, 162, 39, 0.5);
}

.spin-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: translate(-50%, -50%);
}

.spin-btn.spinning {
    animation: btn-pulse 0.3s ease infinite;
}

@keyframes btn-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(0.95); }
}

.game-result {
    text-align: center;
    margin-top: 30px;
    animation: fadeInUp 0.5s ease;
}

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

.result-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.result-content h3.win {
    color: #25D366;
}

.result-content h3.partial {
    color: #F59E0B;
}

.result-content h3.lose {
    color: #888;
}

.result-content p {
    color: #aaa;
    font-size: 1rem;
}

.game-won-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    animation: bounce-in 0.5s ease;
}

.game-won-badge svg {
    width: 24px;
    height: 24px;
}

@keyframes bounce-in {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.game-hidden {
    display: none !important;
}


@media (max-width: 768px) {
    .golden-bill-game {
        padding: 30px 20px;
    }
    
    .game-header h2 {
        font-size: 1.5rem;
    }
    
    .wheel-container {
        width: 250px;
        height: 250px;
    }
    
    .spin-btn {
        width: 65px;
        height: 65px;
        font-size: 0.85rem;
    }
    
    .wheel-container-compact {
        width: 150px;
        height: 150px;
    }
    
    .spin-btn-compact {
        width: 40px;
        height: 40px;
        font-size: 0.6rem;
    }
}

@media (max-width: 768px) {
    .scroll-btn {
        display: none;
    }
    
    .recommended-scroll {
        padding: 10px 0;
    }
    
    .recommended-card {
        width: 250px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        padding: 20px;
    }
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 25px;
    font-weight: 500;
}

.footer-links ul li {
    margin-bottom: 14px;
}

.footer-links ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* ================================
   ANIMATIONS
   ================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
}

@media (max-width: 1024px) {
    .hero-slide-content {
        padding: 0 50px;
    }
    
    .cart-item {
        grid-template-columns: 100px 1fr;
        gap: 20px;
    }
    
    .cart-item-quantity,
    .cart-item-price,
    .cart-item-remove {
        grid-column: 2;
    }
    
    .checkout-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding-top: 100px !important;
        padding-bottom: 40px !important;
    }
    
    .checkout-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    .checkout-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .checkout-form,
    .checkout-summary {
        padding: 20px 15px !important;
        border-radius: 15px;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .checkout-form h2,
    .checkout-summary h2 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .bank-details {
        padding: 15px 12px;
        margin: 20px 0;
        border-radius: 12px;
    }
    
    .bank-details h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .bank-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding: 10px 0;
    }
    
    .bank-info strong {
        font-size: 0.85rem;
        word-break: break-all;
    }
    
    .btn-whatsapp {
        padding: 14px 18px;
        font-size: 0.85rem;
    }
    
    .form-group {
        margin-bottom: 18px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 14px 12px;
        font-size: 16px;
    }
    
    .form-group label {
        font-size: 0.75rem;
    }
    
    .summary-row {
        font-size: 0.85rem;
    }
    
    .order-items {
        max-height: 180px;
    }
    
    .nav-container {
        padding: 15px 25px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 30px 0;
        transform: translateY(-150%);
        transition: var(--transition);
        border-bottom: 1px solid var(--gray-light);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-link {
        display: block;
        padding: 18px 35px;
        border-bottom: 1px solid var(--gray-light);
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-slide-content {
        padding: 0 30px;
        max-width: 100%;
    }
    
    .hero-slide-overlay {
        background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    }
    
    .hero-slider-nav {
        left: 30px;
        bottom: 30px;
    }
    
    .exclusive-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 25px;
    }
    
    .category-tabs {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cart-item-image {
        margin: 0 auto;
    }
    
    .cart-item-price {
        text-align: center;
    }
    
    .cart-summary {
        margin: 0 auto;
    }
    
    .section {
        padding: 80px 0;
    }
}

@media (max-width: 600px) {
    .checkout-section {
        padding: 25px 0 !important;
        padding-top: 100px !important;
    }

    .checkout-form,
    .checkout-summary {
        padding: 18px !important;
    }

    .container {
        width: 92%;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 16px 35px;
        font-size: 0.8rem;
    }
    
    .exclusive-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-image {
        height: 350px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .checkout-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .checkout-grid {
        gap: 25px !important;
    }
    
    .checkout-form,
    .checkout-summary {
        padding: 18px !important;
    }
    
    .checkout-form h2,
    .checkout-summary h2 {
        font-size: 1.2rem;
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .bank-details {
        padding: 15px 12px;
        margin: 20px 0;
        border-radius: 10px;
    }
    
    .bank-details h3 {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .bank-info {
        padding: 10px 0;
    }
    
    .bank-info span {
        font-size: 0.8rem;
    }
    
    .bank-info strong {
        font-size: 0.85rem;
    }
    
    .btn-whatsapp {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .btn-whatsapp svg {
        width: 18px;
        height: 18px;
    }
    
    .order-items {
        max-height: 200px;
    }
    
    .order-item {
        padding: 12px 0;
    }
    
    .order-item-name {
        font-size: 0.85rem;
    }
    
    .summary-row {
        font-size: 0.85rem;
        padding: 8px 0;
    }
    
    .summary-row.total {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

.page-header {
    padding: 160px 0 70px;
    text-align: center;
    background: var(--cream);
}

.page-header h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    margin-bottom: 15px;
    font-weight: 400;
}

.page-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

@media (max-width: 420px) {
    .checkout-form,
    .checkout-summary {
        padding: 15px !important;
    }
}

html, body {
    overflow-x: hidden !important;
}
