/* ═══════════════════════════════════════════
   DROPLETS OFFICIAL — COMPONENTS
   ═══════════════════════════════════════════ */

/* ══════════ ANNOUNCEMENT BAR ══════════ */
.announcement-bar {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 8px 20px;
    font-size: 0.75rem;
    font-family: var(--font-accent);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    height: var(--announcement-height);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1001;
}

.announcement-bar a {
    color: var(--gold-light);
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-left: 6px;
}

/* ══════════ HEADER / NAV ══════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    height: var(--header-height);
    transition: transform 0.4s var(--ease-smooth),
        box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-sm);
}

.site-header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 60px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

/* Logo */
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-logo img {
    height: 36px;
    width: auto;
}

.header-logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.04em;
}

.header-logo-text span {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: -2px;
}

/* Desktop Nav */
.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-nav a {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--dark-2);
    position: relative;
    padding: 4px 0;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s var(--ease-smooth);
}

.header-nav a:hover::after,
.header-nav a.active::after {
    width: 100%;
}

.header-nav a:hover {
    color: var(--dark);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-action-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.3s ease;
    color: var(--dark-2);
}

.header-action-btn:hover {
    background: var(--cream);
}

.header-action-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--gold);
    color: var(--white);
    font-size: 0.6rem;
    font-weight: 700;
    font-family: var(--font-accent);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s ease, transform 0.3s var(--ease-bounce);
}

.cart-count.visible {
    opacity: 1;
    transform: scale(1);
}

.cart-count.bounce {
    animation: cartBounce 0.5s var(--ease-bounce);
}

@keyframes cartBounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.4);
    }

    100% {
        transform: scale(1);
    }
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 24px;
    height: 24px;
    cursor: pointer;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--dark);
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

/* ══════════ MOBILE NAV OVERLAY ══════════ */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    padding: calc(var(--header-height) + var(--announcement-height) + 20px) 30px 30px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-smooth);
    overflow-y: auto;
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--dark);
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    display: block;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.mobile-nav-footer {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
    font-size: 0.85rem;
    color: var(--grey);
}

.mobile-nav-footer .social-links {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

/* ══════════ BUTTONS ══════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    transition: all 0.3s var(--ease-smooth);
    white-space: nowrap;
}

.btn--primary {
    background: var(--dark);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--dark-2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--gold {
    background: var(--gold);
    color: var(--white);
}

.btn--gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--dark);
}

.btn--outline:hover {
    background: var(--dark);
    color: var(--white);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid var(--white);
}

.btn--outline-white:hover {
    background: var(--white);
    color: var(--dark);
}

.btn--link {
    padding: 0;
    font-size: 0.75rem;
    color: var(--dark);
    border-bottom: 1px solid var(--dark);
    border-radius: 0;
}

.btn--link:hover {
    color: var(--gold);
    border-color: var(--gold);
}

/* ══════════ PRODUCT CARD ══════════ */
.product-card {
    position: relative;
    cursor: pointer;
}

.product-card__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--cream);
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
}

.product-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth), opacity 0.4s ease;
}

.product-card__img--hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-card:hover .product-card__img--primary {
    opacity: 0;
}

.product-card:hover .product-card__img--hover {
    opacity: 1;
}

.product-card:hover .product-card__img {
    transform: scale(1.05);
}

.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

.product-card__quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.9);
    color: var(--white);
    text-align: center;
    padding: 12px;
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-smooth);
    cursor: pointer;
}

.product-card:hover .product-card__quick-add {
    transform: translateY(0);
}

.product-card__info {
    text-align: center;
}

.product-card__name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 4px;
}

.product-card__price {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
}

.product-card__price del {
    color: var(--grey-light);
    font-weight: 400;
    margin-right: 6px;
}

/* ══════════ CATEGORY CARD ══════════ */
.category-card {
    text-align: center;
    cursor: pointer;
    transition: transform 0.4s var(--ease-smooth);
}

.category-card:hover {
    transform: translateY(-6px);
}

.category-card__img {
    width: clamp(100px, 14vw, 160px);
    height: clamp(100px, 14vw, 160px);
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto var(--space-md);
    border: 2px solid var(--border-light);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover .category-card__img {
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.15);
}

.category-card__label {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--dark);
}

/* ══════════ FOOTER ══════════ */
.site-footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.04em;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.7);
}

.footer-social a:hover svg {
    fill: var(--white);
}

