@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --bg-body: #0a0a0a;
    --bg-section: #0f1a0f;
    --bg-section-alt: #0d160d;
    --bg-card: rgba(15, 26, 15, 0.85);
    --bg-card-solid: #111f11;
    --bg-card-hover: rgba(20, 35, 20, 0.95);
    --bg-input: rgba(255,255,255,0.04);

    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-300: #86efac;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #166534;
    --green-900: #14532d;

    --primary: #22c55e;
    --primary-light: #4ade80;
    --primary-glow: rgba(34, 197, 94, 0.25);
    --primary-subtle: rgba(34, 197, 94, 0.08);

    --text-white: #ffffff;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dark: #64748b;

    --border: rgba(255,255,255,0.06);
    --border-green: rgba(34, 197, 94, 0.15);
    --border-green-hover: rgba(34, 197, 94, 0.4);

    --font-serif: 'DM Serif Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --font-mono: 'Space Grotesk', monospace;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 40px rgba(34, 197, 94, 0.1);

    --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: 0.15s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-body);
    color: var(--text-light);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font-family: var(--font-sans); cursor: pointer; border: none; outline: none; background: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb { background: var(--green-800); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ==============================
   LAYOUT
   ============================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-view { display: none; }
.page-view.active { display: block; }

/* ==============================
   HEADER / NAVIGATION
   ============================== */
header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--text-white);
}

.logo-img {
    height: 54px;
    width: auto;
    object-fit: contain;
}

.logo i { color: var(--primary); font-size: 1.1rem; }
.logo span { color: var(--primary); }

nav ul {
    display: flex;
    gap: 2.25rem;
    align-items: center;
}

nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition-fast);
    position: relative;
}

nav a:hover, nav a.active {
    color: var(--text-white);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    padding: 0.65rem 1.75rem;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(34,197,94,0.25);
}

.btn-outline {
    border: 1.5px solid var(--border);
    color: var(--text-white);
    background: transparent;
}

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

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.82rem; }
.btn-xs { padding: 0.35rem 0.85rem; font-size: 0.75rem; }

.cart-trigger {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.05rem;
    transition: var(--transition);
}

.cart-trigger:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

/* ==============================
   HERO SECTION
   ============================== */
.hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-body) 100%);
    border-bottom: 1px solid var(--border);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-subtle);
    border: 1px solid var(--border-green);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.75rem;
}

.hero-badge i { font-size: 0.7rem; }

.hero-title {
    font-family: var(--font-serif);
    font-size: 3.75rem;
    line-height: 1.15;
    font-weight: 400;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: italic;
    color: var(--primary-light);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2.25rem;
}

.hero-buttons { display: flex; gap: 1rem; margin-bottom: 3rem; }

.hero-stats {
    display: flex;
    gap: 3.5rem;
}

.hero-stat-item h4 {
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
}

.hero-stat-item h4 span { color: var(--primary); }

.hero-stat-item p {
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-top: 0.15rem;
}

.hero-visual {
    position: relative;
    height: 520px;
}

.canvas3d-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.canvas-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-mono);
    color: var(--primary);
    font-size: 0.9rem;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-green);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.canvas-hint {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.canvas-hint span { color: var(--primary-light); }

/* ==============================
   BRAND TRUST LOGOS
   ============================== */
.brands-section {
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
    background: var(--bg-body);
}

.brands-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.brands-label {
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-bottom: 1.75rem;
    letter-spacing: 0.05em;
}

.brands-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    opacity: 0.5;
}

.brands-logos span {
    font-family: var(--font-mono);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* ==============================
   SECTION HEADERS
   ============================== */
.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.section-eyebrow::before,
.section-eyebrow::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--border-green);
}

