:root {
    --pink:       #f02c8e;
    --pink-dark:  #c4006f;
    --pink-light: #ff6db6;
    --orange:     #ff7b35;
    --gold:       #ffd700;
    --cream:      #fff8f0;
    --brown-dark: #2d1b0e;
    --brown-mid:  #5d3b1e;
    --brown-light:#eddbc3;
    --white:      #ffffff;
    --text:       #3a2a20;
    --text-light: #7a5c50;
    --shadow:     0 8px 32px rgba(240,44,142,0.18);
    --shadow-lg:  0 20px 60px rgba(240,44,142,0.25);
    --radius:     20px;
    --transition: 0.4s cubic-bezier(0.25,0.8,0.25,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pink);
    background: rgba(240,44,142,0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}
.section-label.light {
    color: #333;
    background: rgba(255,255,255,0.85);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--brown-dark);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.star-ico { width: 32px; height: 32px; object-fit: contain; }

.section-head { text-align: center; margin-bottom: 60px; }
.section-head p { color: var(--text-light); margin-top: 12px; font-size: 1.05rem; }
.stores-label-lg { font-size: 1.1rem; padding: 10px 28px; }

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(240,44,142,0.4);
    letter-spacing: 0.04em;
    position: relative;
    overflow: hidden;
}
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: var(--transition);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(240,44,142,0.55);
}
.btn-primary:hover::after { opacity: 1; }

.btn-ghost {
    display: inline-block;
    padding: 13px 34px;
    background: transparent;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.04em;
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--white);
    transform: translateY(-3px);
}

.loader {
    position: fixed;
    inset: 0;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
}
.loader-inner { text-align: center; }
.loader-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: loaderPulse 1s ease-in-out infinite alternate;
    margin: 0 auto 20px;
}
@keyframes loaderPulse {
    from { transform: scale(0.92); }
    to   { transform: scale(1.08); }
}
.loader-bar-wrap {
    width: 200px;
    height: 4px;
    background: rgba(240,44,142,0.15);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto 12px;
}
.loader-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--pink), var(--orange));
    border-radius: 4px;
    animation: loadBar 1.8s ease forwards;
}
@keyframes loadBar { to { width: 100%; } }
.loader-text {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 40px;
    height: 90px;
    display: flex;
    align-items: center;
    transition: background 0.4s ease, height 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
    background: rgba(240,44,142,0.97);
    backdrop-filter: blur(12px);
    height: 70px;
    box-shadow: var(--shadow);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
}
.nav-logo {
    width: 70px;
    height: 70px;
    object-fit: contain;
    cursor: pointer;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}
.navbar.scrolled .nav-logo { width: 55px; height: 55px; }
.nav-logo:hover { transform: rotate(-5deg) scale(1.05); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links li a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.8rem;
}
.nav-links li a:hover {
    background: rgba(255,255,255,0.15);
}
.nav-cta {
    background: rgba(255,255,255,0.2) !important;
    border: 1.5px solid rgba(255,255,255,0.5);
    margin-left: 8px;
}
.nav-cta:hover {
    background: var(--white) !important;
    color: var(--pink) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 2.5px;
    background: var(--white);
    border-radius: 4px;
    transition: var(--transition);
    transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mob-menu {
    position: fixed;
    top: 70px; right: -100%;
    width: 260px;
    background: rgba(240,44,142,0.97);
    backdrop-filter: blur(12px);
    z-index: 999;
    border-radius: 0 0 0 20px;
    padding: 24px 0;
    transition: right 0.4s cubic-bezier(0.25,0.8,0.25,1);
    box-shadow: var(--shadow-lg);
}
.mob-menu.open { right: 0; }
.mob-menu ul { padding: 0 24px; }
.mob-menu li { border-bottom: 1px solid rgba(255,255,255,0.1); }
.mob-menu li:last-child { border: none; }
.mob-menu a {
    display: block;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 14px 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition);
}
.mob-menu a:hover { color: var(--gold); padding-left: 8px; }

