/*
Theme Name: THT
Theme URI: https://tramhoctapstationery.local
Author: THT Author
Author URI: https://tramhoctapstationery.local
Description: Custom WordPress Theme for Tram Hoc Tap Stationery - Candied Style Playful & Pastel
Version: 1.0.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tht
Domain Path: /languages
Requires at least: 5.0
Requires PHP: 7.2
Tags: custom, responsive, pastel, playful, kawaii
*/

/* ==============================
   GOOGLE FONTS IMPORT
   ============================== */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600&display=swap');

/* ==============================
   RESET & BASE STYLES
   ============================== */

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

html,
body {
    height: 100%;
}

body {
    font-family: 'Fredoka', 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #5a5a5a;
    background: linear-gradient(135deg, #fff5f7 0%, #f0f8ff 25%, #fff8f0 50%, #f0fff0 75%, #fff5f0 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

a {
    color: #d4568c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.check-out-a {
    color: #fff;
}

.check-out-a:hover {
    color: #fff;
}

a:hover {
    color: #d4568c;
}

/* ==============================
   TYPOGRAPHY
   ============================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Dancing Script', serif;
    margin: 20px 0 10px 0;
    font-weight: 600;
    line-height: 1.4;
    color: #d4568c;
}

h1 {
    font-size: 3.5rem;
    font-family: 'Caveat', cursive;
    font-weight: 700;
    color: #ff8fb1;
}

h2 {
    font-size: 2.5rem;
    color: #d4568c;
}

h3 {
    font-size: 1.75rem;
    color: #d4568c;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 15px;
}

/* ==============================
   HERO SECTION - CANDIED STYLE
   ============================== */

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 60px 20px;
    background: linear-gradient(135deg, #fff5f7 0%, #f0f8ff 25%, #fff8f0 50%, #f0fff0 75%, #fff5f0 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

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

.hero-text-wrapper {
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-family: 'Caveat', cursive;
    color: #ff8fb1;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(255, 182, 217, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #d4568c;
    font-family: 'Dancing Script', serif;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff8fb1, #ffb3d9);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 143, 177, 0.4);
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 143, 177, 0.6);
    background: linear-gradient(135deg, #ff6b9d, #ff9fb5);
}

/* ==============================
   HERO IMAGE WITH LAYERED CARDS
   ============================== */

.hero-image-wrapper {
    position: relative;
    height: 400px;
    z-index: 1;
}

.hero-card-layers {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.layer-1 {
    background: linear-gradient(135deg, #ffb3d9 0%, #ffd9e8 100%);
    top: 0;
    left: 0;
    animation-delay: 0s;
}

.layer-2 {
    background: linear-gradient(135deg, #b3e5fc 0%, #b3f5ea 100%);
    top: 15px;
    left: 15px;
    animation-delay: 0.3s;
}

.layer-3 {
    background: linear-gradient(135deg, #fff9c4 0%, #ffe0b2 100%);
    top: 30px;
    left: 30px;
    animation-delay: 0.6s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Marquee/scrolling text animation: right to left */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==============================
   HERO DECORATIONS
   ============================== */

.hero-decorations {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.flower,
.heart {
    position: absolute;
    font-size: 3rem;
    animation: float 4s ease-in-out infinite;
}

.flower-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.flower-2 {
    bottom: 15%;
    right: 8%;
    animation-delay: 1s;
}

.flower-3 {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
    font-size: 2.5rem;
}

.heart-1 {
    top: 25%;
    left: 10%;
    animation-delay: 0.5s;
    font-size: 2rem;
}

.heart-2 {
    bottom: 30%;
    right: 15%;
    animation-delay: 1.5s;
    font-size: 2.5rem;
}

.rainbow-arc {
    position: absolute;
    bottom: 5%;
    left: 15%;
    width: 300px;
    height: 150px;
    border: 5px solid transparent;
    border-top: 5px solid #ff8fb1;
    border-right: 5px solid #ffb3d9;
    border-radius: 300px 300px 0 0;
    opacity: 0.6;
}

/* ==============================
   LAYOUT STRUCTURE
   ============================== */

/* #page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
} */

/* ==============================
   HOME PAGE REFRESH
   ============================== */

.home-page {
    background: #fff7f3;
}

.home-section-shell {
    max-width: 1480px;
    margin: 0 auto;
}

.home-hero-slider {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffdce4 0%, #ffdbe7 35%, #ffe8dd 100%);
    padding: 0 0 18px;
}

.home-hero-slider-track {
    position: relative;
    min-height: 570px;
}

.home-hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    align-items: center;
    gap: 14px;
    opacity: 0;
    transform: translateX(6%);
    transition: opacity 0.75s ease, transform 0.75s ease;
    pointer-events: none;
}

.home-hero-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.home-hero-slide-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.hero-mobile-brand {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-mobile-logo {
    display: block;
    width: min(100%, 360px);
    height: auto;
}

.hero-mobile-image-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-mobile-image {
    display: block;
    width: 100%;
    height: auto;
}

.home-hero-slide-art {
    position: relative;
    min-height: 420px;
}

.hero-polaroid {
    position: absolute;
    width: 300px;
    padding: 18px 18px 26px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 30px rgba(211, 164, 168, 0.18);
    transform: rotate(-7deg);
}

.hero-polaroid-b {
    width: 330px;
    left: 170px;
    top: 126px;
    transform: rotate(9deg);
}

.hero-polaroid-inner {
    height: 300px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.hero-photo-pink {
    background: linear-gradient(180deg, #f9bfd1 0%, #ffe3eb 100%);
}

.hero-photo-mint {
    background: linear-gradient(180deg, #c2ece8 0%, #e6fbf8 100%);
}

.hero-photo-lavender {
    background: linear-gradient(180deg, #f3d5ec 0%, #fff1fb 100%);
}

.hero-photo-soft {
    background: linear-gradient(180deg, #f7f2ee 0%, #fff 100%);
}

.home-hero-slide-center {
    position: relative;
    text-align: center;
    padding: 40px 18px;
}

.hero-sticker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: #ed7b96;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
}

.hero-cloud-card {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: min(100%, 620px);
    min-height: 360px;
    padding: 40px 28px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 38px rgba(229, 172, 167, 0.18);
}

.hero-cloud-shadow {
    position: absolute;
    inset: 10px 18px 16px;
    border-radius: 34px;
    border: 2px dashed rgba(235, 213, 195, 0.88);
}

.hero-cloud-title {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 0;
    line-height: 0.95;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-cloud-title span:first-child {
    font-size: clamp(3.2rem, 7vw, 5rem);
    color: #f39cb7;
}

.hero-cloud-title span:last-child {
    font-size: clamp(3.8rem, 8vw, 6rem);
    color: #f6b04a;
}

.hero-cloud-button {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    min-width: 172px;
    padding: 14px 28px;
    border-radius: 12px;
    background: #ea8bad;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    box-shadow: 0 10px 18px rgba(234, 139, 173, 0.34);
}

.hero-doodle,
.hero-star,
.hero-floating-label {
    position: absolute;
}

.hero-doodle-left {
    left: 28px;
    bottom: 42px;
    color: #ff9aa9;
    font-size: 1.3rem;
}

.hero-doodle-right {
    right: 48px;
    top: 122px;
    color: #ff8678;
    font-size: 1.25rem;
}

.home-hero-slide-art-right {
    position: relative;
}

.hero-floating-label {
    color: #ffffff;
    font-size: clamp(1.3rem, 2vw, 2.2rem);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-shadow: 0 4px 0 rgba(255, 255, 255, 0.2);
}

.hero-label-a {
    top: 72px;
    right: 88px;
}

.hero-label-b {
    top: 188px;
    right: 24px;
    font-size: clamp(3rem, 7vw, 5.4rem);
    letter-spacing: 0.03em;
    color: #f26797;
    font-family: 'Caveat', cursive;
}

.hero-star {
    color: #ffffff;
    font-size: 2rem;
}

.hero-star-a {
    top: 42px;
    left: 60px;
}

.hero-star-b {
    bottom: 72px;
    left: 70px;
}

.hero-ribbon {
    position: absolute;
    right: 120px;
    bottom: 30px;
    width: 120px;
    height: 360px;
    border-radius: 60px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0.1));
    opacity: 0.15;
}

.hero-ribbon-pink {
    background: linear-gradient(180deg, rgba(255, 143, 177, 0.18), rgba(255, 205, 220, 0.1));
}

.hero-ribbon-mint {
    background: linear-gradient(180deg, rgba(159, 222, 218, 0.18), rgba(255, 255, 255, 0.12));
}

.hero-ribbon-lavender {
    background: linear-gradient(180deg, rgba(232, 180, 229, 0.18), rgba(255, 255, 255, 0.1));
}

.home-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.55);
    color: #444;
    font-size: 1.5rem;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.home-hero-arrow-prev {
    left: 18px;
}

.home-hero-arrow-next {
    right: 18px;
}

.home-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.home-hero-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.6);
}

.home-hero-dot.is-active {
    background: #f0729b;
    transform: scale(1.2);
}

.home-tiles-section {
    background: #fff;
    padding: 42px 24px 34px;
}

.home-tiles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px;
}

.home-tile {
    position: relative;
    min-height: 334px;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    color: #fff;
    box-shadow: 0 10px 22px rgba(217, 178, 175, 0.14);
}

.home-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.18;
}

.home-tile-small {
    position: relative;
    z-index: 1;
    font-family: 'Caveat', cursive;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
}

.home-tile-main {
    position: relative;
    z-index: 1;
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.02;
}

.home-tile-shop {
    position: relative;
    z-index: 1;
    margin-top: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 18px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.72);
    color: #2e2e2e;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.4em;
}

.home-tile-new {
    background: #f46ba0;
}

.home-tile-new::before {
    background-image: radial-gradient(circle at 18% 26%, rgba(255, 255, 255, 0.7) 0 2px, transparent 2px), radial-gradient(circle at 78% 74%, rgba(255, 255, 255, 0.7) 0 2px, transparent 2px);
    background-size: 48px 48px;
}

.home-tile-top {
    background: #8fd4d6;
}

.home-tile-top::before {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0 11px, transparent 12px);
    background-size: 60px 60px;
    opacity: 0.24;
}

.home-tile-faves {
    background: #fdc13f;
}

.home-tile-faves::before {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.34) 0 9px, transparent 10px);
    background-size: 34px 34px;
}

.home-tile-gift {
    background: #db8fda;
}

.home-tile-gift::before {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.16) 0 10px, transparent 10px 24px);
    background-size: 24px 100%;
}

.home-rainbow-band {
    position: relative;
    height: 120px;
    background: linear-gradient(180deg, #fff 0%, #fff 42%, #fbdfe3 42%, #fbdfe3 100%);
}

.home-rainbow-cloud {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -20%);
    width: 280px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: radial-gradient(circle at 50% 60%, #fff 0 58%, transparent 59%);
}

.home-scroll-slogan-section {
    background: #c9a0d9;
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.home-scroll-slogan-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.home-scroll-slogan-wrap .home-scroll-slogan+.home-scroll-slogan {
    display: none;
}

.home-scroll-slogan-wrap.is-animated {
    justify-content: flex-start;
    animation: marquee 8s linear infinite;
}

.home-scroll-slogan-wrap.is-animated .home-scroll-slogan+.home-scroll-slogan {
    display: block;
}

.home-scroll-slogan {
    margin: 0;
    padding: 0 40px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ffffff;
    text-transform: uppercase;
    flex-shrink: 0;
}

/* Mobile responsive for marquee slogan */
@media (max-width: 768px) {
    .home-products-section .home-product-actions {
        opacity: 1;
        margin-bottom: 8px;
    }

    .home-scroll-slogan-section {
        padding: 12px 0;
    }

    .home-scroll-slogan {
        padding: 0 24px;
        font-size: 0.95rem;
        letter-spacing: 0.08em;
    }

    .home-scroll-slogan-wrap {
        justify-content: center;
    }

    .home-scroll-slogan-wrap.is-animated {
        justify-content: flex-start;
        animation: marquee 5s linear infinite;
    }
}

@media (max-width: 480px) {
    .home-products-section .home-product-actions {
        opacity: 1;
        margin-bottom: 8px;
    }

    .home-scroll-slogan {
        padding: 0 16px;
        font-size: 0.8rem;
        letter-spacing: 0.06em;
    }

    .home-scroll-slogan-wrap {
        justify-content: center;
    }

    .home-scroll-slogan-wrap.is-animated {
        justify-content: flex-start;
        animation: marquee 5s linear infinite;
    }
}

.home-subscribe-section {
    padding: 0 0 34px;
}

.home-subscribe-shell {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    background: #8fbfc4;
}

.home-envelope {
    position: absolute;
    left: 104px;
    top: 104px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 4.8rem;
    transform: rotate(-6deg);
}

.home-subscribe-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 780px;
    margin: 0 auto;
    padding: 52px 26px;
}

.home-subscribe-kicker {
    margin: 0;
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    font-weight: 700;
    letter-spacing: 0.05em;
}

.home-subscribe-title {
    margin: 0;
    font-family: 'Caveat', cursive;
    font-size: clamp(2rem, 4vw, 3.4rem);
    color: #fff6e7;
}

.home-subscribe-copy {
    margin: 26px auto 18px;
    max-width: 560px;
    font-size: 0.95rem;
}

.home-subscribe-form {
    display: flex;
    justify-content: center;
    max-width: 410px;
    margin: 0 auto;
}

.input-box {
    display: flex;
    align-items: center;
    width: 500px;
    border: 1.5px solid #666;
    background: #f4f4f4;
    border-radius: 6px;
    overflow: hidden;
}

.input-box input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 18px;
    background: transparent;
}

.input-box .arrow {
    width: 60px;
    border: none;
    font-size: 20px;
    transition: 0.3s;
    background: none;
}

.input-box .arrow:hover {
    background: #f4b9c9;
    padding: 17px;
}

.home-subscribe-input {
    margin: 0;
    border: 0;
    border-radius: 0;
    padding: 14px 16px;
    background: #fff;
    color: #777;
}

.home-subscribe-button {
    min-width: 58px;
    margin: 0;
    border-radius: 0;
    background: #fff;
    color: #ef9b4a;
    height: 46px;
}

.home-products-section {
    background: #fff;
    padding: 40px 24px 36px;
}

.home-section-heading {
    margin: 0 0 28px;
    text-align: center;
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #1b1b1b;
}

.home-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
}