.section-title {
    font-family: var(--font-serif);
    font-size: 2.75rem;
    color: var(--text-white);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.section-title em {
    font-style: italic;
    color: var(--primary-light);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
}

/* ==============================
   CATALOG / PRODUCTS
   ============================== */
.catalog-section {
    padding: 6rem 0;
    background: var(--bg-body);
}

/* ==============================
   GALLERY
   ============================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.gallery-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1 / 1;
}
.gallery-item img,
.gallery-item video,
.gallery-item iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.gallery-item video { background: #000; }
.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 1.6rem;
    pointer-events: none;
}

.catalog-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.filter-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    padding: 0 1rem;
    -webkit-overflow-scrolling: touch;
}

.filter-tabs-wrapper::-webkit-scrollbar { height: 0; display: none; }

.filter-tabs {
    display: inline-flex;
    background: rgba(255,255,255,0.03);
    padding: 0.35rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    gap: 0.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tab {
    padding: 0.55rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    color: var(--text-muted);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    white-space: nowrap;
}

.filter-tab i { font-size: 0.75rem; }

.filter-tab:hover {
    color: var(--text-white);
    background: rgba(255,255,255,0.04);
}

.filter-tab.active {
    background: var(--primary);
    color: #000;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(34, 197, 94, 0.3);
}

.filter-tab.active i { color: #000; }

.tab-count {
    font-size: 0.65rem;
    background: rgba(255,255,255,0.1);
    padding: 0.1rem 0.45rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    min-width: 18px;
    text-align: center;
}

.filter-tab.active .tab-count {
    background: rgba(0,0,0,0.15);
    color: #000;
}

/* Subcategory Filter Row */
.subcategory-filter-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.subcategory-tabs {
    display: inline-flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 1rem;
}

.subcategory-tab {
    padding: 0.45rem 1.1rem;
    font-size: 0.78rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.subcategory-tab:hover {
    color: var(--text-white);
    border-color: var(--primary);
    background: var(--primary-subtle);
}

.subcategory-tab.active {
    background: var(--primary-subtle);
    border-color: var(--primary);
    color: var(--primary);
    font-weight: 600;
}

.subtab-count {
    font-size: 0.6rem;
    background: rgba(255,255,255,0.08);
    padding: 0.08rem 0.4rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    min-width: 16px;
    text-align: center;
}

.subcategory-tab.active .subtab-count {
    background: rgba(34, 197, 94, 0.15);
    color: var(--primary);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}

/* Product Card */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    cursor: pointer;
}

.product-card:hover {
    border-color: var(--border-green-hover);
    box-shadow: var(--shadow-glow);
}

.product-visual {
    height: 220px;
    background: radial-gradient(circle at 50% 40%, #162016 0%, #0a0f0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.product-visual::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg-card), transparent);
    pointer-events: none;
}

.product-thumb-can {
    width: 70px;
    height: 110px;
    background: linear-gradient(145deg, #1a2a1a 0%, #0a120a 100%);
    border-radius: 10px;
    border: 1.5px solid var(--border);
    position: relative;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.product-card:hover .product-thumb-can {
    transform: translateZ(40px) scale(1.08);
}

.product-thumb-lid {
    position: absolute;
    top: -10px;
    left: 8%;
    width: 84%;
    height: 10px;
    border-radius: 3px 3px 0 0;
}

.product-thumb-label {
    position: absolute;
    bottom: 12px;
    left: 8%;
    width: 84%;
    height: 60px;
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0.2rem;
}

.product-thumb-label-tag {
    font-size: 0.35rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
}

.product-thumb-label-text {
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.15;
    margin-top: 0.05rem;
    color: var(--text-white);
}

.product-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border);
    padding: 0.15rem 0.6rem;
    font-size: 0.65rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-muted);
}

.product-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-badges {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.product-category {
    font-size: 0.7rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.product-subcategory-badge {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
    background: rgba(255,255,255,0.06);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
}

.product-title {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    line-height: 1.3;
}

.product-desc-short {
    font-size: 0.78rem;
    color: var(--text-dark);
    line-height: 1.45;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-stars {
    display: flex;
    gap: 0.1rem;
    font-size: 0.75rem;
    color: #eab308;
}

.product-stars .fa-regular { color: var(--text-dark); }

.product-reviews-count {
    font-size: 0.72rem;
    color: var(--text-dark);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    gap: 0.75rem;
}

.btn-view-details {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    padding: 0.45rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-green);
    background: var(--primary-subtle);
    transition: var(--transition);
    cursor: pointer;
}

.btn-view-details:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    transform: translateY(-1px);
}

.btn-card-add {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-card-add:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

/* ==============================
   FEATURES SECTION
   ============================== */
.features-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-body) 100%);
    border-top: 1px solid var(--border);
}