.footer-col h4 {
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-newsletter p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-right: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    color: var(--white);
    font-size: 0.85rem;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.footer-newsletter-form button {
    padding: 10px 18px;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-accent);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    transition: background 0.3s ease;
}

.footer-newsletter-form button:hover {
    background: var(--gold-dark);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a:hover {
    color: var(--gold);
}

/* ══════════ BREADCRUMB ══════════ */
.breadcrumb {
    padding: 16px 0;
    font-size: 0.75rem;
    font-family: var(--font-accent);
    color: var(--grey-light);
}

.breadcrumb a {
    color: var(--grey);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    margin: 0 8px;
    color: var(--border);
}

/* ══════════ FLOWING MENU (adapted for Droplets brand) ══════════ */
.flowing-menu-wrap {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: var(--black);
    position: relative;
}

.flowing-menu {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    padding: 0;
}

.flowing-menu__item {
    flex: 1;
    position: relative;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.flowing-menu__item:first-child {
    border-top: none;
}

.flowing-menu__item-link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.4rem, 3.5vh, 2.5rem);
    letter-spacing: 0.1em;
    color: var(--white);
    transition: letter-spacing 0.4s var(--ease-smooth);
    z-index: 1;
}

.flowing-menu__item-link:hover {
    letter-spacing: 0.18em;
}

.fm-marquee {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform: translate3d(0, 101%, 0);
    z-index: 2;
    background: var(--gold);
}

.fm-marquee__inner-wrap {
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.fm-marquee__inner {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
    width: fit-content;
    will-change: transform;
}

.fm-marquee__part {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: var(--black);
}

.fm-marquee__part span {
    white-space: nowrap;
    text-transform: uppercase;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(1.2rem, 3vh, 2rem);
    line-height: 1;
    padding: 0 1.5vw;
    letter-spacing: 0.08em;
}

.fm-marquee__img {
    width: clamp(100px, 12vw, 180px);
    height: clamp(36px, 5vh, 60px);
    margin: 0 1.5vw;
    border-radius: 50px;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

/* ══════════ MINI CART DRAWER ══════════ */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: clamp(320px, 30vw, 420px);
    height: 100%;
    background: var(--white);
    z-index: 2001;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-smooth);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--border-light);
}

.cart-drawer__header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
}

.cart-drawer__close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.cart-drawer__items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-drawer__item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cart-drawer__item.removing {
    opacity: 0;
    transform: translateX(40px);
}

.cart-drawer__item-img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--cream);
    flex-shrink: 0;
}

.cart-drawer__item-info {
    flex: 1;
}

.cart-drawer__item-name {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 4px;
}

.cart-drawer__item-size {
    font-size: 0.75rem;
    color: var(--grey);
    margin-bottom: 8px;
}

.cart-drawer__item-price {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
}

.cart-drawer__qty {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.cart-drawer__qty button {
    width: 28px;
    height: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--dark);
    cursor: pointer;
    transition: background 0.2s ease;
}

.cart-drawer__qty button:hover {
    background: var(--cream);
}

.cart-drawer__qty span {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-drawer__item-remove {
    font-size: 0.7rem;
    color: var(--grey-light);
    text-decoration: underline;
    cursor: pointer;
    margin-top: 6px;
    display: inline-block;
    transition: color 0.2s ease;
}

.cart-drawer__item-remove:hover {
    color: #c0392b;
}

.cart-drawer__footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border-light);
}

.cart-drawer__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.cart-drawer__total-label {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--dark);
}

.cart-drawer__total-value {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
}

.cart-drawer__empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--grey);
}

.cart-drawer__empty svg {
    width: 48px;
    height: 48px;
    stroke: var(--border);
    fill: none;
    margin-bottom: 16px;
}

.cart-drawer__empty p {
    margin-bottom: 20px;
}

/* ══════════ FLY TO CART ANIMATION ══════════ */
.fly-to-cart {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background: var(--gold);
    opacity: 0.9;
    transition: none;
}

/* ══════════ PAGE HERO BANNER ══════════ */
.page-hero {
    background: var(--cream);
    text-align: center;
    padding: 60px 20px 50px;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 12px;
}

.page-hero p {
    max-width: 500px;
    margin: 0 auto;
}

/* ══════════ INFO CARDS ══════════ */
.info-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    transition: transform 0.4s var(--ease-smooth), box-shadow 0.4s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.info-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--gold);
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.9rem;
}