/*
 Theme Name:   Hoot and Hue
 Theme URI:    https://example.com/hoot-and-hue
 Description:  A child theme of Botiga designed for Hoot and Hue
 Author:       Your Name
 Author URI:   https://example.com
 Template:     botiga
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  hootandhue
 Domain Path:  /languages
*/

/* =============================================================
   TABLE OF CONTENTS
   1. CSS Variables & Root
   2. Global / Typography
   3. Archive / Category Header
   4. Wishlist Button
   5. Footer
   6. Header
   7. Slide-Out Menu  ← refined
   8. WooCommerce Shop
   9. WooCommerce Cart
   10. WooCommerce Messages / Forms
   11. Search Slide
   12. Dynamic Categories Menu
   ============================================================= */


/* ─────────────────────────────────────────
   1. CSS VARIABLES & ROOT
───────────────────────────────────────── */
:root {
    --header-height: 60px;
    --black: #111111;
    --white: #ffffff;
    --gold: #C6A87C;
    --gray: #f5f5f5;
    --border: #f0f0f0;
    --text-muted: #999999;
    --font-stack: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --drawer-width: 320px;
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}


/* ─────────────────────────────────────────
   2. GLOBAL / TYPOGRAPHY
───────────────────────────────────────── */
p {
    font-size: 14px;
}


/* ─────────────────────────────────────────
   3. ARCHIVE / CATEGORY HEADER
───────────────────────────────────────── */
.woocommerce-page-header {
    background-color: transparent;
    padding: 15px 20px 10px 20px !important;
    margin: 0 !important;
    width: 100%;
    box-sizing: border-box;
    display: block !important;
    border-bottom: none;
}

.content-wrapper {
    margin-top: 0 !important;
    margin-bottom: 80px !important;
    padding: 0 20px;
}

.woocommerce-page-header + .content-wrapper {
    margin-top: 15px !important;
    margin-bottom: 20px !important;
}

.woocommerce-page-header .woocommerce-breadcrumb {
    text-align: left;
    margin: 0 0 8px 0 !important;
    padding: 0 !important;
    position: static !important;
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}

.archive-header,
.archive .page-header,
.category .page-header {
    background-color: transparent;
    padding: 15px 20px 10px 20px !important;
    margin: 0 !important;
    width: 100%;
    box-sizing: border-box;
    display: block !important;
    border-bottom: none;
}

.archive-header + .content-wrapper,
.page-header + .content-wrapper,
.category .page-header + .content-wrapper {
    margin-top: 15px !important;
    margin-bottom: 20px !important;
}

.page-title,
.archive-title,
.archive h1,
.woocommerce-page-header h1 {
    text-align: left;
    font-size: 28px;
    font-weight: 600;
    margin: 0 !important;
    padding: 0 !important;
    color: #333;
    text-transform: uppercase;
    display: block;
}

.archive-breadcrumbs,
.woocommerce-breadcrumb {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0 !important;
    padding: 0 !important;
    display: block;
    text-align: left;
}

.archive-breadcrumbs a,
.woocommerce-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.archive-breadcrumbs a:hover,
.woocommerce-breadcrumb a:hover {
    color: #333;
}

/* Page titles (Contact Us, About Us, etc.) */
.page-title.entry-title {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    text-align: center;
    margin: 0 !important;
    padding: 10px !important;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .archive-header,
    .archive .page-header,
    .category .page-header {
        display: block;
    }
    .page-title,
    .archive-title,
    .archive h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .page-title,
    .archive-title,
    .archive h1 {
        font-size: 24px;
    }
}


/* ─────────────────────────────────────────
   4. WISHLIST BUTTON
───────────────────────────────────────── */
.loop-button-wrap.button-layout3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Minimalist luxury circle button */
.woosw-btn {
    background: transparent !important;
    border: 1px solid #1a1a1a !important;
    color: #1a1a1a !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
}

.woosw-btn:hover {
    background: #1a1a1a !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    border-color: #1a1a1a !important;
}

