/* ==========================================================================
   STYLE SYSTEM: JUNINHO CARDOSO MULTIMARCAS (v2 - Enhanced UI & Animations)
   Theme: Premium Dark, Neon Streetwear & Gold Crown Identity
   ========================================================================== */

/* Design Tokens & Variables */
:root {
    /* Color Palette */
    --bg-primary: #050507; /* Deeper black to match logo background */
    --bg-secondary: #0a0a0e;
    --bg-tertiary: #121218;
    --card-bg: rgba(18, 18, 24, 0.6);
    --card-hover-bg: rgba(25, 25, 34, 0.85);
    
    --color-text-main: #ffffff;
    --color-text-muted: #a4a4b5;
    --color-text-dark: #050507;
    
    /* Logo Identity Gradients & Accents */
    /* Inspired by the Instagram-style ring and the gold crown */
    --gradient-instagram: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    --gradient-primary: var(--gradient-instagram);
    --gradient-glow: 0 0 25px rgba(220, 39, 67, 0.5);
    
    --color-gold: #d4af37; /* Crown gold */
    --gradient-gold: linear-gradient(135deg, #f9d423 0%, #ff4e50 100%);
    
    /* Functional Colors */
    --primary-color: #dc2743;
    --secondary-color: #bc1888;
    --accent-color: #f09433;
    --success-color: #00d26a;
    --whatsapp-color: #25d366;
    
    /* Glassmorphism System */
    --glass-bg: rgba(10, 10, 14, 0.7);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-border-hover: rgba(255, 255, 255, 0.15);
    --glass-blur: blur(20px);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Syne', sans-serif; /* For impactful titles like "CARDOSO" */
    
    /* Shadows & Border Radius */
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-full: 9999px;
    
    --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 15px 40px rgba(0, 0, 0, 0.6);
    --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.8);
    
    /* Layout & Animation */
    --header-height: 85px;
    --header-height-scrolled: 70px;
    --transition-fast: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-normal: 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-slow: 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
    /* Mobile optimization: minimum touch target */
    min-height: 44px; 
}

ul {
    list-style: none;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-instagram);
}

::selection {
    background: var(--color-gold);
    color: var(--bg-primary);
}

/* ==========================================================================
   COMPOUND ANIMATIONS & KEYFRAMES
   ========================================================================== */
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

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

@keyframes pulseGlow {
    0% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.2); }
    50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.6); }
    100% { box-shadow: 0 0 10px rgba(212, 175, 55, 0.2); }
}

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

@keyframes clipReveal {
    from { clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%); }
    to { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 120px 0;
}

.grid {
    display: grid;
    gap: 32px;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.text-center { text-align: center; }
.mt-4 { margin-top: 32px; }
.w-full { width: 100%; }

/* Buttons with Compound Hover */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
    min-height: 48px; /* Touch target */
    padding: 12px 28px;
}

.btn-primary {
    background: var(--gradient-instagram);
    background-size: 200% auto;
    color: white;
    box-shadow: var(--gradient-glow);
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(220, 39, 67, 0.6);
}

.btn-primary i {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary:hover i {
    transform: translateX(4px) scale(1.1);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--color-text-main);
    backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
    min-height: 56px;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-instagram);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

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

/* Typography Hierarchy */
.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 2px;
    padding: 8px 18px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: var(--radius-full);
    color: var(--color-gold);
    margin-bottom: 24px;
    text-transform: uppercase;
    animation: pulseGlow 3s infinite;
}

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

.section-tag {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--primary-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-tag::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background: var(--color-gold);
}

.section-title {
    font-family: var(--font-accent);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 300;
}

/* Visual identity: The Instagram Ring */
.logo-ring {
    border-radius: 50%;
    padding: 3px;
    background: var(--gradient-instagram);
    display: inline-block;
}

.logo-ring img {
    border: 3px solid var(--bg-primary);
    border-radius: 50%;
}

/* ==========================================================================
   HEADER / NAVIGATION (Enhanced Mobile)
   ========================================================================== */
.header {
    height: var(--header-height);
    background: rgba(5, 5, 7, 0.8);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    transition: all var(--transition-normal);
}

.header.scrolled {
    height: var(--header-height-scrolled);
    background: rgba(5, 5, 7, 0.98);
    border-bottom-color: rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo-wrapper {
    transition: var(--transition-normal);
}

.header.scrolled .nav-logo-wrapper {
    transform: scale(0.85);
}

.nav-logo {
    height: 44px;
    width: 44px;
    object-fit: cover;
}

.logo-text {
    font-family: var(--font-accent);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: var(--color-gold);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    padding: 8px 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: var(--transition-fast);
}

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-btn {
    height: 48px;
    width: 48px;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition-fast);
}

.cart-btn i {
    font-size: 1.4rem;
    transition: transform var(--transition-fast);
}

.cart-btn:hover {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    color: var(--color-gold);
    transform: scale(1.05);
}

