/* ========================================
   HOOT & HUE PREMIUM THEME
   ======================================== */

/* --- Variables --- */
:root {
    --hoot-bg: #FAF8F5;
    --hoot-fg: #2C2520;
    --hoot-primary: #6B5B4E;
    --hoot-primary-light: #8B7B6E;
    --hoot-primary-fg: #FAF8F5;
    --hoot-secondary: #6B8F5E;
    --hoot-accent: #C07350;
    --hoot-muted: #E8E4DF;
    --hoot-muted-fg: #8A8078;
    --hoot-border: #DDD8D2;
    --hoot-card: #F5F2EE;
    --hoot-warm: #F0EBE4;
    --hoot-success: #4A9E5C;
    --hoot-radius: 10px;
    --hoot-shadow: 0 2px 12px rgba(44,37,32,0.06);
    --hoot-shadow-lg: 0 8px 30px rgba(44,37,32,0.1);
    --hoot-font-heading: 'Cormorant Garamond', Georgia, serif;
    --hoot-font-body: 'Inter', -apple-system, sans-serif;
    --hoot-font-price: 'Inter', -apple-system, sans-serif;
    --hoot-container: 1200px;
    --hoot-transition: 0.3s cubic-bezier(0.4,0,0.2,1);
    --hoot-header-height: 70px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; }
body {
    font-family: var(--hoot-font-body);
    color: var(--hoot-fg);
    background: var(--hoot-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
h1,h2,h3,h4,h5,h6 { font-family: var(--hoot-font-heading); font-weight: 600; line-height: 1.2; }

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce ul.products li.product .price,
.woocommerce table.shop_table .amount,
.woocommerce table.shop_table .woocommerce-Price-amount,
.woocommerce-Price-amount,
.price .amount,
.product-card-price,
.pdp-price,
.header-search-result-price,
.header-search-result-price-current,
.header-search-result-price-regular,
.sticky-price {
    font-family: var(--hoot-font-price);
    font-variant-numeric: lining-nums tabular-nums;
}

.hoot-container {
    max-width: var(--hoot-container);
    margin: 0 auto;
    padding: 16px;
}

/* Main content wrapper */
.hoot-main-content {
    min-height: 50vh;
    width: 100%;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--hoot-radius);
    font-family: var(--hoot-font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: all var(--hoot-transition);
}
.btn-primary {
    background: var(--hoot-primary);
    color: var(--hoot-primary-fg);
}
.btn-primary:hover { background: var(--hoot-primary-light); transform: translateY(-1px); box-shadow: var(--hoot-shadow); }
.btn-outline {
    background: transparent;
    color: var(--hoot-primary);
    border: 1.5px solid var(--hoot-primary);
}
.btn-outline:hover { background: var(--hoot-primary); color: var(--hoot-primary-fg); }
.btn-full { width: 100%; }

/* ========================================
   HEADER
   ======================================== */
.hoot-header {
    overflow: visible;
    position: relative;
    z-index: 100;
    padding-top: var(--hoot-header-height);
}

.hoot-header-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;
    background: rgba(250, 248, 245, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--hoot-border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--hoot-header-height);
}
.header-left { display: flex; align-items: center; flex: 1; }
.header-center { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
.header-right { display: flex; align-items: center; gap: 20px; flex: 1; justify-content: flex-end; }

/* Logo */
.header-center .custom-logo-link,
.header-center .site-logo-link {
    display: flex;
    align-items: center;
}
.header-center .custom-logo {
    height: 48px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    display: block;
}
@media (max-width: 480px) {
    .header-center .custom-logo {
        height: 38px;
        max-width: 120px;
    }
}
.site-title {
    font-family: var(--hoot-font-heading);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}
.nav-menu { list-style: none; display: flex; gap: 28px; }
.nav-menu li a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color var(--hoot-transition);
}
.nav-menu li a:hover { color: var(--hoot-accent); }
.header-icon {
    position: relative;
    transition: color var(--hoot-transition);
}
.header-icon:hover { color: var(--hoot-accent); }
.header-search-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}
.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--hoot-accent);
    color: white;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header-search-panel {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    right: 0;
    z-index: 220;
    overflow: visible;
    padding: 14px 0 22px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    background: rgba(250, 248, 245, 0.98);
    border-bottom: 1px solid transparent;
    box-shadow: 0 16px 34px rgba(44,37,32,0.04);
    transition: border-color var(--hoot-transition), box-shadow var(--hoot-transition), opacity var(--hoot-transition), transform var(--hoot-transition), visibility var(--hoot-transition);
}
.header-search-panel.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    border-color: var(--hoot-border);
    box-shadow: 0 14px 28px rgba(44,37,32,0.08);
}
.header-search-shell {
    position: relative;
    padding: 0;
}
.header-search-toolbar {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}
.header-search-toolbar-title {
    font-family: var(--hoot-font-heading);
    font-size: 1.5rem;
    line-height: 1;
}
.header-search-close,
.filter-close-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--hoot-border);
    border-radius: 999px;
    background: #fff;
    color: var(--hoot-fg);
    cursor: pointer;
}
.header-search-close:hover,
.filter-close-btn:hover {
    border-color: var(--hoot-primary);
    color: var(--hoot-primary);
}
.header-search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}
.header-search-input {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    border: 1px solid var(--hoot-border);
    border-radius: 14px;
    background: #fff;
    font-size: 15px;
    color: var(--hoot-fg);
    font-family: var(--hoot-font-body);
}
.header-search-input:focus {
    outline: none;
    border-color: var(--hoot-primary);
    box-shadow: 0 0 0 3px rgba(107,91,78,0.12);
}
.header-search-submit {
    height: 52px;
    padding: 0 22px;
    border: none;
    border-radius: 14px;
    background: var(--hoot-primary);
    color: var(--hoot-primary-fg);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.header-search-results {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid var(--hoot-border);
    border-radius: 18px;
    box-shadow: var(--hoot-shadow-lg);
    overflow: hidden;
    z-index: 230;
    max-height: min(60vh, 560px);
    overflow-y: auto;
}
.header-search-results-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
}
.header-search-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.header-search-result-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100%;
    padding: 14px;
    border: 1px solid var(--hoot-border);
    border-radius: 16px;
    background: #fff;
}
.header-search-result-item:hover {
    background: var(--hoot-card);
    border-color: rgba(107,91,78,0.35);
}
.header-search-result-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: var(--hoot-muted);
}
.header-search-result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header-search-result-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}
.header-search-result-meta {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hoot-muted-fg);
}
.header-search-result-title {
    font-size: 14px;
    font-weight: 500;
    color: var(--hoot-fg);
    line-height: 1.45;
    min-height: 40px;
}
.header-search-result-price {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--hoot-primary);
    font-weight: 600;
}
.header-search-result-price-current {
    color: var(--hoot-primary);
    font-weight: 700;
}
.header-search-result-price-regular {
    color: var(--hoot-muted-fg);
    text-decoration: line-through;
    font-weight: 500;
}
.header-search-view-all,
.header-search-empty {
    padding: 0;
    font-size: 14px;
}
.header-search-view-all {
    color: var(--hoot-primary);
    font-weight: 600;
    background: var(--hoot-bg);
    padding: 12px 14px;
    border-radius: 12px;
    text-align: center;
}
.header-search-view-all:hover {
    color: var(--hoot-accent);
}
.header-search-empty {
    color: var(--hoot-muted-fg);
}
.header-search-suggestion-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.header-search-suggestion-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hoot-muted-fg);
}
.header-search-suggestion-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.header-search-suggestion-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 8px 14px;
    border: 1px solid var(--hoot-border);
    border-radius: 999px;
    background: #fff;
    color: var(--hoot-fg);
    font: inherit;
    cursor: pointer;
}
.header-search-suggestion-chip:hover {
    border-color: var(--hoot-primary);
    color: var(--hoot-primary);
}
.header-search-loader {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 0;
    color: var(--hoot-muted-fg);
    font-size: 14px;
}
.header-search-loader-dots {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.header-search-loader-dots span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--hoot-primary-light);
    animation: hootSearchPulse 1.1s infinite ease-in-out;
}
.header-search-loader-dots span:nth-child(2) {
    animation-delay: 0.12s;
}
.header-search-loader-dots span:nth-child(3) {
    animation-delay: 0.24s;
}
@keyframes hootSearchPulse {
    0%, 80%, 100% {
        opacity: 0.3;
        transform: scale(0.8);
    }
    40% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   STORE NOTICE
   ======================================== */
body.woocommerce-demo-store p.demo_store {
    position: static !important;
    z-index: auto;
    width: 100%;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0;
    padding: 7px max(20px, calc((100vw - var(--hoot-container)) / 2 + 20px));
    background: var(--hoot-primary);
    color: var(--hoot-primary-fg);
    font-family: var(--hoot-font-body);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    border-bottom: 1px solid rgba(250,248,245,0.14);
    box-shadow: none;
    inset: auto !important;
}

body.woocommerce-demo-store p.demo_store a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

body.woocommerce-demo-store p.demo_store .woocommerce-store-notice__dismiss-link {
    display: none !important;
}

body.woocommerce-demo-store p.demo_store .woocommerce-store-notice__dismiss-link:hover,
body.woocommerce-demo-store p.demo_store a:hover {
    color: #fff;
    opacity: 1;
}

/* ========================================
   STANDARD PAGES
   ======================================== */
.hoot-page-shell {
    max-width: 1160px;
}

.hoot-page-section {
    padding: 28px 0 40px;
}

.hoot-page-article {
    margin: 0 auto;
    padding: 0;
}


.hoot-page-title {
    margin-bottom: 0;
    font-family: var(--hoot-font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: 0.2px;
}

.hoot-page-prose {
    font-size: 16px;
    line-height: 1.85;
    color: var(--hoot-fg);
}

.hoot-page-prose > * + * {
    margin-top: 16px;
}

.hoot-page-prose p {
    color: var(--hoot-fg);
}

.hoot-page-prose strong {
    color: var(--hoot-fg);
    font-weight: 700;
}

.hoot-page-prose a {
    color: var(--hoot-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hoot-page-prose a:hover {
    color: var(--hoot-accent);
}

.hoot-page-prose h2,
.hoot-page-prose h3,
.hoot-page-prose h4 {
    margin-top: 28px;
    margin-bottom: 10px;
    font-family: var(--hoot-font-heading);
    color: var(--hoot-fg);
    line-height: 1.2;
}

.hoot-page-prose h2 { font-size: 2rem; }
.hoot-page-prose h3 { font-size: 1.5rem; }
.hoot-page-prose h4 { font-size: 1.2rem; }

.hoot-page-prose ul,
.hoot-page-prose ol {
    padding-left: 22px;
    color: var(--hoot-fg);
}

.hoot-page-prose li {
    margin-bottom: 8px;
}

.hoot-page-prose blockquote {
    margin: 24px 0;
    padding: 18px 20px;
    border-left: 3px solid var(--hoot-primary);
    background: var(--hoot-card);
    color: var(--hoot-muted-fg);
    border-radius: 0 14px 14px 0;
}

.hoot-page-prose img {
    border-radius: 14px;
}

/* Hamburger toggle */
.hamburger-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transition: background var(--hoot-transition);
    flex-shrink: 0;
}
.hamburger-toggle:hover {
    background: var(--hoot-muted);
}
.hamburger-box {
    width: 22px;
    height: 14px;
    position: relative;
    display: block;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--hoot-fg);
    position: absolute;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}
.hamburger-inner::before {
    content: '';
    top: -6px;
}
.hamburger-inner::after {
    content: '';
    bottom: -6px;
}
/* Hamburger → X when active */
.hamburger-toggle[aria-expanded="true"] .hamburger-inner {
    background: transparent;
}
.hamburger-toggle[aria-expanded="true"] .hamburger-inner::before {
    top: 0;
    transform: rotate(45deg);
}
.hamburger-toggle[aria-expanded="true"] .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* ─── Mobile slide menu ─── */
.luxury-slide-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    visibility: hidden;
    display: flex;
}
.luxury-slide-menu[aria-hidden="false"] {
    transform: translateX(0);
    visibility: visible;
}
.menu-overlay-bg {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.luxury-slide-menu[aria-hidden="false"] .menu-overlay-bg {
    opacity: 1;
    pointer-events: auto;
}
.menu-content-inner {
    width: 300px;
    height: 100vh;
    background: var(--hoot-bg);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
}

/* Panel header */
.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 16px;
    border-bottom: 1px solid var(--hoot-border);
}
.menu-title {
    font-family: var(--hoot-font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--hoot-fg);
}
.menu-close-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--hoot-muted-fg);
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 4px;
    transition: background var(--hoot-transition);
    border: none;
    background: none;
}
.menu-close-btn:hover {
    background: var(--hoot-muted);
    color: var(--hoot-fg);
}
.close-text {
    font-size: 10px;
}

