/* ===================================
   LE PARFÜME — ANA STYLESHEET
   Cormorant Garamond + Jost
   Krem / Siyah / Altın paleti
=================================== */

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

:root {
    --cream:       #FAF8F5;
    --cream-dark:  #F0EDE7;
    --black:       #1A1A1A;
    --dark:        #2C2C2C;
    --gold:        #C9A96E;
    --gold-light:  #D4B88A;
    --gray:        #6B6B6B;
    --light-gray:  #E8E4DF;
    --white:       #FFFFFF;
    --font-serif:  'Cormorant Garamond', Georgia, serif;
    --font-sans:   'Jost', sans-serif;
    --transition:  0.35s ease;
    --shadow:      0 4px 32px rgba(0,0,0,0.09);
}

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

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--dark);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--light-gray);
    transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.07); }

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.18em;
    color: var(--black);
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}
.nav-menu a {
    font-size: 0.7rem;
    letter-spacing: 0.13em;
    font-weight: 500;
    color: var(--dark);
    transition: color var(--transition);
    position: relative;
    white-space: nowrap;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--gold); }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
    flex-shrink: 0;
}
.hamburger span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--black);
    transition: all 0.3s;
    transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
    margin-top: 72px;
    position: relative;
    height: calc(100vh - 72px);
    min-height: 480px;
    max-height: 900px;
    overflow: hidden;
    background: var(--black);
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.65;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    display: flex;
    align-items: center;
}
.hero-content {
    padding: 0 80px;
    color: var(--white);
    max-width: 640px;
}
.hero-content h1 {
    font-family: var(--font-sans);
    font-size: clamp(2.2rem, 5.5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}
.hero-content .brand-highlight { color: #AACC44; display: block; }
.hero-content p {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    opacity: 0.85; margin-bottom: 32px;
    font-weight: 300; letter-spacing: 0.04em;
}
.hero-cta {
    display: inline-flex;
    align-items: center; gap: 12px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.6);
    color: white;
    padding: 14px 28px;
    font-size: 0.7rem; letter-spacing: 0.14em;
    font-family: var(--font-sans); font-weight: 500;
    cursor: pointer; transition: all var(--transition);
}
.hero-cta:hover { background: white; color: var(--black); }

.hero-play-btn {
    position: absolute;
    bottom: 40px; right: 60px;
    width: 64px; height: 64px;
    background: rgba(220,0,0,0.85);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; cursor: pointer; border: none;
    transition: transform var(--transition);
    z-index: 10;
}
.hero-play-btn:hover { transform: scale(1.1); }

/* ============ CONTAINERS ============ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}
.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 48px;
}

section { padding: 100px 0; }

.section-label {
    display: block;
    font-size: 0.68rem; letter-spacing: 0.22em;
    font-weight: 600; color: var(--dark);
    margin-bottom: 56px;
}

.btn-arrow {
    display: inline-flex;
    align-items: center; gap: 14px;
    font-size: 0.7rem; letter-spacing: 0.15em; font-weight: 500;
    color: var(--dark);
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
    transition: all var(--transition);
}
.btn-arrow:hover { color: var(--gold); gap: 22px; }

.btn-primary {
    display: inline-flex;
    align-items: center; gap: 12px;
    background: var(--dark); color: var(--white);
    padding: 15px 36px;
    font-family: var(--font-sans); font-size: 0.7rem;
    letter-spacing: 0.15em; font-weight: 500;
    border: none; cursor: pointer;
    transition: background var(--transition);
}
.btn-primary:hover { background: var(--gold); }

/* ============ STORY ============ */
.story-section { background: var(--white); }

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.story-image-wrapper { position: relative; }
.story-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px; left: -20px;
    width: 75%; height: 75%;
    border: 1px solid var(--light-gray);
    pointer-events: none; z-index: 0;
}
.story-image-wrapper img {
    position: relative; z-index: 1;
    width: 100%; height: 520px;
    object-fit: cover;
}
.story-image-placeholder {
    position: relative; z-index: 1;
    width: 100%; height: 520px;
    background: linear-gradient(135deg, #F5E6CC 0%, #E8D5B0 100%);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-serif); font-size: 2rem;
    color: var(--gold); letter-spacing: 0.1em;
}
.story-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 400; line-height: 1.25;
    margin-bottom: 28px; color: var(--black);
}
.story-text p {
    font-size: 0.93rem; color: var(--gray);
    line-height: 2; margin-bottom: 36px;
}

