/* ═══════════════════════════════════════════════════════
   Andzia Butik — Complete Theme CSS
   Pixel-perfect replica of andziabutik.com

   Colors:
     Gold accent:  #dec289
     Black:        #0f0f0f
     Text:         #0f0f0f
     Gray:         #666666
     Sale red:     #e85555
     BG white:     #ffffff
     BG light:     #f7f7f7 / #fcfcfc

   Fonts:
     Body:         Lato 15px
     Headings:     Raleway
     Newsletter:   Special Elite
     Accent:       Poppins
   ═══════════════════════════════════════════════════════ */

/* ── Reset & Base ───────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #0f0f0f;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    padding: 0;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

/* ── Utility ────────────────────────────────────────── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

body.menu-open,
body.search-open {
    overflow: hidden;
}


/* ═══════════════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════════════ */
.top-bar {
    background: #0f0f0f;
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    padding: 8px 0;
}

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

.top-bar__left .social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.top-bar__left .social-icons a {
    color: #fff;
    opacity: 0.8;
    display: flex;
    align-items: center;
    transition: opacity 0.3s;
}
.top-bar__left .social-icons a:hover {
    opacity: 1;
}

.top-bar__right {
    color: #ccc;
    font-size: 12px;
}
.top-bar__right a {
    color: #dec289;
    font-weight: 700;
}
.top-bar__right a:hover {
    text-decoration: underline;
}


/* ═══════════════════════════════════════════════════════
   SITE HEADER (header-889 equivalent)
   Desktop: logo centered large, nav below
   ═══════════════════════════════════════════════════════ */
.site-header {
    background: #fff;
    position: relative;
    z-index: 100;
    border-bottom: 1px solid #e8e8e8;
}

.site-header__inner {
    max-width: 1400px;
    margin: 0 auto;
}

/* Main row: search | logo | icons */
.header-row--main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 140px;
}
.header-right {
    justify-content: flex-end;
}
.header-center {
    flex: 1;
    text-align: center;
}

/* Logo */
.site-logo {
    display: inline-block;
}
.logo-img--large {
    max-height: 70px;
    width: auto;
    display: inline-block;
}
.logo-img--small {
    max-height: 40px;
    width: auto;
    display: inline-block;
}

/* Header icons */
.header-icon {
    color: #0f0f0f;
    font-size: 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}
.header-icon:hover {
    color: #dec289;
}

.search-toggle {
    color: #0f0f0f;
    font-size: 20px;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}
.search-toggle:hover {
    color: #dec289;
}

/* Cart count badge */
.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #dec289;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Hamburger — hidden on desktop */
.hamburger {
    font-size: 22px;
    color: #0f0f0f;
    display: none;
    align-items: center;
    transition: color 0.3s;
}
.hamburger:hover {
    color: #dec289;
}

/* ── Desktop Navigation Row ────────────────────────── */
.header-row--nav {
    border-top: 1px solid #e8e8e8;
    display: flex;
    justify-content: center;
    padding: 0;
}

.header-row--nav .nav-menu {
    display: flex;
    justify-content: center;
    gap: 0;
}

.header-row--nav .nav-menu > li > a {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0f0f0f;
    padding: 14px 20px;
    display: block;
    transition: color 0.3s, background-color 0.3s;
    white-space: nowrap;
}
.header-row--nav .nav-menu > li > a:hover {
    color: #dec289;
}

/* Dropdown menus */
.header-row--nav .nav-menu > li {
    position: relative;
}
.header-row--nav .nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 1000;
}
.header-row--nav .nav-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header-row--nav .nav-menu .sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.2s, color 0.2s;
}
.header-row--nav .nav-menu .sub-menu li a:hover {
    background: #fafafa;
    color: #dec289;
}
.header-row--nav .nav-menu .sub-menu li:last-child a {
    border-bottom: none;
}


/* ═══════════════════════════════════════════════════════
   LOGO BANNER (section-933)
   Hidden on desktop, shown on mobile <=767px
   ═══════════════════════════════════════════════════════ */
.logo-banner {
    display: none; /* hidden on desktop */
    text-align: center;
    padding: 15px 20px;
    background: #fff;
}
.logo-banner__img {
    max-width: 280px;
    margin: 0 auto;
}


/* ═══════════════════════════════════════════════════════
   STICKY HEADER
   Fixed, appears after 300px scroll
   Logo small left, nav center, icons right
   ═══════════════════════════════════════════════════════ */
.sticky-header {
    position: fixed;
    top: -100px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    z-index: 9999;
    padding: 0;
    transition: top 0.4s ease;
}
.sticky-header.is-visible {
    top: 0;
}

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