.cart-btn:hover i {
    transform: rotate(-10deg);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    height: 22px;
    min-width: 22px;
    padding: 0 4px;
    border-radius: var(--radius-full);
    background: var(--gradient-instagram);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(220, 39, 67, 0.5);
    border: 2px solid var(--bg-primary);
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    color: var(--color-text-main);
    z-index: 101; /* Above mobile menu */
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   HERO SECTION (Parallax & Float)
   ========================================================================== */
.hero-section {
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(188, 24, 136, 0.15) 0%, rgba(240, 148, 51, 0.08) 40%, rgba(5, 5, 7, 1) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Staggered entrance for hero content */
.hero-content > * {
    opacity: 0;
    animation: slideUpFade 0.8s ease forwards;
}

.hero-content .badge-tag { animation-delay: 0.1s; }
.hero-content .hero-title { animation-delay: 0.2s; }
.hero-content .hero-description { animation-delay: 0.3s; }
.hero-content .hero-actions { animation-delay: 0.4s; }
.hero-content .hero-stats { animation-delay: 0.5s; }

.hero-title {
    font-family: var(--font-accent);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 24px;
    text-transform: uppercase;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-title .crown-icon {
    color: var(--color-gold);
    font-size: 3.5rem;
    vertical-align: middle;
    margin-bottom: 10px;
    display: inline-block;
    animation: floatY 4s ease-in-out infinite;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--glass-border);
    padding-top: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 4px;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Visual Showcase */
.hero-visual {
    opacity: 0;
    animation: clipReveal 1s cubic-bezier(0.25, 1, 0.5, 1) 0.4s forwards;
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
}

/* Float animation for the main visual */
.main-card-display {
    height: 540px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-tertiary);
    position: relative;
    border: 1px solid var(--glass-border);
    animation: floatY 6s ease-in-out infinite;
}

.main-card-display::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: var(--gradient-instagram);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 10;
    pointer-events: none;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-position: center 15%;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.main-card-display:hover .hero-img {
    transform: scale(1.08);
}

.floating-badge {
    position: absolute;
    background: rgba(5, 5, 7, 0.85);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-md);
    z-index: 2;
    transition: var(--transition-normal);
}

.badge-top-right {
    top: 30px;
    right: -20px;
    border-color: var(--primary-color);
    color: #fff;
}
.badge-top-right i { color: var(--primary-color); }

.badge-bottom-left {
    bottom: 30px;
    left: -20px;
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.main-card-display:hover .badge-top-right { transform: translate(10px, -10px); }
.main-card-display:hover .badge-bottom-left { transform: translate(-10px, 10px); }

.hero-thumbnails {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-normal);
    background: var(--bg-tertiary);
    opacity: 0.5;
    padding: 3px; /* for the ring effect */
}

.thumb img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.thumb:hover, .thumb.active {
    background: var(--gradient-instagram); /* Instagram ring effect */
    opacity: 1;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.thumb:hover img, .thumb.active img {
    border: 2px solid var(--bg-primary);
}

/* ==========================================================================
   ADVANTAGES SECTION (Staggered Hover)
   ========================================================================== */
.advantages-section {
    background: var(--bg-secondary);
    position: relative;
}

.advantage-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition-normal);
    backdrop-filter: var(--glass-blur);
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-instagram);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.advantage-card:hover {
    background: var(--card-hover-bg);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212, 175, 55, 0.3);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.card-icon-wrapper {
    height: 70px;
    width: 70px;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition-normal);
    position: relative;
}

.advantage-card:hover .card-icon-wrapper {
    background: var(--gradient-instagram);
    border-color: transparent;
    box-shadow: var(--gradient-glow);
    transform: rotateY(180deg);
}

.card-icon-wrapper i {
    font-size: 2.2rem;
    color: var(--color-gold);
    transition: var(--transition-normal);
}

.advantage-card:hover .card-icon-wrapper i {
    color: white;
    transform: rotateY(180deg); /* Counter rotate to keep icon upright */
}

.advantage-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.advantage-card .card-desc {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* ==========================================================================
   CATALOG SECTION (Enhanced Cards)
   ========================================================================== */
.catalog-controls {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 50px;
}

.search-box-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.search-box-wrapper input {
    width: 100%;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    padding: 18px 20px 18px 56px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 1rem;
    color: white;
    transition: var(--transition-fast);
}

.search-box-wrapper input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
    background: var(--bg-primary);
}

.search-icon {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--color-text-muted);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 12px 28px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-tab:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.filter-tab.active {
    background: var(--gradient-instagram);
    color: white;
    border-color: transparent;
    box-shadow: var(--gradient-glow);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    min-height: 400px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
    height: 100%;
    position: relative;
}

/* Glow effect on hover */
.product-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: var(--gradient-instagram);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0;
    transition: var(--transition-normal);
}

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

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

.product-img-wrapper {
    position: relative;
    height: 350px;
    background: var(--bg-tertiary);
    overflow: hidden;
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-position: center;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* Subtle overlay on hover for image */
.product-img-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 50%);
    opacity: 0.5;
    z-index: 1;
}