.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #f02c8e 0%, #c4006f 40%, #7b0044 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 50%, rgba(255,123,53,0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(255,215,0,0.15) 0%, transparent 50%);
    pointer-events: none;
}

#particleCanvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-wrap {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 60px 60px;
    gap: 40px;
}

.hero-text { max-width: 560px; }

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    letter-spacing: 0.04em;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5.5vw, 5rem);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 900;
}
.hero-title em {
    font-style: italic;
    color: var(--gold);
    position: relative;
    display: inline-block;
}
.hero-title em::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    border-radius: 4px;
    animation: underlineGrow 1s 0.8s ease forwards;
    transform-origin: left;
    transform: scaleX(0);
}
@keyframes underlineGrow { to { transform: scaleX(1); } }

.hero-desc {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-orbit {
    position: relative;
    width: 400px;
    height: 400px;
}

.orbit-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 3px solid var(--pink);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(255,215,0,0.3);
    animation: orbitCenterPulse 3s ease-in-out infinite;
}
@keyframes orbitCenterPulse {
    0%,100% { box-shadow: 0 0 40px rgba(255,215,0,0.3); }
    50%      { box-shadow: 0 0 80px rgba(255,215,0,0.6); }
}
.orbit-center img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

.orbit-cookie {
    position: absolute;
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}
.c1 { top: 0;    left: 50%; transform: translateX(-50%); animation: orbitFloat1 6s ease-in-out infinite; }
.c2 { right: 0;  top: 50%;  transform: translateY(-50%); animation: orbitFloat2 7s ease-in-out infinite; }
.c3 { bottom: 0; left: 50%; transform: translateX(-50%); animation: orbitFloat3 5.5s ease-in-out infinite; }
.c4 { left: 0;   top: 50%;  transform: translateY(-50%); animation: orbitFloat4 6.5s ease-in-out infinite; }

@keyframes orbitFloat1 { 0%,100%{transform:translateX(-50%) translateY(0) rotate(0deg)} 50%{transform:translateX(-50%) translateY(-16px) rotate(10deg)} }
@keyframes orbitFloat2 { 0%,100%{transform:translateY(-50%) translateX(0) rotate(0deg)} 50%{transform:translateY(-50%) translateX(12px) rotate(-8deg)} }
@keyframes orbitFloat3 { 0%,100%{transform:translateX(-50%) translateY(0) rotate(0deg)} 50%{transform:translateX(-50%) translateY(14px) rotate(12deg)} }
@keyframes orbitFloat4 { 0%,100%{transform:translateY(-50%) translateX(0) rotate(0deg)} 50%{transform:translateY(-50%) translateX(-10px) rotate(-10deg)} }

.scroll-arrow {
    position: absolute;
    bottom: 36px; left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(10px)} }
.arrow-dot {
    width: 28px;
    height: 48px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 14px;
    position: relative;
}
.arrow-dot::before {
    content: '';
    position: absolute;
    top: 8px; left: 50%;
    transform: translateX(-50%);
    width: 5px; height: 5px;
    background: var(--white);
    border-radius: 50%;
    animation: dotMove 2s ease-in-out infinite;
}
@keyframes dotMove { 0%,100%{top:8px;opacity:1} 80%{top:28px;opacity:0} }

.fade-up, .fade-right {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpIn 0.8s ease forwards;
}
.fade-right { transform: translateX(40px); }

.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.25s; }
.fade-up:nth-child(3) { animation-delay: 0.40s; }
.fade-up:nth-child(4) { animation-delay: 0.55s; }
.fade-right          { animation-delay: 0.4s; }

@keyframes fadeUpIn {
    to { opacity: 1; transform: translate(0,0); }
}