.woosw-btn:active {
    transform: translateY(0) !important;
}

.woosw-btn-icon {
    font-size: 16px !important;
    transition: transform 0.3s ease !important;
}

.woosw-btn:hover .woosw-btn-icon {
    transform: scale(1.15) !important;
}

/* Added/saved state */
.woosw-btn.woosw-btn-added {
    background: #1a1a1a !important;
    color: #ffffff !important;
    border-color: #1a1a1a !important;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .woosw-btn {
        width: 36px !important;
        height: 36px !important;
    }
    .woosw-btn-icon {
        font-size: 14px !important;
    }
}

@media (max-width: 480px) {
    .woosw-btn {
        width: 32px !important;
        height: 32px !important;
    }
    .woosw-btn-icon {
        font-size: 13px !important;
    }
}


/* ─────────────────────────────────────────
   5. FOOTER
───────────────────────────────────────── */
.footer-html {
    margin-top: 40px;
    margin-bottom: 20px;
}

.site-footer {
    background-color: #1a1a1a;
    padding: 120px 20px 80px 20px;
    margin-top: 80px;
    color: #e0e0e0;
    font-family: var(--font-stack);
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.footer-section h3,
.footer-column h3 {
    font-size: 13px;
    margin: 0 0 25px 0;
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.footer-section ul,
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li,
.footer-column ul li {
    margin-bottom: 10px;
    line-height: 1;
}

.footer-section a,
.footer-column a {
    color: #999999;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
}

.footer-section a:hover,
.footer-column a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-section p {
    color: #999999;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 300px;
}

.footer-section form {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-section input[type="email"] {
    width: 100%;
    max-width: 300px;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #555;
    background-color: transparent;
    color: var(--white);
    font-size: 14px;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.3s ease;
    border-radius: 0;
}

.footer-section input[type="email"]:focus {
    border-bottom-color: var(--white);
}

.footer-section button {
    background-color: var(--white);
    color: #000000;
    border: 1px solid var(--white);
    padding: 12px 30px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section button:hover {
    background-color: transparent;
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 60px;
    margin-top: 60px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 12px;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .site-footer {
        padding: 80px 20px 40px 20px;
    }
    .footer-sections {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .footer-section input[type="email"] {
        max-width: 100%;
    }
}


/* ─────────────────────────────────────────
   6. HEADER
───────────────────────────────────────── */
.hh-luxury-header {
    height: var(--header-height);
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--container-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Left: Hamburger */
.header-toggle-wrapper {
    flex: 1;
}

.hamburger-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-box {
    width: 24px;
    height: 14px;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 24px;
    height: 1.5px;
    background: var(--black);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before {
    content: '';
    top: -6px;
}

.hamburger-inner::after {
    content: '';
    bottom: -6px;
}

/* Center: Logo */
.header-logo {
    flex: 1;
    text-align: center;
}

.site-logo-text {
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--black);
    text-decoration: none;
}

/* Right: Icons */
.header-icons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px !important;
}

.header-icons .icon-btn {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--black);
    position: relative;
    transition: color 0.3s ease;
    cursor: pointer;
}

.header-icons .icon-btn:hover {
    color: var(--gold);
}

.cart-link svg {
    stroke-width: 1.2px;
}

.cart-count-badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--black);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--white);
}

@media (max-width: 768px) {
    .header-icons {
        gap: 5px !important;
    }
    .header-container {
        padding: 0 15px !important;
    }
    .hh-luxury-header {
        height: 60px;
    }
}


/* ─────────────────────────────────────────
   7. SLIDE-OUT MENU  — FULLY REFINED
───────────────────────────────────────── */

/* Overlay wrapper */
.luxury-slide-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    visibility: hidden;
    transition: visibility 0.4s;
}

.luxury-slide-menu.is-open {
    visibility: visible;
}

