:root {
    --rose: #c9768a;
    --rose-light: #f2dde4;
    --rose-pale: #fdf6f8;
    --gold: #c9a84c;
    --gold-light: #f5ecd0;
    --charcoal: #2c2c2c;
    --muted: #6c757d;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
}

html { font-size: 16px; }
body { font-family: var(--font-sans); color: var(--charcoal); background: #fff; margin: 0; }

/* ── Typography ── */
h1, h2, h3, .brand-name { font-family: var(--font-serif); }
.brand-name { color: var(--rose); font-weight: 700; letter-spacing: 0.03em; }
.brand-sub { font-family: var(--font-sans); font-size: 0.65em; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; margin-left: 4px; }

/* ── Logo ── */
.site-logo { height: 64px; width: auto; object-fit: contain; }

/* ── Header ── */
.site-header { background: #fff; border-bottom: 1px solid #f0e6ea; box-shadow: 0 1px 8px rgba(201,118,138,.08); }
.site-header .navbar { padding: 0.5rem 0; }
.site-header .nav-link { color: var(--charcoal) !important; font-size: 1rem; font-weight: 500; letter-spacing: 0.02em; padding: 0.5rem 0.9rem !important; border-radius: 6px; transition: color .2s, background .2s; }
.site-header .nav-link:hover { color: var(--rose) !important; background: var(--rose-pale); }


/* ── Nav dropdown ── */
.dropdown-menu-rose { border: 1px solid #f0e6ea; border-radius: 10px; box-shadow: 0 4px 20px rgba(201,118,138,.12); padding: 0.4rem 0; min-width: 180px; }
.dropdown-menu-rose .dropdown-item { font-size: 0.9rem; color: var(--charcoal); padding: 0.45rem 1rem; transition: background .15s, color .15s; }
.dropdown-menu-rose .dropdown-item:hover { background: var(--rose-pale); color: var(--rose); }
.dropdown-menu-rose .dropdown-divider { border-color: #f0e6ea; margin: 0.3rem 0; }

/* ── Nav search ── */
.nav-search { display: flex; align-items: center; background: var(--rose-pale); border-radius: 50px; padding: 0.2rem 0.2rem 0.2rem 0.85rem; border: 1.5px solid transparent; transition: border-color .2s; width: 380px; }
@media (max-width: 991.98px) { .nav-search { width: auto; min-width: 0; } }
.nav-search:focus-within { border-color: var(--rose); }
.nav-search-input { border: none; background: transparent; outline: none; font-size: 0.95rem; color: var(--charcoal); width: 100%; min-width: 0; }
.nav-search-input::placeholder { color: var(--muted); }
.nav-search-btn { background: var(--rose); color: #fff; border: none; border-radius: 50px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; flex-shrink: 0; transition: background .2s; cursor: pointer; }
.nav-search-btn:hover { background: #b5607a; }

/* ── Cart button ── */
.btn-cart { background: var(--rose-light); color: var(--rose); border: none; border-radius: 50px; padding: 0.55rem 1.2rem; font-size: 1rem; font-weight: 500; display: flex; align-items: center; gap: 6px; transition: background .2s; }
.btn-cart:hover { background: var(--rose); color: #fff; }
.cart-count { background: var(--rose); color: #fff; border-radius: 50%; width: 20px; height: 20px; font-size: 0.72rem; display: inline-flex; align-items: center; justify-content: center; font-weight: 600; }

/* ── Hero ── */
.hero { background: linear-gradient(135deg, var(--rose-pale) 0%, #fff8f0 100%); padding: 80px 0 60px; text-align: center; }
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--charcoal); margin-bottom: 1rem; }
.hero p { font-size: 1.1rem; color: var(--muted); max-width: 520px; margin: 0 auto 2rem; }
/* ── Hero trust strip ── */
.hero-trust { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 0.5rem 0; color: var(--muted); font-size: 0.88rem; margin-bottom: 1.75rem; }
.hero-trust span { display: flex; align-items: center; gap: 0.35rem; }
.hero-trust-sep { width: 4px; height: 4px; background: #d4bfc5; border-radius: 50%; margin: 0 0.6rem; flex-shrink: 0; }
@media (max-width: 575px) { .hero-trust-sep { display: none; } .hero-trust { gap: 0.4rem 1rem; } }

.btn-primary-rose { background: var(--rose); color: #fff; border: none; border-radius: 50px; padding: 0.75rem 2rem; font-weight: 500; text-decoration: none; display: inline-block; transition: background .2s, transform .2s; }
.btn-primary-rose:hover { background: #b5607a; color: #fff; transform: translateY(-1px); }
.btn-primary-rose:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-outline-rose { background: transparent; color: var(--rose); border: 2px solid var(--rose); border-radius: 50px; padding: 0.65rem 1.75rem; font-weight: 500; text-decoration: none; display: inline-block; transition: all .2s; }
.btn-outline-rose:hover { background: var(--rose); color: #fff; }

/* ── Section titles ── */
.section-title { font-family: var(--font-serif); text-align: center; margin-bottom: 0.5rem; }
.section-subtitle { text-align: center; color: var(--muted); margin-bottom: 2.5rem; }
.divider-rose { width: 48px; height: 3px; background: var(--rose); border-radius: 2px; margin: 0.5rem auto 1rem; }

/* ── Category cards ── */
.category-card { border: none; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 16px rgba(0,0,0,.07); transition: transform .25s, box-shadow .25s; cursor: pointer; text-decoration: none; }
.category-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(201,118,138,.18); }
.category-card img { width: 100%; height: 220px; object-fit: cover; }
.category-card .card-body { background: #fff; padding: 1rem 1.25rem; text-align: center; }
.category-card .card-title { font-family: var(--font-serif); color: var(--charcoal); font-size: 1.05rem; margin-bottom: 0; }

/* ── Product grid ── */
.product-card { border: none; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .25s, box-shadow .25s; height: 100%; }
.product-card:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(201,118,138,.15); }
.product-card .product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1; }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover img { transform: scale(1.04); }
.product-card .card-body { padding: 1rem 1.25rem 1.25rem; }
.product-card .product-name { font-family: var(--font-serif); font-size: 1rem; margin-bottom: 0.25rem; }
.product-card .product-price { color: var(--rose); font-weight: 600; font-size: 1.05rem; }
.product-card .btn-add { background: var(--rose-light); color: var(--rose); border: none; border-radius: 50px; font-size: 0.85rem; font-weight: 500; padding: 0.4rem 1rem; transition: all .2s; width: 100%; margin-top: 0.75rem; }
.product-card .btn-add:hover { background: var(--rose); color: #fff; }

/* ── Product detail ── */
.product-gallery img, .product-gallery video { width: 100%; border-radius: 16px; object-fit: cover; }
.thumb-list { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.thumb-list img, .thumb-list video { width: 72px; height: 72px; object-fit: cover; border-radius: 10px; cursor: pointer; border: 2px solid transparent; transition: border-color .2s; }
.thumb-list .active { border-color: var(--rose); }
.product-price-lg { font-size: 1.75rem; color: var(--rose); font-weight: 700; }
.product-meta { background: var(--rose-pale); border-radius: 12px; padding: 1rem 1.25rem; }
.product-meta dt { color: var(--muted); font-size: 0.85rem; }
.product-meta dd { font-weight: 500; }

/* ── Cart ── */
.cart-item { border: 1px solid #f0e6ea; border-radius: 14px; padding: 1rem; margin-bottom: 0.75rem; }
.cart-summary { background: var(--rose-pale); border-radius: 16px; padding: 1.5rem; }
.cart-total { font-family: var(--font-serif); font-size: 1.5rem; color: var(--rose); }

/* ── Forms ── */
.form-control:focus, .form-select:focus { border-color: var(--rose); box-shadow: 0 0 0 0.2rem rgba(201,118,138,.2); }
.form-label { font-weight: 500; font-size: 0.9rem; }

/* ── Footer ── */
.site-footer { background: #faf5f7; border-top: 1px solid #f0e6ea; }
.footer-link { color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-link:hover { color: var(--rose); }

/* ── Badges ── */
.badge-rose { background: var(--rose); color: #fff; border-radius: 50px; font-size: 0.75rem; padding: 0.25rem 0.65rem; }
.badge-gold { background: var(--gold-light); color: var(--gold); border-radius: 50px; font-size: 0.75rem; padding: 0.25rem 0.65rem; }

/* ── Filter bar ── */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn { background: #fff; border: 1.5px solid #e0ccd4; color: var(--charcoal); border-radius: 50px; padding: 0.4rem 1.1rem; font-size: 0.88rem; font-weight: 500; cursor: pointer; transition: all .2s; text-decoration: none; }
.filter-btn:hover, .filter-btn.active { background: var(--rose); border-color: var(--rose); color: #fff; }

/* ── Recommended carousel ── */
.reco-wrap { position: relative; }
.reco-track { display: flex; overflow-x: auto; gap: 16px; scroll-behavior: smooth; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; }
.reco-track::-webkit-scrollbar { display: none; }
.reco-item { flex: 0 0 calc(25% - 12px); min-width: 0; scroll-snap-align: start; }
.reco-arrow { position: absolute; top: 40%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; border: none; background: #fff; box-shadow: 0 3px 14px rgba(0,0,0,.14); color: var(--rose); font-size: 1.1rem; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 4; transition: background .2s, color .2s, box-shadow .2s; }
.reco-arrow:hover { background: var(--rose); color: #fff; box-shadow: 0 4px 18px rgba(201,118,138,.35); }
.reco-prev { left: -23px; }
.reco-next { right: -23px; }
@media (max-width: 991px) { .reco-item { flex: 0 0 calc(50% - 8px); } }
@media (max-width: 575px)  { .reco-prev { left: 4px; } .reco-next { right: 4px; } }

/* ── Trust bar tooltips ── */
.trust-tip-wrap { position: relative; display: inline-block; cursor: default; }
.trust-tip { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%); background: var(--rose); color: #fff; font-size: 0.78rem; line-height: 1.45; text-align: center; padding: 0.6rem 0.9rem; border-radius: 8px; width: 165px; opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; transform: translateX(-50%) translateY(-4px); z-index: 20; }
.trust-tip::before { content: ''; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-bottom-color: var(--rose); }
.trust-tip-wrap:hover .trust-tip { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Social icons ── */
.social-icon { color: var(--muted); font-size: 1.3rem; transition: color .2s, transform .2s; display: inline-block; }
.social-icon:hover { color: var(--rose); transform: translateY(-2px); }

/* ── Empty state ── */
.empty-state { text-align: center; padding: 4rem 1rem; color: var(--muted); }
.empty-state i { font-size: 3rem; color: var(--rose-light); margin-bottom: 1rem; display: block; }

/* ── Language switcher ── */
.lang-switcher { display: flex; align-items: center; gap: 3px; }
.lang-btn { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; padding: 3px 7px; border-radius: 4px; color: var(--muted); text-decoration: none; transition: background .15s, color .15s; line-height: 1.4; }
.lang-btn:hover { background: var(--rose-pale); color: var(--rose); }
.lang-btn.active { background: var(--rose); color: #fff; }