/* ============ PRODUCTS SECTION ============ */
.products-section { background: var(--cream-dark); padding: 100px 0; }

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}
.products-feature-img {
    position: relative;
    overflow: hidden;
    min-height: 540px;
}
.products-feature-img img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.products-feature-img:hover img { transform: scale(1.04); }
.products-feature-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 55%);
    display: flex; flex-direction: column;
    justify-content: flex-end;
    padding: 48px; color: white; text-align: center;
}
.products-feature-overlay h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    font-style: italic; line-height: 1.3;
}
.products-feature-overlay p {
    font-size: 0.68rem; letter-spacing: 0.16em; margin-top: 10px; opacity: 0.9;
}
.products-slider-wrapper {
    background: var(--white);
    padding: 48px 40px;
    display: flex; flex-direction: column;
    justify-content: center;
}
.product-slide { display: none; flex-direction: column; }
.product-slide.active { display: flex; }
.product-slide img {
    width: 100%; height: 300px;
    object-fit: contain; padding: 12px;
}
.product-slide-img-placeholder {
    width: 100%; height: 300px;
    background: var(--cream);
    display: flex; align-items: center; justify-content: center;
}
.product-slide h3 {
    font-family: var(--font-serif); font-size: 1.7rem;
    text-align: center; margin: 16px 0 10px;
}
.product-slide p {
    font-size: 0.875rem; color: var(--gray);
    text-align: center; line-height: 1.8; margin-bottom: 20px;
}
.slider-dots {
    display: flex; justify-content: center; gap: 8px; margin-top: 20px;
}
.slider-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--light-gray); cursor: pointer;
    border: none; transition: background var(--transition);
}
.slider-dot.active { background: var(--dark); }

/* ============ FRANCHISE ============ */
.franchise-section { background: var(--cream-dark); }

.franchise-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.franchise-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-weight: 400; margin-bottom: 44px;
}
.franchise-feature {
    display: flex; gap: 20px; margin-bottom: 32px; align-items: flex-start;
}
.franchise-feature-icon { width: 32px; height: 32px; flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.franchise-feature h4 {
    font-family: var(--font-serif); font-size: 1.1rem;
    font-weight: 500; margin-bottom: 8px; color: var(--black);
}
.franchise-feature p { font-size: 0.85rem; color: var(--gray); line-height: 1.75; }
.franchise-image { overflow: hidden; }
.franchise-image img {
    width: 100%; height: 560px; object-fit: cover;
    transition: transform 0.6s ease;
}
.franchise-image:hover img { transform: scale(1.03); }
.franchise-image-placeholder {
    width: 100%; height: 560px;
    background: linear-gradient(135deg, #EDE0D0 0%, #D4C4AC 100%);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-family: var(--font-serif); font-size: 1.5rem;
}

/* ============ CERTIFICATES ============ */
.certificates-section { background: var(--white); padding: 80px 0; text-align: center; }
.certificates-section h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 400; margin-bottom: 12px;
}
.certificates-section .cert-desc { color: var(--gray); font-size: 0.9rem; margin-bottom: 56px; }
.certificates-grid {
    display: flex; justify-content: center;
    align-items: center; gap: 48px; flex-wrap: wrap;
}
.cert-item {
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    opacity: 0.55; transition: opacity var(--transition);
}
.cert-item:hover { opacity: 1; }
.cert-logo {
    width: 88px; height: 88px;
    border: 1px solid var(--light-gray); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem; letter-spacing: 0.1em; font-weight: 700;
    color: var(--dark); text-align: center; line-height: 1.4;
}
.cert-label { font-size: 0.7rem; color: var(--gray); letter-spacing: 0.08em; }

/* ============ SOCIAL ============ */
.social-section { background: var(--cream-dark); padding: 80px 0; }
.social-grid {
    display: grid;
    grid-template-columns: 260px 1fr 1fr 1fr;
    gap: 20px; align-items: center;
}
.social-intro small {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.68rem; letter-spacing: 0.12em;
    color: var(--gray); margin-bottom: 12px;
}
.social-intro small::before {
    content: ''; display: inline-block;
    width: 28px; height: 1px; background: var(--gray);
}
.social-intro h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2.2rem); line-height: 1.3;
}
.social-intro em { font-style: italic; }
.social-card {
    position: relative; overflow: hidden;
    aspect-ratio: 1; background: var(--light-gray); display: block;
}
.social-card img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.45s ease;
}
.social-card:hover img { transform: scale(1.06); }

