/* ========================================
   CSS VARIABLES & RESET
   ======================================== */
:root {
    --bg-primary: #4b2e0f;
    --bg-secondary: #6b3e1f;
    --bg-elevated: rgba(255,255,255,0.04);
    --accent-primary: #fbbf24;
    --accent-secondary: #fde68a;
    --accent-highlight: #fb923c;
    --text-primary: #fff7e6;
    --text-secondary: #fcd34d;
    --text-muted: #fbbf24;
    --glass-bg: rgba(255,255,255,0.04);
    --glass-border: rgba(251,191,36,0.15);
    --glass-hover: rgba(255,255,255,0.08);
    --shadow-soft: 0 4px 24px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(251,191,36,0.08);
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Poppins', 'Inter', sans-serif;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --max-width: 1320px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

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

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

a {
    color: var(--accent-secondary);
    text-decoration: none;
    transition: color var(--transition-base);
}

a:hover {
    color: var(--accent-primary);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

ul {
    list-style: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 32px;
}

.section {
    padding: 110px 0;
}

/* ========================================
   PARTICLE CANVAS
   ======================================== */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* ========================================
   GLASS CARD
   ======================================== */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.glass-card:hover {
    background: var(--glass-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft), var(--shadow-glow);
}

/* ========================================
   HEADER
   ======================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(75, 46, 15, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(251, 191, 36, 0.1);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.scrolled {
    background: rgba(75, 46, 15, 0.92);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
    border-bottom-color: rgba(251, 191, 36, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    flex-shrink: 0;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--accent-primary);
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-list {
    display: flex;
    gap: 8px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: color var(--transition-base), background var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px;
    transition: transform var(--transition-base);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 2px;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu.active {
    pointer-events: all;
    visibility: visible;
}

.mobile-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.mobile-menu.active .mobile-menu-overlay {
    opacity: 1;
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100%;
    background: var(--bg-primary);
    border-left: 1px solid var(--glass-border);
    padding: 24px;
    transform: translateX(100%);
    transition: transform var(--transition-smooth);
    overflow-y: auto;
}

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

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--accent-primary);
    cursor: pointer;
    padding: 8px;
}

.mobile-nav {
    margin-top: 60px;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    transition: color var(--transition-base), background var(--transition-base);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--accent-primary);
    background: var(--glass-bg);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-highlight));
    color: var(--bg-primary);
    box-shadow: 0 4px 16px rgba(251, 191, 36, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.35);
    filter: brightness(1.1);
    color: var(--bg-primary);
}

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

.btn-outline:hover {
    background: rgba(251, 191, 36, 0.1);
    transform: translateY(-2px);
    color: var(--accent-secondary);
}

.btn-sm {
    font-size: 0.8rem;
    padding: 8px 20px;
}

.btn-lg {
    font-size: 1rem;
    padding: 16px 36px;
}

.btn-full {
    width: 100%;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.honeycomb-grid {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(251, 191, 36, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(253, 230, 138, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(251, 146, 60, 0.03) 0%, transparent 50%);
}

.hero-light-overlay {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(251, 191, 36, 0.06) 0%, transparent 70%);
    animation: lightPulse 8s ease-in-out infinite;
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-soft), 0 0 60px rgba(251, 191, 36, 0.05);
    position: relative;
    overflow: hidden;
}

.hero-glass::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(251,191,36,0.2), transparent 40%, transparent 60%, rgba(251,191,36,0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-primary);
    background: rgba(251, 191, 36, 0.1);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.text-accent {
    color: var(--accent-primary);
}

.text-highlight {
    color: var(--accent-highlight);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 247, 230, 0.75);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 247, 230, 0.5);
    font-weight: 500;
}

/* Hero Visual - Hive Illustration */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hive-illustration {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 450px;
}

.hive-tower {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 360px;
}

.hive-module {
    width: 140px;
    height: 90px;
    margin: 0 auto 6px;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.hive-module-1 {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(251, 146, 60, 0.1));
}

.hive-module-2 {
    background: linear-gradient(135deg, rgba(253, 230, 138, 0.12), rgba(251, 191, 36, 0.1));
}

.hive-module-3 {
    background: linear-gradient(135deg, rgba(251, 146, 60, 0.12), rgba(251, 191, 36, 0.08));
}

.hex-pattern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 4px;
    padding: 8px;
    height: 100%;
}

.hex {
    background: rgba(251, 191, 36, 0.15);
    border-radius: 4px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    transition: background var(--transition-base);
}

.hex:nth-child(odd) {
    background: rgba(251, 191, 36, 0.25);
}

.hive-roof {
    width: 0;
    height: 0;
    border-left: 85px solid transparent;
    border-right: 85px solid transparent;
    border-bottom: 40px solid rgba(251, 191, 36, 0.2);
    position: absolute;
    top: -44px;
    left: 50%;
    transform: translateX(-50%);
}

.hive-base {
    width: 160px;
    height: 12px;
    background: rgba(251, 191, 36, 0.2);
    border-radius: 0 0 8px 8px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.bee {
    position: absolute;
    font-size: 1.5rem;
    animation: beeFly 6s ease-in-out infinite;
}

.bee-1 {
    top: 15%;
    right: -30px;
    animation-delay: 0s;
}

.bee-2 {
    top: 45%;
    left: -40px;
    animation-delay: 2s;
}

.bee-3 {
    bottom: 25%;
    right: -20px;
    animation-delay: 4s;
}

.sunbeam {
    position: absolute;
    top: 0;
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.08), transparent);
    border-radius: 0 0 50% 50%;
}