.features-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem 1.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--border-green-hover);
    transform: translateY(-4px);
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--primary-subtle);
    border: 1px solid var(--border-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
}

.feature-card h3 {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==============================
   TESTIMONIALS
   ============================== */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg-body);
    border-top: 1px solid var(--border);
}

.testimonials-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
}

.testimonial-stars {
    color: #eab308;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.15rem;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-subtle);
    border: 1px solid var(--border-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--primary);
}

.testimonial-info h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
}

.testimonial-info p {
    font-size: 0.75rem;
    color: var(--text-dark);
}

/* ==============================
   NEWSLETTER
   ============================== */
.newsletter-section {
    padding: 6rem 0;
}

.newsletter-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.newsletter-card {
    background: linear-gradient(135deg, var(--green-900) 0%, #0a1a0a 100%);
    border: 1px solid var(--border-green);
    border-radius: var(--radius-xl);
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-card h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.newsletter-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 520px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    background: rgba(0,0,0,0.4);
    border: 1px solid var(--border);
    color: var(--text-white);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition);
}

.newsletter-form input::placeholder { color: var(--text-dark); }
.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(34,197,94,0.1);
}

/* ==============================
   FOOTER
   ============================== */
footer {
    background: var(--bg-body);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 1rem 0 1.5rem;
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.footer-col h4 {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 0.3rem 0;
    transition: var(--transition-fast);
}

.footer-col a:hover { color: var(--primary); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-dark);
}

/* ==============================
   PRODUCT DETAILS MODAL
   ============================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content-wrapper {
    background: var(--bg-card-solid);
    border: 1px solid var(--border-green);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 1050px;
    display: flex;
    overflow: hidden;
    max-height: 90vh;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5), var(--shadow-glow);
    transform: scale(0.96) translateY(10px);
    transition: transform 0.4s cubic-bezier(0.25,0.8,0.25,1);
}

.modal-overlay.active .modal-content-wrapper {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.modal-visual-pane {
    flex: 1;
    background: radial-gradient(circle at center, #14231a 0%, #060a06 100%);
    position: relative;
    min-height: 450px;
}

.modal-canvas-container { width: 100%; height: 100%; min-height: 400px; }

.modal-info-pane {
    flex: 1.2;
    padding: 2.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.modal-brand {
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.modal-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.modal-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.stars { color: #eab308; display: flex; gap: 0.1rem; font-size: 0.85rem; }
.rating-value { font-size: 0.8rem; color: var(--text-dark); }

.modal-price {
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.modal-price span { color: var(--primary); }

.modal-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.selector-group { margin-bottom: 1.5rem; }

.selector-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}

.selector-options { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.flavor-option, .size-option {
    background: var(--bg-input);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.flavor-option:hover, .size-option:hover { border-color: var(--primary); color: var(--text-white); }

.flavor-option.active, .size-option.active {
    background: var(--primary-subtle);
    border-color: var(--primary);
    color: var(--primary);
}

.qty-purchase-bar {
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.quantity-picker {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

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

.qty-input {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--text-white);
    text-align: center;
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.9rem;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.btn-add-modal { flex-grow: 1; }

/* ==============================
   CART DRAWER
   ============================== */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(5px);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-drawer-overlay.active { opacity: 1; pointer-events: auto; }