.sticky-logo {
    display: flex;
    align-items: center;
}

/* Sticky nav */
.sticky-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}
.sticky-nav .nav-menu {
    display: flex;
    gap: 0;
    justify-content: center;
}
.sticky-nav .nav-menu > li > a {
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0f0f0f;
    padding: 10px 14px;
    display: block;
    transition: color 0.3s;
    white-space: nowrap;
}
.sticky-nav .nav-menu > li > a:hover {
    color: #dec289;
}

/* Sticky dropdown */
.sticky-nav .nav-menu > li {
    position: relative;
}
.sticky-nav .nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 1000;
}
.sticky-nav .nav-menu > li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sticky-nav .nav-menu .sub-menu li a {
    display: block;
    padding: 9px 18px;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
}
.sticky-nav .nav-menu .sub-menu li a:hover {
    color: #dec289;
    background: #fafafa;
}

/* Sticky header icons */
.sticky-header .header-icon {
    font-size: 18px;
}
.sticky-header .header-left {
    min-width: 120px;
}
.sticky-header .header-right {
    min-width: 120px;
    gap: 15px;
}
.sticky-header .hamburger {
    display: none;
}


/* ═══════════════════════════════════════════════════════
   SEARCH OVERLAY
   ═══════════════════════════════════════════════════════ */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.88);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.search-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.search-overlay__inner {
    width: 90%;
    max-width: 600px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 18px 60px 18px 20px;
    font-size: 18px;
    border: 2px solid #dec289;
    background: #fff;
    color: #0f0f0f;
}
.search-input::placeholder {
    color: #999;
}

.search-submit {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #dec289;
    background: none;
    border: none;
    cursor: pointer;
}

.search-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}


/* ═══════════════════════════════════════════════════════
   MOBILE OFF-CANVAS MENU
   Slides from RIGHT, 40% width on desktop concept,
   but 80% on actual mobile, white bg
   ═══════════════════════════════════════════════════════ */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-panel {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40%;
    min-width: 280px;
    max-width: 400px;
    background: #fff;
    padding: 25px 20px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 99999;
}
.mobile-menu-overlay.is-open .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-panel__header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.mobile-menu-close {
    font-size: 22px;
    color: #0f0f0f;
    padding: 5px;
}

.mobile-menu-list > li > a {
    display: block;
    padding: 13px 0;
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0f0f0f;
    border-bottom: 1px solid #f0f0f0;
}
.mobile-menu-list > li > a:hover {
    color: #dec289;
}

.mobile-menu-list .sub-menu {
    padding-left: 15px;
    display: none;
}
.mobile-menu-list .sub-menu.is-open {
    display: block;
}
.mobile-menu-list .sub-menu li a {
    display: block;
    padding: 10px 0;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #555;
    border-bottom: 1px solid #f5f5f5;
}
.mobile-menu-list .sub-menu li a:hover {
    color: #dec289;
}

.submenu-toggle {
    display: inline-block;
    cursor: pointer;
    padding: 5px 12px;
    float: right;
    font-size: 14px;
    color: #666;
    transition: transform 0.3s;
    user-select: none;
}
.submenu-toggle.is-open {
    transform: rotate(180deg);
}


/* ═══════════════════════════════════════════════════════
   MINI CART DROPDOWN
   ═══════════════════════════════════════════════════════ */
.header-cart {
    position: relative;
}

.mini-cart-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: -10px;
    width: 320px;
    background: #fff;
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
    padding: 20px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
}
.mini-cart-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 15px;
    border: 5px solid transparent;
    border-bottom-color: #fff;
}
.header-cart:hover .mini-cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mini-cart-title {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.mini-cart-content .woocommerce-mini-cart {
    max-height: 250px;
    overflow-y: auto;
}
.mini-cart-content .woocommerce-mini-cart__empty-message {
    text-align: center;
    color: #999;
    font-size: 13px;
    padding: 20px 0;
}
.mini-cart-content .mini_cart_item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 13px;
}
.mini-cart-content .mini_cart_item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}
.mini-cart-content .mini_cart_item .remove {
    color: #e85555 !important;
    font-size: 18px;
    margin-left: auto;
}
.mini-cart-content .woocommerce-mini-cart__total {
    padding: 12px 0;
    font-weight: 700;
    font-size: 14px;
    border-top: 1px solid #eee;
}
.mini-cart-content .woocommerce-mini-cart__buttons {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}
.mini-cart-content .woocommerce-mini-cart__buttons a {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-family: 'Raleway', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mini-cart-content .woocommerce-mini-cart__buttons .button:first-child {
    background: #fff !important;
    color: #0f0f0f !important;
    border: 1px solid #0f0f0f;
}
.mini-cart-content .woocommerce-mini-cart__buttons .checkout {
    background: #0f0f0f !important;
    color: #fff !important;
}

.mini-cart-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid #f0f0f0;
    font-size: 11px;
    color: #999;
}
.mini-cart-secure .lnr {
    color: #dec289;
    font-size: 14px;
}