/* ============ PAGE HERO ============ */
.page-hero {
    margin-top: 72px;
    height: 360px;
    position: relative; overflow: hidden;
    background: var(--black);
    display: flex; align-items: center; justify-content: center;
}
.page-hero img {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover; opacity: 0.5;
}
.page-hero-content {
    position: relative; z-index: 1;
    text-align: center; color: var(--white); padding: 0 24px;
}
.page-hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300; letter-spacing: 0.08em;
}

/* ============ PRODUCTS PAGE ============ */
.products-page-intro { background: var(--white); padding: 80px 0; }
.products-intro-grid {
    display: grid; grid-template-columns: auto 1fr;
    align-items: center;
    border-bottom: 1px solid var(--light-gray);
    padding-bottom: 60px; margin-bottom: 60px;
}
.intro-icon {
    padding-right: 40px;
    border-right: 1px solid var(--light-gray);
    color: var(--gold); display: flex; align-items: center;
}
.products-intro-grid p {
    font-family: var(--font-serif); font-size: 1.15rem;
    color: var(--dark); font-style: italic; text-align: center;
    padding-left: 40px;
}
.edition-title {
    font-size: 0.72rem; letter-spacing: 0.25em; font-weight: 600;
    text-align: center; margin-bottom: 56px; color: var(--gold);
}
.products-cards-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 40px; margin-bottom: 80px; align-items: end;
}
.product-card { text-align: center; }
.product-card img { width: 100%; height: 280px; object-fit: contain; margin-bottom: 20px; }
.product-card-img-placeholder {
    width: 100%; height: 280px; background: var(--cream);
    margin-bottom: 20px; display: flex; align-items: center; justify-content: center;
}
.product-card h4 {
    font-size: 0.82rem; font-weight: 400; letter-spacing: 0.06em;
    border-bottom: 1px solid var(--dark); padding-bottom: 8px; display: inline-block;
}

/* ============ HAKKIMIZDA ============ */
.values-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 40px; margin-top: 60px;
}
.value-card {
    text-align: center; padding: 40px 28px;
    border: 1px solid var(--light-gray);
    transition: box-shadow var(--transition);
}
.value-card:hover { box-shadow: var(--shadow); }
.value-card svg { margin: 0 auto 20px; }
.value-card h3 { font-family: var(--font-serif); font-size: 1.4rem; margin-bottom: 12px; }
.value-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.75; }

/* ============ STORES ============ */
.stores-section { padding: 80px 0; background: var(--white); }
.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}
.store-card {
    padding: 32px; border: 1px solid var(--light-gray);
    transition: box-shadow var(--transition);
}
.store-card:hover { box-shadow: var(--shadow); }
.store-card h3 {
    font-family: var(--font-serif); font-size: 1.2rem;
    margin-bottom: 20px; color: var(--black);
}
.store-info {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 12px; font-size: 0.875rem; color: var(--gray);
}
.store-info svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }

/* ============ CONTACT ============ */
.contact-section { padding: 100px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; }
.contact-info h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400; margin-bottom: 36px;
}
.contact-detail { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-detail svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-detail p { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }

/* ============ FORMS ============ */
.form-group { margin-bottom: 22px; }
.form-group label {
    display: block; font-size: 0.7rem; letter-spacing: 0.1em;
    font-weight: 600; color: var(--dark); margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 13px 16px;
    border: 1px solid var(--light-gray);
    background: var(--cream);
    font-family: var(--font-sans); font-size: 0.9rem;
    font-weight: 300; color: var(--dark);
    outline: none; transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); background: var(--white); }
.form-group textarea { height: 140px; resize: vertical; }

.alert { padding: 13px 18px; margin-bottom: 22px; font-size: 0.875rem; }
.alert-success { background: #f0faf4; color: #1a7a3c; border-left: 3px solid #1a7a3c; }
.alert-error   { background: #fdf0f0; color: #c0392b; border-left: 3px solid #c0392b; }

/* ============ FOOTER ============ */
.footer {
    background: var(--white);
    border-top: 1px solid var(--light-gray);
    padding: 64px 0 0;
}
.footer-container {
    max-width: 1200px; margin: 0 auto; padding: 0 48px 48px;
    display: grid; grid-template-columns: auto 1fr auto;
    gap: 60px; align-items: start;
}
.footer-brand { display: flex; align-items: center; gap: 40px; }
.footer-logo {
    font-family: var(--font-sans); font-weight: 700;
    font-size: 1.05rem; letter-spacing: 0.18em; color: var(--black); white-space: nowrap;
}
.footer-divider { width: 1px; height: 72px; background: var(--light-gray); }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 14px; }
.footer-col a { font-size: 0.85rem; color: var(--gray); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 20px; align-items: center; }
.footer-social a { color: var(--gray); transition: color var(--transition); display: flex; align-items: center; }
.footer-social a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--light-gray);
    padding: 20px 48px; text-align: center;
    font-size: 0.78rem; color: var(--gray);
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============ ADMIN ============ */
.admin-layout { display: flex; min-height: 100vh; background: #F4F5F7; font-family: var(--font-sans); }
.admin-sidebar {
    width: 255px; background: var(--black); color: var(--white);
    flex-shrink: 0; position: fixed; top: 0; left: 0; bottom: 0;
    overflow-y: auto; z-index: 100; display: flex; flex-direction: column;
}
.admin-sidebar-logo {
    padding: 28px 24px 20px; font-size: 1rem; font-weight: 700;
    letter-spacing: 0.16em; border-bottom: 1px solid rgba(255,255,255,0.07); flex-shrink: 0;
}
.admin-sidebar-logo span {
    display: block; font-size: 0.62rem; letter-spacing: 0.1em;
    color: var(--gold); font-weight: 400; margin-top: 4px;
}
.admin-nav { display: flex; flex-direction: column; flex: 1; padding: 8px 0; }
.admin-nav a {
    display: flex; align-items: center; gap: 12px; padding: 12px 24px;
    font-size: 0.8rem; color: rgba(255,255,255,0.6); transition: all 0.2s;
    letter-spacing: 0.04em; border-left: 2px solid transparent;
}
.admin-nav a:hover,
.admin-nav a.active {
    color: var(--white); background: rgba(201,169,110,0.12); border-left-color: var(--gold);
}
.admin-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }
.admin-main { margin-left: 255px; flex: 1; padding: 40px; min-width: 0; }
.admin-topbar {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 32px; flex-wrap: wrap; gap: 12px;
}
.admin-topbar h1 { font-size: 1.35rem; font-weight: 500; color: var(--dark); }
.admin-card {
    background: var(--white); border-radius: 3px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.055); padding: 28px; margin-bottom: 24px;
}
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 24px; }
.stat-card {
    background: var(--white); border-radius: 3px;
    box-shadow: 0 1px 8px rgba(0,0,0,0.055);
    padding: 22px; display: flex; align-items: center; gap: 16px;
}
.stat-icon {
    width: 46px; height: 46px; background: #FBF7F0; border-radius: 3px;
    display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0;
}
.stat-info span { display: block; font-size: 0.7rem; color: var(--gray); letter-spacing: 0.08em; }
.stat-info strong { font-size: 1.5rem; color: var(--dark); font-weight: 600; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
    text-align: left; font-size: 0.68rem; letter-spacing: 0.1em;
    font-weight: 600; color: var(--gray); padding: 11px 14px;
    border-bottom: 1px solid var(--light-gray); white-space: nowrap;
}
.admin-table td {
    padding: 13px 14px; font-size: 0.85rem;
    border-bottom: 1px solid var(--light-gray); color: var(--dark);
}
.admin-table tr:hover td { background: var(--cream); }
.badge {
    display: inline-block; padding: 3px 10px; border-radius: 2px;
    font-size: 0.68rem; font-weight: 600; letter-spacing: 0.05em; white-space: nowrap;
}
.badge-green { background: #e8f5e9; color: #388e3c; }
.badge-red   { background: #ffebee; color: #c62828; }
.badge-gold  { background: #FBF7F0; color: var(--gold); }
.btn-sm {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px; font-size: 0.72rem; font-weight: 500;
    letter-spacing: 0.06em; border: none; cursor: pointer;
    transition: all 0.2s; font-family: var(--font-sans); white-space: nowrap;
}
.btn-dark    { background: var(--dark); color: var(--white); }
.btn-dark:hover  { background: var(--gold); color: var(--white); }
.btn-danger  { background: #ffebee; color: #c62828; }
.btn-danger:hover { background: #c62828; color: white; }
.btn-gold    { background: var(--gold); color: var(--white); }
.btn-gold:hover  { background: #b8935a; }
.admin-login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--cream); }
.login-box { background: var(--white); padding: 52px; width: 100%; max-width: 420px; box-shadow: var(--shadow); }
.login-box h1 { font-size: 1.15rem; letter-spacing: 0.18em; font-weight: 700; margin-bottom: 6px; }
.login-box p  { font-size: 0.85rem; color: var(--gray); margin-bottom: 36px; }

/* ============================================
   RESPONSIVE BREAKPOINTS
============================================ */

/* --- TABLET (≤1100px) --- */
@media (max-width: 1100px) {
    .container, .container-wide { padding: 0 32px; }
    .nav-container { padding: 0 32px; gap: 16px; }
    .footer-container { padding: 0 32px 40px; }
    .footer-bottom   { padding: 20px 32px; }
    .hero-content    { padding: 0 48px; }

    .nav-menu { gap: 22px; }

    .story-grid,
    .franchise-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }

    .story-image-wrapper::before { display: none; }
    .story-image-wrapper img, .story-image-placeholder { height: 400px; }

    .franchise-image img, .franchise-image-placeholder { height: 400px; }

    .products-grid { grid-template-columns: 1fr; }
    .products-feature-img { min-height: 380px; }

    .social-grid { grid-template-columns: 1fr 1fr 1fr; }
    .social-intro { grid-column: 1 / -1; margin-bottom: 4px; }

    .products-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

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

/* --- MOBILE (≤768px) --- */
@media (max-width: 768px) {
    section { padding: 60px 0; }
    .container, .container-wide { padding: 0 20px; }
    .nav-container { padding: 0 20px; height: 64px; }
    .footer-container { padding: 0 20px 32px; grid-template-columns: 1fr; gap: 28px; }
    .footer-brand { flex-direction: row; align-items: center; gap: 20px; }
    .footer-divider { height: 40px; }
    .footer-links { gap: 36px; }
    .footer-bottom { padding: 16px 20px; }

    /* Hamburger show */
    .hamburger { display: flex; }

    /* Nav drawer */
    .nav-menu {
        position: fixed;
        top: 64px; left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        transform: translateY(-120%);
        transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
        border-top: 1px solid var(--light-gray);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
        overflow-y: auto;
        max-height: calc(100vh - 64px);
    }
    .nav-menu.open { transform: translateY(0); }
    .nav-menu li { width: 100%; }
    .nav-menu a {
        display: block; padding: 15px 24px;
        font-size: 0.82rem; letter-spacing: 0.1em;
        border-bottom: 1px solid var(--light-gray);
        color: var(--dark);
    }
    .nav-menu a::after { display: none; }
    .nav-menu li:last-child a { border-bottom: none; }

    /* Hero */
    .hero { height: 82vh; min-height: 380px; max-height: 680px; margin-top: 64px; }
    .hero-content { padding: 0 24px; max-width: 100%; }
    .hero-content h1 { font-size: clamp(1.8rem, 8vw, 2.8rem); }
    .hero-content p { font-size: 0.875rem; }
    .hero-play-btn { bottom: 20px; right: 20px; width: 52px; height: 52px; }

    /* Story */
    .story-grid { gap: 32px; }
    .story-image-wrapper img, .story-image-placeholder { height: 260px; }

    /* Products */
    .products-feature-img { min-height: 280px; }
    .products-feature-overlay { padding: 24px; }
    .products-slider-wrapper { padding: 28px 24px; }
    .product-slide img { height: 220px; }

    /* Social */
    .social-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .social-intro { grid-column: 1 / -1; }

    /* Franchise */
    .franchise-grid { gap: 32px; }
    .franchise-image img, .franchise-image-placeholder { height: 260px; }

    /* Page hero */
    .page-hero { height: 220px; margin-top: 64px; }
    .page-hero-content h1 { font-size: clamp(1.6rem, 6vw, 2.5rem); }

    /* Products page */
    .products-intro-grid { grid-template-columns: 1fr; gap: 0; }
    .intro-icon {
        border-right: none; border-bottom: 1px solid var(--light-gray);
        padding-right: 0; padding-bottom: 24px; justify-content: center;
        margin-bottom: 24px;
    }
    .products-intro-grid p { padding-left: 0; font-size: 1rem; }
    .products-cards-grid { grid-template-columns: 1fr 1fr; gap: 20px; }

    /* Values */
    .values-grid { grid-template-columns: 1fr; gap: 16px; }
    .value-card { padding: 32px 20px; }

    /* Stores */
    .stores-grid { grid-template-columns: 1fr; }

    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }

    /* Certificates */
    .certificates-grid { gap: 24px; }
    .cert-logo { width: 70px; height: 70px; }

    /* Admin */
    .admin-sidebar { width: 210px; }
    .admin-main { margin-left: 210px; padding: 20px 16px; }
    .admin-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
    .admin-card { padding: 20px 16px; }
    .stat-card { padding: 16px 14px; gap: 12px; }
    .admin-table { font-size: 0.8rem; }
    .admin-table th, .admin-table td { padding: 10px 10px; }
}

/* --- SMALL MOBILE (≤520px) --- */
@media (max-width: 520px) {
    .products-cards-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
    .social-grid { grid-template-columns: 1fr 1fr; }
    .footer-links { flex-direction: column; gap: 20px; }
    .footer-brand { flex-direction: column; align-items: flex-start; gap: 0; }
    .footer-divider { display: none; }
    .hero-cta { padding: 12px 20px; width: 100%; justify-content: center; }

    /* Admin collapses to top bar */
    .admin-layout { flex-direction: column; }
    .admin-sidebar {
        position: relative; width: 100%; height: auto;
        overflow-x: auto; overflow-y: hidden; flex-direction: row;
    }
    .admin-sidebar-logo { display: none; }
    .admin-nav { flex-direction: row; padding: 0; white-space: nowrap; }
    .admin-nav a {
        padding: 12px 14px; border-left: none;
        border-bottom: 2px solid transparent; flex-shrink: 0;
    }
    .admin-nav a.active { border-bottom-color: var(--gold); border-left-color: transparent; background: none; }
    .admin-main { margin-left: 0; padding: 16px 12px; }
    .admin-stats { grid-template-columns: 1fr 1fr; }
    .login-box { padding: 36px 24px; margin: 16px; }
}