.product-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: var(--color-gold);
    color: var(--bg-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.product-details {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: var(--bg-primary); /* Solid bg to cover the glow underneath */
    border-radius: 0 0 calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px);
    z-index: 2;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.product-category {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-price {
    font-family: var(--font-accent);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gold);
}

.product-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--color-text-main);
    transition: var(--transition-fast);
}

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

/* Size Selector */
.size-selector {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.size-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.size-options {
    display: flex;
    gap: 10px;
}

.size-option-label {
    height: 40px;
    width: 44px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition-fast);
    background: var(--bg-secondary);
}

.size-option-input:checked + .size-option-label {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-gold);
    transform: scale(1.1);
}

.size-option-label:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-add-to-cart {
    margin-top: auto;
    width: 100%;
    padding: 16px;
    font-size: 0.95rem;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--color-text-main);
}

.product-card:hover .btn-add-to-cart {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--bg-primary);
}

.btn-add-to-cart.success {
    background: var(--success-color) !important;
    border-color: var(--success-color) !important;
    color: white !important;
    transform: scale(0.98);
}

/* ==========================================================================
   ABOUT & INSTAGRAM SECTIONS
   ========================================================================== */
.about-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}

.about-visual {
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: 50%;
    padding: 8px;
    background: var(--gradient-instagram);
    animation: gradientShift 5s ease infinite;
    background-size: 200% 200%;
    box-shadow: var(--shadow-lg);
}

.about-img {
    border-radius: 50%;
    border: 8px solid var(--bg-primary);
    width: 100%;
    aspect-ratio: 1/1;
}

/* Crown accent on about image */
.about-visual::after {
    content: '\e140'; /* Phosphor crown icon code */
    font-family: 'Phosphor';
    position: absolute;
    top: -20px;
    right: 20%;
    font-size: 4rem;
    color: var(--color-gold);
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.4));
    animation: floatY 3s ease-in-out infinite;
}

/* Instagram Grid */
.instagram-mock-grid {
    gap: 24px;
}

.instagram-post-card {
    height: 320px;
    border-radius: var(--radius-lg);
}

.instagram-post-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    background: var(--gradient-instagram) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 3;
}

.instagram-post-card:hover::before {
    opacity: 1;
}

.post-overlay {
    background: rgba(5, 5, 7, 0.85);
    backdrop-filter: blur(5px);
}

.post-overlay i {
    background: var(--gradient-instagram);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3rem;
}

/* ==========================================================================
   LOCATION MAP CSS ART (Enhanced)
   ========================================================================== */
.map-card-visual {
    height: 520px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.map-preview-bg {
    background-color: #08080a;
    background-image: 
        linear-gradient(rgba(212, 175, 55, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.map-road {
    background: rgba(255,255,255,0.02);
    box-shadow: inset 0 0 10px rgba(0,0,0,0.5);
}

.marker-logo {
    border-color: var(--color-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.map-marker-glow {
    background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0) 70%);
}

.marker-info-tooltip {
    border-color: var(--color-gold);
}
.marker-info-tooltip::after {
    border-right-color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}
.marker-info-tooltip span {
    color: var(--color-gold);
}

/* ==========================================================================
   CART DRAWER & MOBILE MENU (Compound Animations)
   ========================================================================== */
.cart-drawer-content {
    background: var(--bg-primary);
    border-left: 1px solid rgba(255,255,255,0.1);
}

/* Mobile Menu Fullscreen Overlay */
.nav-menu.active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 7, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100;
    padding: 0;
    transform: translateY(0);
}

.nav-menu .nav-link {
    font-size: 2rem;
    font-family: var(--font-accent);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.nav-menu.active .nav-link {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays added via JS or inline CSS logic in JS */

/* ==========================================================================
   SCROLL REVEAL (Staggered classes)
   ========================================================================== */
.reveal-item {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal-item.revealed {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Add specific delays based on nth-child for grids */
.grid > .reveal-item:nth-child(1) { transition-delay: 0.1s; }
.grid > .reveal-item:nth-child(2) { transition-delay: 0.2s; }
.grid > .reveal-item:nth-child(3) { transition-delay: 0.3s; }
.grid > .reveal-item:nth-child(4) { transition-delay: 0.4s; }

/* ==========================================================================
   MOBILE OPTIMIZATIONS (Refined Breakpoints)
   ========================================================================== */
@media (max-width: 992px) {
    .section-title { font-size: 2.8rem; }
    
    .hero-grid, .about-grid, .location-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-title { font-size: 3.8rem; }
    
    .about-visual {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
        --header-height-scrolled: 60px;
    }
    
    .section-title { font-size: 2.2rem; }
    .hero-title { font-size: 2.8rem; }
    
    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-number { font-size: 2rem; }
    
    .grid-3, .products-grid, .instagram-mock-grid {
        grid-template-columns: 1fr;
    }
    
    .product-img-wrapper { height: 380px; }
    
    /* Bigger touch targets for mobile */
    .filter-tab {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
    
    .size-option-label {
        width: 50px;
        height: 46px;
    }
    
    .btn-add-to-cart {
        padding: 18px;
        font-size: 1.05rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1.05rem;
    }
    
    .cart-drawer-content {
        max-width: 100%; /* Full screen cart on mobile */
    }
}