/* ═══════════════════════════════════════════════════════
   HERO SECTION (section-56)
   Full width, padding 0 20px
   ═══════════════════════════════════════════════════════ */
.hero-section {
    width: 100%;
    padding: 0 20px;
    display: block;
}
.hero-link {
    display: block;
}
.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ── Banners (3-column, matching section-240) ────────── */
.banners-section {
    padding: 0 10%;
}
.banners-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 45px;
    margin-bottom: 10px;
    gap: 15px;
}
.banner-item {
    display: block;
    overflow: hidden;
    width: 500px;
    max-width: 33.333%;
    flex-shrink: 1;
}
.banner-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.4s;
}
.banner-item:hover img {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .banners-section { padding: 0 15px; }
    .banners-grid { margin-top: 30px; }
}
@media (max-width: 767px) {
    .banners-section { padding: 0 15px; }
    .banners-grid {
        flex-direction: column;
        gap: 15px;
        padding-bottom: 41px;
    }
    .banner-item {
        width: 100%;
        max-width: 100%;
    }
    .banner-item img {
        height: auto;
    }
}

/* ── Shop Sidebar / Filters ─────────────────────────── */
.shop-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}
.shop-sidebar {
    padding-top: 10px;
}
.shop-sidebar .widget {
    margin-bottom: 25px;
}
.shop-sidebar .widget-title,
.shop-sidebar h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #0f0f0f;
}
.shop-sidebar ul {
    list-style: none;
}
.shop-sidebar ul li {
    margin-bottom: 6px;
}
.shop-sidebar ul li a {
    font-size: 13px;
    color: #666;
    transition: color 0.3s;
    display: flex;
    justify-content: space-between;
}
.shop-sidebar ul li a:hover {
    color: #dec289;
}
.shop-sidebar ul li .count {
    color: #999;
    font-size: 12px;
}
.shop-sidebar .price-filter {
    padding: 10px 0;
}
.shop-sidebar .price_slider_wrapper .ui-slider {
    background: #e8e8e8;
    height: 4px;
    border-radius: 2px;
}
.shop-sidebar .price_slider_wrapper .ui-slider-range {
    background: #dec289;
}
.shop-sidebar .price_slider_wrapper .ui-slider-handle {
    background: #dec289;
    border: 2px solid #fff;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    top: -5px;
}

@media (max-width: 991px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }
    .shop-sidebar {
        display: none; /* hidden on mobile, could add toggle */
    }
}

/* ═══════════════════════════════════════════════════════
   COLLECTION SECTIONS
   (section-156: NAJNOWSZA KOLEKCJA)
   (section-248: POLECANE PRODUKTY)
   padding: 0 10% sides
   ═══════════════════════════════════════════════════════ */
.collection-section {
    padding: 40px 0 50px;
    background: #fff;
}
.collection-section--polecane {
    padding-bottom: 80px;
}

.collection-section__inner {
    padding: 0 10%;
}

/* ── Main Header (section headings) ────────────────── */
.mainheader {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #000;
    line-height: 0.1em;
    margin: 20px 0 35px;
}
.mainheadertext {
    background: #fff;
    padding: 15px 20px;
    font-family: 'Raleway', sans-serif;
    font-size: 21px;
    font-weight: 400;
    color: #dec289;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.collection-section--polecane .mainheadertext {
    /* same bg as section */
    background: #fff;
}


/* ═══════════════════════════════════════════════════════
   PRODUCT CARD
   Used in Splide sliders and grids
   ═══════════════════════════════════════════════════════ */
.product-card {
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}
.product-card:hover {
    transform: translateY(-3px);
}

.product-card__link {
    display: block;
    color: inherit;
}

.product-card__image {
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
}

.product-card__img {
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}
.product-card:hover .product-card__img {
    transform: scale(1.04);
}

/* Badges */
.badge {
    position: absolute;
    z-index: 5;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}
.badge-sale {
    top: 8px;
    right: 8px;
    background: #000;
    color: #fff;
}
.badge-new {
    top: 8px;
    left: 8px;
    background: #dec289;
    color: #fff;
}
.badge-sale--product {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    font-size: 13px;
    padding: 5px 12px;
}