/* Panel nav area */
.luxury-nav {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0;
}

/* Menu list */
.luxury-menu-list,
.luxury-menu-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.luxury-menu-list > .menu-item > a,
.luxury-menu-list > .menu-item > .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--hoot-fg);
    text-decoration: none;
    transition: background var(--hoot-transition), color var(--hoot-transition);
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}
.luxury-menu-list > .menu-item > a:hover,
.luxury-menu-list > .menu-item > .menu-toggle:hover {
    background: var(--hoot-warm);
    color: var(--hoot-accent);
}

/* Accordion icon */
.dropdown-toggle-icon {
    font-size: 18px;
    line-height: 1;
    transition: transform 0.2s;
    color: var(--hoot-muted-fg);
}
.menu-item.dropdown-open > a .dropdown-toggle-icon,
.menu-item.dropdown-open > .menu-toggle .dropdown-toggle-icon {
    transform: rotate(45deg);
    color: var(--hoot-accent);
}

/* Sub-menu (accordion, max-height transition) */
.luxury-menu-list .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background: var(--hoot-warm);
    border-left: 3px solid var(--hoot-border);
    transition: max-height 0.35s ease;
}
.menu-item.dropdown-open > .sub-menu {
    max-height: 600px;
}
.luxury-menu-list .sub-menu .menu-item a {
    display: block;
    padding: 10px 20px 10px 32px;
    font-size: 12px;
    color: var(--hoot-muted-fg);
    text-decoration: none;
    transition: color var(--hoot-transition);
}
.luxury-menu-list .sub-menu .menu-item a:hover {
    color: var(--hoot-accent);
}