.cart-drawer {
    position: fixed;
    top: 0;
    right: -460px;
    width: 460px;
    height: 100%;
    background: var(--bg-card-solid);
    border-left: 1px solid var(--border);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25,0.8,0.25,1);
}

.cart-drawer.active { right: 0; }

.cart-header {
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    color: var(--text-white);
}

.cart-header h2 span { color: var(--primary); }

.btn-cart-close {
    color: var(--text-muted);
    font-size: 1.2rem;
    padding: 0.25rem;
    transition: var(--transition-fast);
}

.btn-cart-close:hover { color: var(--primary); }

.cart-items-list {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cart-empty-state {
    text-align: center;
    margin: auto 0;
    color: var(--text-dark);
}

.cart-empty-state i { font-size: 2.5rem; margin-bottom: 1rem; display: block; }

.cart-item {
    display: flex;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1.25rem;
}

.cart-item:last-child { border-bottom: none; padding-bottom: 0; }

.cart-item-thumb {
    width: 52px;
    height: 68px;
    background: radial-gradient(circle, #1a2a1a 0%, #0a0f0a 100%);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-item-thumb-can {
    width: 20px;
    height: 36px;
    background: #222;
    border-radius: 3px;
    border: 1px solid var(--border);
    position: relative;
}

.cart-item-thumb-lid {
    position: absolute;
    top: -3px;
    left: 12%;
    width: 76%;
    height: 3px;
    border-radius: 1px 1px 0 0;
}

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

.cart-item-name {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 0.15rem;
}

.cart-item-meta {
    font-size: 0.7rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cart-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 4px;
    transform: scale(0.85);
    transform-origin: left center;
}

.cart-item-price {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-white);
}

.btn-item-remove {
    color: var(--text-dark);
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

.btn-item-remove:hover { color: #ef4444; }

.cart-footer {
    padding: 1.5rem 1.75rem;
    border-top: 1px solid var(--border);
    background: rgba(0,0,0,0.3);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.cart-summary-row.total {
    font-size: 1.15rem;
    font-weight: 700;
    font-family: var(--font-mono);
    color: var(--text-white);
    border-top: 1px solid var(--border);
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    margin-bottom: 1.25rem;
}

.cart-summary-row.total span { color: var(--primary); }
.btn-checkout { width: 100%; }

/* Checkout Pane */
.checkout-pane {
    position: absolute;
    top: 0; right: -460px;
    width: 460px;
    height: 100%;
    background: #0d0d0d;
    border-left: 1px solid var(--border);
    z-index: 1210;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.25,0.8,0.25,1);
}

.checkout-pane.active { right: 0; }

.form-group { margin-bottom: 1rem; }

.form-group label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 0.4rem;
}

.form-input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--border);
    color: var(--text-white);
    padding: 0.7rem 1rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.08);
}

.form-input::placeholder { color: var(--text-dark); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

/* Success Animation */
.success-screen {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    height: 100%;
    position: absolute;
    inset: 0;
    background: #0a0a0a;
    z-index: 1300;
}

.success-screen.active { display: flex; }

.success-icon {
    width: 72px;
    height: 72px;
    background: var(--primary-subtle);
    border: 2px solid var(--primary);
    border-radius: 50%;
    color: var(--primary);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    box-shadow: 0 0 40px rgba(34,197,94,0.2);
    animation: scaleIn 0.5s cubic-bezier(0.175,0.885,0.32,1.275);
}

@keyframes scaleIn {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.success-screen h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.success-screen p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    max-width: 300px;
}

/* ==============================
   ADMIN PANEL
   ============================== */
.admin-view-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 2rem 6rem;
    display: flex;
    gap: 1.5rem;
}

.admin-sidebar {
    width: 240px;
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    height: fit-content;
    position: sticky;
    top: 80px;
}

.admin-menu { display: flex; flex-direction: column; gap: 0.3rem; }