/* Card info */
.product-card__info {
    padding: 12px 5px 4px;
}
.product-card__title {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #303030;
    margin-bottom: 4px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product-card__price {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #0f0f0f;
}
.product-card__price del {
    color: #999;
    font-size: 12px;
    margin-right: 6px;
}
.product-card__price ins {
    text-decoration: none;
    font-weight: 700;
    color: #e85555;
}
.product-card__price .woocommerce-Price-amount {
    font-size: 14px;
}

/* Add to cart under card */
.product-card__actions {
    padding: 0 5px 8px;
}
.product-card__addtocart {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0f0f0f;
    border: 1px solid #0f0f0f;
    padding: 7px 16px;
    transition: all 0.3s;
    background: transparent;
}
.product-card__addtocart:hover {
    background: #0f0f0f;
    color: #fff;
}


/* ═══════════════════════════════════════════════════════
   SPLIDE SLIDER OVERRIDES
   ═══════════════════════════════════════════════════════ */
.product-slider {
    position: relative;
}

.splide__arrow {
    background: #fff !important;
    border: 1px solid #ddd;
    width: 38px;
    height: 38px;
    opacity: 1 !important;
    border-radius: 0 !important;
    transition: all 0.3s;
}
.splide__arrow svg {
    fill: #0f0f0f;
    width: 14px;
    height: 14px;
}
.splide__arrow:hover {
    background: #dec289 !important;
    border-color: #dec289;
}
.splide__arrow:hover svg {
    fill: #fff;
}
.splide__arrow--prev {
    left: -18px;
}
.splide__arrow--next {
    right: -18px;
}

.splide__pagination {
    bottom: -25px;
}
.splide__pagination__page {
    background: #ddd;
    width: 8px;
    height: 8px;
    opacity: 1;
    transition: background 0.3s;
}
.splide__pagination__page.is-active {
    background: #dec289;
    transform: none;
}


/* ═══════════════════════════════════════════════════════
   NEWSLETTER SECTION (section-208)
   white bg, centered, Special Elite font
   ═══════════════════════════════════════════════════════ */
.newsletter-section {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
}

.newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-family: 'Special Elite', cursive;
    font-size: 36px;
    font-weight: 400;
    color: #dec289;
    margin-bottom: 10px;
}

.newsletter-icon {
    font-size: 28px;
    color: #dec289;
    display: block;
    margin-bottom: 12px;
}

.newsletter-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 13px 18px;
    border: 1px solid #ddd;
    border-right: none;
    font-size: 14px;
    transition: border-color 0.3s;
    background: #fff;
}
.newsletter-input:focus {
    border-color: #dec289;
}

.newsletter-btn {
    background: #dec289;
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 13px 28px;
    border: 1px solid #dec289;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
    white-space: nowrap;
    cursor: pointer;
}
.newsletter-btn:hover {
    background: #c9ad70;
    border-color: #c9ad70;
}