.sunbeam-1 {
    right: 10%;
    width: 60px;
    height: 200px;
    transform: rotate(-15deg);
    opacity: 0.6;
}

.sunbeam-2 {
    right: 25%;
    width: 40px;
    height: 280px;
    transform: rotate(-8deg);
    opacity: 0.4;
}

.sunbeam-3 {
    right: 5%;
    width: 30px;
    height: 150px;
    transform: rotate(-22deg);
    opacity: 0.3;
}

/* ========================================
   PAGE HERO (Sub Pages)
   ======================================== */
.page-hero {
    padding: 160px 0 80px;
    position: relative;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 80%, rgba(251, 191, 36, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 20%, rgba(251, 146, 60, 0.04) 0%, transparent 50%);
}

.page-hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.page-hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 247, 230, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-desc {
    font-size: 1.05rem;
    color: rgba(255, 247, 230, 0.65);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   FEATURES GRID
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    padding: 32px 24px;
    text-align: center;
}

.feature-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-desc {
    font-size: 0.9rem;
    color: rgba(255, 247, 230, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-primary);
    transition: color var(--transition-base);
}

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

/* ========================================
   ABOUT PREVIEW
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image-container {
    padding: 40px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-illustration {
    position: relative;
    width: 100%;
    height: 300px;
}

.city-skyline {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 100%;
    padding-bottom: 20px;
    justify-content: center;
}

.building {
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.08));
    border-radius: 4px 4px 0 0;
    position: relative;
    border: 1px solid rgba(251, 191, 36, 0.15);
}

.b1 { width: 40px; height: 120px; }
.b2 { width: 50px; height: 180px; }
.b3 { width: 45px; height: 220px; }
.b4 { width: 55px; height: 160px; }
.b5 { width: 42px; height: 200px; }
.b6 { width: 48px; height: 140px; }

.rooftop-hive {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 20px;
    background: var(--accent-primary);
    border-radius: 3px 3px 0 0;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.4);
}

.rooftop-hive::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 6px solid var(--accent-primary);
}

.about-sun {
    position: absolute;
    top: 10px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.4), rgba(251, 191, 36, 0.1));
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.3);
    animation: sunGlow 4s ease-in-out infinite;
}

.about-text .section-tag {
    text-align: left;
}

.about-text .section-title {
    text-align: left;
    font-size: 2.2rem;
}

.about-text p {
    color: rgba(255, 247, 230, 0.7);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 28px 0 32px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 14px;
}

.highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.highlight span {
    color: rgba(255, 247, 230, 0.5);
    font-size: 0.85rem;
}

/* ========================================
   PRODUCTS
   ======================================== */
.products-grid,
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    overflow: hidden;
}

.product-image {
    position: relative;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05), rgba(251, 146, 60, 0.03));
    border-bottom: 1px solid var(--glass-border);
}

.product-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    background: var(--accent-primary);
    color: var(--bg-primary);
    letter-spacing: 0.5px;
}

.product-badge.new {
    background: var(--accent-highlight);
}