/* Dark backdrop */
.menu-overlay-bg {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.luxury-slide-menu.is-open .menu-overlay-bg {
    opacity: 1;
}

/* Drawer panel */
.menu-content-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--drawer-width);
    max-width: 85vw;
    height: 100%;
    background: var(--white);
    transform: translateX(-100%);
    transition: transform 0.5s var(--transition-smooth);
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.luxury-slide-menu.is-open .menu-content-inner {
    transform: translateX(0);
}

/* ── Header row: CLOSE right-aligned ── */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    height: 60px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

/* Optional brand label on left */
.menu-title {
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #bbb;
    font-weight: 600;
}

.menu-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
    margin-left: auto;         /* push to right even if .menu-title absent */
    transition: opacity 0.2s ease;
    line-height: 1;
}

.menu-close-btn:hover {
    opacity: 0.45;
}

/* ── Scrollable nav list ── */
.luxury-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1 1 auto;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.luxury-menu-list::-webkit-scrollbar {
    display: none;
}

/* ── Top-level items ── */
.luxury-menu-list > li {
    border-bottom: 1px solid #f2f2f2;
}

/* Shared style: top-level links AND toggle buttons */
.luxury-menu-list > li > a,
.luxury-menu-list > li > button.menu-toggle {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100%;
    padding: 17px 24px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.4px !important;
    color: var(--black) !important;
    text-decoration: none !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    transition: background 0.2s ease !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
}

.luxury-menu-list > li > a:hover,
.luxury-menu-list > li > button.menu-toggle:hover {
    background: #fafafa !important;
}

/* Focus / tap resets */
.luxury-menu-list a:focus,
.luxury-menu-list a:active,
.luxury-menu-list button:focus {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

/* ── + / × toggle icon ── */
.toggle-icon,
.dropdown-toggle-icon {
    width: 22px !important;
    height: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    font-weight: 300 !important;
    color: #bbb !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
    margin-left: 12px !important;
    transition: transform 0.3s ease, color 0.2s ease !important;
}

/* Rotate to × when open */
.luxury-menu-list li.open > button .toggle-icon,
.luxury-menu-list li.dropdown-open > a .dropdown-toggle-icon {
    transform: rotate(45deg) !important;
    color: var(--black) !important;
}

/* Hide all theme-injected arrows */
.luxury-menu-list .sub-menu-toggle,
.luxury-menu-list button.dropdown-toggle:not(.menu-toggle),
.luxury-menu-list .icon-nav,
.luxury-menu-list .dropdown-symbol,
.luxury-menu-list .icon-angle-down,
.luxury-menu-list .toggled-on {
    display: none !important;
}

/* ── Submenu container ── */
.luxury-menu-list .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.38s ease, opacity 0.28s ease;
    border-top: none;
}

/* Open state */
.luxury-menu-list li.open > .sub-menu,
.luxury-menu-list li.dropdown-open > .sub-menu {
    max-height: 700px;
    opacity: 1;
}

/* ── Submenu items — polished ── */
.luxury-menu-list .sub-menu > li {
    border-bottom: 1px solid #f0f0f0;
}

.luxury-menu-list .sub-menu > li:last-child {
    border-bottom: none;
}

.luxury-menu-list .sub-menu > li > a {
    display: flex !important;
    align-items: center !important;
    padding: 13px 24px 13px 32px !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    color: #555 !important;
    text-decoration: none !important;
    background: none !important;
    transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease !important;
    line-height: 1 !important;
    position: relative !important;
    gap: 10px !important;
}

/* Thin accent line before each sub-item */
.luxury-menu-list .sub-menu > li > a::before {
    content: '';
    display: inline-block !important;
    width: 16px !important;
    height: 1px !important;
    background: #ccc !important;
    flex-shrink: 0 !important;
    transition: width 0.2s ease, background 0.2s ease !important;
}

.luxury-menu-list .sub-menu > li > a:hover {
    color: var(--black) !important;
    background: #f2f2f2 !important;
    padding-left: 36px !important;
}