.newsletter-msg {
    margin-top: 12px;
    font-size: 14px;
}
.newsletter-msg.success { color: #2ecc71; }
.newsletter-msg.error { color: #e85555; }


/* ═══════════════════════════════════════════════════════
   FOOTER (section-141)
   Dark bg, gold headings, 4 columns
   padding: 16px top, 15% sides
   ═══════════════════════════════════════════════════════ */
.site-footer {
    background: #0f0f0f;
    color: #ccc;
    font-size: 13px;
    line-height: 1.7;
}

.footer-inner {
    padding: 40px 15% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr 1fr;
    gap: 30px;
}

.footer-heading {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #dec289;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-heading--mt {
    margin-top: 25px;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}
.footer-social a {
    color: #ccc;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}
.footer-social a:hover {
    color: #dec289;
}

.footer-payment-img {
    max-width: 200px;
    opacity: 0.7;
    margin-top: 10px;
}

.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    color: #ccc;
    transition: color 0.3s;
    font-size: 13px;
}
.footer-links a:hover {
    color: #dec289;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.footer-contact-item .lnr {
    color: #dec289;
    font-size: 16px;
    flex-shrink: 0;
}
.footer-contact-item a {
    color: #ccc;
    transition: color 0.3s;
}
.footer-contact-item a:hover {
    color: #dec289;
}

/* Copyright bottom bar */
.footer-bottom {
    border-top: 1px solid #222;
    padding: 0;
}
.footer-bottom__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 15%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-credit {
    color: #666;
    font-size: 12px;
    transition: color 0.3s;
}
.footer-credit:hover {
    color: #dec289;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    color: #666;
    font-size: 12px;
    transition: color 0.3s;
}
.footer-bottom-links a:hover {
    color: #dec289;
}


/* ═══════════════════════════════════════════════════════
   SHOP / CATEGORY PAGE
   Grid: 4 columns, 24 products per page
   ═══════════════════════════════════════════════════════ */
.shop-section {
    padding: 30px 0 60px;
}
.shop-section__inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.shop-title {
    font-family: 'Raleway', sans-serif;
    font-size: 28px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.shop-description {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Products grid — 4 columns for shop */
.products-grid--shop {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.no-products {
    text-align: center;
    color: #999;
    font-size: 16px;
    padding: 60px 0;
}

/* Hide WC ordering and result count */
.woocommerce-ordering { display: none !important; }
.woocommerce-result-count { display: none !important; }


/* ═══════════════════════════════════════════════════════
   WC PAGINATION
   ═══════════════════════════════════════════════════════ */
.woocommerce-pagination {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
}
.woocommerce-pagination .page-numbers {
    display: inline-flex;
    gap: 5px;
    align-items: center;
}
.woocommerce-pagination .page-numbers li {
    display: inline-block;
}
.woocommerce-pagination .page-numbers li a,
.woocommerce-pagination .page-numbers li span {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #ddd;
    font-size: 13px;
    color: #0f0f0f;
    transition: all 0.3s;
}
.woocommerce-pagination .page-numbers li a:hover {
    border-color: #dec289;
    color: #dec289;
}
.woocommerce-pagination .page-numbers li span.current {
    background: #dec289;
    color: #fff;
    border-color: #dec289;
}


/* ═══════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE
   ═══════════════════════════════════════════════════════ */
.product-page {
    padding: 20px 0 60px;
}
.product-page__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb */
.woocommerce-breadcrumb {
    font-size: 12px;
    color: #999;
    margin-bottom: 25px;
    padding: 10px 0;
}
.woocommerce-breadcrumb a {
    color: #666;
}
.woocommerce-breadcrumb a:hover {
    color: #dec289;
}

/* Product layout: 2-column */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    align-items: start;
}

/* Product gallery */
.product-gallery {
    position: relative;
}
.product-gallery .woocommerce-product-gallery {
    width: 100% !important;
}
.product-gallery .woocommerce-product-gallery__image img {
    width: 100%;
    height: auto;
}
.product-gallery .flex-viewport {
    margin-bottom: 10px;
}
.product-gallery .flex-control-thumbs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
}
.product-gallery .flex-control-thumbs li {
    width: calc(20% - 6.4px);
}
.product-gallery .flex-control-thumbs li img {
    opacity: 0.6;
    transition: opacity 0.3s;
    cursor: pointer;
}
.product-gallery .flex-control-thumbs li img:hover,
.product-gallery .flex-control-thumbs li img.flex-active {
    opacity: 1;
}

/* Product summary */
.product-title {
    font-family: 'Raleway', sans-serif;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.product-price {
    font-size: 22px;
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.price-label {
    font-size: 14px;
    color: #666;
}
.product-price del {
    color: #999;
    font-size: 16px;
}
.product-price ins {
    text-decoration: none;
    color: #e85555;
    font-weight: 700;
}
.product-price .woocommerce-Price-amount {
    font-size: 22px;
}

/* Shipping info box */
.product-shipping-info {
    margin-top: 25px;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #f0f0f0;
}
.shipping-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
    color: #555;
}
.shipping-item .lnr {
    color: #dec289;
    font-size: 18px;
    flex-shrink: 0;
}

/* Product meta categories */
.product-meta-cats {
    margin-top: 20px;
    font-size: 13px;
    color: #666;
}
.product-meta-cats a {
    color: #0f0f0f;
}
.product-meta-cats a:hover {
    color: #dec289;
}
.meta-label {
    font-weight: 600;
}

/* Section headings (gold with lines) */
.section-heading {
    text-align: center;
    font-family: 'Raleway', sans-serif;
    font-size: 21px;
    font-weight: 400;
    margin: 50px 0 30px;
    letter-spacing: 2px;
}
.section-heading--gold {
    color: #dec289;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.section-heading--gold::before,
.section-heading--gold::after {
    content: '';
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: #ddd;
}

.product-details-section {
    margin-bottom: 40px;
}
.product-description-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    color: #444;
}
.product-description-content p {
    margin-bottom: 15px;
}
.product-description-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}
.product-description-content table td,
.product-description-content table th {
    padding: 8px 12px;
    border: 1px solid #eee;
    font-size: 13px;
}

.related-section {
    margin-bottom: 40px;
}

.reviews-section {
    margin-bottom: 40px;
}


/* ═══════════════════════════════════════════════════════
   WC ADD TO CART / FORM ELEMENTS
   ═══════════════════════════════════════════════════════ */

/* Variations */
.variations_form .variations {
    width: 100%;
    margin-bottom: 20px;
}
.variations_form .variations td {
    padding: 8px 0;
}
.variations_form .variations .label label {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.variations_form .variations select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #fff;
    appearance: auto;
    cursor: pointer;
}
.variations_form .variations select:focus {
    border-color: #dec289;
}

/* Quantity */
.quantity {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
}
.quantity input[type="number"] {
    width: 60px;
    padding: 12px 8px;
    text-align: center;
    border: 1px solid #ddd;
    font-size: 14px;
    -moz-appearance: textfield;
}
.quantity input[type="number"]::-webkit-inner-spin-button,
.quantity input[type="number"]::-webkit-outer-spin-button {
    opacity: 1;
}

/* Buttons */
.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.single_add_to_cart_button,
button.single_add_to_cart_button {
    background: #0f0f0f !important;
    color: #fff !important;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 14px 35px;
    border: none !important;
    border-radius: 0 !important;
    cursor: pointer;
    transition: background 0.3s ease;
    display: inline-block;
    text-align: center;
    line-height: 1.4;
}
.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.single_add_to_cart_button:hover,
button.single_add_to_cart_button:hover {
    background: #dec289 !important;
    color: #fff !important;
}

/* Alt button */
.woocommerce a.button.alt,
.woocommerce button.button.alt {
    background: #dec289 !important;
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
    background: #0f0f0f !important;
}

/* Disabled button */
.woocommerce button.button:disabled,
.woocommerce button.button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Reset variations */
.reset_variations {
    font-size: 12px !important;
    color: #999 !important;
    margin-left: 10px;
}


/* ═══════════════════════════════════════════════════════
   WC NOTICES
   ═══════════════════════════════════════════════════════ */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    padding: 12px 20px;
    margin-bottom: 20px;
    font-size: 14px;
    border: none;
    border-left: 4px solid;
    list-style: none;
}
.woocommerce-message {
    background: #f0f9f0;
    border-left-color: #2ecc71;
    color: #2d7d2d;
}
.woocommerce-info {
    background: #f0f4f9;
    border-left-color: #3498db;
    color: #2c6fad;
}
.woocommerce-error {
    background: #fdf0f0;
    border-left-color: #e85555;
    color: #c0392b;
}
.woocommerce-error li {
    list-style: none;
}

.woocommerce-notices-wrapper {
    transition: opacity 0.5s ease;
}
.woocommerce-notices-wrapper.hide-notification {
    opacity: 0;
}


/* ═══════════════════════════════════════════════════════
   WC REVIEWS / COMMENTS
   ═══════════════════════════════════════════════════════ */
.comment-respond {
    max-width: 600px;
    margin: 0 auto;
}
.comment-respond .comment-reply-title {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 15px;
}
.comment-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    font-size: 14px;
    margin-bottom: 15px;
}
.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}
.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #dec289;
}