/* Panel footer */
.menu-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--hoot-border);
}
.copyright-text {
    font-size: 10px;
    color: var(--hoot-muted-fg);
    letter-spacing: 0.5px;
    text-align: center;
    margin: 0;
}

/* ========================================
   HERO
   ======================================== */
/* Hero — responsive banner slider */
.hoot-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--hoot-warm);
    aspect-ratio: 21 / 9; /* default; overridden by hero-h-* classes */
}
/* Ratio height variants — scale with viewport/zoom automatically */
.hoot-hero.hero-h-ratio-21-9 { aspect-ratio: 21 / 9; }
.hoot-hero.hero-h-ratio-16-9 { aspect-ratio: 16 / 9; }
.hoot-hero.hero-h-ratio-4-3  { aspect-ratio:  4 / 3; }
/* Fixed viewport-percentage heights */
.hoot-hero.hero-h-short  { aspect-ratio: unset; height: clamp(200px, 40vh, 500px); }
.hoot-hero.hero-h-medium { aspect-ratio: unset; height: clamp(280px, 55vh, 660px); }
.hoot-hero.hero-h-tall   { aspect-ratio: unset; height: clamp(380px, 75vh, 920px); }

/* Slider fills the entire hero */
.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.hero-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.hero-slide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.hero-slide-link {
    display: block;
    width: 100%;
    height: 100%;
}
.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Prev / Next arrows */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.72);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.hero-nav:hover { background: rgba(255,255,255,0.96); }
.hero-nav-prev { left: 16px; }
.hero-nav-next { right: 16px; }

/* Dot indicators */
.hero-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.hero-dot.active { background: #fff; transform: scale(1.35); }

/* Overlay & content — above slider */
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(250,248,245,0.78), rgba(250,248,245,0.32));
    pointer-events: none;
}
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
/* Position variants */
.hoot-hero.hero-pos-left   .hero-content { align-items: flex-start; }
.hoot-hero.hero-pos-center .hero-content { align-items: center; }
.hoot-hero.hero-pos-right  .hero-content { align-items: flex-end; }
.hoot-hero.hero-pos-left   .hero-title,
.hoot-hero.hero-pos-left   .hero-subtitle { text-align: left; }
.hoot-hero.hero-pos-center .hero-title,
.hoot-hero.hero-pos-center .hero-subtitle { text-align: center; }
.hoot-hero.hero-pos-right  .hero-title,
.hoot-hero.hero-pos-right  .hero-subtitle { text-align: right; }
.hoot-hero.hero-pos-left   .hero-actions { justify-content: flex-start; }
.hoot-hero.hero-pos-center .hero-actions { justify-content: center; }
.hoot-hero.hero-pos-right  .hero-actions { justify-content: flex-end; }

/* Responsive — keep ratio banners reasonably tall on narrow screens */
@media (max-width: 767px) {
    .hoot-hero.hero-h-ratio-21-9 { aspect-ratio: 16 / 9; }
    .hero-content { padding: 32px 0 !important; }
    .hero-title { font-size: 2rem !important; }
    .hero-subtitle { font-size: 15px; }
    .hero-nav { width: 32px; height: 32px; font-size: 14px; }
}
@media (max-width: 480px) {
    /* Mobile: full edge-to-edge — image shows at natural size, no cropping */
    .hoot-hero {
        aspect-ratio: unset !important;
        height: auto !important;
    }
    /* Slider becomes relative so its height drives the hero height */
    .hero-slider {
        position: relative !important;
        inset: auto !important;
        width: 100%;
        height: auto !important;
    }
    .hero-slider-track { height: auto; }
    .hero-slide {
        height: auto;
        /* keep flex: 0 0 100% for width, let height be natural */
    }
    .hero-slide-link { height: auto; display: block; }
    .hero-bg-img {
        height: auto !important;
        object-fit: unset !important;
        width: 100%;
    }
    /* Overlay + content span the full hero (now sized by image) */
    .hero-overlay,
    .hero-content {
        position: absolute;
        inset: 0;
    }
    .hero-content { padding: 20px 0 !important; }
    .hero-title { font-size: 1.6rem !important; }
    .hero-nav { display: none; }
}

/* ========================================
   SECTIONS
   ======================================== */
.hero-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--hoot-accent);
    margin-bottom: 16px;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: var(--hoot-fg);
}
.hero-subtitle {
    font-size: 17px;
    color: var(--hoot-muted-fg);
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.bg-warm { background: var(--hoot-warm); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--hoot-accent);
    margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.section-cta { text-align: center; margin-top: 40px; }

/* --- Category Grid --- */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.category-card {
    position: relative;
    border-radius: var(--hoot-radius);
    overflow: hidden;
    aspect-ratio: 3/4;
    display: flex;
    align-items: flex-end;
}
.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--hoot-transition);
}
.category-card:hover img { transform: scale(1.05); }
.category-placeholder {
    position: absolute;
    inset: 0;
    background: var(--hoot-muted);
}
.category-info {
    position: relative;
    z-index: 1;
    padding: 20px;
    width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    color: white;
}
.category-info h3 { font-size: 18px; color: white; }
.category-info span { font-size: 12px; opacity: 0.8; }

/* ========================================
   PRODUCT GRID & CARDS
   ======================================== */
.product-grid {
    display: grid;
    gap: 24px;
}
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.product-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.product-card { position: relative; }
.product-image-wrap {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--hoot-radius);
    overflow: hidden;
    background: var(--hoot-muted);
}
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.hover-img {
    position: absolute;
    inset: 0;
    opacity: 0;
}
.product-card:hover .primary-img { opacity: 0; }
.product-card:hover .hover-img { opacity: 1; }
.product-placeholder-img {
    width: 100%;
    height: 100%;
    background: var(--hoot-muted);
}
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}
.sale-badge { background: var(--hoot-accent); color: white; }

.product-actions-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--hoot-transition);
}
.product-card:hover .product-actions-overlay { opacity: 1; transform: translateX(0); }
.action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--hoot-shadow);
    transition: all var(--hoot-transition);
}
.action-btn:hover { background: var(--hoot-primary); color: white; }
.action-btn:hover svg { stroke: white; }

.product-wishlist-action {
    display: flex;
}

.product-actions-overlay .woosw-btn {
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--hoot-fg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--hoot-shadow);
    transition: all var(--hoot-transition);
}

.product-actions-overlay .woosw-btn:hover,
.product-actions-overlay .woosw-btn.woosw-added {
    background: var(--hoot-primary);
    color: var(--hoot-primary-fg);
}

.product-actions-overlay .woosw-btn .woosw-btn-text {
    display: none;
}

.product-actions-overlay .woosw-btn .woosw-btn-icon {
    margin: 0;
    font-size: 15px;
    line-height: 1;
}

.quick-add-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: var(--hoot-primary);
    color: var(--hoot-primary-fg);
    border: none;
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transform: translateY(100%);
    transition: transform var(--hoot-transition);
}
.product-card:hover .quick-add-btn { transform: translateY(0); }

.product-card-info { padding: 14px 2px; }
.product-card-title {
    font-family: var(--hoot-font-body);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
}
.product-card-price {
    font-family: var(--hoot-font-price);
    font-size: 16px;
    font-weight: 600;
    color: var(--hoot-primary);
}
.product-card-price del { color: var(--hoot-muted-fg); font-size: 13px; margin-right: 6px; }
.product-card-price ins { text-decoration: none; }