.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition-delay: var(--d, 0s);
}
.reveal-up    { transform: translateY(50px); }
.reveal-left  { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.stats-strip {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 40px 24px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 30px rgba(240,44,142,0.4);
}
.stat {
    text-align: center;
    padding: 0 48px;
    color: var(--white);
}
.stat-n {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    display: inline-block;
}
.stat-sym {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    vertical-align: super;
}
.stat p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-top: 4px;
    opacity: 0.9;
}
.stat-sep {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.25);
}

.about-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--white);
}
.about-deco-circle {
    position: absolute;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,44,142,0.06) 0%, transparent 70%);
    top: -100px; right: -200px;
    pointer-events: none;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap { position: relative; min-width: 0; }
.about-img-frame {
    position: relative;
    width: 420px;
    max-width: 100%;
    aspect-ratio: 1;
    border-radius: 40px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
}
.about-img-frame img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    animation: aboutImgFloat 5s ease-in-out infinite;
}
@keyframes aboutImgFloat {
    0%,100%{transform:translateY(0) rotate(-2deg)}
    50%{transform:translateY(-14px) rotate(2deg)}
}
.about-img-blob {
    position: absolute;
    inset: -20px;
    background: transparent;
    border-radius: 50%;
    z-index: -1;
    filter: blur(30px);
    animation: blobPulse 4s ease-in-out infinite;
}
@keyframes blobPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }

.about-float-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--white);
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    animation: badgeFloat 4s ease-in-out infinite;
}
@keyframes badgeFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.about-float-badge span { font-size: 2rem; }
.about-float-badge strong { display: block; font-size: 0.95rem; color: var(--brown-dark); }
.about-float-badge small { font-size: 0.75rem; color: var(--text-light); }

.about-content { min-width: 0; overflow-wrap: break-word; }
.about-brand-img { display: block; height: 80px; max-width: 100%; object-fit: contain; margin: 12px 0 24px; }
.about-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 16px;
    font-style: italic;
}
.about-content p strong { color: var(--brown-dark); font-style: normal; }
.about-tags { display: flex; flex-wrap: nowrap; gap: 8px; margin-top: 28px; }
.tag {
    padding: 8px 18px;
    background: var(--cream);
    border: 1.5px solid var(--brown-light);
    border-radius: 50px;
    white-space: nowrap;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--brown-mid);
    transition: var(--transition);
    cursor: default;
}
.tag:hover {
    background: var(--pink);
    color: var(--white);
    border-color: var(--pink);
    transform: translateY(-2px);
}

.products-section { background: var(--cream); }

.products-hero {
    position: relative;
    height: 380px;
    overflow: hidden;
}
.products-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1);
    transform: scale(1.05);
    transition: transform 8s ease;
}
.products-section:hover .products-hero-img { transform: scale(1); }

.products-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(to top, rgba(45,27,14,0.6), transparent);
}
.products-title-img { height: 60px; object-fit: contain; filter: brightness(0) invert(1); margin: 8px 0; }
.products-hero-overlay .section-label { font-size: 1.1rem; padding: 12px 32px; }
.products-hero-overlay p { color: rgba(255,255,255,0.85); font-size: 1.35rem; margin-top: 8px; }

.products-body { padding: 80px 40px 100px; max-width: 1300px; margin: 0 auto; }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 32px;
}

.pcard {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
    position: relative;
    display: block;
}
.pcard:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-lg);
}
.pcard-img-wrap {
    position: relative;
    padding: 32px;
    background: linear-gradient(145deg, var(--brown-light), #f5e8d5);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
}
.pcard-img-wrap img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    transition: transform var(--transition);
    position: relative;
    z-index: 1;
}
.pcard:hover .pcard-img-wrap img { transform: scale(1.12) rotate(-3deg); }