.comment-form .stars a {
    color: #dec289;
    font-size: 18px;
}
.comment-form .stars a:hover {
    color: #c9ad70;
}

/* Reviews list */
.commentlist {
    max-width: 700px;
    margin: 0 auto;
}
.commentlist .comment {
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}
.commentlist .comment-text {
    font-size: 14px;
    line-height: 1.6;
}
.commentlist .meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 8px;
}
.commentlist .star-rating {
    color: #dec289;
    margin-bottom: 5px;
}

/* Star rating */
.star-rating {
    overflow: hidden;
    position: relative;
    height: 1.2em;
    line-height: 1.2;
    width: 5.4em;
    font-size: 14px;
    font-family: 'star';
}
.star-rating::before {
    content: '\53\53\53\53\53';
    color: #ddd;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
}
.star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em;
}
.star-rating span::before {
    content: '\53\53\53\53\53';
    color: #dec289;
    top: 0;
    position: absolute;
    left: 0;
}


/* ═══════════════════════════════════════════════════════
   WC CART PAGE
   ═══════════════════════════════════════════════════════ */
.woocommerce-cart .woocommerce {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
}

.woocommerce table.shop_table {
    width: 100%;
    border-collapse: collapse;
    border: none;
    margin-bottom: 30px;
}
.woocommerce table.shop_table th {
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 15px;
    border-bottom: 2px solid #0f0f0f;
    text-align: left;
}
.woocommerce table.shop_table td {
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
    font-size: 14px;
}
.woocommerce table.shop_table img {
    width: 60px;
    height: auto;
}
.woocommerce table.shop_table .remove {
    color: #e85555;
    font-size: 20px;
}

.woocommerce .cart-collaterals .cart_totals {
    float: right;
    width: 40%;
}
.woocommerce .cart-collaterals .cart_totals h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
}

/* Coupon */
.woocommerce .coupon {
    display: flex;
    gap: 10px;
    align-items: center;
}
.woocommerce .coupon input[type="text"] {
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 14px;
    width: 200px;
}