/* ========================================
   PLP (PRODUCT LISTING PAGE)
   ======================================== */
.plp-top-bar {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 4px 0 24px;
    flex-wrap: wrap;
    gap: 16px;
}
.plp-title {
    font-size: 2rem;
    margin-top: 8px;
}
.plp-top-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.result-count { font-size: 13px; color: var(--hoot-muted-fg); }
.woocommerce-ordering select {
    padding: 8px 32px 8px 12px;
    border: 1px solid var(--hoot-border);
    border-radius: var(--hoot-radius);
    font-family: var(--hoot-font-body);
    font-size: 13px;
    background: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%236B5B4E' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.plp-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    padding-bottom: 80px;
}

/* Sidebar */
.plp-sidebar {
    position: sticky;
    top: calc(var(--hoot-header-height) + 20px);
    align-self: start;
}
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--hoot-border);
}
.sidebar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sidebar-header h3 { font-size: 18px; }
.clear-filters { font-size: 12px; color: var(--hoot-accent); }
.filter-group { margin-bottom: 28px; }
.filter-title {
    font-family: var(--hoot-font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.filter-list { list-style: none; }
.filter-list li { margin-bottom: 8px; }
.filter-list,
.widget_layered_nav ul,
.woocommerce-widget-layered-nav-list,
.wc-layered-nav-rating,
.widget_rating_filter ul,
.widget_product_categories ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.filter-list li,
.woocommerce-widget-layered-nav-list__item,
.wc-layered-nav-rating li,
.widget_product_categories li { margin-bottom: 8px; }
.filter-list li a {
    font-size: 14px;
    color: var(--hoot-muted-fg);
    display: flex;
    justify-content: space-between;
    transition: color var(--hoot-transition);
}
.filter-list li a:hover,
.filter-list li.active a { color: var(--hoot-fg); font-weight: 500; }
.filter-list .count { font-size: 12px; }
.filter-chip-link {
    align-items: center;
    padding: 10px 12px;
    border: 1px solid var(--hoot-border);
    border-radius: 12px;
    background: #fff;
}
.filter-list li.active .filter-chip-link {
    border-color: var(--hoot-primary);
    background: rgba(107,91,78,0.08);
}
.filter-chip-status {
    font-size: 11px;
    color: var(--hoot-primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.widget_price_filter .widget-title,
.widget_rating_filter .widget-title {
    display: none;
}
.widget_price_filter .price_slider_wrapper,
.widget_rating_filter,
.widget_layered_nav {
    padding-top: 4px;
}
.widget_price_filter .price_slider {
    margin: 10px 4px 18px;
    background: var(--hoot-muted);
}
.widget_price_filter .ui-slider .ui-slider-range {
    background: var(--hoot-primary);
}
.widget_price_filter .ui-slider .ui-slider-handle {
    width: 14px;
    height: 14px;
    top: -4px;
    background: var(--hoot-primary);
    border: 2px solid #fff;
    box-shadow: 0 2px 10px rgba(44,37,32,0.18);
}
.widget_price_filter .price_slider_amount {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    font-size: 13px;
    color: var(--hoot-muted-fg);
}
.widget_price_filter .price_slider_amount .button {
    display: none !important;
}
.widget_price_filter .price_label {
    margin-left: 0 !important;
    font-size: 13px;
    color: var(--hoot-fg);
}
.widget_rating_filter a,
.widget_layered_nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 0;
    color: var(--hoot-muted-fg);
}
.widget_rating_filter a:hover,
.widget_layered_nav a:hover,
.widget_layered_nav .chosen a {
    color: var(--hoot-fg);
}
.widget_rating_filter .star-rating {
    margin-right: auto;
}
.widget_product_categories,
.widget_price_filter + .widget,
.widget_rating_filter + .widget {
    display: none;
}

.mobile-filter-toggle {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--hoot-border);
    border-radius: var(--hoot-radius);
    background: #fff;
    color: var(--hoot-fg);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 20px;
}
.mobile-filter-toggle:hover {
    border-color: var(--hoot-primary);
    color: var(--hoot-primary);
}

.woocommerce-ordering select,
.plp-top-right select,
.widget_price_filter input,
.widget_price_filter select {
    border-color: var(--hoot-border) !important;
    color: var(--hoot-fg) !important;
    box-shadow: none !important;
    outline: none !important;
}

.woocommerce-ordering select:focus,
.plp-top-right select:focus,
.widget_price_filter input:focus,
.widget_price_filter select:focus,
.widget_price_filter .ui-slider-handle:focus {
    border-color: var(--hoot-primary) !important;
    box-shadow: 0 0 0 3px rgba(107,91,78,0.10) !important;
    outline: none !important;
}

/* Pagination */
.plp-pagination { margin-top: 48px; text-align: center; }
.plp-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 500;
    margin: 0 4px;
    transition: all var(--hoot-transition);
}
.plp-pagination .page-numbers.current,
.plp-pagination .page-numbers:hover {
    background: var(--hoot-primary);
    color: var(--hoot-primary-fg);
}

.no-products { text-align: center; padding: 80px 20px; }
.no-products h2 { margin-bottom: 12px; }
.no-products p { color: var(--hoot-muted-fg); margin-bottom: 24px; }

/* ========================================
   PDP (PRODUCT DETAIL PAGE)
   ======================================== */
.hoot-breadcrumb {
    padding: 20px 0;
    font-size: 12px;
    color: var(--hoot-muted-fg);
}
.hoot-breadcrumb a { transition: color var(--hoot-transition); }
.hoot-breadcrumb a:hover { color: var(--hoot-fg); }
.hoot-breadcrumb .sep { margin: 0 8px; opacity: 0.4; }

.pdp-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}
.pdp-gallery,
.pdp-info {
    min-width: 0;
}

/* Gallery */
.pdp-gallery { position: sticky; top: calc(var(--hoot-header-height) + 20px); align-self: start; }
.gallery-main {
    position: relative;
    border-radius: var(--hoot-radius);
    overflow: hidden;
    background: var(--hoot-muted);
    aspect-ratio: 1;
}
.main-image-wrap { position: relative; width: 100%; height: 100%; overflow: hidden; }
.main-image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.15s ease; }
.main-image-wrap:hover img { cursor: zoom-in; }
.zoom-lens {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}
.thumb-btn {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color var(--hoot-transition);
    background: none;
    padding: 0;
}
.thumb-btn.active,
.thumb-btn:hover { border-color: var(--hoot-primary); }
.thumb-btn img { width: 100%; height: 100%; object-fit: cover; }

/* Product Info */
.pdp-info { padding-top: 8px; }
.pdp-title { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 12px; }
.pdp-rating { margin-bottom: 16px; }
.hoot-star-rating { display: inline-flex; align-items: center; gap: 2px; }
.hoot-star-rating .star { font-size: 16px; color: var(--hoot-border); }
.hoot-star-rating .star.filled { color: var(--hoot-accent); }
.hoot-star-rating .star.half { color: var(--hoot-accent); }
.hoot-star-rating .rating-count { font-size: 13px; color: var(--hoot-muted-fg); margin-left: 8px; }