.pcard-shine {
    position: absolute;
    top: -60%; left: -60%;
    width: 60%; height: 200%;
    background: linear-gradient(100deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
    transform: skewX(-15deg);
    transition: left 0.6s ease;
}
.pcard:hover .pcard-shine { left: 140%; }

.pcard-info {
    padding: 20px 24px 24px;
    background: var(--white);
}
.pcard-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--brown-dark);
    margin-bottom: 6px;
    text-transform: capitalize;
}
.pcard-info p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 14px;
}
.pcard-cta {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--pink);
    letter-spacing: 0.04em;
    transition: var(--transition);
    display: inline-block;
}
.pcard:hover .pcard-cta { color: var(--pink-dark); letter-spacing: 0.1em; }

.stores-section {
    padding: 120px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.stores-deco {
    position: absolute;
    bottom: -200px; left: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,44,142,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.scard {
    background: var(--cream);
    border: 2px solid transparent;
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
.scard::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(240,44,142,0), rgba(240,44,142,0.08));
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--radius);
}
.scard:hover {
    border-color: var(--pink-light);
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.scard:hover::before { opacity: 1; }

.scard-pin {
    font-size: 2rem;
    animation: pinBounce 2s ease-in-out infinite;
}
@keyframes pinBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

.scard-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--brown-dark);
    margin-bottom: 6px;
}
.scard-body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }

.scard-badge {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(34,197,94,0.12);
    color: #16a34a;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.06em;
    align-self: flex-start;
    position: relative;
}
.scard-badge::before {
    content: '';
    display: inline-block;
    width: 6px; height: 6px;
    background: #16a34a;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
    animation: pulseDot 1.5s ease-in-out infinite;
}
@keyframes pulseDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

.map-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-height: 520px;
}
.map-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.map-pins { position: absolute; inset: 0; }
.mpin {
    position: absolute;
    transform: translate(-50%, -100%);
}
.mpin-dot {
    width: 14px; height: 14px;
    background: var(--pink);
    border: 3px solid var(--white);
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 0 0 0 rgba(240,44,142,0.4);
    animation: mapPinPulse 2s ease-out infinite;
}
@keyframes mapPinPulse {
    0%  { box-shadow: 0 0 0 0 rgba(240,44,142,0.5); }
    70% { box-shadow: 0 0 0 14px rgba(240,44,142,0); }
    100%{ box-shadow: 0 0 0 0 rgba(240,44,142,0); }
}
.mpin-ring {
    width: 30px; height: 30px;
    border: 2px solid rgba(240,44,142,0.4);
    border-radius: 50%;
    position: absolute;
    top: -8px; left: 50%;
    transform: translateX(-50%);
    animation: mapRingExpand 2s ease-out infinite;
    pointer-events: none;
}
@keyframes mapRingExpand { 0%{transform:translateX(-50%) scale(0.5);opacity:1} 100%{transform:translateX(-50%) scale(2);opacity:0} }
.mpin span {
    display: block;
    background: var(--white);
    color: var(--pink-dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    white-space: nowrap;
    margin-top: 4px;
    text-align: center;
}

.franchise-section {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.franchise-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.franchise-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    transform: scale(1.05);
    transition: transform 10s ease;
}
.franchise-section:hover .franchise-bg img { transform: scale(1); }

.franchise-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(240,44,142,0.6), rgba(45,27,14,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 50px 40px;
}
.franchise-inner {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 80px;
    align-items: center;
}
.franchise-content {
    text-align: left;
    color: var(--white);
}
.franchise-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin: 16px 0;
    font-weight: 900;
}
.franchise-content h2 em {
    font-style: italic;
    white-space: nowrap;
}
.fc-fan { color: var(--orange); -webkit-text-stroke: 0.3px white; }
.fc-cookies { color: var(--pink-light); -webkit-text-stroke: 0.3px white; }
.franchise-content p {
    font-size: 1.05rem;
    opacity: 0.9;
    margin-bottom: 0;
    line-height: 1.7;
}