.admin-menu-item button {
    width: 100%;
    padding: 0.7rem 1rem;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.admin-menu-item button:hover { color: var(--text-white); background: rgba(255,255,255,0.02); }

.admin-menu-item.active button {
    background: var(--primary-subtle);
    border: 1px solid var(--border-green);
    color: var(--primary);
    font-weight: 600;
}

.admin-content-pane {
    flex-grow: 1;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem;
    min-height: 550px;
}

.admin-pane { display: none; }
.admin-pane.active { display: block; }

.pane-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.pane-title h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-white);
}

.pane-title p {
    font-size: 0.8rem;
    color: var(--text-dark);
    margin-top: 0.15rem;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}

.stat-card-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--text-dark);
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.stat-card-value {
    font-family: var(--font-mono);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--text-white);
}

.stat-card-value span { color: var(--primary); }

.table-responsive { overflow-x: auto; }

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.admin-table th {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border);
    font-family: var(--font-mono);
    text-transform: uppercase;
    font-size: 0.7rem;
    color: var(--text-dark);
    font-weight: 600;
    text-align: left;
    letter-spacing: 0.03em;
}

.admin-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
    vertical-align: middle;
}

.admin-table tr:hover { background: rgba(255,255,255,0.01); }

.product-row-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.mini-can-color {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 0 6px currentColor;
}