.pdp-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 12px;
    font-family: var(--hoot-font-price);
}
.pdp-price del { color: var(--hoot-muted-fg); font-size: 18px; }
.pdp-price ins { text-decoration: none; font-size: 28px; font-weight: 700; color: var(--hoot-primary); }
.pdp-price .amount { font-size: 28px; font-weight: 700; color: var(--hoot-primary); }
.discount-badge {
    font-size: 11px;
    font-weight: 600;
    background: rgba(192,115,80,0.1);
    color: var(--hoot-accent);
    padding: 4px 10px;
    border-radius: 20px;
    font-family: var(--hoot-font-body);
}

.pdp-stock { margin-bottom: 16px; }
.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    padding: 4px 14px;
    border-radius: 20px;
}
.stock-badge.in-stock { background: rgba(74,158,92,0.1); color: var(--hoot-success); }
.stock-badge.out-of-stock { background: rgba(200,60,60,0.1); color: #C83C3C; }
.stock-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hoot-success);
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.pdp-short-desc {
    font-size: 15px;
    color: var(--hoot-muted-fg);
    line-height: 1.7;
    margin-bottom: 8px;
}

.pdp-cart-section {
    display: grid;
    grid-template-columns: minmax(132px, 140px) minmax(0, 1fr);
    gap: 14px;
    align-items: stretch;
    margin-bottom: 14px;
}

.pdp-quantity {
    display: inline-flex;
    align-items: center;
    min-height: 50px;
    border: 1px solid var(--hoot-border);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}

.qty-btn {
    width: 40px;
    min-width: 40px;
    height: 50px;
    padding: 0;
    background: transparent;
    border: 0;
    color: var(--hoot-fg);
    font-size: 20px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
}

.qty-btn:hover {
    background: rgba(107, 91, 78, 0.06);
}

.pdp-wishlist-wrap {
    width: 100%;
}

.pdp-wishlist-wrap .woosw-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 46px;
    padding: 0 16px;
    background: rgba(250, 248, 245, 0.72);
    border: 1px solid var(--hoot-border);
    border-radius: 12px;
    font-size: 14px;
    color: var(--hoot-muted-fg);
    cursor: pointer;
    transition: border-color var(--hoot-transition), color var(--hoot-transition), background var(--hoot-transition);
}

.pdp-wishlist-wrap .woosw-btn:hover,
.pdp-wishlist-wrap .woosw-btn.woosw-added {
    color: var(--hoot-primary);
    border-color: var(--hoot-primary);
    background: rgba(107, 91, 78, 0.08);
}

.pdp-wishlist-wrap .woosw-btn .woosw-btn-icon {
    font-size: 18px;
    line-height: 1;
}

.qty-input {
    flex: 1 1 auto;
    width: 56px;
    height: 50px;
    padding: 0;
    text-align: center;
    border: none;
    background: transparent;
    color: var(--hoot-fg);
    font-size: 15px;
    font-weight: 600;
    font-family: var(--hoot-font-body);
    appearance: textfield;
    -moz-appearance: textfield;
}
.qty-input:focus { outline: none; }
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.btn-add-to-cart {
    flex: 1;
    min-width: 0;
    width: 100%;
    min-height: 50px;
    font-size: 15px;
}
.btn-buy-now {
    width: 100%;
    min-height: 50px;
    font-size: 15px;
    margin-bottom: 8px;
}

/* Trust Badges */
.hoot-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 8px;
    border-radius: var(--hoot-radius);
    background: var(--hoot-card);
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    color: var(--hoot-muted-fg);
}
.badge-icon { font-size: 20px; }

/* Delivery Info */
.pdp-delivery-info { display: flex; flex-direction: column; gap: 12px; }
.delivery-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}
.delivery-item strong { display: block; color: var(--hoot-fg); }
.delivery-item span { color: var(--hoot-muted-fg); font-size: 12px; }

/* Pincode */
.pdp-pincode h4 {
    font-family: var(--hoot-font-body);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}
.pincode-form { display: flex; gap: 8px; }
.pincode-input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--hoot-border);
    border-radius: var(--hoot-radius);
    font-family: var(--hoot-font-body);
    font-size: 14px;
}
.pincode-input:focus { outline: none; border-color: var(--hoot-primary); }
.pincode-result {
    margin-top: 8px;
    font-size: 13px;
    color: var(--hoot-success);
}

/* Meta */
.pdp-meta { font-size: 12px; color: var(--hoot-muted-fg); }
.pdp-meta p { margin-bottom: 4px; }
.meta-sku { text-transform: uppercase; letter-spacing: 2px; font-size: 11px; }
.pdp-meta a { color: var(--hoot-primary); }
.pdp-meta a:hover { text-decoration: underline; }

/* Tabs */
.pdp-tabs { padding: 60px 0; }
.tab-headers {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--hoot-border);
    margin-bottom: 32px;
    overflow-x: auto;
}
.tab-btn {
    padding: 14px 24px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: var(--hoot-font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--hoot-muted-fg);
    cursor: pointer;
    white-space: nowrap;
    transition: all var(--hoot-transition);
}
.tab-btn.active,
.tab-btn:hover {
    color: var(--hoot-fg);
    border-bottom-color: var(--hoot-primary);
}
.tab-content { display: none; }
.tab-content.active { display: block; }
.tab-inner { max-width: 800px; line-height: 1.8; font-size: 15px; color: var(--hoot-muted-fg); }

/* Reviews */
#tab-reviews .woocommerce-Reviews {
    color: var(--hoot-fg);
}

#tab-reviews #comments {
    margin-bottom: 20px;
}

#tab-reviews .woocommerce-Reviews-title,
#tab-reviews .comment-reply-title {
    margin-bottom: 10px;
    font-family: var(--hoot-font-heading);
    font-size: clamp(1.55rem, 2.4vw, 1.95rem);
    line-height: 1.12;
    color: var(--hoot-fg);
}

#tab-reviews .woocommerce-noreviews,
#tab-reviews .comment-notes,
#tab-reviews .must-log-in,
#tab-reviews .logged-in-as,
#tab-reviews .comment-form-cookies-consent {
    color: var(--hoot-muted-fg);
    font-size: 13px;
}

#tab-reviews #review_form_wrapper {
    margin-top: 20px;
    padding: 20px;
    border: 1px solid var(--hoot-border);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(245,242,238,0.72) 0%, rgba(250,248,245,0.96) 100%);
}

#tab-reviews .comment-form {
    display: grid;
    gap: 12px;
}

#tab-reviews .comment-form p {
    margin: 0;
}

#tab-reviews .comment-form label {
    display: block;
    margin-bottom: 5px;
    color: var(--hoot-fg);
    font-size: 13px;
    font-weight: 500;
}

#tab-reviews .comment-form-rating {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

#tab-reviews p.stars {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

#tab-reviews p.stars a {
    width: 24px;
    height: 24px;
    text-indent: -9999px;
    overflow: hidden;
    position: relative;
}

#tab-reviews p.stars a::before {
    content: '☆';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-indent: 0;
    font-size: 24px;
    line-height: 1;
    color: var(--hoot-border);
}

#tab-reviews p.stars:hover a::before,
#tab-reviews p.stars.selected a.active::before,
#tab-reviews p.stars.selected a:not(.active)::before,
#tab-reviews p.stars a:hover::before,
#tab-reviews p.stars a.active::before {
    color: var(--hoot-accent);
}