.franchise-form-wrap {
    background: linear-gradient(135deg, #f02c8e, #c4006f);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 36px 48px;
}
.franchise-form h3 {
    font-family: 'Playfair Display', serif;
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 16px;
    text-align: center;
}
.fform-group {
    margin-bottom: 10px;
}
.fform-group input,
.fform-group textarea {
    width: 100%;
    padding: 9px 16px;
    border-radius: 12px;
    border: 1.5px solid rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.15);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.fform-group input::placeholder,
.fform-group textarea::placeholder {
    color: rgba(255,255,255,0.75);
}
.fform-group input:focus,
.fform-group textarea:focus {
    border-color: var(--white);
    background: rgba(255,255,255,0.22);
}
.fform-group textarea { resize: none; }
.fform-btn { width: 100%; margin-top: 6px; justify-content: center; }
.fform-msg {
    text-align: center;
    margin-top: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    min-height: 20px;
}

.footer {
    background: linear-gradient(135deg, #2d1b0e 0%, #1a0f08 100%);
    position: relative;
    overflow: hidden;
}
.footer-cookie-deco {
    position: absolute;
    right: -40px; top: -40px;
    opacity: 0.07;
    pointer-events: none;
}
.footer-cookie-deco img { width: 280px; height: 280px; object-fit: contain; }

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    padding: 80px 80px 60px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-logo { width: 120px; height: 120px; object-fit: contain; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 20px; }
.footer-social { display: flex; gap: 14px; }
.soc-link {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.soc-link img { width: 30px; height: 30px; object-fit: contain; border-radius: 50%; }
.soc-link:hover { background: var(--pink); border-color: var(--pink); transform: translateY(-3px); }

.footer-links, .footer-contact { flex: 1; min-width: 180px; }
.footer-links h4, .footer-contact h4 {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--pink);
    border-radius: 2px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.88rem;
    transition: var(--transition);
}
.footer-links a:hover { color: var(--pink-light); padding-left: 6px; }
.footer-contact p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 12px; }
.footer-wa { display: flex; align-items: center; gap: 10px; }
.footer-wa img { width: 24px; height: 24px; filter: brightness(0) invert(1); opacity: 0.7; flex-shrink: 0; }
.footer-wa p { margin: 0; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding: 20px 80px;
    text-align: center;
}
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.8rem; }
.footer-bottom a { color: var(--pink); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--pink-light); }

@media (max-width: 1024px) {
    .hero-wrap { padding: 100px 40px 60px; }
    .hero-orbit { width: 320px; height: 320px; }
    .orbit-center { width: 150px; height: 150px; }
    .orbit-center img { width: 110px; height: 110px; }
    .orbit-cookie { width: 70px; height: 70px; }
    .about-img-frame { width: 100%; }
    .about-grid { gap: 50px; }
}