.luxury-menu-list .sub-menu > li > a:hover::before {
    width: 20px !important;
    background: var(--black) !important;
}

/* ── Footer copyright ── */
.menu-footer {
    flex-shrink: 0;
    padding: 18px 24px;
    border-top: 1px solid var(--border);
    font-size: 10px;
    color: #ccc;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: left;
}

@media (max-width: 480px) {
    .menu-content-inner {
        width: 280px;
    }
    .luxury-menu-list > li > a,
    .luxury-menu-list > li > button.menu-toggle {
        padding: 15px 20px !important;
    }
    .luxury-menu-list .sub-menu > li > a {
        padding: 12px 20px 12px 28px !important;
    }
}


/* ─────────────────────────────────────────
   8. WOOCOMMERCE SHOP
───────────────────────────────────────── */

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

/* Toolbar */
.woocommerce-catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.woocommerce-ordering {
    display: flex;
    align-items: center;
    gap: 10px;
}

.woocommerce-ordering label {
    font-size: 13px;
    font-weight: 500;
    color: #333333;
    margin: 0;
}

.woocommerce-ordering select {
    padding: 10px 30px 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: var(--white);
    color: #333333;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23333' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}

.woocommerce-ordering select:hover {
    border-color: #999;
    background-color: #f9f9f9;
}

.woocommerce-ordering select:focus {
    outline: none;
    border-color: #000;
}

.woocommerce-ordering select option:first-child {
    display: none;
}


/* ─────────────────────────────────────────
   9. WOOCOMMERCE CART
───────────────────────────────────────── */
.woocommerce-cart .woocommerce {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.woocommerce-cart .woocommerce-notices-wrapper {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    order: -1 !important;
}

.woocommerce-cart .woocommerce-cart-form {
    flex: 1 1 auto !important;
    width: 63% !important;
    min-width: 0 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.woocommerce-cart .cart-collaterals {
    flex: 0 0 320px !important;
    width: 320px !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: sticky;
    top: 100px;
    align-self: flex-start;
    border: none !important;
}

.cart_totals {
    background: #f8f8f8 !important;
    padding: 30px !important;
    border-radius: 2px !important;
    width: 100% !important;
    max-width: 33%!important;
    float: none !important;
    margin: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

.cart_totals h2 {
    font-size: 15px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
    color: #111;
    font-weight: 600;
    line-height: 1.2;
}

.cart_totals table.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin: 0 !important;
    border: none !important;
}

.cart_totals table.shop_table th {
    text-align: left !important;
    font-weight: 500;
    color: #555;
    padding: 10px 0;
    font-size: 13px;
}

.cart_totals table.shop_table td {
    text-align: right !important;
    color: #111;
    font-weight: 500;
    padding: 10px 0;
    font-size: 13px;
}

.cart_totals table.shop_table tr {
    border-bottom: 1px solid #eaeaea !important;
}

.cart_totals table.shop_table tr:last-child {
    border-bottom: none !important;
}

.cart_totals tr.order-total th,
.cart_totals tr.order-total td {
    border-top: 1px solid #ccc !important;
    padding-top: 20px !important;
    color: #000 !important;
    font-weight: 700 !important;
    font-size: 16px !important;
}

.wc-proceed-to-checkout .checkout-button {
    background-color: #000 !important;
    color: var(--white) !important;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 16px 0 !important;
    border-radius: 0 !important;
    margin-top: 25px !important;
    width: 100% !important;
    display: block;
}

.wc-proceed-to-checkout .checkout-button:hover {
    background-color: #333 !important;
}

@media (max-width: 900px) {
    .woocommerce-cart .woocommerce {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 30px;
    }
    .woocommerce-cart .woocommerce-cart-form,
    .woocommerce-cart .cart-collaterals {
        width: 100% !important;
        flex: auto !important;
    }
    .woocommerce-cart .cart-collaterals {
        position: static !important;
    }
}

@media (max-width: 767px) {
    .woocommerce-cart .cart_totals {
        max-width: 100% !important;
        float: none;
        padding: 15px;
    }
}


/* ─────────────────────────────────────────
   10. WOOCOMMERCE MESSAGES / FORMS
───────────────────────────────────────── */

/* Lost/reset password form */
.woocommerce-ResetPassword,
.lost_reset_password {
    max-width: 420px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #e5e5e5;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

/* Notices wrapper — centered */
.woocommerce-notices-wrapper {
    max-width: 420px;
    width: 100%;
    margin: auto;
    display: block;
}

/* Base notice style */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
    font-size: 12px !important;
    padding: 12px 15px !important;
    margin-bottom: 20px !important;
    border-radius: 4px !important;
    background: var(--white) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    list-style: none;
    color: #333;
    display: flex;
    align-items: center;
    width: 100% !important;
    box-sizing: border-box;
}

/* Remove default heavy icons */
.woocommerce-error::before,
.woocommerce-message::before,
.woocommerce-info::before {
    display: none;
}

/* Error */
.woocommerce-error {
    border-left: 4px solid #d93025 !important;
    color: #d93025;
}

.woocommerce-error a {
    color: #d93025 !important;
    text-decoration: underline;
}

/* Success */
.woocommerce-message {
    border-left: 4px solid #27ae60 !important;
    color: #27ae60;
}

.woocommerce-message a {
    color: #27ae60;
    text-decoration: underline;
}

/* Info */
.woocommerce-info {
    border-left: 4px solid #27ae60 !important;
    color: #27ae60;
}

.woocommerce-info a {
    color: #27ae60 !important;
    text-decoration: underline;
}

.woocommerce-error li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0;
}

.woocommerce-error:focus,
.woocommerce-message:focus,
.woocommerce-info:focus,
.woocommerce-notices-wrapper:focus {
    outline: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}


/* ─────────────────────────────────────────
   11. SEARCH SLIDE
───────────────────────────────────────── */
.header-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    z-index: 50;
    margin-right: 5px;
}

.search-slide-form {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background: transparent;
    white-space: nowrap;
    z-index: 90;
    box-shadow: none;
}

.search-slide-input {
    width: 260px !important;
    height: 40px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 4px !important;
    background: var(--white) !important;
    color: #333 !important;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 15px !important;
    outline: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.search-slide-input:focus {
    border-color: #111 !important;
}

.search-slide-input::placeholder {
    color: #999;
}

.header-search-wrapper.is-active .search-slide-form {
    width: 260px;
    opacity: 1;
    visibility: visible;
    right: 50px;
}

@media (max-width: 768px) {
    .header-search-wrapper.is-active .search-slide-form {
        position: fixed;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        width: 90%;
    }
    .search-slide-input {
        width: 100% !important;
    }
}


/* ─────────────────────────────────────────
   12. DYNAMIC CATEGORIES MENU
───────────────────────────────────────── */
.dynamic-categories-menu {
    background-color: #FFF;
    padding: 0;
    margin: 0;
    list-style: none;
}

.dynamic-categories-menu > .menu-item {
    padding: 0;
    border-bottom: 1px solid #efefef;
}

.dynamic-categories-menu > .menu-item:first-child {
    border-top: 1px solid #efefef;
}

/* Direct links (no children) */
.dynamic-categories-menu > .menu-item > a {
    color: #111;
    font-weight: 600;
    font-size: 12px;
    text-decoration: none;
    display: block;
    padding: 14px 16px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.dynamic-categories-menu > .menu-item > a:hover {
    color: #000;
    background-color: #f0f0f0;
}

/* Toggle buttons (items with children) */
.dynamic-categories-menu .menu-toggle {
    background: none;
    border: none;
    padding: 14px 16px;
    cursor: pointer;
    color: #111;
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.2s ease, background-color 0.2s ease;
    line-height: 1.2;
}

.dynamic-categories-menu .menu-toggle:hover {
    color: #000;
    background-color: #f0f0f0;
}

.dynamic-categories-menu .menu-toggle::after {
    display: none !important;
}

/* +/− icon */
.dynamic-categories-menu .menu-toggle .toggle-icon {
    font-size: 18px;
    font-weight: 300;
    color: #555;
    line-height: 1;
    transition: color 0.2s ease;
    flex-shrink: 0;
    margin-left: 8px;
    width: 16px;
    text-align: center;
    display: inline-block;
}

.dynamic-categories-menu .menu-toggle:hover .toggle-icon {
    color: #000;
}

.dynamic-categories-menu .menu-item-has-children > .menu-toggle .toggle-icon::before {
    content: '+';
}

.dynamic-categories-menu .menu-item-has-children.open > .menu-toggle .toggle-icon::before {
    content: '−';
}

/* Submenu */
.dynamic-categories-menu .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: transparent;
    border-top: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}

.dynamic-categories-menu .menu-item-has-children.open > .sub-menu {
    max-height: 600px;
    opacity: 1;
}

.dynamic-categories-menu .sub-menu .menu-item {
    padding: 0;
    border-bottom: none;
}

.dynamic-categories-menu .sub-menu a {
    display: block;
    padding: 8px 16px 8px 36px;
    font-size: 10px;
    color: #111;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.dynamic-categories-menu .sub-menu a::before {
    content: '–';
    position: absolute;
    left: 20px;
    color: #ccc;
    font-size: 10px;
}

.dynamic-categories-menu .sub-menu a:hover {
    color: #000;
    background-color: #f0f0f0;
}

/* Hide leftover elements */
.dynamic-categories-menu .dropdown-symbol,
.dynamic-categories-menu .sub-menu-toggle,
.dynamic-categories-menu .icon-angle-down,
.dynamic-categories-menu button.dropdown-toggle {
    display: none !important;
}

.hh-social-login {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 5px;
}

.hh-social-login .nsl-container {
    width: 100% !important;
    margin: 0 !important;
}

.hh-social-login .nsl-container-buttons {
    width: 100% !important;
    justify-content: center !important;
}

/* Make Google button full width like your Continue button */
.hh-social-login .nsl-button {
    width: 100% !important;
    max-width: 100% !important;
    justify-content: center !important;
    border-radius: 4px !important;
    border: 1px solid #ddd !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 12px 15px !important;
    box-shadow: none !important;
}

.hh-social-login .nsl-button:hover {
    background: #f9f9f9 !important;
    border-color: #bbb !important;
}

.hh-social-login .nsl-button-google {
    background: #fff !important;
    color: #333 !important;
}

/* Divider styling */
.hh-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.hh-divider::before,
.hh-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e5e5;
}

.hh-divider span {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* ========================================
   Curator's Edit - Home Page Styles
   ======================================== */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

/* ========================================
   Content Wrapper
   ======================================== */
.content-wrapper {
  max-width: 100%;
  margin: 0 auto;
  background: #ffffff;
}

.site-main {
  width: 100%;
  padding: 0;
}

/* ========================================
   Article Container
   ======================================== */
article.post {
  background: #ffffff;
}

.entry-content {
  background: #ffffff;
}

/* ========================================
   Elementor Container
   ======================================== */
.elementor {
  background: #ffffff;
}

.e-con-boxed .e-con-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.e-con-boxed {
  padding: 0;
}

/* ========================================
   Hero Banner Section
   ======================================== */
.elementor-element-3861add {
  padding: 0;
  background: #ffffff;
  margin-bottom: 15px;
}

.elementor-element-3861add .e-con-inner {
  padding: 0 15px;
}

.elementor-widget-image {
  margin-bottom: 0;
}

.elementor-widget-image a {
  display: block;
  line-height: 0;
}

.elementor-widget-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  transition: transform 0.3s ease;
}

.elementor-widget-image a:hover img {
  transform: scale(1.01);
}

/* ========================================
   Section Spacing - MINIMAL
   ======================================== */
.elementor-section {
  padding: 0 0 15px;
  background: #ffffff;
}

.elementor-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.elementor-column-gap-default {
  margin: 0;
}

.elementor-column {
  padding: 0;
}

.elementor-widget-wrap {
  width: 100%;
}

.elementor-element-populated {
  padding: 0;
}

/* ========================================
   Headings - SAME SIZE FOR ALL SECTIONS
   ======================================== */
.elementor-widget-heading {
  margin-bottom: 8px;
}

.elementor-heading-title {
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0;
  text-align: center;
  color: #1a1a1a;
  margin: 0 0 6px 0;
  line-height: 1.2;
}

.elementor-heading-title code {
  font-family: inherit;
  background: none;
  padding: 0;
  font-size: inherit;
  color: inherit;
}

.elementor-heading-title p {
  font-size: 24px;
  margin: 0;
  padding: 0;
}

/* ========================================
   Text Editor / Descriptions
   ======================================== */
.elementor-widget-text-editor {
  margin-bottom: 15px;
}

.elementor-widget-text-editor p {
  text-align: center;
  font-size: 13px;
  line-height: 1.4;
  color: #666;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ========================================
   Product Grid Section
   ======================================== */
.elementor-widget-shortcode {
  margin-top: 15px;
}

.elementor-shortcode {
  width: 100%;
}

.woocommerce.product-grid {
  margin: 0;
  padding: 0;
}

.products.columns-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ========================================
   Product Item
   ======================================== */
.product {
  background: #ffffff;
  border-radius: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

/* Product Image */
.loop-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: 10px;
}

.loop-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.product:hover .loop-image-wrap img {
  transform: scale(1.03);
}

/* Sale Badge */
.onsale {
  position: absolute;
  top: 8px;
  left: 8px;
  background: #000000;
  color: #ffffff;
  padding: 3px 8px;
  border-radius: 2px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 10;
  letter-spacing: 0.5px;
}

/* Add to Cart Button */
.loop-button-wrap {
  opacity: 0;
  transition: opacity 0.3s ease;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.product:hover .loop-button-wrap {
  opacity: 1;
}

.add_to_cart_button {
  background: #1a1a1a;
  color: #ffffff;
  padding: 7px 18px;
  border: none;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.add_to_cart_button:hover {
  background: #333;
}

/* Product Title */
.woocommerce-loop-product__title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 6px 0;
  color: #1a1a1a;
}

.woocommerce-loop-product__title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.woocommerce-loop-product__title a:hover {
  color: #666;
}

/* Product Price */
.price {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
  display: block;
}

.price del {
  color: #999;
  font-weight: 400;
  margin-right: 5px;
  font-size: 13px;
}

.price ins {
  text-decoration: none;
  color: #e74c3c;
}

/* Wishlist */
.tinv-wraper {
  margin-top: 6px;
}

.tinvwl_add_to_wishlist_button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
  border: 1px solid #ddd;
  padding: 5px 10px;
  border-radius: 2px;
  font-size: 10px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.tinvwl_add_to_wishlist_button:hover {
  border-color: #1a1a1a;
  color: #1a1a1a;
  background: #f9f9f9;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   Explore Our Collections Section
   ======================================== */
.elementor-element-398a725 {
  padding: 15px 0;
  background: #fafafa;
  margin-top: 15px;
}

.elementor-inner-section {
  margin-top: 15px;
}

.elementor-column-gap-extended {
  margin: 0 -8px;
}

.elementor-inner-column {
  padding: 0 8px;
}

/* Collection Cards */
.elementor-col-25 {
  width: 25%;
  flex: 0 0 25%;
}

.wp-caption {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wp-caption:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.wp-caption a {
  display: block;
  line-height: 0;
  overflow: hidden;
}

.wp-caption img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.wp-caption:hover img {
  transform: scale(1.04);
}

.widget-image-caption {
  padding: 10px;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #1a1a1a;
  background: #ffffff;
  margin: 0;
}

/* ========================================
   Animations
   ======================================== */
.animated {
  animation-duration: 0.6s;
  animation-fill-mode: both;
}

@keyframes fadeInUpShorter {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUpShorter {
  animation-name: fadeInUpShorter;
}

/* ========================================
   Responsive Design
   ======================================== */

/* Tablet (768px - 1024px) */
@media screen and (max-width: 1024px) {
  .elementor-container {
    padding: 0 15px;
  }

  .elementor-section {
    padding: 0 0 12px;
  }

  .elementor-element-398a725 {
    padding: 12px 0;
    margin-top: 12px;
  }

  .elementor-element-3861add {
    margin-bottom: 12px;
  }

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

  .elementor-col-25 {
    width: 50%;
    flex: 0 0 50%;
    margin-bottom: 12px;
  }
}

/* Mobile (max-width: 767px) */
@media screen and (max-width: 767px) {
  .e-con-boxed .e-con-inner {
    padding: 0 10px;
  }

  .elementor-container {
    padding: 0 10px;
  }

  .elementor-section {
    padding: 0 0 10px;
  }

  .elementor-element-398a725 {
    padding: 10px 0;
    margin-top: 10px;
  }

  .e-con-boxed {
    padding: 0;
  }

  .elementor-element-3861add {
    padding: 0;
    margin-bottom: 10px;
  }

  .elementor-element-3861add .e-con-inner {
    padding: 0 10px;
  }

  .elementor-heading-title {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .elementor-heading-title p {
    font-size: 20px;
  }

  .elementor-widget-text-editor p {
    font-size: 12px;
    padding: 0 5px;
    line-height: 1.3;
  }

  .elementor-widget-heading {
    margin-bottom: 6px;
  }

  .elementor-widget-text-editor {
    margin-bottom: 10px;
  }

  .elementor-widget-shortcode {
    margin-top: 10px;
  }

  .products.columns-3 {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .elementor-col-25 {
    width: 100%;
    flex: 0 0 100%;
    margin-bottom: 10px;
  }

  .elementor-column-gap-extended {
    margin: 0 -6px;
  }

  .elementor-inner-column {
    padding: 0 6px;
  }

  .elementor-inner-section {
    margin-top: 10px;
  }

  .woocommerce-loop-product__title {
    font-size: 12px;
  }

  .price {
    font-size: 14px;
  }

  .widget-image-caption {
    padding: 8px;
    font-size: 9px;
    letter-spacing: 0.6px;
  }

  .loop-image-wrap {
    margin-bottom: 8px;
  }
}

/* Small Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
  .elementor-heading-title {
    font-size: 18px;
  }

  .elementor-heading-title p {
    font-size: 18px;
  }

  .elementor-widget-text-editor p {
    font-size: 11px;
  }

  .add_to_cart_button {
    padding: 6px 14px;
    font-size: 10px;
  }

  .onsale {
    padding: 2px 6px;
    font-size: 9px;
  }

  .products.columns-3 {
    gap: 8px;
  }

  .e-con-boxed .e-con-inner,
  .elementor-container {
    padding: 0 8px;
  }

  .elementor-element-3861add {
    margin-bottom: 8px;
  }

  .elementor-section {
    padding: 0 0 8px;
  }

  .elementor-element-398a725 {
    padding: 8px 0;
    margin-top: 8px;
  }
}

/* ========================================
   Utility Classes
   ======================================== */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.no-sidebar {
  width: 100%;
}

/* Link Defaults */
a {
  transition: all 0.3s ease;
}

a:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

/* Image Optimization */
img {
  max-width: 100%;
  height: auto;
}

/* ========================================
   Print Styles
   ======================================== */
@media print {
  .loop-button-wrap,
  .tinv-wraper,
  .onsale {
    display: none;
  }

  .product {
    box-shadow: none;
    page-break-inside: avoid;
  }
}