/* ═══════════════════════════════════════════════════════
   WC CHECKOUT PAGE
   ═══════════════════════════════════════════════════════ */
.woocommerce-checkout .woocommerce {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
}

.woocommerce form .form-row label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #fff;
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: #dec289;
}
.woocommerce form .form-row {
    margin-bottom: 15px;
}

.woocommerce-checkout h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

#order_review_heading {
    margin-top: 30px;
}


/* ═══════════════════════════════════════════════════════
   WC MY ACCOUNT
   ═══════════════════════════════════════════════════════ */
.woocommerce-account .woocommerce {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
}
.woocommerce-MyAccount-navigation {
    float: left;
    width: 25%;
    padding-right: 30px;
}
.woocommerce-MyAccount-navigation ul li {
    margin-bottom: 0;
}
.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 15px;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}
.woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-MyAccount-navigation ul li.is-active a {
    color: #dec289;
    background: #fafafa;
}
.woocommerce-MyAccount-content {
    float: right;
    width: 75%;
}
.woocommerce-MyAccount-content::after {
    content: '';
    display: table;
    clear: both;
}


/* ═══════════════════════════════════════════════════════
   STATIC PAGES
   ═══════════════════════════════════════════════════════ */
.page-section {
    padding: 40px 0 60px;
}
.page-section__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-title {
    font-family: 'Raleway', sans-serif;
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
}

.page-content {
    line-height: 1.8;
    font-size: 15px;
}
.page-content p {
    margin-bottom: 15px;
}
.page-content h2 {
    font-family: 'Raleway', sans-serif;
    font-size: 22px;
    margin: 30px 0 12px;
    font-weight: 400;
}
.page-content h3 {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    margin: 25px 0 10px;
    font-weight: 500;
}
.page-content ul,
.page-content ol {
    margin: 10px 0 15px 25px;
    list-style: disc;
}
.page-content ol {
    list-style: decimal;
}
.page-content li {
    margin-bottom: 5px;
}
.page-content img {
    margin: 15px 0;
    border-radius: 2px;
}
.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 15px 0;
}
.page-content table td,
.page-content table th {
    padding: 10px 14px;
    border: 1px solid #eee;
    font-size: 14px;
}
.page-content table th {
    background: #f9f9f9;
    font-weight: 600;
}

/* Post entries (index/blog) */
.post-entry {
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
}
.post-entry__title {
    font-size: 22px;
    margin-bottom: 8px;
}
.post-entry__title a:hover {
    color: #dec289;
}
.post-entry__meta {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}
.post-entry__excerpt {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
}


/* ═══════════════════════════════════════════════════════
   WC SHORTCODE GRID (if used on any page)
   ═══════════════════════════════════════════════════════ */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.woocommerce ul.products li.product {
    text-align: center;
    margin: 0 !important;
    padding: 0;
    float: none !important;
    width: auto !important;
    position: relative;
}
.woocommerce ul.products li.product a img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #303030;
    padding: 0;
    margin-bottom: 5px;
}
.woocommerce ul.products li.product .price {
    font-size: 14px;
    color: #0f0f0f;
}
.woocommerce ul.products li.product .price del {
    color: #999;
    font-size: 12px;
}
.woocommerce ul.products li.product .price ins {
    text-decoration: none;
    font-weight: 700;
    color: #e85555;
}
.woocommerce ul.products li.product .button {
    display: none; /* hide add to cart on WC grids */
}
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
    position: absolute;
    top: 8px;
    right: 8px;
    left: auto;
    background: #000;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 0;
    min-height: auto;
    min-width: auto;
    line-height: 1.4;
    margin: 0;
}


/* ═══════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════════════════ */

/* ── Tablet (max 1200px) ───────────────────────────── */
@media (max-width: 1200px) {
    .footer-inner {
        padding: 40px 5% 30px;
    }
    .footer-bottom__inner {
        padding: 15px 5%;
    }

    .collection-section__inner {
        padding: 0 5%;
    }

    .splide__arrow--prev { left: -10px; }
    .splide__arrow--next { right: -10px; }

    .footer-heading {
        font-size: 17px;
    }
}

/* ── max 991px: hide desktop nav, show hamburger ──── */
@media (max-width: 991px) {
    .top-bar {
        display: none;
    }

    .header-row--nav.desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .sticky-nav {
        display: none;
    }
    .sticky-header .hamburger {
        display: flex;
    }

    .site-header {
        border-bottom: none;
    }

    /* Shop grid: 3 columns */
    .products-grid--shop {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 15px;
    }

    /* Product page: single column */
    .product-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Footer: 2 columns */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Cart collaterals */
    .woocommerce .cart-collaterals .cart_totals {
        width: 50%;
    }
}