#tab-reviews .comment-form textarea,
#tab-reviews .comment-form input[type='text'],
#tab-reviews .comment-form input[type='email'] {
    width: 100%;
    min-height: 46px;
    padding: 10px 13px;
    border: 1px solid var(--hoot-border);
    border-radius: 12px;
    background: #fff;
    color: var(--hoot-fg);
    font: inherit;
}

#tab-reviews .comment-form textarea {
    min-height: 112px;
    resize: vertical;
}

#tab-reviews .comment-form textarea:focus,
#tab-reviews .comment-form input[type='text']:focus,
#tab-reviews .comment-form input[type='email']:focus {
    outline: none;
    border-color: var(--hoot-primary);
    box-shadow: 0 0 0 3px rgba(107,91,78,0.10);
}

#tab-reviews .comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

#tab-reviews .comment-form-cookies-consent input {
    margin-top: 3px;
}

#tab-reviews .form-submit {
    margin-top: 2px;
}

#tab-reviews .form-submit .submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid var(--hoot-primary);
    border-radius: 12px;
    background: var(--hoot-primary);
    color: var(--hoot-primary-fg);
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: none;
}

#tab-reviews .form-submit .submit:hover {
    background: var(--hoot-primary-light);
    border-color: var(--hoot-primary-light);
}
.tab-inner h3 { color: var(--hoot-fg); margin: 24px 0 12px; font-size: 18px; }
.tab-inner ul { padding-left: 20px; margin-bottom: 16px; }
.tab-inner li { margin-bottom: 6px; }

.specs-table { width: 100%; border-collapse: collapse; }
.specs-table th,
.specs-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--hoot-border);
    font-size: 14px;
}
.specs-table th {
    font-weight: 600;
    color: var(--hoot-fg);
    width: 35%;
    background: var(--hoot-card);
}

.care-list { padding-left: 20px; }
.care-list li { margin-bottom: 8px; }

/* Related Products */
.pdp-related { padding: 0 0 80px; }

/* Sticky Cart */
.sticky-add-to-cart {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(250,248,245,0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--hoot-border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    transition: bottom var(--hoot-transition);
}
.sticky-add-to-cart.visible { bottom: 0; }
.sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.sticky-info h4 { font-size: 14px; font-weight: 600; }
.sticky-price { font-family: var(--hoot-font-price); font-size: 16px; font-weight: 600; color: var(--hoot-primary); }

/* ========================================
   USP STRIP
   ======================================== */
.hoot-usp-strip {
    padding: 48px 0;
    border-top: 1px solid var(--hoot-border);
    border-bottom: 1px solid var(--hoot-border);
    background: rgba(240,235,228,0.3);
}
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.usp-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.usp-icon {
    font-size: 28px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(107,91,78,0.06);
    transition: background var(--hoot-transition);
}
.usp-item:hover .usp-icon { background: rgba(107,91,78,0.12); }
.usp-item h4 { font-family: var(--hoot-font-body); font-size: 14px; font-weight: 600; }
.usp-item p { font-size: 12px; color: var(--hoot-muted-fg); }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    padding: 32px;
    border-radius: var(--hoot-radius);
    background: var(--hoot-card);
    border: 1px solid var(--hoot-border);
}
.testimonial-stars { color: var(--hoot-accent); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; line-height: 1.7; color: var(--hoot-muted-fg); margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-size: 13px; font-weight: 600; color: var(--hoot-fg); }

/* ========================================
   CTA BANNER
   ======================================== */
.hoot-cta-banner {
    margin: 10px 0;
    padding: 80px 0;
    text-align: center;
    background: var(--hoot-warm);
}
.hoot-cta-banner p { color: var(--hoot-muted-fg); margin: 12px 0 28px; }

/* ========================================
   MY ACCOUNT
   ======================================== */
.hoot-myaccount-page { padding: 40px 0 80px; }
.myaccount-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
}
.myaccount-menu { list-style: none; }
.myaccount-menu-item a {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    margin-bottom: 4px;
    transition: all var(--hoot-transition);
}
.myaccount-menu-item a:hover { background: var(--hoot-muted); }
.myaccount-menu-item.is-active a { background: var(--hoot-primary); color: var(--hoot-primary-fg); }
.myaccount-content { min-height: 400px; }
.myaccount-content h2 { font-size: 1.5rem; margin-bottom: 20px; }

/* Auth Page */
.hoot-auth-page { padding: 40px 0 80px; }
.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}
.auth-card {
    padding: 36px;
    border-radius: var(--hoot-radius);
    background: var(--hoot-card);
    border: 1px solid var(--hoot-border);
}
.auth-card h2 { font-size: 1.5rem; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; margin-bottom: 6px; }
.form-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--hoot-border);
    border-radius: var(--hoot-radius);
    font-family: var(--hoot-font-body);
    font-size: 14px;
}
.form-input:focus { outline: none; border-color: var(--hoot-primary); }
.form-row-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 16px 0 20px;
    font-size: 13px;
}
.form-checkbox { display: flex; align-items: center; gap: 6px; cursor: pointer; }
.form-checkbox input { accent-color: var(--hoot-primary); }
.lost-password { color: var(--hoot-accent); }
.lost-password:hover { text-decoration: underline; }
.required { color: var(--hoot-accent); }
.form-info { font-size: 13px; color: var(--hoot-muted-fg); margin-bottom: 16px; }

/* Social login divider */
.hoot-social-login-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}
.hoot-social-login-divider::before,
.hoot-social-login-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--hoot-border);
}
.hoot-social-login-divider span {
    font-size: 12px;
    color: var(--hoot-muted-fg);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* WooCommerce defaults override */
.woocommerce table.shop_table { border-collapse: collapse; width: 100%; }
.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--hoot-border);
    font-size: 14px;
}
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message {
    position: relative;
    padding: 10px 14px !important;
    border: 1px solid rgba(107,91,78,0.22) !important;
    border-radius: 12px !important;
    background: rgba(250,248,245,0.96) !important;
    color: var(--hoot-fg) !important;
    margin-bottom: 14px !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    min-height: 0 !important;
    box-shadow: none !important;
}
.woocommerce .woocommerce-error::before,
.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-error::after,
.woocommerce .woocommerce-info::after,
.woocommerce .woocommerce-message::after {
    display: none !important;
}
.woocommerce .woocommerce-error li,
.woocommerce .woocommerce-info li,
.woocommerce .woocommerce-message li {
    margin-left: 0 !important;
    padding-left: 0 !important;
}
.woocommerce .button.wc-forward,
.woocommerce a.showcoupon {
    color: var(--hoot-primary) !important;
    font-weight: 600;
}