.product-info {
    padding: 20px 24px 24px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.product-desc {
    font-size: 0.85rem;
    color: rgba(255, 247, 230, 0.55);
    margin-bottom: 16px;
    line-height: 1.5;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

/* Product Illustrations */
.honey-jar {
    position: relative;
    width: 80px;
    height: 100px;
}

.jar-body {
    width: 80px;
    height: 80px;
    background: linear-gradient(180deg, #fbbf24, #f59e0b);
    border-radius: 8px 8px 16px 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 -10px 20px rgba(0,0,0,0.1);
}

.jar-honey {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(180deg, rgba(245, 158, 11, 0.8), #d97706);
    border-radius: 0 0 14px 14px;
}

.honey-jar.light .jar-body {
    background: linear-gradient(180deg, #fde68a, #fbbf24);
}

.honey-jar.light .jar-honey {
    background: linear-gradient(180deg, rgba(253, 230, 138, 0.8), #fbbf24);
}

.jar-label {
    position: relative;
    z-index: 1;
    font-size: 2rem;
}

.jar-lid {
    width: 70px;
    height: 14px;
    background: linear-gradient(180deg, #8b6914, #6b4f10);
    border-radius: 4px 4px 0 0;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.candle-set {
    display: flex;
    align-items: flex-end;
    gap: 16px;
}

.candle {
    background: linear-gradient(180deg, #fde68a, #f59e0b);
    border-radius: 4px;
    position: relative;
}

.c1 { width: 30px; height: 70px; }
.c2 { width: 35px; height: 90px; }
.c3 { width: 28px; height: 60px; }

.flame {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 16px;
    background: radial-gradient(ellipse at bottom, #fbbf24, #fb923c, transparent);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flicker 1.5s ease-in-out infinite alternate;
}

.balm-tin {
    position: relative;
}

.tin-body {
    width: 80px;
    height: 40px;
    background: linear-gradient(180deg, #d4a356, #b8862c);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.2);
}

.tin-label {
    font-size: 1.2rem;
}

.tin-lid {
    width: 84px;
    height: 6px;
    background: #c4953e;
    border-radius: 4px;
    margin: 0 auto;
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.honeycomb-block {
    position: relative;
}

.comb-piece {
    width: 80px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24, #d97706);
    border-radius: 8px;
    border: 2px solid rgba(251, 191, 36, 0.5);
}

.comb-drip {
    position: absolute;
    bottom: -14px;
    left: 20px;
    width: 8px;
    height: 14px;
    background: #d97706;
    border-radius: 0 0 50% 50%;
    animation: drip 3s ease-in-out infinite;
}

.wrap-set {
    display: flex;
    gap: 8px;
    align-items: center;
}

.wrap {
    border-radius: 8px;
    border: 2px dashed rgba(251, 191, 36, 0.4);
}

.w1 { width: 60px; height: 60px; background: rgba(251, 191, 36, 0.15); }
.w2 { width: 50px; height: 50px; background: rgba(253, 230, 138, 0.15); }
.w3 { width: 40px; height: 40px; background: rgba(251, 146, 60, 0.15); }

.serum-bottle {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.bottle-body {
    width: 36px;
    height: 70px;
    background: linear-gradient(180deg, rgba(251, 191, 36, 0.3), rgba(217, 119, 6, 0.4));
    border-radius: 6px 6px 10px 10px;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.bottle-dropper {
    width: 14px;
    height: 20px;
    background: #6b4f10;
    border-radius: 4px 4px 0 0;
    margin-bottom: -2px;
    order: -1;
}

.bundle-box, .sub-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   SHOP FILTERS
   ======================================== */
.shop-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(251, 191, 36, 0.15);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    background: linear-gradient(180deg, transparent, rgba(251, 191, 36, 0.02), transparent);
}

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

.testimonial-card {
    padding: 32px;
}

.testimonial-stars {
    color: var(--accent-primary);
    font-size: 1.1rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: rgba(255, 247, 230, 0.75);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-highlight));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    color: var(--bg-primary);
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: rgba(255, 247, 230, 0.45);
}

/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter-container {
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.newsletter-container .section-tag,
.newsletter-container .section-title {
    text-align: left;
}

.newsletter-container .section-desc {
    margin: 0;
    text-align: left;
}

.newsletter-form .form-group {
    display: flex;
    gap: 12px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--glass-border);
    background: rgba(255,255,255,0.05);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 247, 230, 0.35);
}

.newsletter-form input[type="email"]:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.15);
    outline: none;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: rgba(255, 247, 230, 0.35);
    margin-top: 12px;
}

.form-message {
    font-size: 0.85rem;
    margin-top: 8px;
    min-height: 20px;
}

.form-message.success {
    color: #34d399;
}

.form-message.error {
    color: #fb923c;
}

/* ========================================
   SERVICES DETAIL
   ======================================== */
.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.service-detail {
    padding: 36px;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.service-detail h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-detail p {
    font-size: 0.9rem;
    color: rgba(255, 247, 230, 0.65);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    position: relative;
    padding-left: 20px;
    font-size: 0.85rem;
    color: rgba(255, 247, 230, 0.6);
    margin-bottom: 8px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    text-align: center;
    padding: 24px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(251, 191, 36, 0.15);
    margin-bottom: 12px;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.85rem;
    color: rgba(255, 247, 230, 0.55);
    line-height: 1.6;
}

/* ========================================
   IMPACT GRID
   ======================================== */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.impact-card {
    text-align: center;
    padding: 36px 24px;
}

.impact-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 8px;
}

.impact-label {
    font-size: 0.85rem;
    color: rgba(255, 247, 230, 0.6);
}

/* Cert Grid */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cert-item {
    text-align: center;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cert-icon {
    font-size: 2rem;
}

.cert-item strong {
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* ========================================
   ABOUT PAGE SPECIFICS
   ======================================== */
.content-grid {
    display: grid;
    gap: 48px;
}

.content-grid.two-col {
    grid-template-columns: 1fr 1fr;
}

.content-grid p {
    color: rgba(255, 247, 230, 0.7);
    margin-bottom: 16px;
    line-height: 1.7;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.value-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-item strong {
    color: var(--text-primary);
}

.value-item div {
    font-size: 0.9rem;
    color: rgba(255, 247, 230, 0.65);
    line-height: 1.6;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    padding: 32px 24px;
    text-align: center;
}

.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-highlight));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--bg-primary);
    margin: 0 auto 16px;
}

.team-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.8rem;
    color: var(--accent-primary);
    font-weight: 500;
    display: block;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 0.85rem;
    color: rgba(255, 247, 230, 0.55);
    line-height: 1.6;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-primary), rgba(251, 191, 36, 0.1));
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
}

.timeline-marker {
    position: absolute;
    left: -33px;
    top: 24px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-primary);
    border: 3px solid var(--bg-primary);
    box-shadow: 0 0 12px rgba(251, 191, 36, 0.3);
}

.timeline-content {
    padding: 24px;
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 8px 0;
}

.timeline-content p {
    font-size: 0.9rem;
    color: rgba(255, 247, 230, 0.6);
    line-height: 1.6;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.contact-form-wrapper {
    padding: 40px;
}

.contact-form-wrapper h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--text-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--glass-border);
    background: rgba(255,255,255,0.04);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(255, 247, 230, 0.3);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.15);
    outline: none;
}

.form-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23fbbf24' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 01.753 1.659l-4.796 5.48a1 1 0 01-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-field select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    padding: 24px;
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-card p {
    font-size: 0.9rem;
    color: rgba(255, 247, 230, 0.65);
    line-height: 1.6;
}

.contact-card a {
    color: var(--accent-secondary);
}

/* ========================================
   LEGAL CONTENT
   ======================================== */
.legal-wrapper {
    padding: 48px;
    max-width: 860px;
    margin: 0 auto;
}

.legal-wrapper h2 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-primary);
    margin: 32px 0 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(251, 191, 36, 0.1);
}