@media (max-width: 860px) {
    .navbar { padding: 0 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero-wrap {
        flex-direction: column;
        padding: 120px 24px 80px;
        text-align: center;
    }
    .hero-btns { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-orbit { width: 260px; height: 260px; }
    .orbit-center { width: 120px; height: 120px; }
    .orbit-center img { width: 90px; height: 90px; }
    .orbit-cookie { width: 58px; height: 58px; }

    .stats-strip { gap: 0; }
    .stat { padding: 0 24px; }
    .stat-sep { display: none; }

    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-img-wrap { display: flex; justify-content: center; }
    .about-img-frame { width: 300px; height: 300px; }
    .about-float-badge { right: 0; }
    .about-content { text-align: center; }
    .about-tags { justify-content: center; }

    .products-body { padding: 60px 20px 80px; }

    .stores-grid { grid-template-columns: 1fr 1fr; }

    .franchise-section { min-height: auto; }
    .franchise-overlay { position: relative; inset: auto; min-height: 100%; }
    .franchise-bg { position: absolute; inset: 0; }
    .franchise-inner { grid-template-columns: 1fr; gap: 36px; }
    .franchise-content { text-align: center; }

    .footer-inner { padding: 60px 32px 40px; gap: 40px; }
    .footer-bottom { padding: 20px 32px; }
}

@media (max-width: 540px) {
    .hero-title { font-size: 2.4rem; }
    .hero-orbit { width: 220px; height: 220px; }
    .orbit-center { width: 100px; height: 100px; }
    .orbit-center img { width: 75px; height: 75px; }
    .orbit-cookie { width: 50px; height: 50px; }

    .stat { padding: 12px 16px; }
    .stat-n { font-size: 2.2rem; }
    .stats-strip { flex-wrap: wrap; gap: 4px; }

    .stores-grid { grid-template-columns: 1fr; }

    .section-title { font-size: 1.8rem; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
    .pcard-img-wrap img { width: 110px; height: 110px; }

    .franchise-content h2 { font-size: 1.8rem; }

    .footer-inner { flex-direction: column; gap: 36px; padding: 48px 24px 32px; }
    .footer-bottom { padding: 16px 24px; }
}

@media (max-width: 768px) {
    .about-grid { gap: 40px; }
    .about-tags { flex-wrap: wrap; }
    .products-body { padding: 50px 20px 70px; }
    .franchise-overlay { padding: 60px 24px; }
    .stores-grid { grid-template-columns: 1fr 1fr; }
    .scard { padding: 24px 20px; }
}

@media (max-width: 390px) {
    .hero-wrap { padding: 100px 16px 60px; }
    .hero-title { font-size: 2rem; }
    .hero-desc { font-size: 0.95rem; }
    .hero-orbit { width: 190px; height: 190px; }
    .orbit-center { width: 86px; height: 86px; }
    .orbit-center img { width: 64px; height: 64px; }
    .orbit-cookie { width: 44px; height: 44px; }
    .hero-btns { flex-direction: column; align-items: center; gap: 10px; }
    .btn-primary, .btn-ghost { width: 100%; max-width: 280px; text-align: center; }

    .stat-n { font-size: 1.9rem; }
    .stat p { font-size: 0.72rem; }

    .about-img-frame { width: 240px; height: 240px; }
    .about-content p { font-size: 0.88rem; }
    .about-tags { gap: 6px; flex-wrap: wrap; }
    .tag { font-size: 0.72rem; padding: 5px 8px; }

    .products-body { padding: 40px 12px 60px; }
    .products-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
    .pcard-info h3 { font-size: 0.9rem; }
    .pcard-info p { font-size: 0.78rem; }

    .scard { padding: 20px 16px; }
    .scard h3 { font-size: 1rem; }

    .franchise-inner { gap: 24px; }
    .franchise-content h2 { font-size: 1.6rem; }
    .franchise-form-wrap { padding: 24px 16px; }

    .footer-inner { padding: 40px 16px 28px; gap: 28px; }
    .footer-bottom { padding: 14px 16px; font-size: 0.72rem; }

    .section-label { font-size: 0.65rem; padding: 5px 12px; }
}

@media (max-width: 375px) {
    .navbar { padding: 0 16px; }
    .nav-logo { width: 50px; height: 50px; }
    .hamburger span { width: 22px; }

    .hero-title { font-size: 1.85rem; }
    .hero-orbit { width: 170px; height: 170px; }
    .orbit-center { width: 78px; height: 78px; }
    .orbit-center img { width: 58px; height: 58px; }
    .orbit-cookie { width: 40px; height: 40px; }

    .mob-menu { width: 240px; }
    .mob-menu ul { padding: 0 16px; }
    .mob-menu li a { font-size: 0.95rem; }

    .stats-strip { padding: 24px 12px; }
    .stat-n { font-size: 1.7rem; }

    .section-title { font-size: 1.6rem; }

    .products-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .pcard-img-wrap img { width: 90px; height: 90px; }

    .footer-inner { padding: 36px 12px 24px; }
    .footer-logo { width: 90px; height: 90px; }

    .cookie-banner { padding: 12px 14px; }
    .cookie-banner-inner { gap: 8px; }
    .cookie-banner-left h3 { font-size: 0.85rem; }
    .cookie-banner-left p { font-size: 0.72rem; }
    .cookie-btn { padding: 8px 12px; font-size: 0.75rem; }
}

@media (max-width: 320px) {
    .hero-title { font-size: 1.65rem; }
    .hero-orbit { width: 150px; height: 150px; }
    .orbit-center { width: 68px; height: 68px; }
    .orbit-center img { width: 50px; height: 50px; }
    .orbit-cookie { width: 34px; height: 34px; }

    .stat-n { font-size: 1.5rem; }

    .products-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .pcard-img-wrap img { width: 78px; height: 78px; }
    .pcard-info h3 { font-size: 0.82rem; }
    .pcard-info p { display: none; }

    .footer-inner { padding: 32px 12px 20px; }
    .footer-bottom p { font-size: 0.65rem; }

    .cookie-banner-actions { justify-content: center; }
    .cookie-btn--customize { display: none; }
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--pink-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--pink); }

.cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: rgba(30, 16, 8, 0.97);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--pink);
    padding: 20px 40px;
    animation: slideUpBanner 0.4s ease;
}
@keyframes slideUpBanner {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
.cookie-banner-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 260px;
}
.cookie-banner-icon { font-size: 2rem; line-height: 1; flex-shrink: 0; }
.cookie-banner-left h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 4px;
}
.cookie-banner-left p {
    color: rgba(255,255,255,0.7);
    font-size: 0.82rem;
    line-height: 1.5;
}
.cookie-banner-left a { color: var(--pink-light); text-decoration: underline; }
.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.cookie-btn--accept {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: #fff;
}
.cookie-btn--accept:hover { opacity: 0.9; transform: translateY(-1px); }
.cookie-btn--reject {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1.5px solid rgba(255,255,255,0.25);
}
.cookie-btn--reject:hover { border-color: rgba(255,255,255,0.6); color: #fff; }
.cookie-btn--customize {
    background: transparent;
    color: rgba(255,255,255,0.55);
    border: 1.5px solid rgba(255,255,255,0.15);
}
.cookie-btn--customize:hover { border-color: var(--pink-light); color: var(--pink-light); }

.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal-box {
    background: #1e1008;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    animation: scaleIn 0.25s ease;
}
@keyframes scaleIn { from { transform: scale(0.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cookie-modal-header h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.2rem;
}
.cookie-modal-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: color 0.2s;
}
.cookie-modal-close:hover { color: #fff; }
.cookie-modal-body { padding: 20px 28px; }
.cookie-modal-body > p {
    color: rgba(255,255,255,0.6);
    font-size: 0.84rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.cookie-pref-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cookie-pref-item:last-child { border-bottom: none; }
.cookie-pref-info { flex: 1; }
.cookie-pref-info strong { display: block; color: #fff; font-size: 0.9rem; margin-bottom: 3px; }
.cookie-pref-info span { color: rgba(255,255,255,0.5); font-size: 0.78rem; line-height: 1.5; display: block; }
.cookie-modal-footer {
    display: flex;
    gap: 10px;
    padding: 16px 28px 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    justify-content: flex-end;
}

.cookie-toggle { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 24px;
    cursor: pointer;
    transition: 0.3s;
}
.cookie-toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px; height: 18px;
    left: 3px; top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--pink); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle--disabled .cookie-toggle-slider { background: rgba(240,44,142,0.4); cursor: not-allowed; }
.cookie-toggle--disabled .cookie-toggle-slider::before { background: rgba(255,255,255,0.8); }

.cookie-reopen-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9990;
    background: rgba(30,16,8,0.9);
    border: 1.5px solid var(--pink);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    display: none;
}
.cookie-reopen-btn:hover { background: var(--pink); }

@media (max-width: 768px) {
    .cookie-banner { padding: 16px 20px; }
    .cookie-banner-inner { gap: 16px; }
    .cookie-banner-actions { width: 100%; justify-content: flex-end; }
    .cookie-modal-box { border-radius: 16px; }
}

::selection { background: var(--pink); color: var(--white); }