/* WooCommerce order pay page */
body.woocommerce-order-pay .hoot-main-content {
    padding-top: 14px;
    padding-bottom: 44px;
}
body.woocommerce-order-pay .woocommerce {
    max-width: 860px;
    margin: 0 auto;
}
body.woocommerce-order-pay .woocommerce h1,
body.woocommerce-order-pay .woocommerce h2,
body.woocommerce-order-pay .woocommerce h3 {
    font-family: var(--hoot-font-heading);
    color: var(--hoot-fg);
    line-height: 1.15;
}
body.woocommerce-order-pay .woocommerce-order,
body.woocommerce-order-pay form#order_review {
    background: var(--hoot-card);
    border: 1px solid var(--hoot-border);
    border-radius: 16px;
    box-shadow: var(--hoot-shadow);
    padding: 26px;
}
body.woocommerce-order-pay .woocommerce-order > p,
body.woocommerce-order-pay form#order_review > p {
    color: var(--hoot-fg);
    font-size: 15px;
    margin-top: 16px;
}
body.woocommerce-order-pay ul.order_details {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 14px;
    border: 1px solid var(--hoot-border);
    background: rgba(250,248,245,0.92);
    border-radius: 12px;
}
body.woocommerce-order-pay ul.order_details::before,
body.woocommerce-order-pay ul.order_details::after {
    display: none;
}
body.woocommerce-order-pay ul.order_details li {
    border: 0;
    margin: 0;
    padding: 0;
    color: var(--hoot-muted-fg);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
body.woocommerce-order-pay ul.order_details li strong {
    display: block;
    margin-top: 6px;
    color: var(--hoot-fg);
    text-transform: none;
    letter-spacing: 0;
    font-size: 17px;
    font-family: var(--hoot-font-price);
}
body.woocommerce-order-pay .woocommerce table.shop_table {
    margin-top: 18px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--hoot-border);
    background: #fff;
}
body.woocommerce-order-pay .woocommerce table.shop_table th {
    background: rgba(240,235,228,0.85);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--hoot-muted-fg);
}
body.woocommerce-order-pay .woocommerce table.shop_table td {
    background: #fff;
    color: var(--hoot-fg);
}
body.woocommerce-order-pay .woocommerce #payment {
    margin-top: 18px;
    padding: 16px;
    border: 1px solid var(--hoot-border);
    border-radius: 12px;
    background: rgba(250,248,245,0.92);
}
body.woocommerce-order-pay .woocommerce #payment ul.payment_methods {
    border: 0;
    padding: 0;
    margin: 0 0 12px;
}
body.woocommerce-order-pay .woocommerce #payment div.form-row {
    padding: 0;
    margin-top: 8px;
}
body.woocommerce-order-pay .woocommerce a.button,
body.woocommerce-order-pay .woocommerce button.button,
body.woocommerce-order-pay .woocommerce input.button,
body.woocommerce-order-pay .woocommerce #btn-razorpay,
body.woocommerce-order-pay .woocommerce #btn-razorpay-cancel,
body.woocommerce-order-pay .woocommerce #payment #place_order {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid transparent;
    border-radius: var(--hoot-radius);
    padding: 11px 18px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: all var(--hoot-transition);
    text-decoration: none;
}
body.woocommerce-order-pay .woocommerce a.button.pay,
body.woocommerce-order-pay .woocommerce .button.alt,
body.woocommerce-order-pay .woocommerce #btn-razorpay,
body.woocommerce-order-pay .woocommerce #payment #place_order {
    background: var(--hoot-primary) !important;
    color: var(--hoot-primary-fg) !important;
    border-color: var(--hoot-primary) !important;
}
body.woocommerce-order-pay .woocommerce a.button.cancel,
body.woocommerce-order-pay .woocommerce #btn-razorpay-cancel,
body.woocommerce-order-pay .woocommerce a.button:not(.pay):not(.alt) {
    background: transparent !important;
    color: var(--hoot-primary) !important;
    border-color: var(--hoot-primary) !important;
}
body.woocommerce-order-pay .woocommerce a.button.pay:hover,
body.woocommerce-order-pay .woocommerce .button.alt:hover,
body.woocommerce-order-pay .woocommerce #btn-razorpay:hover,
body.woocommerce-order-pay .woocommerce #payment #place_order:hover {
    background: var(--hoot-primary-light) !important;
    border-color: var(--hoot-primary-light) !important;
    transform: translateY(-1px);
    box-shadow: var(--hoot-shadow);
}
body.woocommerce-order-pay .woocommerce a.button.cancel:hover,
body.woocommerce-order-pay .woocommerce #btn-razorpay-cancel:hover,
body.woocommerce-order-pay .woocommerce a.button:not(.pay):not(.alt):hover {
    background: rgba(107,91,78,0.08) !important;
}
body.woocommerce-order-pay .woocommerce #btn-razorpay:focus-visible,
body.woocommerce-order-pay .woocommerce #btn-razorpay-cancel:focus-visible {
    outline: 2px solid var(--hoot-accent);
    outline-offset: 2px;
}
body.woocommerce-order-pay .woocommerce #btn-razorpay,
body.woocommerce-order-pay .woocommerce #btn-razorpay-cancel {
    margin-top: 12px;
    margin-right: 8px;
}
body.woocommerce-order-pay .woocommerce p,
body.woocommerce-order-pay .woocommerce .payment_method_label,
body.woocommerce-order-pay .woocommerce label {
    color: var(--hoot-fg);
}

/* ========================================
   FOOTER
   ======================================== */