.badge {
    padding: 0.2rem 0.55rem;
    font-size: 0.68rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.badge-pending { background: rgba(234,179,8,0.12); color: #eab308; border: 1px solid rgba(234,179,8,0.25); }
.badge-shipped { background: rgba(59,130,246,0.12); color: #3b82f6; border: 1px solid rgba(59,130,246,0.25); }
.badge-delivered { background: rgba(34,197,94,0.12); color: #22c55e; border: 1px solid rgba(34,197,94,0.25); }

.table-actions { display: flex; gap: 0.35rem; }

.btn-action {
    width: 30px; height: 30px;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    color: var(--text-dark);
    transition: var(--transition-fast);
}

.btn-action:hover { color: var(--text-white); border-color: var(--text-muted); }
.btn-action.edit:hover { color: var(--primary); border-color: var(--primary); }
.btn-action.delete:hover { color: #ef4444; border-color: #ef4444; }

.admin-modal-body {
    padding: 1.75rem;
    max-height: 80vh;
    overflow-y: auto;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 1100px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { height: 400px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .modal-content-wrapper { flex-direction: column; }
    .modal-visual-pane { min-height: 280px; }
    .admin-view-wrapper { flex-direction: column; }
    .admin-sidebar { width: 100%; position: static; }
}

@media (max-width: 640px) {
    .nav-wrapper > nav { display: none; }
    .hero-title { font-size: 2.5rem; }
    .product-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cart-drawer { width: 100%; right: -100%; }
    .newsletter-card { padding: 2.5rem 1.5rem; }
    .newsletter-form { flex-direction: column; }
    .brands-logos { gap: 2rem; }
}

/* ==============================
   CSS 3D ANIMATIONS & TRANSITIONS
   ============================== */
.animate-fade-down { animation: fadeDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-slide-up { opacity: 0; animation: slideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.animate-slide-left { opacity: 0; animation: slideLeft 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideLeft {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* CSS 3D Hero Composition */
.css3d-hero-composition {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.css3d-card {
    position: absolute;
    width: 260px;
    height: 380px;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #162a16 0%, #0a140a 100%);
    border: 1px solid var(--border-green);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.css3d-card.card-back {
    transform: translateZ(-100px) translateX(60px) rotateY(15deg) scale(0.9);
    opacity: 0.6;
    background: linear-gradient(145deg, #0a140a 0%, #050a05 100%);
    border-color: var(--border);
}

.css3d-card.card-front {
    transform: translateZ(50px) translateX(-40px) rotateY(-10deg);
    z-index: 2;
}

.css3d-hero-composition:hover .card-back {
    transform: translateZ(-80px) translateX(80px) rotateY(25deg) scale(0.9);
}

.css3d-hero-composition:hover .card-front {
    transform: translateZ(80px) translateX(-60px) rotateY(-20deg);
    box-shadow: var(--shadow-glow);
}

.floating-badge {
    position: absolute;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-green);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    color: var(--text-white);
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    animation: float 4s ease-in-out infinite;
}

.floating-badge i { color: var(--primary); }
.badge-1 { top: 15%; right: 5%; animation-delay: 0s; }
.badge-2 { bottom: 20%; left: 0%; animation-delay: -2s; }

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* CSS Modal Canister */
.css3d-modal-product {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 800px;
}

.css-canister {
    width: 160px;
    height: 240px;
    background: linear-gradient(90deg, #111 0%, #333 20%, #111 80%, #050505 100%);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.8);
    transition: transform 0.5s ease;
}

.css3d-modal-product:hover .css-canister {
    transform: rotateY(15deg) scale(1.05);
}

.css-canister-lid {
    position: absolute;
    top: -20px;
    left: 5%;
    width: 90%;
    height: 30px;
    background: var(--primary);
    border-radius: 5px 5px 0 0;
    box-shadow: inset 0 5px 10px rgba(255,255,255,0.2), 0 5px 15px rgba(0,0,0,0.5);
}

.css-canister-label {
    position: absolute;
    bottom: 30px;
    left: 5%;
    width: 90%;
    height: 140px;
    background: #0a0a0a;
    border: 2px solid var(--primary);
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    text-align: center;
}

.css-label-brand {
    font-size: 0.65rem;
    font-family: var(--font-mono);
    color: var(--primary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.css-label-title {
    font-size: 1.1rem;
    color: #fff;
    font-family: var(--font-serif);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.1;
}

/* =========================================
   Gallery Section
   ========================================= */
.gallery-section {
    padding: var(--section-spacing) 0;
    background: var(--bg-dark);
}

.gallery-inner {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    background: var(--bg-card);
}

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

.gallery-item video,
.gallery-item iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item video {
    background: #000;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--primary);
    transform: translateY(20px) scale(0.8);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    filter: drop-shadow(0 0 10px rgba(220, 20, 60, 0.5));
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

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

/* Masonry-like layout using grid - larger items */
.gallery-item:nth-child(1) {
    grid-column: span 6;
    height: 400px;
}
.gallery-item:nth-child(2) {
    grid-column: span 6;
    height: 400px;
}
.gallery-item:nth-child(3) {
    grid-column: span 4;
    height: 350px;
}
.gallery-item:nth-child(4) {
    grid-column: span 4;
    height: 350px;
}
.gallery-item:nth-child(5) {
    grid-column: span 4;
    height: 350px;
}
.gallery-item:nth-child(6) {
    grid-column: span 6;
    height: 380px;
}
.gallery-item:nth-child(7) {
    grid-column: span 6;
    height: 380px;
}
.gallery-item:nth-child(8) {
    grid-column: span 4;
    height: 350px;
}
.gallery-item:nth-child(9) {
    grid-column: span 4;
    height: 350px;
}
.gallery-item:nth-child(10) {
    grid-column: span 4;
    height: 350px;
}
.gallery-item:nth-child(11) {
    grid-column: span 6;
    height: 380px;
}
.gallery-item:nth-child(12) {
    grid-column: span 6;
    height: 380px;
}
.gallery-item:nth-child(13) {
    grid-column: span 4;
    height: 350px;
}
.gallery-item:nth-child(14) {
    grid-column: span 4;
    height: 350px;
}
.gallery-item:nth-child(15) {
    grid-column: span 4;
    height: 350px;
}
.gallery-item:nth-child(16) {
    grid-column: span 6;
    height: 380px;
}
.gallery-item:nth-child(17) {
    grid-column: span 6;
    height: 380px;
}

@media (max-width: 900px) {
    .gallery-item {
        grid-column: span 12 !important;
        height: 300px !important;
    }
}