/* ── Mobile (max 767px) ────────────────────────────── */
@media (max-width: 767px) {
    /* Show logo banner on mobile */
    .logo-banner {
        display: block;
    }

    /* Header adjustments */
    .header-row--main {
        padding: 10px 15px;
    }
    .logo-img--large {
        max-height: 45px;
    }
    .header-left,
    .header-right {
        min-width: auto;
        gap: 14px;
    }

    /* Hide the large logo in header on mobile — shown in logo-banner instead */
    .site-header .header-center {
        display: none;
    }

    /* Mini cart dropdown: full width on mobile */
    .mini-cart-dropdown {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 60vh;
        overflow-y: auto;
        transform: translateY(100%);
    }
    .header-cart:hover .mini-cart-dropdown {
        transform: translateY(0);
    }
    .mini-cart-dropdown::before {
        display: none;
    }

    /* Mobile menu panel width */
    .mobile-menu-panel {
        width: 80%;
        min-width: 260px;
        max-width: 360px;
    }

    /* Hero */
    .hero-section {
        padding: 0 10px;
    }

    /* Collection sections */
    .collection-section__inner {
        padding: 0 15px;
    }

    .mainheader {
        margin: 15px 0 25px;
    }
    .mainheadertext {
        font-size: 6vw;
        padding: 5px 10px;
    }

    /* Shop grid: 2 columns */
    .products-grid--shop {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }

    /* Footer */
    .footer-inner {
        padding: 30px 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
    }
    .footer-social {
        justify-content: center;
    }
    .footer-contact-item {
        justify-content: center;
    }
    .footer-payment-img {
        margin: 10px auto 0;
    }
    .footer-bottom__inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 15px 20px;
    }
    .footer-heading {
        font-size: 8vw;
    }

    /* Newsletter */
    .newsletter-section {
        padding: 40px 15px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-input {
        border-right: 1px solid #ddd;
    }
    .newsletter-title {
        font-size: 26px;
    }

    /* Product page */
    .product-title {
        font-size: 22px;
    }
    .product-price {
        font-size: 18px;
    }
    .product-price .woocommerce-Price-amount {
        font-size: 18px;
    }

    /* Section headings */
    .section-heading {
        font-size: 18px;
    }
    .section-heading--gold::before,
    .section-heading--gold::after {
        max-width: 60px;
    }

    /* Shop title */
    .shop-title {
        font-size: 22px;
    }

    /* Cart */
    .woocommerce .cart-collaterals .cart_totals {
        width: 100%;
        float: none;
    }
    .woocommerce .coupon {
        flex-direction: column;
    }
    .woocommerce .coupon input[type="text"] {
        width: 100%;
    }

    /* My account */
    .woocommerce-MyAccount-navigation {
        float: none;
        width: 100%;
        padding-right: 0;
        margin-bottom: 20px;
    }
    .woocommerce-MyAccount-content {
        float: none;
        width: 100%;
    }

    /* Page */
    .page-title {
        font-size: 24px;
    }

    /* Sticky header: hide logo on mobile, just show icons */
    .sticky-header .header-left .sticky-logo {
        display: none;
    }
}

/* ── Small mobile (max 480px) ──────────────────────── */
@media (max-width: 480px) {
    .product-card__title {
        font-size: 12px;
    }
    .product-card__price {
        font-size: 12px;
    }
    .product-card__price .woocommerce-Price-amount {
        font-size: 12px;
    }
    .product-card__actions {
        display: none; /* hide add to cart on very small screens */
    }

    .badge {
        font-size: 10px;
        padding: 3px 7px;
    }

    .header-left,
    .header-right {
        gap: 10px;
    }
    .header-icon {
        font-size: 18px;
    }
    .search-toggle {
        font-size: 18px;
    }
    .hamburger {
        font-size: 20px;
    }

    .footer-heading {
        font-size: 16px;
    }
}

/* ── max 600px: mainheadertext responsive (from original CSS) ── */
@media (max-width: 600px) {
    .mainheadertext {
        font-size: 6vw;
        padding: 5px 10px;
    }
}


/* ═══════════════════════════════════════════════════════
   UTILITY / ANIMATIONS
   ═══════════════════════════════════════════════════════ */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Loading spinner for AJAX */
.is-loading {
    position: relative;
    pointer-events: none;
}
.is-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #dec289;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* WC loading overlay */
.woocommerce .blockUI.blockOverlay {
    background: rgba(255,255,255,0.7) !important;
}

/* Clear floats */
.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

/* Visually hidden but accessible */
.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    word-wrap: normal !important;
}