.home-products-slider {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 14px;
}

.home-products-slider-track {
    flex: 1 1 auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.home-products-slider-track::-webkit-scrollbar {
    display: none;
}

.home-products-slider-track .home-products-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 30px;
    width: max-content;
    padding-bottom: 6px;
}

.home-products-slider-track .home-product-card {
    flex: 0 0 clamp(220px, 24vw, 300px);
    width: clamp(220px, 24vw, 300px);
    scroll-snap-align: start;
}

.home-products-slider-nav {
    align-self: center;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    color: #222;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 auto;
    transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.home-products-slider-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
}

.home-products-slider-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

.home-products-slider-nav--prev {
    margin-right: 0;
}

.home-products-slider-nav--next {
    margin-left: 0;
}

.home-product-card {
    text-align: center;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.home-product-card.is-visible,
.home-review-card.is-visible,
.home-shopwithus-item.is-visible,
.home-instagram-tile.is-visible,
.home-tile.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.home-product-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f4f0ec;
}

.home-product-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.1));
}

.home-product-peach .home-product-visual {
    background: linear-gradient(180deg, #fbdbc1 0%, #fff4eb 100%);
}

.home-product-mint .home-product-visual {
    background: linear-gradient(180deg, #e3ece8 0%, #fff 100%);
}

.home-product-rose .home-product-visual {
    background: linear-gradient(180deg, #f7c6d8 0%, #fff4f8 100%);
}

.home-product-yellow .home-product-visual {
    background: linear-gradient(180deg, #f2e4b0 0%, #fff6d9 100%);
}

.home-product-lavender .home-product-visual,
.home-product-aqua .home-product-visual {
    background: linear-gradient(180deg, #ecc7ef 0%, #fff2fb 100%);
}

.home-product-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    z-index: 1;
    padding: 7px 15px;
    border-radius: 999px;
    background: #8bd2d7;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
}

.home-product-badge-soft {
    background: #fff1eb;
    color: #222;
}

.home-product-ribbon {
    position: absolute;
    right: 0;
    top: 0;
    width: 74px;
    height: 74px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
    border-bottom-left-radius: 100%;
}

.home-product-emoji {
    position: relative;
    z-index: 1;
    font-size: 4.5rem;
}

.home-product-title,
.home-product-price {
    margin: 0;
    color: #171717;
}

.home-products-section .home-product-card {
    position: relative;
    height: 100%;
}

.home-products-section .home-product-link-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 14px 14px 78px;
    border: 1px solid rgba(231, 197, 187, 0.7);
    border-radius: 24px;
    background: linear-gradient(180deg, #fffaf7 0%, #fff 100%);
    box-shadow: 0 10px 30px rgba(230, 188, 171, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-products-section .home-product-card:hover .home-product-link-wrapper {
    transform: translateY(-6px);
    border-color: rgba(230, 188, 171, 0.95);
    box-shadow: 0 18px 36px rgba(230, 188, 171, 0.2);
}

.home-product-title {
    margin-top: 16px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.35;
    min-height: 2.7em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-product-price {
    margin-top: 12px;
    display: inline-flex;
    align-self: flex-start;
    padding: 8px 14px;
    border-radius: 999px;
    background: #fff1eb;
    font-size: 1rem;
    letter-spacing: 0.03em;
}

.home-products-section .home-product-actions {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.home-products-section .home-product-card:hover .home-product-actions,
.home-products-section .home-product-card:focus-within .home-product-actions {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.home-products-section .home-product-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.home-products-section .home-product-action:hover {
    transform: translateY(-2px);
}

.home-products-section .home-product-action-buy {
    background: #222;
    color: #fff;
    box-shadow: 0 8px 18px rgba(34, 34, 34, 0.18);
}

.home-products-section .home-product-action-cart {
    background: #fff1eb;
    color: #222;
    box-shadow: 0 8px 18px rgba(230, 188, 171, 0.18);
}

.home-products-section .home-product-visual {
    border-radius: 18px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.home-products-section .home-product-visual img,
.home-products-section .home-product-visual .home-product-emoji {
    transition: transform 0.35s ease;
}

.home-products-section .home-product-card:hover .home-product-visual img,
.home-products-section .home-product-card:hover .home-product-visual .home-product-emoji {
    transform: scale(1.04);
}

.home-products-section .home-product-link-wrapper:hover .home-product-visual::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.14));
}

.home-products-section .home-product-badge {
    left: 12px;
    bottom: 12px;
    background: rgba(139, 210, 215, 0.95);
    backdrop-filter: blur(8px);
}

.home-story-section {
    background: #fff7f2;
    padding: 42px 24px 54px;
}

.home-story-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
    gap: 24px;
    align-items: center;
}

.home-story-content {}

.home-story-image-frame::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 26px;
    background: #f8c8d4;
}

.home-story-image-frame::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 26px;
    background: #f8c8d4;
}

.home-story-image {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #fefefe 0%, #f8f0e6 100%);
    overflow: hidden;
}

.home-story-image-card {
    position: absolute;
    border-radius: 18px;
    box-shadow: 0 14px 26px rgba(215, 172, 164, 0.18);
}

.home-story-image-a {
    width: 62%;
    height: 52%;
    left: 10%;
    top: 10%;
    background: linear-gradient(180deg, #fed0af 0%, #fff2e4 100%);
}

.home-story-image-b {
    width: 44%;
    height: 38%;
    right: 6%;
    top: 20%;
    background: linear-gradient(180deg, #a9e6de 0%, #effaf8 100%);
}

.home-story-image-c {
    width: 74%;
    height: 36%;
    right: 8%;
    bottom: 8%;
    background: linear-gradient(180deg, #ffdae5 0%, #fff2f7 100%);
}

.home-reviews-section {
    background: #f9cfd5;
    padding: 48px 24px 62px;
}

.home-reviews-title-wrap {
    position: relative;
    text-align: center;
    color: #fff;
    margin-bottom: 36px;
}

.home-reviews-stars {
    font-size: 2rem;
    color: #ffc233;
    letter-spacing: 0.16em;
}

.home-reviews-title {
    margin: 6px 0 0;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 0.95;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

.home-reviews-title span:first-child {
    color: #f46ba0;
}

.home-reviews-title span:last-child {
    color: #8bd2d7;
}

.home-reviews-script {
    margin: 10px 0 0;
    font-family: 'Caveat', cursive;
    font-size: clamp(2rem, 4vw, 3.4rem);
    color: #1d1d1d;
}

.home-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.home-review-card {
    text-align: center;
    color: #1d1d1d;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.home-review-stars {
    color: #fff;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    margin-bottom: 18px;
}

.home-review-text {
    margin: 0 auto 18px;
    max-width: 350px;
    line-height: 1.8;
    font-size: 1rem;
}

.home-review-name {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
}

.home-products-section-alt {
    padding-top: 52px;
}

.home-products-grid-loved {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-offer-section {
    background: #fff5ed;
    padding: 38px 24px 48px;
}

.home-offer-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, 0.7fr) minmax(220px, 0.7fr);
    gap: 24px;
    align-items: center;
    min-height: 430px;
    background: linear-gradient(180deg, #fff5ed 0%, #fdf1ea 100%);
}

.home-offer-main {
    position: relative;
    min-height: 380px;
    padding: 58px 64px;
    background: linear-gradient(180deg, #fffdfa 0%, #fffaf2 100%);
    border: 1px solid rgba(244, 199, 171, 0.35);
    box-shadow: 0 16px 30px rgba(226, 187, 172, 0.18);
}

.home-offer-main::before {
    content: '';
    position: absolute;
    inset: 18px;
    background-image: linear-gradient(rgba(244, 216, 179, 0.55) 1px, transparent 1px), linear-gradient(90deg, rgba(244, 216, 179, 0.55) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.6;
    pointer-events: none;
}

.home-offer-script,
.home-offer-percent,
.home-offer-title,
.home-offer-text {
    position: relative;
    z-index: 1;
    text-align: center;
}

.home-offer-script {
    margin: 0 0 8px;
    font-family: 'Caveat', cursive;
    font-size: clamp(2rem, 5vw, 4rem);
    color: #000;
}

.home-offer-percent {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(4rem, 8vw, 6.5rem);
    font-weight: 700;
    color: #8bd2d7;
    line-height: 0.95;
}

.home-offer-title {
    margin-top: 8px;
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #f46ba0;
}

.home-offer-text {
    margin-top: 20px;
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    color: #000;
}

.home-offer-side {
    min-height: 240px;
    border-radius: 28px;
    box-shadow: 0 14px 28px rgba(226, 187, 172, 0.18);
}

.home-offer-side-a {
    background: radial-gradient(circle at 50% 50%, #c9f0ef 0 20%, transparent 20.5%), linear-gradient(180deg, #e0efe6 0%, #fff 100%);
}

.home-offer-side-b {
    background: radial-gradient(circle at 20% 25%, #ffd2de 0 12%, transparent 12.5%), linear-gradient(180deg, #f6d4d8 0%, #fff4f3 100%);
}

.home-offer-badge {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    padding: 16px 20px;
    border-radius: 999px;
    background: #e79bd2;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.35em;
}

.home-shopwithus-section {
    background: #8fd4d6;
    padding: 54px 24px 62px;
}

.home-shopwithus-shell {
    position: relative;
    text-align: center;
    color: #fff;
}

.home-shopwithus-header {
    display: inline-block;
    margin-bottom: 34px;
    padding: 18px 42px 10px;
    background: #fff;
    color: #000;
    font-family: 'Caveat', cursive;
    font-size: clamp(2.5rem, 6vw, 4.4rem);
    line-height: 1;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 12px 0 rgba(255, 255, 255, 0.45);
}

.home-shopwithus-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 38px;
}

.home-shopwithus-item {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.home-shopwithus-icon {
    font-size: 4rem;
    margin-bottom: 18px;
}

.home-shopwithus-title {
    margin: 0 0 12px;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
}

.home-shopwithus-text {
    max-width: 300px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
    color: #fff;
}

.home-shopwithus-button {
    display: inline-flex;
    padding: 14px 28px;
    border-radius: 10px;
    background: #6ec8cd;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.home-instagram-section {
    background: #f8cad2;
    padding: 42px 24px 0;
}

.home-instagram-title {
    margin: 0 0 22px;
    text-align: center;
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 700;
    color: #f46ba0;
    letter-spacing: 0.04em;
}

.home-instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
}

.home-instagram-tile {
    position: relative;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-family: 'Caveat', cursive;
    font-size: 2rem;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.home-instagram-tile span {
    position: relative;
    z-index: 1;
    padding: 8px 10px;
    text-shadow: 0 2px 0 rgba(0, 0, 0, 0.07);
}

.ig-pink {
    background: linear-gradient(180deg, #e5b5c7 0%, #cfa695 100%);
}

.ig-mint {
    background: linear-gradient(180deg, #7ecfd0 0%, #b6ece2 100%);
}

.ig-lavender {
    background: linear-gradient(180deg, #4f7c93 0%, #9ad1da 100%);
}

.ig-yellow {
    background: linear-gradient(180deg, #f7e4a6 0%, #ffdfa5 100%);
}

.ig-blue {
    background: linear-gradient(180deg, #ff96c5 0%, #ffcbdf 100%);
}

.ig-peach {
    background: linear-gradient(180deg, #d5ebe3 0%, #fff0e2 100%);
}

.home-instagram-tile::after {
    content: '';
    position: absolute;
    inset: 14px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.site-navigation-bar .menu {
    justify-content: center;
}

@media (max-width: 1280px) {
    .home-hero-slide {
        grid-template-columns: 1fr minmax(420px, 560px) 1fr;
    }

    .home-products-grid,
    .home-products-grid-loved,
    .home-instagram-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-shopwithus-grid,
    .home-reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .home-products-slider {
        gap: 10px;
        display: block;
    }

    .home-products-slider-nav {
        display: none;
    }

    .home-products-slider-nav {
        width: 38px;
        height: 38px;
        position: relative;
        z-index: 2;
    }

    .home-products-slider-track .home-products-grid {
        gap: 16px;
    }

    .home-products-slider-track .home-product-card {
        flex-basis: 78vw;
        width: 78vw;
    }

    .home-products-section .home-product-actions {
        opacity: 1;
        margin-bottom: 8px;
    }

    .home-hero-slide {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 60px;
    }

    .home-hero-slide-art,
    .home-hero-slide-center {
        min-height: auto;
    }

    .hero-polaroid-a,
    .hero-polaroid-b,
    .hero-ribbon,
    .hero-floating-label,
    .hero-star,
    .hero-doodle {
        display: none;
    }

    .home-hero-slider-track {
        min-height: 520px;
    }

    .home-tiles-grid,
    .home-products-grid,
    .home-products-grid-loved,
    .home-shopwithus-grid,
    .home-reviews-grid,
    .home-instagram-grid,
    .home-offer-shell {
        grid-template-columns: 1fr;
    }

    .home-offer-shell {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .home-products-slider {
        display: block;
    }

    .home-offer-side-a,
    .home-offer-side-b {
        display: none;
    }

    .home-offer-badge {
        bottom: 10px;
    }

    .home-offer-text {
        font-size: 1.6rem;
    }

    .home-shopwithus-header {
        font-size: 35px;
    }

    .home-products-slider-nav {
        display: none;
    }

    .home-products-section .home-product-actions {
        opacity: 1;
        margin-bottom: 8px;
    }

    .home-hero-slide,
    .home-tiles-section,
    .home-subscribe-section,
    .home-products-section,
    .home-story-section,
    .home-reviews-section,
    .home-offer-section,
    .home-shopwithus-section,
    .home-instagram-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .home-tiles-grid,
    .home-products-grid,
    .home-products-grid-loved,
    .home-shopwithus-grid,
    .home-reviews-grid,
    .home-instagram-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-arrow {
        top: auto;
        bottom: 14px;
        transform: none;
        padding: 0px 0px;
    }

    .home-hero-arrow-prev {
        left: 14px;
    }

    .home-hero-arrow-next {
        right: 14px;
    }

    .home-subscribe-shell {
        min-height: auto;
    }

    .home-envelope {
        display: none;
    }

    .home-story-shell {
        grid-template-columns: 1fr;
    }

    .home-story-image-frame {
        max-width: 340px;
        margin: 0 auto;
    }

    .home-instagram-tile {
        min-height: 200px;
    }

    .input-box {
        width: 100%;
    }

    .input-box input {
        font-size: 16px;
        padding: 16px;
    }

    .input-box .arrow {
        width: 50px;
    }
}

/* ==============================
   CANDIED HOMEPAGE LAYOUT
   ============================== */


.site-announcement-bar {
    background: #a9d6db;
    color: #ffffff;
    letter-spacing: 0.18em;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 7px 10px;
}

.site-announcement-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
}

.announcement-social {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-self: start;
}

.announcement-social-link {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.78rem;
    line-height: 1;
}

.announcement-social-link i {
    font-size: 0.85rem;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-center {
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: 0;
}

.announcement-track {
    width: clamp(240px, 46vw, 540px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    min-width: 0;
    margin: 0 2px;
}

.announcement-list {
    display: flex;
    width: 100%;
    will-change: transform;
    transition: transform 0.45s cubic-bezier(.2, .9, .3, 1);
}

.announcement-item {
    flex: 0 0 100%;
    text-align: center;
    padding: 6px 2px;
    color: #fff;
    white-space: nowrap;
}

.announcement-arrow {
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    line-height: 1;
    width: 28px;
    height: 28px;
    padding: 0;
}

.announcement-arrow i {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-prev {
    margin-right: 0;
}

.announcement-next {
    margin-left: 0;
}

.announcement-arrow:focus {
    outline: none;
}

@media (max-width: 768px) {
    .home-products-section .home-product-actions {
        opacity: 1;
        margin-bottom: 8px;
    }

    .site-header-desktop {
        display: none;
    }

    .site-header-mobile {
        display: block;
    }

    .site-announcement-inner {
        gap: 8px;
        grid-template-columns: auto minmax(0, 1fr);
    }

    .announcement-social {
        gap: 5px;
    }

    .announcement-center {
        gap: 2px;
        width: 100%;
        justify-content: center;
    }

    .home-offer-main {
        padding: 0 0px;
    }

    .announcement-social-link {
        width: 24px;
        height: 24px;
        font-size: 0.68rem;
    }

    .announcement-arrow {
        width: 22px;
        height: 22px;
        font-size: 0.9rem;
    }

    .announcement-track {
        width: min(100%, 240px);
        margin: 0 1px;
    }
}

.site-header-row {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    min-height: 82px;
}

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

.site-header-search {
    justify-content: flex-start;
}

.site-header-icons {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 18px;
}

.header-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 0;
    border: 0;
    color: #222;
    font-size: 1.05rem;
    background: transparent;
    line-height: 1;
}

.header-icon-link i {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.header-icon-user,
.header-icon-bag {
    color: #222;
}

.header-icon-bag {
    position: relative;
    display: inline-flex;
}

.header-cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: #e11d48;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
}

.header-cart-count:empty,
.header-cart-count[data-count='0'] {
    display: none;
}

.site-branding-center {
    text-align: center;
}

.site-branding-center--no-logo {
    background: none;
    background-image: none;
}

.site-branding-center--no-logo::before,
.site-branding-center--no-logo::after {
    content: none;
    display: none;
}

.site-branding-center--no-logo .custom-logo-link,
.site-branding-center--no-logo .custom-logo,
.site-branding-center--no-logo img,
.site-branding-center--no-logo picture {
    display: none;
}

.tht-seo-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    border: 0;
    white-space: nowrap;
}

.brand-wordmark {
    margin: 0;
    line-height: 1;
}

.brand-wordmark a {
    display: inline-flex;
    align-items: flex-end;
    gap: 6px;
    color: inherit;
}

.brand-script {
    font-family: 'Caveat', cursive;
    font-size: 2.6rem;
    color: #f2b84c;
}

.brand-main {
    font-family: 'Fredoka', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #f08da7;
}

.brand-tagline {
    margin-top: 2px;
    color: #96c1d3;
    font-size: 0.75rem;
    letter-spacing: 0.45em;
    font-weight: 700;
}


.site-navigation-bar {
    background: #f4b9c9;
    margin-top: 16px;
    border-radius: 0;
    overflow: hidden;
}

.site-navigation-bar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
    padding: 15px 20px;
    margin: 0;
    flex-wrap: wrap;
}

.site-navigation-bar li {
    margin: 0;
}

.site-navigation-bar a {
    color: #ffffff;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

#ez-toc-container a:hover {
    text-decoration: none;
}

.site-header-desktop {
    display: none;
}

.site-header-mobile {
    display: block;
}

@media (min-width: 769px) {
    .home-products-section .home-product-actions {
        opacity: 1;
        margin-bottom: 8px;
    }

    .site-header-desktop {
        display: block;
    }

    .site-header-mobile {
        display: none;
    }

    .site-header-desktop .site-header-row {
        padding: 18px 24px 20px;
        min-height: 118px;
    }

    .site-header-desktop .site-header-side {
        gap: 18px;
    }

    .site-header-desktop .site-header-search {
        justify-content: flex-start;
    }

    .site-header-desktop .site-header-icons {
        justify-content: flex-end;
        gap: 16px;
    }

    .menu-toggle {
        display: none;
    }
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: #222;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
}

.menu-toggle i {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-page {
    background: #fff9f5;
}

.home-section-shell {
    max-width: 1400px;
    margin: 0 auto;
}

.home-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fff8f3 0%, #fce4d9 100%);
    padding: 54px 22px 40px;
}

.home-hero-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.35;
    pointer-events: none;
}

.home-hero-inner {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 440px;
    display: grid;
    grid-template-columns: 1fr minmax(520px, 620px) 1fr;
    align-items: center;
    gap: 24px;
}

.home-hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    min-height: 360px;
    border-radius: 34px;
    box-shadow: 0 20px 45px rgba(233, 176, 160, 0.24);
    border: 2px dashed rgba(247, 212, 190, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
}

.home-hero-card-topline {
    position: absolute;
    top: 20px;
    left: 32px;
    right: 32px;
    height: 10px;
    background-image: radial-gradient(circle, #f5dac5 2px, transparent 2px);
    background-size: 28px 10px;
    opacity: 0.75;
}

.home-hero-title {
    margin: 0;
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(3.2rem, 7vw, 5.3rem);
    line-height: 0.95;
    color: #f39cb7;
    letter-spacing: 0.03em;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-hero-title span:first-child {
    color: #f39cb7;
}

.home-hero-title span:last-child {
    color: #f6b04a;
}

.home-hero-script {
    margin: 16px 0 0;
    font-family: 'Caveat', cursive;
    font-size: 3.1rem;
    color: #f0b24f;
}

.shop-hero {
    text-align: center;
}

.mt-5 {
    margin-top: 25px;
}

.home-hero-button {
    margin-top: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 14px 30px;
    border-radius: 10px;
    background: #e7a4c5;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    box-shadow: 0 10px 18px rgba(231, 164, 197, 0.3);
}

.home-hero-button:hover {
    transform: translateY(-2px);
    color: #ffffff;
}

.home-hero-heart {
    position: absolute;
    right: 44px;
    bottom: 54px;
    color: #ff8d7e;
    font-size: 1.2rem;
}

.home-hero-art {
    position: relative;
    min-height: 320px;
}

.home-hero-art-left {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.home-hero-art-right {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.hero-blob {
    position: absolute;
    border-radius: 50% 46% 48% 52% / 44% 55% 45% 56%;
    background: rgba(255, 213, 194, 0.85);
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.35);
}

.hero-blob-l1 {
    width: 220px;
    height: 220px;
    left: 18px;
    bottom: 40px;
}

.hero-blob-l2 {
    width: 150px;
    height: 150px;
    left: 150px;
    bottom: 0;
    background: rgba(255, 238, 232, 0.9);
}

.hero-corner-card {
    position: absolute;
    width: 170px;
    height: 150px;
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(255, 230, 208, 0.9), rgba(255, 208, 217, 0.9));
    box-shadow: 0 14px 32px rgba(224, 177, 166, 0.24);
}

.hero-corner-card-left {
    left: 0;
    top: 10px;
    transform: rotate(-10deg);
}

.hero-corner-card-right {
    right: 0;
    bottom: 22px;
    transform: rotate(9deg);
}

.hero-flower {
    position: absolute;
    font-size: 3.8rem;
    color: #f4a9c0;
    filter: drop-shadow(0 4px 10px rgba(241, 166, 190, 0.18));
}

.flower-a {
    top: 20px;
    right: 120px;
}

.flower-b {
    bottom: 80px;
    right: 38px;
    color: #9bc8da;
}

.home-tiles-section {
    background: #fff;
    padding: 28px 22px 38px;
}

.home-tiles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.home-tile {
    position: relative;
    min-height: 214px;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
    box-shadow: 0 8px 22px rgba(213, 169, 159, 0.12);
}

.home-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    opacity: 0.18;
}

.home-tile-new {
    background: linear-gradient(180deg, #ee9cca 0%, #f7bed6 100%);
}

.home-tile-new::before {
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.65) 0 14px, transparent 15px), radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.5) 0 8px, transparent 9px);
}

.home-tile-best {
    background: linear-gradient(180deg, #f7b742 0%, #ffd26b 100%);
}

.home-tile-best::before {
    background-image: radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.32) 0 62px, transparent 63px);
}

.home-tile-sale {
    background: linear-gradient(180deg, #f27340 0%, #f6a14d 100%);
}

.home-tile-sale::before {
    background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.16) 50%, rgba(255, 255, 255, 0.16) 75%, transparent 75%, transparent);
    background-size: 24px 24px;
}

.home-tile-gift {
    background: linear-gradient(180deg, #efb0a7 0%, #f5c2b4 100%);
}

.home-tile-text {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.home-tile-main {
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2.3rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
}

.home-tile-script {
    font-family: 'Caveat', cursive;
    font-size: 2.8rem;
    line-height: 1;
    margin-top: -2px;
}

.home-tile-sub {
    font-family: 'Caveat', cursive;
    font-size: 1.75rem;
    margin-top: 6px;
}

.home-subscribe-section {
    padding: 34px 22px 44px;
}

.home-subscribe-shell {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    border-radius: 0;
    background: #8fbfc4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-subscribe-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    padding: 26px 24px;
}

.home-subscribe-kicker {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1;
    font-family: 'Fredoka', sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.home-subscribe-title {
    margin: 0;
    font-family: 'Caveat', cursive;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff8e6;
}

.home-subscribe-copy {
    margin: 22px auto 20px;
    max-width: 420px;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.96);
}

.home-subscribe-form {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 380px;
    margin: 0 auto;
}

.home-subscribe-input {
    flex: 1;
    min-width: 0;
    border: 0;
    border-radius: 0;
    padding: 12px 16px;
    margin: 0;
    background: #ffffff;
    color: #8a7d77;
}

.home-subscribe-button {
    min-width: 56px;
    border-radius: 0;
    padding: 0 16px;
    background: #ffffff;
    color: #e3a94d;
    box-shadow: none;
}

.home-flower {
    position: absolute;
    font-size: 4.6rem;
    color: #ffffff;
    opacity: 0.95;
}

.home-flower-left {
    left: 58px;
    top: 74px;
}

.home-flower-right {
    right: 56px;
    top: 64px;
    color: #ffd1de;
}

.home-products-section {
    background: #ffffff;
    padding: 18px 22px 40px;
}

.home-products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.home-product-card {
    text-align: center;
}

.home-product-visual {
    aspect-ratio: 1 / 1;
    border-radius: 0;
    background: #f7f1eb;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-product-visual::before {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.5);
}

.home-product-peach .home-product-visual {
    background: linear-gradient(180deg, #f8eadb 0%, #fff6ef 100%);
}

.home-product-rose .home-product-visual {
    background: linear-gradient(180deg, #f6c7b3 0%, #fce2d8 100%);
}

.home-product-pink .home-product-visual {
    background: linear-gradient(180deg, #f7d5cf 0%, #ffece8 100%);
}

.home-product-mint .home-product-visual {
    background: linear-gradient(180deg, #efe7e1 0%, #fff8f4 100%);
}

.home-product-emoji {
    position: relative;
    z-index: 1;
    font-size: 4rem;
}

.home-product-title {
    margin: 10px 0 4px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    color: #333333;
}

.home-product-price {
    margin: 0;
    font-size: 0.95rem;
    color: #333333;
}

.home-story-section {
    background: #ffffff;
    padding: 18px 22px 54px;
}

.home-story-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    gap: 32px;
    align-items: center;
}

.home-story-content {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.home-story-title {
    margin: 0 0 18px;
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: #ef7f47;
    letter-spacing: 0.03em;
}

.home-story-text {
    margin-bottom: 18px;
    font-size: 0.88rem;
    line-height: 1.9;
    color: #555555;
}

.home-story-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    padding: 12px 24px;
    border-radius: 8px;
    background: #f4b04c;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.home-story-image-wrap {
    display: flex;
    justify-content: center;
}

.home-story-image-frame {
    position: relative;
    width: min(100%, 330px);
    aspect-ratio: 1 / 1.08;
    background: #f3eadf;
    padding: 18px;
}

.home-story-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 74px;
    height: 18px;
    transform: translate(-50%, -50%);
    background: #f0bf56;
}

.home-story-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f5c6a7 0%, #f9efec 50%, #f1c8c1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
}

.footer-credit-band {
    background: #8fbfc4;
    color: #ffffff;
    padding: 18px 20px 24px;
}

.footer-credit-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    text-align: center;
}

.footer-credit-text {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.footer-credit-note {
    font-family: 'Caveat', cursive;
    font-size: 2rem;
}

@media (max-width: 1100px) {

    .home-hero-inner,
    .home-story-shell,
    .home-products-grid,
    .home-tiles-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .home-hero-art {
        min-height: 220px;
    }

    .home-hero-art-left,
    .home-hero-art-right {
        justify-content: center;
    }

    .home-tiles-grid,
    .home-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-story-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .site-header-row {
        grid-template-columns: auto 1fr auto;
        justify-items: center;
        text-align: center;
        padding: 0px 16px;
    }

    .site-header-side {
        justify-content: center;
    }

    .site-navigation-bar ul {
        gap: 18px;
    }

    .brand-main {
        font-size: 1.2rem;
    }

    .brand-script {
        font-size: 2rem;
    }

    .home-hero {
        padding-inline: 14px;
    }

    .home-hero-card {
        min-height: 320px;
        padding-inline: 16px;
    }

    .home-hero-card-topline {
        left: 18px;
        right: 18px;
    }

    .home-tiles-grid,
    .home-products-grid {
        grid-template-columns: 1fr;
    }

    .home-tile {
        min-height: 190px;
    }

    .home-subscribe-shell {
        min-height: auto;
        padding: 34px 12px;
    }

    .home-flower {
        display: none;
    }

    .home-subscribe-form {
        width: 100%;
    }

    .home-subscribe-input {
        min-width: 0;
    }
}


/* ==============================
   HEADER STYLES
   ============================== */

header {
    background: linear-gradient(90deg, #fff5f7 0%, #f0f8ff 50%, #fff8f0 100%);
    border-bottom: 3px solid #ffb3d9;
    padding: 15px 0px 0px 0px;
    box-shadow: 0 4px 15px rgba(255, 182, 217, 0.2);
}

.site-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding {
    flex: 1;
}

.site-title {
    font-size: 2rem;
    margin: 0;
    font-weight: 700;
    font-family: 'Caveat', cursive;
    color: #ff8fb1;
}

.site-title a {
    color: #ff8fb1;
}

.site-title a:hover {
    color: #ff6b9d;
    text-shadow: 0 0 10px rgba(255, 182, 217, 0.5);
}

.site-description {
    font-size: 0.85rem;
    color: #d4568c;
    margin: 5px 0 0 0;
    font-family: 'Dancing Script', serif;
}




nav a {
    color: #d4568c;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff8fb1, #ffb3d9);
    transition: width 0.3s ease;
}

nav a:hover {
    color: #ff8fb1;
}

nav a:hover::after {
    width: 100%;
}

/* ==============================
   CATEGORIES SECTION
   ============================== */

.categories-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(255, 248, 240, 0.8), rgba(240, 255, 240, 0.8));
    position: relative;
}

.categories-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-family: 'Caveat', cursive;
    color: #ff8fb1;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, #ffb3d9, #b3e5fc, #fff9c4, #ffb3d9);
    border-radius: 3px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* ==============================
   CATEGORY CARDS
   ============================== */

.category-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateY(0);
}

.category-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-header-color {
    height: 100px;
    width: 100%;
}

.category-card.card-pink .card-header-color {
    background: linear-gradient(135deg, #ff8fb1, #ffb3d9);
}

.category-card.card-yellow .card-header-color {
    background: linear-gradient(135deg, #fff9c4, #ffe0b2);
}

.category-card.card-mint .card-header-color {
    background: linear-gradient(135deg, #b3f5ea, #80deea);
}

.category-card.card-lavender .card-header-color {
    background: linear-gradient(135deg, #e1bee7, #f8bbd0);
}

.card-content {
    padding: 30px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category-emoji {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 15px;
    animation: bounce 2s ease-in-out infinite;
}

.category-card.card-pink .category-emoji {
    animation-delay: 0s;
}

.category-card.card-yellow .category-emoji {
    animation-delay: 0.2s;
}

.category-card.card-mint .category-emoji {
    animation-delay: 0.4s;
}

.category-card.card-lavender .category-emoji {
    animation-delay: 0.6s;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.category-title {
    font-family: 'Dancing Script', serif;
    font-size: 1.75rem;
    margin: 10px 0;
    color: #d4568c;
}

.category-desc {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.card-footer-decoration {
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffb3d9, transparent);
}

.category-link {
    color: #ff8fb1;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 10px 0;
}

.category-link:hover {
    color: #ff6b9d;
    text-decoration: underline;
}

/* ==============================
   FEATURED PRODUCTS SECTION
   ============================== */

.featured-products-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(240, 255, 240, 0.8), rgba(255, 248, 240, 0.8));
}

.featured-container {
    max-width: 1400px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.product-card-home {
    background: #fff;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.product-card-home:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(255, 143, 177, 0.25);
}

.product-image-wrapper {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff5f7, #f0f8ff);
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    font-family: 'Dancing Script', serif;
    color: #d4568c;
    font-size: 1.1rem;
    margin: 10px 0;
}

.product-price {
    color: #ff8fb1;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 8px 0;
}

.home-hero-dot {
    padding: 0px 0px 0px 0px;
}

.product-link {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #ffb3d9, #b3e5fc);
    color: #fff;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.product-link:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, #ff8fb1, #80deea);
}

/* ==============================
   NEWSLETTER SECTION
   ============================== */

.newsletter-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #fff5f7 0%, #f0f8ff 50%, #fff8f0 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '✨';
    position: absolute;
    font-size: 5rem;
    top: 10px;
    left: 5%;
    opacity: 0.2;
}

.newsletter-section::after {
    content: '💕';
    position: absolute;
    font-size: 4rem;
    bottom: 20px;
    right: 10%;
    opacity: 0.2;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-title {
    font-size: 2.5rem;
    font-family: 'Caveat', cursive;
    color: #ff8fb1;
    margin-bottom: 15px;
}

.newsletter-subtitle {
    font-size: 1.1rem;
    color: #d4568c;
    margin-bottom: 30px;
    font-family: 'Dancing Script', serif;
}

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

.form-group {
    display: flex;
    width: 100%;
    gap: 10px;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #ffb3d9;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Fredoka', sans-serif;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: #ff8fb1;
    box-shadow: 0 0 0 3px rgba(255, 143, 177, 0.1);
}

.newsletter-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff8fb1, #ffb3d9);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-family: 'Fredoka', sans-serif;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ff6b9d, #ff9fb5);
    box-shadow: 0 8px 20px rgba(255, 143, 177, 0.4);
}

/* ==============================
   MAIN CONTENT
   ============================== */

/* .site-content {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.site-content.full-width {
    grid-template-columns: 1fr;
} */
.site-content {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 15px 15px;
}

.pd-0 {
    padding: 0px 0px 0px 0px;
}

/* Breakpoints giống Bootstrap */

@media (min-width: 576px) {
    .home-products-section .home-product-actions {
        opacity: 1;
        margin-bottom: 8px;
    }

    .site-content {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .site-content {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .site-content {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .site-content {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .site-content {
        max-width: 1320px;
    }
}

.site-content.full-width {
    max-width: 100%;
}

main {
    width: 100%;
}

article.home-hero-slide {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #ffb3d9;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
}

article:last-child {
    border-bottom: none;
}

.post-title {
    font-size: 2rem;
    margin: 0 0 10px 0;
    color: #d4568c;
    font-family: 'Dancing Script', serif;
}

.post-meta {
    color: #999;
    font-size: 0.875rem;
    margin-bottom: 20px;
}

.post-meta span {
    margin-right: 15px;
}

.post-content {
    line-height: 1.8;
    color: #5a5a5a;
}

.post-content img {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 10px;
}

/* ==============================
   FOOTER
   ============================== */

.site-footer-wrapper {
    background: #fff8f3;
    color: #1a1a1a;
    margin-top: auto;
}

.site-footer-main {
    max-width: 1480px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.95fr);
    gap: 40px;
    padding: 34px 34px 10px;
    align-items: start;
}

.site-footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 52px;
    align-items: start;
}

.site-footer-column {
    min-width: 0;
}

.footer-column-title {
    margin: 0 0 24px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #121212;
    letter-spacing: 0.01em;
}

.footer-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-link-list li {
    margin-bottom: 22px;
}

.footer-link-list a {
    color: #1c1c1c;
    font-size: 1.1rem;
    line-height: 1.35;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-link-list a:hover {
    color: #f46ba0;
}

.site-footer-about .footer-about-text {
    max-width: 390px;
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #222;
}

.site-footer-contact-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.site-footer-contact-inner {
    max-width: 360px;
    width: 100%;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-contact-list .contact-item {
    color: #555;
    font-size: 1.15rem;
}

.footer-contact-list .contact-item a {
    color: #2d3a4a;
    text-decoration: none;
    font-weight: 600;
}

.footer-contact-list .contact-phone a {
    color: #ff7a9b;
}

.footer-contact-list .contact-hours {
    font-size: 13px;
    color: #888;
}

.site-footer-social-row {
    max-width: 1480px;
    margin: 4px auto 0;
    padding: 0 34px 18px;
    display: flex;
    justify-content: flex-end;
    gap: 28px;
    align-items: center;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: #fff;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
    filter: saturate(1.05);
}

.footer-social-link--zalo {
    background: #0068ff;
}

.footer-social-link--facebook {
    background: #1877f2;
}

.footer-social-link--tiktok {
    background: #111111;
}

.footer-social-link i {
    font-size: 1.1rem;
    line-height: 1;
}

.footer-social-icon {
    display: block;
    width: 18px;
    height: 18px;
}

.footer-social-icon--zalo {
    color: #ffffff;
    line-height: 1;
}

.footer-credit-band {
    background: #8fd4d6;
    color: #fff;
    padding: 18px 20px 20px;
}

.footer-credit-inner {
    max-width: 1480px;
    margin: 0 auto;
    text-align: center;
}

.footer-credit-text {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.18em;
}

@media (max-width: 1200px) {
    .site-footer-main {
        grid-template-columns: 1fr;
    }

    .site-footer-links-group {
        gap: 32px;
    }
}

@media (max-width: 900px) {
    .site-footer-links-group {
        grid-template-columns: 1fr;
    }

    .site-footer-contact-wrap {
        justify-content: flex-start;

    }

    .site-footer-social-row {
        justify-content: center;
        gap: 22px;
    }
}

/* ==============================
   BUTTONS
   ============================== */
.home-hero-arrow {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff8fb1, #ffb3d9);
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Fredoka', sans-serif;
}

.home-hero-arrow:hover {
    background: linear-gradient(135deg, #ff6b9d, #ff9fb5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 143, 177, 0.4);
    color: #fff;
}

/* button,
.button,
input[type="button"],
input[type="submit"] {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ff8fb1, #ffb3d9);
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Fredoka', sans-serif;
} */

/* button:hover,
.button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
    background: linear-gradient(135deg, #ff6b9d, #ff9fb5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 143, 177, 0.4);
    color: #fff;
} */

/* ==============================
   FORMS
   ============================== */

/* input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
*/

/* ==============================
   CHIA SE PAGE (PASTEL POSTS)
   ============================== */

.share-page {
    --share-pink: #ff8fb1;
    --share-peach: #ffd7c9;
    --share-mint: #c9f2e5;
    --share-blue: #cde7ff;
    --share-ink: #3f3d56;
    --share-bg: linear-gradient(160deg, #fff7fb 0%, #f9fcff 45%, #f7fff8 100%);
    background: var(--share-bg);
    padding: 30px 16px 56px;
}

.share-hero__shell,
.share-posts__shell {
    max-width: 1180px;
    margin: 0 auto;
}

.share-hero {
    margin-bottom: 28px;
}

.share-hero__shell {
    padding: 34px 28px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 168, 197, 0.4), transparent 38%),
        radial-gradient(circle at 90% 84%, rgba(171, 224, 255, 0.35), transparent 42%),
        #ffffff;
    border: 1px solid rgba(255, 170, 204, 0.4);
    box-shadow: 0 16px 38px rgba(197, 155, 173, 0.15);
}

.share-hero__kicker {
    display: inline-block;
    margin: 0 0 10px;
    padding: 6px 12px;
    border-radius: 999px;
    font-family: 'Fredoka', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8f5e72;
    background: #ffe8f1;
}

.share-hero__title {
    margin: 0;
    font-family: 'Caveat', cursive;
    font-size: clamp(2.2rem, 4.8vw, 3.8rem);
    line-height: 1;
    color: #d15a87;
}

.share-hero__desc {
    max-width: 760px;
    margin: 14px 0 0;
    font-size: 1.08rem;
    line-height: 1.7;
    color: #675f79;
}

.share-featured-card {
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(0, 1fr);
    gap: 0;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid #f6d9e7;
    background: #fff;
    box-shadow: 0 14px 32px rgba(188, 160, 180, 0.16);
    margin-bottom: 26px;
}

.share-featured-card__media {
    display: block;
    min-height: 340px;
    background: linear-gradient(145deg, var(--share-peach), var(--share-blue));
}

.share-featured-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.share-featured-card__content {
    padding: 28px 28px 24px;
    display: flex;
    flex-direction: column;
}

.share-featured-card__meta,
.share-card__meta {
    margin: 0 0 10px;
    color: #8f7f92;
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.share-featured-card__title,
.share-card__title {
    margin: 0;
    font-family: 'Fredoka', sans-serif;
    font-size: clamp(1.4rem, 2.6vw, 2rem);
    line-height: 1.25;
}

.share-featured-card__title a,
.share-card__title a {
    color: var(--share-ink);
    text-decoration: none;
}

.share-featured-card__title a:hover,
.share-card__title a:hover {
    color: #d15a87;
}

.share-featured-card__excerpt,
.share-card__excerpt {
    margin: 14px 0 0;
    color: #5f5d73;
    line-height: 1.75;
}

.share-readmore {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    align-self: flex-start;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff93b8, #ffc3d8);
    color: #fff;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.share-readmore:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 147, 184, 0.35);
    color: #fff;
}

.share-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.share-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #f0d8e9;
    background: #fff;
    box-shadow: 0 12px 24px rgba(174, 156, 173, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.share-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(174, 156, 173, 0.2);
}

.share-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    background: linear-gradient(145deg, var(--share-mint), #f4e6ff);
}

.share-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.share-thumb-fallback {
    width: 100%;
    height: 100%;
    min-height: 190px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(209, 90, 135, 0.55);
}

.share-card__content {
    padding: 16px 16px 20px;
}

.share-card__cat,
.share-featured-card .share-card__cat {
    display: block;
    margin-bottom: 8px;
    color: #9a8396;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Accent color classes applied by PHP */
.accent-rose .share-card__media,
.accent-rose .share-featured-card__media,
.accent-rose .share-featured-card__content {
    --accent: #ff9bb0;
}

.accent-mint .share-card__media,
.accent-mint .share-featured-card__media,
.accent-mint .share-featured-card__content {
    --accent: #bfeee1;
}

.accent-peach .share-card__media,
.accent-peach .share-featured-card__media,
.accent-peach .share-featured-card__content {
    --accent: #ffd8c9;
}

.accent-lavender .share-card__media,
.accent-lavender .share-featured-card__media,
.accent-lavender .share-featured-card__content {
    --accent: #e6d6ff;
}

.accent-sky .share-card__media,
.accent-sky .share-featured-card__media,
.accent-sky .share-featured-card__content {
    --accent: #d7eeff;
}

div#ez-toc-container ul li,
div#ez-toc-container ul li a {
    font-size: 1.1rem;
}

.accent-rose .share-card__title a,
.accent-rose .share-featured-card__title a {
    color: #b53b5e;
}

.accent-mint .share-card__title a,
.accent-mint .share-featured-card__title a {
    color: #238a6a;
}

.accent-peach .share-card__title a,
.accent-peach .share-featured-card__title a {
    color: #d36b3a;
}

.accent-lavender .share-card__title a,
.accent-lavender .share-featured-card__title a {
    color: #6b4aa0;
}

.accent-sky .share-card__title a,
.accent-sky .share-featured-card__title a {
    color: #2b7bd6;
}

/* Filter chips */
.share-filter-chips {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.share-chip {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(240, 216, 233, 0.7);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease;
}

.share-chip.is-active,
.share-chip:hover {
    background: linear-gradient(135deg, #ffd7e0, #ffe9f4);
    transform: translateY(-2px);
}

.share-card__title {
    font-size: 1.15rem;
}

.share-pagination {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.share-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    margin: 0 4px;
    padding: 0 10px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #f3cfe0;
    color: #7a6270;
    font-weight: 600;
}

.share-pagination .page-numbers.current {
    background: linear-gradient(135deg, #ff90b7, #ffb0cf);
    border-color: transparent;
    color: #fff;
}

.share-empty {
    text-align: center;
    padding: 48px 20px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid #f0d8e9;
}

@media (max-width: 980px) {
    .home-products-section .home-product-actions {
        opacity: 1;
        margin-bottom: 8px;
    }

    .share-featured-card {
        grid-template-columns: 1fr;
    }

    .share-featured-card__media {
        min-height: 250px;
    }

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

@media (max-width: 640px) {
    .home-products-section .home-product-actions {
        opacity: 1;
        margin-bottom: 8px;
    }

    .share-page {
        padding-left: 12px;
        padding-right: 12px;
    }

    .share-hero__shell {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .share-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .share-featured-card__content {
        padding: 20px 18px;
    }
}

textarea,
select {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 2px solid #ffb3d9;
    border-radius: 10px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: #5a5a5a;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
    border-color: #ff8fb1;
    box-shadow: 0 0 0 3px rgba(255, 143, 177, 0.1);
    outline: none;
}

textarea {
    resize: vertical;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #d4568c;
    font-family: 'Dancing Script', serif;
}

/* ==============================
   PAGINATION
   ============================== */

.pagination {
    display: flex;
    gap: 5px;
    margin: 20px 0;
    justify-content: center;
    flex-wrap: wrap;
}

.pagination a,
.pagination span {
    border-radius: 8px;
    color: #ff8fb1;
    transition: all 0.3s ease;
    font-weight: 600;
}

.pagination a:hover {
    color: #f4b9c9d6;
    transform: translateY(-2px);
}

.pagination .current {
    background: linear-gradient(135deg, #ff8fb1, #ffb3d9);
    color: #fff;
    border-color: #ff8fb1;
}

/* ==============================
   RESPONSIVE DESIGN
   ============================== */

/* Mobile-first adjustments: default to single-column flows, clearer touch targets, and collapsed nav */
.menu-toggle {
    display: none;
}



/* Small screens: collapse navigation and stack grids */
@media (max-width: 768px) {
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border: 0;
        font-size: 1.2rem;
        cursor: pointer;
        color: #222;
        order: -1;
        margin-right: auto;
    }

    article.home-hero-slide {
        margin-top: 0px;
        margin-bottom: 0px;
        padding-bottom: 0px;
    }

    .menu-toggle i:first-child {
        display: flex;
    }

    .menu-toggle i:last-child {
        display: none;
    }

    body.nav-open .menu-toggle i:first-child {
        display: none;
    }

    body.nav-open .menu-toggle i:last-child {
        display: flex;
    }

    /* force-hide the primary nav list on small screens; show when body.nav-open
       Use a more specific selector to override previous rules */
    .site-navigation.site-navigation-bar {
        position: fixed;
        top: 82px;
        left: 0;
        width: 100%;
        height: calc(100vh - 82px);
        background: #fce4d9;
        border-top: 1px solid rgba(255, 192, 203, 0.2);
        margin-top: 0;
        transform: translateX(-100%);
        transition: transform 320ms cubic-bezier(.2, .9, .3, 1);
        overflow: hidden;
        z-index: 9998;
        box-shadow: 6px 0 24px rgba(0, 0, 0, 0.08);
    }

    .site-navigation.site-navigation-bar ul {
        display: flex;
        flex-direction: column;
        gap: 18px;
        padding: 24px 18px;
        background: transparent;
        margin: 0;
        width: 100%;
        height: 100%;
        border: none;
        overflow-y: auto;
    }

    .site-navigation.site-navigation-bar li {
        margin: 0;
    }

    .site-navigation.site-navigation-bar a {
        color: #ff3d7f;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.05em;
    }

    body.nav-open .site-navigation.site-navigation-bar ul {
        display: flex;
        flex-direction: column;
    }

    body.nav-open .site-navigation.site-navigation-bar {
        transform: translateX(0);
    }

    body.nav-open {
        overflow: hidden;
    }

    .site-header-wrapper {
        position: relative;
        z-index: 10001;
    }

    .home-hero-slider-track {
        min-height: 200px;
    }

    .home-hero-slide {
        padding: 22px 12px 32px;
    }

    /* ==============================
   SINGLE POST (PASTEL DETAIL)
   ============================== */

    body.single .site-content {
        max-width: 920px;
        margin: 0 auto;
        padding: 40px 18px 80px;
    }

    body.single article.post {
        background: linear-gradient(180deg, rgba(255, 248, 250, 0.8), #ffffff);
        border-radius: 18px;
        padding: 26px;
        border: 1px solid rgba(242, 206, 219, 0.6);
        box-shadow: 0 18px 40px rgba(199, 170, 187, 0.08);
    }

    body.single .entry-header {
        margin-bottom: 18px;
    }

    body.single .post-title {
        font-family: 'Caveat', cursive;
        font-size: clamp(2rem, 4.5vw, 3.2rem);
        line-height: 1.06;
        margin: 0 0 8px;
        color: #b63b69;
    }

    body.single .post-meta {
        color: #8b7281;
        font-weight: 600;
        letter-spacing: 0.06em;
        font-size: 0.9rem;
    }

    .post-thumbnail {
        margin: 18px 0;
        border-radius: 12px;
        overflow: hidden;
        border: 1px solid rgba(240, 213, 223, 0.6);
    }

    .post-thumbnail img {
        width: 100%;
        height: auto;
        display: block;
    }

    .post-content {
        margin-top: 12px;
        color: #4b4552;
        font-size: 1.05rem;
        line-height: 1.78;
        font-family: Georgia, 'Times New Roman', serif;
    }

    .post-content p {
        margin: 1.1em 0;
    }

    /* Drop cap for first paragraph */
    .post-content p:first-of-type:first-letter {
        float: left;
        font-size: 3.6rem;
        line-height: 0.85;
        margin-right: 12px;
        font-family: 'Fredoka', sans-serif;
        color: #d45986;
    }

    /* Blockquotes */
    .post-content blockquote {
        border-left: 4px solid rgba(212, 89, 134, 0.14);
        padding: 12px 18px;
        background: linear-gradient(90deg, rgba(253, 239, 244, 0.6), rgba(255, 255, 255, 0.4));
        margin: 18px 0;
        color: #6a5763;
    }

    /* Images in content */
    .post-content img {
        max-width: 100%;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(180, 150, 170, 0.08);
    }

    /* Inline code and pre */
    .post-content pre,
    .post-content code {
        background: #f7f2f6;
        border-radius: 8px;
        padding: 6px 8px;
        font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, 'Roboto Mono', monospace;
        font-size: 0.95rem;
    }

    /* Tags and footer */
    .entry-footer {
        margin-top: 28px;
        border-top: 1px dashed rgba(232, 198, 213, 0.45);
        padding-top: 16px;
    }

    @media (max-width: 768px) {
        body.single .site-content {
            padding: 22px 12px 48px;
        }

        .post-content p:first-of-type:first-letter {
            font-size: 2.8rem;
        }
    }


    .home-tiles-grid,
    .home-products-grid,
    .home-shopwithus-grid,
    .home-reviews-grid,
    .home-instagram-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .home-hero-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }

    .home-subscribe-form,
    .home-subscribe-input,
    .newsletter-input {
        padding: 6px 6px;
        font-size: 1rem;
    }

    .home-story-image-frame {
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .home-hero-slider-track {
        min-height: 200px;
    }

    .home-offer-main {
        padding: 0 0px;
    }

    .hero-cloud-title span:first-child,
    .hero-cloud-title span:last-child,
    .home-hero-title span:first-child,
    .home-hero-title span:last-child {
        font-size: clamp(1.6rem, 6vw, 2.8rem);
    }

    .home-hero-button,
    .hero-cloud-button {
        padding: 12px 18px;
        min-width: 140px;
    }

    .home-product-emoji {
        font-size: 3rem;
    }

    .site-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
    }

    div#ez-toc-container ul li,
    div#ez-toc-container ul li a {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .site-content {
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .post-title {
        font-size: 1.5rem;
    }

    .hero-section {
        min-height: auto;
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 250px;
    }

    footer .site-footer {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .form-group {
        flex-direction: column;
    }

    .newsletter-input,
    .newsletter-btn {
        width: 100%;
    }

    .flower,
    .heart {
        font-size: 2rem;
    }

    .flower-3 {
        font-size: 1.5rem;
    }

    .heart-1 {
        font-size: 1.25rem;
    }

    .heart-2 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .category-emoji {
        font-size: 2.5rem;
    }

    .site-title {
        font-size: 1.5rem;
    }

    nav ul {
        gap: 15px;
    }
}

/* Very small screens - hero layout tuned to match reference */
@media (max-width: 420px) {
    .home-products-section .home-product-actions {
        opacity: 1;
        margin-bottom: 8px;
    }

    .site-announcement-bar {
        padding: 6px 8px;
        font-size: 0.68rem;
        letter-spacing: 0.12em;
    }

    .announcement-track {
        width: min(100%, 170px);
        margin: 0;
    }

    .announcement-social-link {
        width: 20px;
        height: 20px;
        font-size: 0.62rem;
    }

    .announcement-social-link i {
        font-size: 0.68rem;
    }

    .announcement-arrow {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }

    .announcement-arrow i {
        font-size: 0.7rem;
    }

    /* Header: hamburger left, brand center, icons right */
    .site-header-row {
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 8px;
        padding: 6px 12px;
    }

    .site-header-search {
        justify-self: start;
    }

    .site-branding-center {
        justify-self: center;
    }

    .site-header-icons {
        justify-self: end;
        justify-content: flex-end;
        gap: 12px;
    }

    .header-icon-link {
        width: 24px;
        height: 24px;
        font-size: 0.95rem;
    }

    .header-icon-link i {
        font-size: 0.9rem;
    }

    .header-icon-user,
    .header-icon-bag {
        font-size: 0.92rem;
    }

    /* Hero slider compact */
    .home-hero-slider {
        padding: 8px 6px 18px;
    }

    .home-hero-slider-track {
        min-height: 200px;
    }

    .home-hero-slide {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        padding: 8px 6px 22px;
        min-height: 0;
        text-align: center;
        opacity: 0;
        transform: translateX(6%);
        transition: opacity 0.75s ease, transform 0.75s ease;
        pointer-events: none;
    }

    .home-hero-slide:not(.is-active) {
        opacity: 0;
        transform: translateX(6%);
        pointer-events: none;
    }

    .home-hero-slide.is-active {
        /* active slide is fully visible with smooth transition */
        opacity: 1;
        transform: translateX(0);
        transition: opacity 0.75s ease, transform 0.75s ease;
        pointer-events: auto;
    }

    .home-hero-slide-mobile {
        width: 100%;
        gap: 10px;
    }

    .hero-mobile-logo {
        width: 154px;
        margin-top: 2px;
    }

    .hero-mobile-image-wrap {
        width: 100%;
        margin-top: 6px;
    }

    .hero-mobile-image {
        width: 100%;
        max-width: 390px;
        border-radius: 0;
        box-shadow: none;
    }

    /* Show arrows over the hero, aligned vertically around the polaroid */
    .home-hero-arrow {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 40%;
        width: 30px;
        height: 30px;
        padding: 0;
        border-radius: 0;
        border: 0;
        font-weight: 100;
        font-size: 1.3rem;
    }

    .home-hero-arrow-prev {
        left: 8px;
    }

    .home-hero-arrow-next {
        right: 8px;
    }

    /* Decorative flower near left edge like reference */
    .home-flower-left {
        left: 12px;
        top: 88px;
        font-size: 3.2rem;
        display: block;
    }

    .site-header-row {
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 8px;
        padding: 6px 12px;
    }

    .menu-toggle {
        width: 30px;
        height: 30px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        font-size: 1.3rem;
        justify-self: start;
        margin-left: 0;
    }

    .site-branding-center {
        justify-self: center;
    }

    .site-header-icons {
        justify-self: end;
        justify-content: flex-end;
        gap: 14px;
    }

    .header-icon-link {
        width: 26px;
        height: 26px;
        font-size: 1rem;
    }

    .header-icon-bag {
        font-size: 0.96rem;
    }

    /* Tweak hero dots lower */
    .home-hero-dots {
        bottom: 10px;
    }

    .hero-sticker,
    .hero-doodle,
    .hero-floating-label,
    .hero-star,
    .hero-ribbon {
        display: none;
    }
}


/* OVERLAY */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transition: opacity 220ms ease, visibility 220ms ease;
    z-index: 100;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* CART DRAWER */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100%;
    background: linear-gradient(180deg, #fffdfd 0%, #fff7f9 100%);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
    color: #3c2b33;
    will-change: transform;
    overscroll-behavior: contain;
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 22px 14px;
}

.cart-drawer__header h2 {
    font-size: 36px;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #1f1c21;
}

.cart-drawer__header button {
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    font-size: 28px;
    cursor: pointer;
}

.cart-drawer__shipping,
.cart-drawer__tablehead,
.cart-drawer__upsell,
.cart-drawer__summary {
    padding-left: 22px;
    padding-right: 22px;
}

.cart-drawer__shipping p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #5f4751;
}

.shipping-bar {
    height: 16px;
    border-radius: 999px;
    background: #f4e7ea;
    overflow: hidden;
}

.shipping-bar span {
    display: block;
    width: 18%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #ffd15c 0%, #ffb84f 100%);
}

.cart-drawer__tablehead {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    padding-bottom: 12px;
    font-size: 14px;
    letter-spacing: 0.18em;
    color: #a17b8a;
}

.cart-drawer__items {
    flex: 1;
    overflow-y: auto;
    padding: 12px 22px 18px;
}

.cart-item {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: start;
    padding: 16px 0;
    border-top: 1px solid rgba(224, 198, 206, 0.8);
}

.cart-item:first-child {
    border-top: 1px solid rgba(224, 198, 206, 0.8);
}

.cart-item img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    background: #fff6f8;
    border-radius: 14px;
}

.cart-item__details {
    min-width: 0;
}

.cart-item__details h3 {
    font-size: 19px;
    line-height: 1.1;
    margin-bottom: 6px;
}

.cart-item__details p,
.cart-item__total {
    font-size: 17px;
    color: #7c5d69;
}

.cart-item__controls {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(173, 135, 150, 0.55);
    border-radius: 14px;
    margin-top: 12px;
    background: #fffafc;
    box-shadow: 0 8px 18px rgba(183, 140, 155, 0.07);
}

.cart-item__controls button,
.cart-item__delete {
    border: none;
    background: transparent;
    cursor: pointer;
}

.cart-item__controls button {
    width: 50px;
    height: 44px;
    font-size: 22px;
}

.cart-item__controls span,
.cart-item__controls .qty-input {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 44px;
    font-size: 20px;
}

.cart-item__controls .qty-input {
    border: none;
    background: transparent;
    text-align: center;
    padding: 0;
    outline: none;
    -moz-appearance: textfield;
}

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

.cart-item__delete {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(31, 28, 33, 0.2);
    border-radius: 14px;
    font-size: 16px;
    background: #fff8fb;
}

.cart-drawer__upsell h3 {
    font-size: 28px;
    margin: 8px 0 16px;
    color: #1f1c21;
}

.upsell-card {
    display: grid;
    grid-template-columns: 20px 140px 1fr 20px;
    align-items: center;
    gap: 14px;
    padding: 10px;
    background: linear-gradient(180deg, #ffe6ef 0%, #ffd6e6 100%);
    border-radius: 22px;
    box-shadow: 0 10px 22px rgba(183, 140, 155, 0.10);
}

.upsell-card img {
    width: 140px;
    height: 128px;
    object-fit: cover;
}

.upsell-card__content h4 {
    font-size: 20px;
    margin-bottom: 6px;
    color: #5a3145;
}

.upsell-card__content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #815b6a;
}

.upsell-card__cta,
.checkout-btn {
    border: none;
    cursor: pointer;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.upsell-card__cta {
    padding: 16px 24px;
    border-radius: 16px;
    background: linear-gradient(180deg, #ff7eb0 0%, #ff669d 100%);
    color: #fff;
}

.upsell-card__nav {
    border: none;
    background: transparent;
    font-size: 40px;
    color: #8e6673;
    cursor: pointer;
}

.cart-drawer__notes {
    padding: 16px 22px 0;
    border-top: 1px solid rgba(224, 198, 206, 0.8);
}

.cart-drawer__notes summary {
    list-style: none;
    cursor: pointer;
    font-size: 22px;
    padding: 10px 0 18px;
    color: #5f3d4f;
}

.cart-drawer__notes textarea {
    width: 100%;
    min-height: 96px;
    border: 1px solid rgba(173, 135, 150, 0.45);
    border-radius: 16px;
    padding: 12px;
    resize: vertical;
    font: inherit;
    background: #fffafc;
}

.cart-drawer__summary {
    padding-top: 10px;
    padding-bottom: 22px;
    border-top: 1px solid rgba(224, 198, 206, 0.8);
}

.cart-drawer__summary-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 22px;
    margin-bottom: 16px;
}

.cart-drawer__summary p {
    color: #7c5d69;
    margin-bottom: 20px;
    font-size: 16px;
}

.checkout-btn {
    width: 100%;
    padding: 10px 10px;
    border-radius: 14px;
    background: linear-gradient(180deg, #ff7eb0 0%, #ff669d 100%);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 12px 24px rgba(255, 102, 157, 0.28);
    display: block;
    text-align: center;
}

.mobile-bottom-bar {
    display: none;
}


/* Desktop: constrain drawer width */
@media (min-width: 769px) {
    .home-products-section .home-product-actions {
        opacity: 1;
        margin-bottom: 8px;
    }

    .cart-drawer {
        width: 460px;
        max-width: 460px;
    }

    .cart-item {
        grid-template-columns: 112px minmax(0, 1fr) auto;
    }
}

/* MOBILE */
@media (max-width: 768px) {

    .shop-hero {
        padding: 42px 20px;
    }

    .shop-hero-title {
        font-size: 2rem;
        line-height: 1.15;
        letter-spacing: 1px;
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product h3 {
        font-size: 14px;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* On mobile keep original inline button layout */
    .product {
        padding-bottom: 10px;
        /* restore original spacing on mobile */
    }

    .add-cart {
        position: static;
        transform: none;
        opacity: 1;
        width: 100%;
    }

    .cart-drawer {
        max-width: none;
        width: 100%;
    }

    .cart-drawer__header h2 {
        font-size: 30px;
    }

    .cart-drawer__header {
        padding: 20px 18px 10px;
    }

    .cart-drawer__shipping,
    .cart-drawer__tablehead,
    .cart-drawer__upsell,
    .cart-drawer__summary,
    .cart-drawer__notes,
    .cart-drawer__items {
        padding-left: 18px;
        padding-right: 18px;
    }

    .cart-drawer__shipping p {
        font-size: 17px;
        margin-bottom: 14px;
    }

    .shipping-bar {
        height: 14px;
    }

    .cart-drawer__tablehead {
        padding-top: 24px;
        font-size: 13px;
    }

    .cart-drawer__items {
        padding-top: 6px;
        padding-bottom: 12px;
    }

    .cart-item {
        grid-template-columns: 84px minmax(0, 1fr) 24px;
        gap: 10px;
        padding: 14px 0;
    }

    .cart-item img {
        width: 84px;
        height: 84px;
    }

    .cart-item__details h3 {
        font-size: 17px;
        margin-bottom: 4px;
    }

    .cart-item__details p,
    .cart-item__total {
        font-size: 15px;
    }

    .cart-item__controls {
        margin-top: 10px;
    }

    .cart-item__controls button,
    .cart-item__controls span,
    .cart-item__controls .qty-input {
        width: 42px;
        height: 38px;
        font-size: 18px;
    }

    .cart-item__delete {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        margin-top: 44px;
        font-size: 15px;
    }

    .cart-drawer__upsell {
        margin-top: 4px;
    }

    .cart-item__total,
    .cart-item__delete {
        grid-column: 2;
        justify-self: end;
    }

    .cart-item__delete {
        grid-column: 3;
        grid-row: 1 / span 2;
    }

    .upsell-card {
        grid-template-columns: 24px 90px 1fr 24px;
        gap: 10px;
        padding: 14px;
    }

    .upsell-card img {
        width: 90px;
        height: 90px;
    }

    .upsell-card__content h4 {
        font-size: 18px;
    }

    .upsell-card__content p {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .upsell-card__cta {
        padding: 14px 18px;
        border-radius: 14px;
        font-size: 13px;
    }

    .upsell-card__nav {
        font-size: 34px;
    }

    .cart-drawer__notes summary {
        font-size: 18px;
        padding: 8px 0 14px;
    }

    .cart-drawer__notes textarea {
        min-height: 84px;
    }

    .cart-drawer__summary {
        padding-top: 16px;
        padding-bottom: 18px;
    }

    .cart-drawer__summary-row {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .cart-drawer__summary .checkout-btn {
        padding: 18px 16px;
        border-radius: 12px;
        font-size: 18px;
    }

    .cart-drawer__summary a.check-out-a {
        color: #fff;
        ;
    }

    .cart-drawer__summary .checkout-btn:hover {
        color: #fff;
        ;
    }

    .cart-drawer__summary .checkout-btn a:hover {
        color: #fff;
        ;
    }

    .mobile-bottom-bar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 10050;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0;
        padding: 8px 10px 10px;
        border-top: 1px solid rgba(229, 205, 194, 0.9);
        background: #ff7a9bc7;
        backdrop-filter: blur(18px);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
    }

    .mobile-bottom-bar__item {
        appearance: none;
        border: 0;
        background: transparent;
        color: #fff;
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        min-height: 54px;
        padding: 6px 4px;
        border-radius: 16px;
    }

    .mobile-bottom-bar__item:active {
        transform: translateY(1px);
    }

    .mobile-bottom-bar__icon {
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        font-size: 1.15rem;
    }

    .mobile-bottom-bar__label {
        font-size: 0.84rem;
        line-height: 1;
        font-weight: 700;
    }

    .mobile-bottom-bar__count {
        position: absolute;
        right: -10px;
        top: -10px;
        min-width: 18px;
        height: 18px;
        padding: 0 5px;
        border-radius: 999px;
        background: #111;
        color: #fff;
        font-size: 0.72rem;
        line-height: 18px;
        text-align: center;
    }

    body {
        padding-bottom: 82px;
    }

    .cart-item__details h3,
    .cart-drawer__upsell h3 {
        font-size: 18px;
    }

    .cart-item__details p,
    .cart-item__total,
    .upsell-card__content p,
    .cart-drawer__shipping p,
    .cart-drawer__summary-row {
        font-size: 16px;
    }
}

/* ==============================
   COMMENTS
   ============================== */

.comments-area {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #ffb3d9;
    background: rgba(255, 255, 255, 0.6);
    padding: 25px;
    border-radius: 15px;
}

.comments-title {
    font-family: 'Caveat', cursive;
    color: #ff8fb1;
    font-size: 2rem;
    margin-bottom: 20px;
}

.comment-list {
    list-style: none;
    margin: 20px 0;
}

.comment {
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, rgba(255, 179, 217, 0.1), rgba(179, 229, 252, 0.1));
    border-left: 4px solid #ff8fb1;
    border-radius: 8px;
}

.comment-author {
    font-weight: 600;
    color: #d4568c;
    font-family: 'Dancing Script', serif;
}

.comment-date {
    color: #999;
    font-size: 0.875rem;
}

.comment-content {
    margin-top: 10px;
    line-height: 1.6;
    color: #5a5a5a;
}

/* ==============================
   UTILITIES
   ============================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.hidden {
    display: none;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

nav.woocommerce-breadcrumb {
    text-align: left;
    padding: 20px 20px;
}

/* ==============================
   LAYOUT STRUCTURE
   ============================== */

/* #page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
} */

@media (max-width: 768px) {
    .site-header-row {
        display: grid;

    }

    .site-navigation.site-navigation-bar {
        position: fixed;
        top: 140px;
        left: 0;
        height: calc(100vh - 82px);
        width: 100%;
        background: #fce4d9;
        transform: translateX(-100%);
        transition: transform 320ms cubic-bezier(.2, .9, .3, 1);
        z-index: 9998;
        box-shadow: 6px 0 24px rgba(0, 0, 0, 0.08);
        overflow: hidden;
    }

    body.mobile-header-scrolled .site-header-mobile .site-navigation.site-navigation-bar {
        top: 100px;
        height: calc(100vh - 100px);
    }

    .site-navigation.site-navigation-bar ul {
        display: flex;
        flex-direction: column;
        gap: 18px;
        padding: 24px 18px;
        background: transparent;
        margin: 0;
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }

    body.nav-open .site-navigation.site-navigation-bar {
        transform: translateX(0);
    }

    body.nav-open {
        overflow: hidden;
    }

    .site-header-wrapper {
        position: relative;
        z-index: 10001;
    }
}

/* Sticky behavior split by device:
   - desktop: only primary menu is sticky
   - mobile: full mobile header remains sticky */
.site-header-wrapper {
    background: #fff9f5;
}

@media (min-width: 769px) {
    .site-header-desktop {
        position: static;
    }

    .site-header-desktop .site-navigation.site-navigation-bar {
        position: relative;
        z-index: 90;
    }

    body.desktop-menu-sticky .site-header-desktop .site-navigation.site-navigation-bar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        margin-top: 0;
        z-index: 90;
    }

    body.admin-bar.desktop-menu-sticky .site-header-desktop .site-navigation.site-navigation-bar {
        top: 32px;
    }

    body.desktop-menu-sticky #page {
        padding-top: var(--desktop-sticky-menu-offset, 0px);
    }
}

@media (max-width: 768px) {
    .site-header-mobile {
        position: sticky;
        top: 0;
        z-index: 10020;
        background: #fff9f5;
    }

    body.admin-bar .site-header-mobile {
        top: 32px;
    }

    .site-header-mobile .site-header-row {
        min-height: 82px;
        background: #fff9f5;
    }

    .site-header-mobile .site-navigation.site-navigation-bar {
        top: 140px;
        height: calc(100vh - 140px);
    }

    body.mobile-header-scrolled .site-header-mobile .site-navigation.site-navigation-bar {
        top: 100px;
        height: calc(100vh - 100px);
    }
}

@media (max-width: 782px) {
    body.admin-bar .site-header-mobile {
        top: 0px;
    }
}