.hoot-footer {
    background: var(--hoot-fg);
    color: rgba(250,248,245,0.7);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 40px;
    padding-bottom: 48px;
}
/* Brand column */
.footer-logo { max-height: 48px; max-width: 180px; display: block; margin-bottom: 16px; }
.footer-brand-name {
    display: inline-block;
    color: var(--hoot-bg);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    text-decoration: none;
}
.footer-logo-link { display: inline-block; margin-bottom: 12px; }
.footer-heading {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--hoot-bg);
    margin-bottom: 20px;
}
.footer-desc { font-size: 13px; line-height: 1.7; margin-bottom: 16px; }
.footer-business-block {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid rgba(250,248,245,0.16);
}
.footer-business-title {
    margin: 0 0 8px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--hoot-bg);
}
.footer-business-line {
    margin: 0 0 6px;
    font-size: 12px;
    line-height: 1.65;
    color: rgba(250,248,245,0.75);
}
.footer-business-line strong {
    color: rgba(250,248,245,0.9);
    font-weight: 600;
}
.footer-business-line a {
    color: rgba(250,248,245,0.92);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a { color: rgba(250,248,245,0.45); transition: color var(--hoot-transition); display: inline-flex; }
.footer-social a:hover { color: var(--hoot-bg); }
/* Link columns */
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    line-height: 1.45;
    color: rgba(250,248,245,0.68);
    transition: color var(--hoot-transition), transform var(--hoot-transition);
}
.footer-links a:hover {
    color: var(--hoot-bg);
    transform: translateX(2px);
}
/* HTML column — same style as link list */
.footer-html-col ul { list-style: none; padding: 0; margin: 0; }
.footer-html-col ul li { margin-bottom: 10px; }
.footer-html-col ul a { font-size: 13px; color: rgba(250,248,245,0.65); transition: color var(--hoot-transition); }
.footer-html-col ul a:hover { color: var(--hoot-bg); }
/* Newsletter column */
.subscribe-input-row {
    display: flex;
    gap: 0;
    border: 1px solid rgba(250,248,245,0.2);
    border-radius: var(--hoot-radius);
    overflow: hidden;
    margin-bottom: 10px;
}
.subscribe-input-row input[type="email"] {
    flex: 1;
    padding: 11px 14px;
    background: transparent;
    border: none;
    color: var(--hoot-bg);
    font-size: 13px;
    font-family: var(--hoot-font-body);
    outline: none;
    min-width: 0;
}
.subscribe-input-row input[type="email"]::placeholder { color: rgba(250,248,245,0.3); }
.subscribe-input-row input[type="email"]:focus { background: rgba(250,248,245,0.05); }
.btn-subscribe {
    padding: 10px 16px;
    background: rgba(250,248,245,0.1);
    border: none;
    color: var(--hoot-bg);
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: background var(--hoot-transition);
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-subscribe:hover { background: rgba(250,248,245,0.22); }
.btn-subscribe:disabled { opacity: 0.6; cursor: wait; }
/* Loading spinner */
.sub-btn-loading {
    display: none;
    width: 14px; height: 14px;
    border: 2px solid rgba(250,248,245,0.3);
    border-top-color: var(--hoot-bg);
    border-radius: 50%;
    animation: hoot-spin 0.7s linear infinite;
}
@keyframes hoot-spin { to { transform: rotate(360deg); } }
.btn-subscribe.loading .sub-btn-text { display: none; }
.btn-subscribe.loading .sub-btn-loading { display: inline-block; }
/* Subscribe message */
.subscribe-message {
    font-size: 12px;
    min-height: 18px;
    transition: color 0.2s;
    padding: 2px 2px;
}
.subscribe-message.success { color: #7dd87d; }
.subscribe-message.error   { color: #f4a4a4; }
/* Honeypot */
.hoot-hp-field { display: none !important; visibility: hidden; }
/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(250,248,245,0.1);
    font-size: 12px;
}
.footer-copy { margin: 0; }
.footer-copy a { color: rgba(250,248,245,0.6); }
.payment-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.payment-icons span {
    padding: 3px 9px;
    border: 1px solid rgba(250,248,245,0.15);
    border-radius: 4px;
    font-size: 11px;
    color: rgba(250,248,245,0.5);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .pdp-main { grid-template-columns: 1fr; gap: 24px; }
    .pdp-gallery { position: static; }
    .gallery-main { aspect-ratio: 1 / 1; height: auto; max-height: none; min-height: unset; }
    .main-image-wrap { height: 100%; }
    .main-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
    .pdp-info { padding-top: 0; }
    .myaccount-layout { grid-template-columns: 1fr; }
    .auth-container { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    body.woocommerce-order-pay .woocommerce-order,
    body.woocommerce-order-pay form#order_review {
        padding: 18px;
    }
    body.woocommerce-order-pay ul.order_details {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }
}

@media (max-width: 520px) {
    body.woocommerce-order-pay ul.order_details {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    body.woocommerce-order-pay .woocommerce a.button,
    body.woocommerce-order-pay .woocommerce button.button,
    body.woocommerce-order-pay .woocommerce input.button,
    body.woocommerce-order-pay .woocommerce #btn-razorpay,
    body.woocommerce-order-pay .woocommerce #btn-razorpay-cancel,
    body.woocommerce-order-pay .woocommerce #payment #place_order {
        width: 100%;
        text-align: center;
        margin: 0 0 10px;
    }
}

@media (max-width: 768px) {
    body.woocommerce-demo-store p.demo_store {
        justify-content: center;
        flex-wrap: wrap;
        gap: 4px 8px;
        padding: 7px 14px;
        font-size: 12px;
    }
    .hoot-page-section {
        padding: 36px 0 52px;
    }
    .hoot-page-article {
        padding: 0;
    }
    .hoot-page-prose {
        font-size: 15px;
        line-height: 1.75;
    }
    .header-right { gap: 16px; }
    .header-search-toolbar { display: flex; }
    .header-search-shell { padding: 14px 0 18px; }
    .header-search-form {
        grid-template-columns: 1fr;
    }
    .header-search-submit {
        width: 100%;
    }
    .header-search-results {
        position: static;
        margin-top: 10px;
        border-radius: 14px;
    }
    .header-search-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .pdp .hoot-container { padding: 0 16px; }
    .pdp-main { gap: 20px; padding-bottom: 40px; }
    .gallery-main {
        aspect-ratio: 1 / 1;
        border-radius: calc(var(--hoot-radius) - 2px);
    }
    .main-image-wrap img {
        object-fit: contain;
        background: #fff;
    }
    .gallery-thumbs {
        gap: 8px;
        margin-top: 10px;
        padding-bottom: 2px;
    }
    .thumb-btn {
        width: 64px;
        height: 64px;
    }
    .pdp-title { font-size: clamp(1.55rem, 6vw, 2rem); }
    .pdp-price {
        flex-wrap: wrap;
        row-gap: 6px;
    }
    .pdp-short-desc { font-size: 14px; }
    .pdp-cart-section {
        display: grid;
        grid-template-columns: minmax(132px, 148px) minmax(0, 1fr);
        gap: 10px;
    }
    .pdp-quantity {
        width: 100%;
        justify-content: space-between;
    }
    .qty-btn {
        width: 40px;
        height: 46px;
    }
    .qty-input {
        width: 100%;
        height: 46px;
    }
    .btn-add-to-cart,
    .btn-buy-now {
        min-height: 46px;
        font-size: 14px;
    }
    .sticky-add-to-cart {
        display: none;
    }
    .desktop-nav { display: none; }
    .mobile-filter-toggle { display: flex; }
    
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .product-grid.cols-3,
    .product-grid.cols-4 { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .usp-grid { grid-template-columns: repeat(2, 1fr); }
    
    .plp-layout { grid-template-columns: 1fr; }
    .plp-sidebar {
        position: fixed;
        top: 0;
        left: -320px;
        width: 300px;
        height: 100%;
        z-index: 200;
        background: var(--hoot-bg);
        padding: 24px;
        overflow-y: auto;
        box-shadow: var(--hoot-shadow-lg);
        transition: left var(--hoot-transition);
    }
    .plp-sidebar.active { left: 0; }
    .filter-close-btn { display: inline-flex; }
    
    .plp-top-bar { flex-direction: column; align-items: flex-start; }
    
    .hoot-trust-badges { grid-template-columns: 1fr; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    
    .sticky-info h4 { font-size: 12px; }
    .sticky-inner .btn { padding: 10px 20px; font-size: 13px; }
}

@media (max-width: 480px) {
    :root {
        --hoot-header-height: 62px;
    }

    body.woocommerce-demo-store p.demo_store {
        min-height: 46px;
        font-size: 11px;
        line-height: 1.35;
        padding: 6px 12px;
    }
    .hoot-page-section {
        padding: 24px 0 40px;
    }
    .hoot-page-article {
        padding: 0;
    }
    .hoot-page-title {
        font-size: 2rem;
    }
    .hoot-page-prose {
        font-size: 14px;
    }
    .header-inner { height: 62px; }
    .header-right { gap: 14px; }
    .header-search-input,
    .header-search-submit { height: 48px; }
    .header-search-grid {
        grid-template-columns: 1fr;
    }
    .pdp .hoot-container { padding: 0 12px; }
    .gallery-main {
        aspect-ratio: 1 / 1;
        height: auto;
        max-height: none;
        border-radius: 12px;
    }
    .product-grid.cols-3,
    .product-grid.cols-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .category-grid { grid-template-columns: 1fr 1fr; }
    .pdp-title { font-size: 1.5rem; }
    .gallery-thumbs { gap: 6px; }
    .thumb-btn {
        width: 58px;
        height: 58px;
    }
    .pdp-price .amount,
    .pdp-price ins { font-size: 24px; }
    .pdp-cart-section {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .pdp-quantity { width: 100%; justify-content: space-between; }
    .btn-add-to-cart,
    .btn-buy-now {
        width: 100%;
        padding: 12px 18px;
    }
    .hoot-trust-badges { gap: 8px; }
}