.legal-wrapper h2:first-of-type {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.legal-wrapper p {
    font-size: 0.9rem;
    color: rgba(255, 247, 230, 0.7);
    line-height: 1.7;
    margin-bottom: 12px;
}

.legal-wrapper ul,
.legal-wrapper ol {
    margin: 12px 0;
    padding-left: 24px;
}

.legal-wrapper ul {
    list-style: disc;
}

.legal-wrapper ol {
    list-style: decimal;
}

.legal-wrapper li {
    font-size: 0.9rem;
    color: rgba(255, 247, 230, 0.65);
    line-height: 1.7;
    margin-bottom: 8px;
}

.safety-alert {
    background: rgba(251, 146, 60, 0.1);
    border: 1px solid rgba(251, 146, 60, 0.3);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-bottom: 32px;
    font-size: 0.9rem;
    color: var(--accent-highlight);
    line-height: 1.6;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    padding: 80px 0 32px;
    border-top: 1px solid rgba(251, 191, 36, 0.08);
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.15));
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 247, 230, 0.5);
    margin-top: 16px;
    max-width: 280px;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 247, 230, 0.55);
    transition: color var(--transition-base);
}

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

.footer-bottom {
    border-top: 1px solid rgba(251, 191, 36, 0.08);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 247, 230, 0.35);
}

.footer-bottom a {
    color: rgba(255, 247, 230, 0.45);
}
/* ENDFILE */