﻿/*
 Theme Name:   Astra Child
 Theme URI:    https://wpastra.com/
 Description:  Astra Child Theme for Homiee
 Author:       Homiee
 Template:     astra
 Version:      2.7
 Text Domain:  astra-child
*/

/* ── CSS VARIABLES ── */
:root {
    --red: #D62B2B;
    --black: #1a1a1a;
    --gray-light: #f5f5f5;
    --gray-border: #e0e0e0;
    --gray-text: #666;
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
}

body,
body.single-product,
body.single-product * {
    font-family: var(--font-body) !important;
}

/* ── HIDE LEFTOVER WC/PLUGIN ELEMENTS ── */
.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .product_meta,
.woocommerce div.product .woocommerce-product-rating,
.single-product .yith-wcwl-add-to-wishlist,
.single-product .compare-button,
.single-product .tinvwl_add_to_wishlist_button,
.woocommerce-tabs,
.woocommerce-Reviews,
.related.products,
.upsells.products {
    display: none !important;
}

/* ── PRODUCT PAGE WRAPPER ── */
.woocommerce div.product {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 30px 40px 0 !important;
    max-width: 960px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    float: none !important;
}

/* ── PRODUCT IMAGE GALLERY ── */
.woocommerce div.product div.images,
.woocommerce div.product .woocommerce-product-gallery {
    float: none !important;
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto 20px !important;
}

.woocommerce div.product .woocommerce-product-gallery__image img,
.woocommerce div.product div.images img {
    border-radius: 12px !important;
    background: #fafafa !important;
    height: 300px !important;
    object-fit: contain !important;
    width: 100% !important;
}

/* Gallery thumbnail dots */
.woocommerce .flex-control-thumbs {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 12px 0 0 !important;
    list-style: none !important;
    margin: 0 !important;
}

.woocommerce .flex-control-thumbs li {
    width: 10px !important;
    height: 10px !important;
    background: var(--gray-border) !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    flex-shrink: 0 !important;
}

.woocommerce .flex-control-thumbs li img {
    opacity: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
}

.woocommerce .flex-control-thumbs li:has(img.flex-active) {
    background: var(--red) !important;
}

/* ── SUMMARY WRAPPER ── */
.woocommerce div.product div.summary.entry-summary {
    float: none !important;
    width: 100% !important;
    clear: both !important;
    max-width: 900px !important;
    margin: 0 auto 60px !important;
    padding: 0 !important;
}

/* ── PRODUCT INFO CARD ── */
.homiee-product-card {
    background: var(--gray-light) !important;
    border-radius: 12px !important;
    padding: 28px 32px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.homiee-product-card-top {
    display: flex !important;
    gap: 40px !important;
    align-items: flex-start !important;
}

.homiee-product-info { flex: 1 !important; }

.homiee-product-name {
    font-family: var(--font-display) !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    line-height: 1.2 !important;
    margin: 0 0 4px !important;
    padding: 0 !important;
    border: none !important;
    text-align: left !important;
    background: none !important;
}

.homiee-product-subtitle {
    font-size: 13px !important;
    color: var(--gray-text) !important;
    margin: 0 0 18px !important;
    line-height: 1.5 !important;
}

.homiee-mrp-label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--black) !important;
    margin: 0 0 4px !important;
    display: block !important;
}

.homiee-price,
.homiee-price .price,
.homiee-price .woocommerce-Price-amount {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    line-height: 1.2 !important;
    display: inline !important;
}

.homiee-price del,
.homiee-price del .woocommerce-Price-amount {
    font-size: 16px !important;
    color: #aaa !important;
    font-weight: 400 !important;
}

.homiee-product-features {
    flex: 0 0 220px !important;
    padding-top: 4px !important;
}

.homiee-feature-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 13px !important;
    color: var(--gray-text) !important;
    margin-bottom: 10px !important;
    font-family: var(--font-body) !important;
}

.homiee-feature-item::before {
    content: "☆" !important;
    color: var(--red) !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
}

.homiee-product-card-bottom {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.homiee-inclusive-note {
    font-size: 12px !important;
    color: var(--gray-text) !important;
    text-align: center !important;
    margin-bottom: 12px !important;
}

/* Add to Cart form inside card */
.homiee-product-card-bottom .cart {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 !important;
}

.homiee-product-card-bottom .quantity {
    display: none !important;
}

.homiee-product-card-bottom .single_add_to_cart_button,
.homiee-product-card-bottom .button.alt,
.homiee-product-card-bottom button[type="submit"] {
    background: var(--red) !important;
    border-color: var(--red) !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 14px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    width: 100% !important;
    max-width: 300px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin: 0 !important;
    transition: background 0.2s !important;
    cursor: pointer !important;
    display: block !important;
    text-align: center !important;
    border-width: 1px !important;
    border-style: solid !important;
    box-shadow: none !important;
}

.homiee-product-card-bottom .single_add_to_cart_button:hover,
.homiee-product-card-bottom button[type="submit"]:hover {
    background: #b02020 !important;
    border-color: #b02020 !important;
    color: #fff !important;
}

/* ── AFTER-SUMMARY SECTIONS BASE ── */
.homiee-section {
    max-width: 900px !important;
    width: 100% !important;
    margin: 0 auto 60px !important;
    padding: 0 40px !important;
    box-sizing: border-box !important;
}

.homiee-section-heading {
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    margin-bottom: 20px !important;
    line-height: 1.2 !important;
}

/* ── DESCRIPTION ── */
.homiee-description-section .homiee-section-heading {
    font-size: 36px !important;
}

.homiee-desc-body {
    font-size: 14px !important;
    line-height: 1.8 !important;
    color: var(--gray-text) !important;
}

.homiee-desc-body p {
    margin-bottom: 12px !important;
    font-size: 14px !important;
    line-height: 1.8 !important;
    color: var(--gray-text) !important;
}

/* ── FEEDBACK ── */
.homiee-feedback-section .homiee-section-heading {
    font-size: 28px !important;
}

.homiee-feedback-card {
    border: 1px solid var(--gray-border) !important;
    border-radius: 12px !important;
    padding: 28px !important;
    background: #fff !important;
    box-shadow: none !important;
}

.homiee-feedback-question {
    font-size: 14px !important;
    color: var(--gray-text) !important;
    margin-bottom: 16px !important;
    text-align: center !important;
}

.homiee-emoji-row {
    display: flex !important;
    justify-content: center !important;
    gap: 14px !important;
    margin-bottom: 20px !important;
}

.homiee-emoji-btn {
    background: none !important;
    border: 1px solid var(--gray-border) !important;
    border-radius: 50% !important;
    width: 42px !important;
    height: 42px !important;
    font-size: 20px !important;
    cursor: pointer !important;
    transition: border-color 0.2s, transform 0.2s !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    line-height: 1 !important;
}

.homiee-emoji-btn:hover {
    border-color: var(--red) !important;
    transform: scale(1.1) !important;
}

.homiee-feedback-more-label {
    font-size: 13px !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
    color: var(--black) !important;
    display: block !important;
}

.homiee-feedback-form textarea {
    width: 100% !important;
    border: 1px solid var(--gray-border) !important;
    border-radius: 8px !important;
    padding: 12px !important;
    font-size: 14px !important;
    font-family: var(--font-body) !important;
    resize: none !important;
    height: 90px !important;
    outline: none !important;
    box-sizing: border-box !important;
    color: var(--black) !important;
    background: #fff !important;
}

.homiee-feedback-form textarea:focus {
    border-color: var(--red) !important;
    box-shadow: none !important;
}

.homiee-feedback-actions {
    display: flex !important;
    gap: 12px !important;
    justify-content: center !important;
    margin-top: 16px !important;
}

.homiee-btn {
    border-radius: 6px !important;
    padding: 10px 28px !important;
    font-size: 14px !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    font-family: var(--font-body) !important;
    line-height: 1.4 !important;
}

.homiee-btn-cancel {
    background: none !important;
    border: 1px solid var(--gray-border) !important;
    color: var(--black) !important;
}

.homiee-btn-cancel:hover { background: var(--gray-light) !important; }

.homiee-btn-submit {
    background: var(--red) !important;
    color: #fff !important;
    border: none !important;
    font-weight: 600 !important;
}

.homiee-btn-submit:hover { background: #b02020 !important; }

/* ── MOBILE-ONLY ELEMENTS (hidden on desktop, shown via media query) ── */
.homiee-sp-mob-hero    { display: none; }
.homiee-sp-mob-img-wrap { display: none; }
.homiee-price-from     { display: none; }

/* ── PRODUCT GRID ── */
.homiee-grid-section {
    max-width: 960px !important;
    padding: 0 40px !important;
}

.homiee-grid-section .homiee-section-heading {
    font-size: 26px !important;
}

.homiee-product-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
}

.homiee-product-thumb {
    border: 1px solid var(--gray-border) !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    background: #fff !important;
    box-shadow: none !important;
}

.homiee-product-thumb > a {
    display: block !important;
}

.homiee-product-thumb > a img {
    width: 100% !important;
    height: 130px !important;
    object-fit: cover !important;
    background: #f9f9f9 !important;
    display: block !important;
}

.homiee-thumb-body { padding: 10px 12px !important; }

.homiee-thumb-name {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--black) !important;
    margin: 0 !important;
    display: block !important;
}

.homiee-thumb-sub {
    font-size: 11px !important;
    color: var(--gray-text) !important;
    margin-top: 2px !important;
    display: block !important;
}

.homiee-thumb-price {
    font-size: 13px !important;
    font-weight: 700 !important;
    margin-top: 6px !important;
    color: var(--black) !important;
    display: block !important;
}

.homiee-thumb-price .woocommerce-Price-amount,
.homiee-thumb-price bdi {
    font-size: 13px !important;
    font-weight: 700 !important;
}

.homiee-book-btn {
    display: block !important;
    width: 100% !important;
    background: var(--red) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 5px !important;
    padding: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    margin-top: 8px !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: background 0.2s !important;
    box-sizing: border-box !important;
}

.homiee-book-btn:hover {
    background: #b02020 !important;
    color: #fff !important;
    text-decoration: none !important;
}

/* ── STICKY BOTTOM BAR ── */
/* ════════════════════════════════════════════════════════════════
   CHECKOUT POPUP
   ════════════════════════════════════════════════════════════════ */

.homiee-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(180,180,180,0.55);
    backdrop-filter: blur(2px);
    z-index: 100000;
    align-items: center;
    justify-content: center;
    animation: homieePopupFade 0.2s ease;
}

.homiee-overlay.open { display: flex !important; }

@keyframes homieePopupFade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.homiee-modal {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    margin: 16px;
    padding: 28px 28px 32px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    animation: homieePopupSlide 0.25s ease;
    max-height: 90vh;
    overflow-y: auto;
}

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

.homiee-modal-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 24px;
}

.homiee-modal-title {
    font-family: var(--font-body) !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-align: center !important;
    color: var(--black) !important;
}

.homiee-modal-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none !important;
    border: none !important;
    font-size: 20px;
    cursor: pointer;
    color: var(--black);
    line-height: 1;
    padding: 4px;
    transition: opacity 0.2s;
    box-shadow: none !important;
}

.homiee-modal-close:hover { opacity: 0.5; }

/* Cart item */
.homiee-popup-item {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--gray-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.homiee-popup-item-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 12px 16px 16px;
    flex-shrink: 0;
    width: 130px;
}

.homiee-popup-item-left img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 12px;
    display: block;
}

.homiee-popup-qty {
    display: flex;
    align-items: center;
    gap: 14px;
}

.homiee-popup-qty-btn {
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--red) !important;
    transition: transform 0.15s !important;
    box-shadow: none !important;
}

.homiee-popup-qty-btn:hover { transform: scale(1.15) !important; }

.homiee-popup-qty-btn svg {
    width: 22px;
    height: 22px;
}

.homiee-popup-qty-num {
    font-size: 16px;
    font-weight: 600;
    min-width: 12px;
    text-align: center;
    color: var(--black);
}

.homiee-popup-item-right {
    flex: 1;
    padding: 20px 20px 20px 16px;
    border-left: 1px solid var(--gray-border);
}

.homiee-popup-item-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.homiee-popup-item-mrp {
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 6px;
}

.homiee-popup-item-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
}

/* Subtotal row */
.homiee-popup-subtotal-row {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 18px;
    color: var(--black);
}

#homieePopupSubtotal { font-weight: 700; }

/* Checkout button */
.homiee-popup-checkout-btn {
    display: block !important;
    width: 100% !important;
    background: var(--red) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 16px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    font-family: var(--font-body) !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: background 0.2s, transform 0.1s !important;
    box-sizing: border-box !important;
}

.homiee-popup-checkout-btn:hover {
    background: #b02020 !important;
    color: #fff !important;
}

.homiee-popup-empty {
    text-align: center;
    color: var(--gray-text);
    padding: 20px 0;
    font-size: 14px;
}

/* ── REMOVE GAP BETWEEN NAV AND HERO STRIP ── */
.woocommerce-shop #content,
.woocommerce-shop .site-content,
.woocommerce-shop .ast-container,
.woocommerce-shop #primary,
.woocommerce-shop .site-main,
.woocommerce-checkout #content,
.woocommerce-checkout .site-content,
.woocommerce-checkout .ast-container,
.woocommerce-checkout #primary,
.woocommerce-checkout .site-main,
.single-product #content,
.single-product .site-content,
.single-product .ast-container,
.single-product #primary,
.single-product .site-main,
.woocommerce-page #content,
.woocommerce-page .site-content,
.woocommerce-page .ast-container,
.woocommerce-page #primary,
.woocommerce-page .site-main {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* ── HIDE ASTRA PAGE TITLE ON CHECKOUT ── */
.woocommerce-checkout .entry-title,
.woocommerce-checkout h1.page-title,
.woocommerce-checkout .ast-archive-description,
.woocommerce-checkout .ast-above-header,
body.woocommerce-checkout .site-above-header-wrap { display: none !important; }

/* ── ADD TO CART BUTTON ── */
.homiee-cart-form {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    margin: 0 !important;
}

.homiee-add-to-cart-btn {
    display: block !important;
    width: 100% !important;
    max-width: 300px !important;
    background: var(--red) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 14px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    font-family: var(--font-body) !important;
    cursor: pointer !important;
    text-align: center !important;
    transition: background 0.2s !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    box-shadow: none !important;
}

.homiee-add-to-cart-btn:hover {
    background: #b02020 !important;
    color: #fff !important;
}

/* Hide WooCommerce default thumbnail nav — replaced by homiee-gallery-dots */
.woocommerce .flex-control-thumbs {
    display: none !important;
}

/* ── CUSTOM GALLERY DOTS ── */
.homiee-gallery-dots {
    display: flex !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 12px 0 4px !important;
}

.homiee-gdot {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50% !important;
    background: var(--gray-border) !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
}

.homiee-gdot.homiee-gdot-active {
    background: var(--red) !important;
}

/* ── STICKY BOTTOM BAR ── */
.homiee-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.homiee-sticky-book-now {
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 10px 20px;
    flex-shrink: 0;
    border-right: 1px solid rgba(255,255,255,0.15);
    min-width: 160px;
}

.homiee-sticky-book-tagline {
    display: block;
    font-size: 8px;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.8px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 2px;
}

.homiee-sticky-book-cta {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    line-height: 1.2;
}

.homiee-sticky-categories {
    background: var(--red);
    display: flex;
    align-items: center;
    flex: 1;
    overflow: hidden;
}

@keyframes homiee-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.homiee-sticky-track {
    display: flex;
    flex-wrap: nowrap;
    animation: homiee-marquee 18s linear infinite;
    will-change: transform;
}

.homiee-sticky-track:hover {
    animation-play-state: paused;
}

.homiee-sticky-item {
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 12px 18px;
    text-transform: uppercase;
    border-right: 1px solid rgba(255,255,255,0.25);
    white-space: nowrap;
    flex-shrink: 0;
}

.homiee-sticky-item:last-child { border-right: none; }

body.single-product { padding-bottom: 48px !important; }

/* ════════════════════════════════════════════════════════════════
   SHOP / ALL PRODUCTS PAGE
   ════════════════════════════════════════════════════════════════ */

/* ── HERO ── */
.homiee-shop-hero {
    height: 191px !important;
    overflow: hidden !important;
    position: relative !important;
    background: #202020 url('https://images.unsplash.com/photo-1567620905732-2d1ec7ab7445?w=1400&q=80') center left / cover no-repeat !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
}

.homiee-shop-hero-title {
    font-family: var(--font-body) !important;
    font-size: 30px !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin: 0 !important;
    padding: 0 0 20px 100px !important;
    border: none !important;
    text-transform: capitalize !important;
}

/* ── INTRO CARD ── */
.homiee-shop-intro-card {
    background: #fff !important;
    border-radius: 10px !important;
    margin: -20px 48px 0 !important;
    padding: 32px 36px 28px !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07) !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;
    gap: 24px !important;
    position: relative !important;
    z-index: 2 !important;
}

.homiee-shop-intro-text { flex: 1 !important; }

.homiee-shop-intro-heading {
    font-family: var(--font-body) !important;
    font-size: 34px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    margin-bottom: 14px !important;
    color: var(--black) !important;
}

.homiee-shop-intro-desc {
    font-size: 14px !important;
    color: var(--gray-text) !important;
    line-height: 1.7 !important;
    max-width: 420px !important;
    margin: 0 !important;
}

.homiee-shop-filter-btn {
    display: flex !important;
    align-items: center !important;
    gap: 7px !important;
    border: 1.5px solid var(--red) !important;
    color: var(--red) !important;
    background: none !important;
    border-radius: 6px !important;
    padding: 9px 18px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    margin-top: 4px !important;
    transition: background 0.2s, color 0.2s !important;
    font-family: var(--font-body) !important;
}

.homiee-shop-filter-btn:hover {
    background: var(--red) !important;
    color: #fff !important;
}

/* ── FILTER PANEL (price sort) ── */
.homiee-shop-filter-wrap {
    position: relative !important;
    flex-shrink: 0 !important;
}

.homiee-shop-filter-panel {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: max-content;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 32px rgba(0,0,0,0.16);
    border: 1px solid var(--gray-border);
    padding: 10px;
    z-index: 50;
}
.homiee-shop-filter-panel--open { display: block; }

.homiee-shop-filter-title {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    color: var(--gray-text);
    padding: 6px 10px 8px;
}

.homiee-shop-filter-buttons {
    display: flex;
    flex-direction: row;
    gap: 8px;
    padding: 2px 2px 4px;
}

.homiee-shop-filter-btn2 {
    display: block;
    white-space: nowrap;
    text-align: center;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--red);
    text-decoration: none;
    border: 1.5px solid var(--red);
    border-radius: 50px;
    padding: 10px 16px;
    transition: background 0.18s, color 0.18s;
}
.homiee-shop-filter-btn2:hover { background: var(--red); color: #fff; }
.homiee-shop-filter-btn2--active {
    background: var(--red);
    color: #fff;
}

.homiee-shop-filter-clear {
    display: block;
    font-size: 12.5px;
    color: var(--gray-text);
    text-decoration: underline;
    text-align: center;
    padding: 10px 10px 4px;
    margin-top: 2px;
    border-top: 1px solid var(--gray-border);
}
.homiee-shop-filter-clear:hover { color: var(--red); }

/* ── PRODUCTS SECTION ── */
.homiee-shop-section {
    padding: 40px 48px 20px !important;
}

.homiee-shop-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}

/* ── PRODUCT CARD ── */
.homiee-shop-card {
    border: 1px solid #e4e4e4 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #fff !important;
    transition: box-shadow 0.2s, transform 0.2s !important;
}

.homiee-shop-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.1) !important;
    transform: translateY(-2px) !important;
}

.homiee-shop-card-img-wrap { display: block !important; }

.homiee-shop-card-img {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    object-fit: cover !important;
    display: block !important;
    background: #f9f6f2 !important;
}

.homiee-shop-card-body {
    padding: 14px 14px 16px !important;
}

.homiee-shop-card-name {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    margin-bottom: 4px !important;
}

.homiee-shop-card-sub {
    font-size: 11px !important;
    color: var(--gray-text) !important;
    line-height: 1.6 !important;
    margin-bottom: 10px !important;
}

.homiee-shop-card-price {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    margin-bottom: 12px !important;
}

.homiee-shop-card-price span {
    font-weight: 400 !important;
    font-size: 13px !important;
    color: var(--gray-text) !important;
    margin-right: 4px !important;
}

.homiee-shop-book-btn {
    display: block !important;
    width: 100% !important;
    background: var(--red) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 10px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    font-family: var(--font-body) !important;
    transition: background 0.2s !important;
    text-align: center !important;
}

.homiee-shop-book-btn:hover { background: #b02020 !important; }

/* ── PRODUCT CARD DOTS (mobile gallery indicator, hidden on desktop) ── */
.homiee-shop-card-dots {
    display: none;
    gap: 7px;
    align-items: center;
    justify-content: center;
    padding: 4px 0 16px;
}
.homiee-shop-card-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ddd;
}
.homiee-shop-card-dot.active { background: var(--red); }

/* ── TESTIMONIAL CAROUSEL ── */
.homiee-testi-section {
    width: 100%;
    padding: 0 0 28px;
    background: #fff;
    overflow: hidden;
}

.homiee-testi-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    line-height: 0;
}

.homiee-testi-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    line-height: normal;
}

.homiee-testi-card {
    display: flex;
    min-width: 100%;
    width: 100%;
    height: 340px;
    flex-shrink: 0;
    line-height: normal;
}

.homiee-testi-img-wrap {
    flex: 0 0 50%;
    overflow: hidden;
    position: relative;
}

.homiee-testi-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.homiee-testi-panel {
    flex: 0 0 50%;
    background: #d42b2b;
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    gap: 0;
}

.homiee-testi-text {
    color: #fff;
    font-size: 15.5px;
    line-height: 1.75;
    margin: 0 0 22px;
    font-family: var(--font-body);
    font-weight: 400;
}

.homiee-testi-stars {
    color: #fff;
    font-size: 24px;
    letter-spacing: 4px;
    line-height: 1;
    display: block;
}

.homiee-testi-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1a1a1a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    transition: background 0.18s;
    padding: 0;
}

.homiee-testi-arrow:hover { background: #fff; }
.homiee-testi-prev { left: 18px; }
.homiee-testi-next { left: calc(50% - 56px); }

.homiee-testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.homiee-testi-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s;
}

.homiee-testi-dot.active { background: var(--red); }

/* ── PAGINATION ── */
.homiee-shop-pagination {
    display: flex !important;
    justify-content: center !important;
    padding: 36px 0 48px !important;
}

.homiee-pag-inner {
    display: flex !important;
    align-items: center !important;
    gap: 2px !important;
}

.homiee-pag-btn {
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #777 !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    transition: color 0.2s !important;
    font-family: var(--font-body) !important;
}

.homiee-pag-btn:hover { color: var(--red) !important; }

.homiee-pag-active {
    color: var(--black) !important;
    font-weight: 700 !important;
}

.homiee-pag-sep {
    color: #777 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 0 2px !important;
    font-family: var(--font-body) !important;
}

/* ── TICKER ── */
.homiee-shop-ticker {
    background: var(--red) !important;
    color: #fff !important;
    padding: 13px 0 !important;
    overflow: hidden !important;
    white-space: nowrap !important;
}

.homiee-shop-ticker-track {
    display: inline-flex !important;
    gap: 48px !important;
    animation: homieeShopTicker 22s linear infinite !important;
}

@keyframes homieeShopTicker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.homiee-shop-ticker-item {
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    color: #fff !important;
}

.homiee-shop-ticker-item::before {
    content: "✦" !important;
    margin-right: 12px !important;
}

/* Hide Astra's page title + breadcrumbs on shop page */
.woocommerce-shop .entry-title,
.woocommerce-shop h1.page-title,
.woocommerce-shop .ast-archive-description,
.woocommerce-shop .ast-breadcrumbs-wrapper,
.woocommerce-shop .ast-breadcrumbs,
.woocommerce-shop .breadcrumbs,
.woocommerce-shop .woocommerce-breadcrumb,
.woocommerce-shop nav.woocommerce-breadcrumb { display: none !important; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .homiee-shop-hero { padding: 0 !important; }
    .homiee-shop-hero-title { padding: 0 0 16px 24px !important; }
    .homiee-shop-intro-card { margin: 0 16px !important; flex-direction: column !important; }
    .homiee-shop-section { padding: 28px 16px !important; }
    .homiee-shop-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; }
}

@media (max-width: 480px) {
    .homiee-shop-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ════════════════════════════════════════════════════════════════
   HOME PAGE PRODUCT CAROUSEL
   ════════════════════════════════════════════════════════════════ */

/* Section: horizontal padding leaves room for the absolute arrows */
.homiee-home-carousel-section {
    padding: 28px 56px 20px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

/* Wrap is the track container; arrows hang in the padding via absolute pos */
.homiee-hc-wrap {
    position: relative;
    width: 100%;
}

/* Track: definite width so calc() percentages resolve correctly */
.homiee-hc-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    box-sizing: border-box !important;
    gap: 20px;
    overflow-x: scroll;
    overflow-y: visible;
    scrollbar-width: none;
    scroll-behavior: smooth;
    padding: 4px 0 12px;
}
.homiee-hc-track::-webkit-scrollbar { display: none; }

/* 4 cards visible: (100% - 3 gaps of 20px) / 4 */
.homiee-hc-card {
    flex: 0 0 calc(25% - 15px) !important;
    width: calc(25% - 15px) !important;
    min-width: 0 !important;
    flex-shrink: 0 !important;
    /* Card visuals (same as shop page) */
    border: 1px solid #e4e4e4 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #fff !important;
    transition: box-shadow 0.2s, transform 0.2s !important;
}

.homiee-hc-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.1) !important;
    transform: translateY(-2px) !important;
}

/* Arrows: absolutely positioned in the section's side padding */
.homiee-hc-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 1.5px solid var(--gray-border);
    border-radius: 50%;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: var(--black);
    transition: background 0.2s, border-color 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 0;
    outline: none;
}
.homiee-hc-prev { left: -52px; }
.homiee-hc-next { right: -52px; }

.homiee-hc-arrow:hover,
.homiee-hc-arrow:focus,
.homiee-hc-arrow:focus-visible,
.homiee-hc-arrow:active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    outline: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.homiee-hc-arrow:disabled {
    opacity: 0.28;
    cursor: default;
    pointer-events: none;
}

/* Mobile: 1 card at a time, native touch scroll, hide arrows */
@media (max-width: 768px) {
    .homiee-home-carousel-section { padding: 20px 16px 16px; }
    .homiee-hc-arrow { display: none !important; }
    .homiee-hc-track {
        -webkit-overflow-scrolling: touch;
        gap: 14px;
    }
    .homiee-hc-card {
        flex: 0 0 100% !important;
        width: 100% !important;
        border: 1px solid #e4e4e4 !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        padding: 0 !important;
    }
    /* Undo shop-page mobile overrides that affect carousel card children */
    .homiee-hc-card .homiee-shop-card-img-wrap {
        display: block !important;
        margin-bottom: 0 !important;
    }
    .homiee-hc-card .homiee-shop-card-img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 1 / 1 !important;
        border-radius: 0 !important;
    }
    .homiee-hc-card .homiee-shop-card-body {
        padding: 14px 14px 16px !important;
    }
}

/* ════════════════════════════════════════════════════════════════
   CHECKOUT PAGE
   ════════════════════════════════════════════════════════════════ */

/* Hero */
.homiee-co-hero {
    height: 191px !important;
    background: #202020 url('https://images.unsplash.com/photo-1567620905732-2d1ec7ab7445?w=1200&q=80') center left / cover no-repeat !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
}

.homiee-co-hero-title {
    font-family: var(--font-body) !important;
    font-size: 30px !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin: 0 !important;
    padding: 0 0 20px 100px !important;
    text-transform: capitalize !important;
}

.homiee-co-hero-card {
    background: #fff !important;
    border-radius: 10px !important;
    height: 36px !important;
    margin: 0 48px !important;
    margin-top: -18px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
}

/* Layout */
.homiee-co-layout {
    display: flex !important;
    gap: 32px !important;
    max-width: 1080px !important;
    margin: 32px auto 60px !important;
    padding: 0 48px !important;
    align-items: flex-start !important;
}

/* ── LEFT FORM ── */
.homiee-co-form {
    flex: 1 !important;
    min-width: 0 !important;
}

h2.homiee-co-section-title,
.homiee-co-section-title {
    font-family: var(--font-body) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    margin-bottom: 16px !important;
    margin-top: 28px !important;
    border: none !important;
    padding: 0 !important;
}

h2.homiee-co-section-title:first-child,
.homiee-co-section-title:first-child { margin-top: 0 !important; }

/* Direct field wrappers */
.homiee-co-field {
    margin-bottom: 12px !important;
    width: 100% !important;
}

.homiee-co-field input {
    width: 100% !important;
    padding: 13px 16px !important;
    border: 1px solid var(--gray-border) !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-family: var(--font-body) !important;
    color: var(--black) !important;
    background: #fff !important;
    outline: none !important;
    box-sizing: border-box !important;
}

.homiee-co-field input:focus,
.homiee-co-field select:focus {
    border-color: #999 !important;
    box-shadow: none !important;
}

.homiee-co-field input::placeholder { color: #bbb !important; }

.homiee-co-field select {
    width: 100% !important;
    height: auto !important;
    min-height: 48px !important;
    padding: 13px 40px 13px 16px !important;
    border: 1px solid var(--gray-border) !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    font-family: var(--font-body) !important;
    color: var(--black) !important;
    background-color: #fff !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 14px center !important;
    outline: none !important;
    box-sizing: border-box !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    cursor: pointer !important;
}

.homiee-co-field select option[value=""] { color: #bbb !important; }

/* WooCommerce form-row wrappers */
.homiee-co-form .form-row {
    margin-bottom: 12px !important;
    padding: 0 !important;
    float: none !important;
    width: 100% !important;
    clear: none !important;
}

.homiee-co-row-two {
    display: flex !important;
    gap: 12px !important;
    margin-bottom: 0 !important;
}

.homiee-co-row-two .form-row {
    flex: 1 !important;
    margin-bottom: 12px !important;
}

/* Inputs */
.homiee-co-form input.homiee-co-input,
.homiee-co-form input[type="text"],
.homiee-co-form input[type="email"],
.homiee-co-form input[type="tel"],
.homiee-co-form input[type="password"] {
    width: 100% !important;
    padding: 13px 16px !important;
    border: 1px solid var(--gray-border) !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    font-family: var(--font-body) !important;
    color: var(--black) !important;
    outline: none !important;
    transition: border-color 0.2s !important;
    background: #fff !important;
    box-shadow: none !important;
}

.homiee-co-form input:focus {
    border-color: #999 !important;
    box-shadow: none !important;
    outline: none !important;
}

.homiee-co-form input::placeholder { color: #bbb !important; }

/* Hide WC labels — using placeholders instead */
.homiee-co-form .form-row > label:not(.checkbox),
.homiee-co-form .form-row > .woocommerce-input-wrapper > label {
    display: none !important;
}

/* Hide optional text appended to labels */
.homiee-co-form .optional { display: none !important; }

/* Remove required asterisk from labels */
.homiee-co-form abbr.required { display: none !important; }

/* WC-generated selects inside the checkout form */
.homiee-co-form select {
    height: auto !important;
    line-height: 1.5 !important;
    box-shadow: none !important;
}

.homiee-co-form select:focus {
    border-color: #999 !important;
    box-shadow: none !important;
}

/* WC validation icons — remove */
.homiee-co-form .woocommerce-input-wrapper .woocommerce-Password-strength,
.homiee-co-form .woocommerce-input-wrapper::after {
    display: none !important;
}

/* Error messages */
.homiee-co-form .woocommerce-error,
.homiee-co-form .validate-required.woocommerce-invalid .woocommerce-input-wrapper input {
    border-color: var(--red) !important;
}

/* Hide WC "Ship to a different address" + order notes */
.woocommerce-shipping-fields,
.woocommerce-additional-fields {
    display: none !important;
}

/* Country select box */
.homiee-co-select-box {
    border: 1px solid var(--gray-border) !important;
    border-radius: 8px !important;
    padding: 10px 16px !important;
    margin-bottom: 12px !important;
    background: #fff !important;
}

.homiee-co-select-box label {
    font-size: 11px !important;
    color: var(--gray-text) !important;
    display: block !important;
    margin-bottom: 2px !important;
}

.homiee-co-select-box span {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: var(--black) !important;
}

/* Checkboxes */
.homiee-co-check-row {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 10px 0 !important;
    cursor: pointer !important;
}

.homiee-co-check-row input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    accent-color: var(--black) !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
}

.homiee-co-check-row label {
    font-size: 13px !important;
    color: #555 !important;
    cursor: pointer !important;
    margin: 0 !important;
}

/* Payment note */
.homiee-co-payment-note {
    font-size: 13px !important;
    color: var(--gray-text) !important;
    margin-bottom: 20px !important;
    margin-top: -8px !important;
}

/* WooCommerce payment section — billing radio options */
.woocommerce-checkout #payment {
    background: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods {
    list-style: none !important;
    padding: 0 !important;
    border: none !important;
}

.woocommerce-checkout #payment ul.payment_methods li {
    border: 1px solid var(--gray-border) !important;
    border-radius: 8px !important;
    padding: 14px 16px !important;
    margin-bottom: 10px !important;
    cursor: pointer !important;
    background: #fff !important;
}

.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method label {
    font-size: 14px !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
    accent-color: #3366cc !important;
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
}

.woocommerce-checkout #payment div.payment_box {
    background: #f8f9ff !important;
    border-radius: 6px !important;
    padding: 12px !important;
    margin-top: 8px !important;
    font-size: 13px !important;
    color: var(--gray-text) !important;
}

/* WC Place Order button — hidden, triggered by our Pay Now via JS */
.woocommerce-checkout #payment #place_order,
.woocommerce-checkout #payment .button#place_order {
    display: none !important;
}

/* ── CUSTOM PAYMENT METHOD SELECTOR ── */
.homiee-pay-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.homiee-pay-option {
    display: block;
    border: 1.5px solid #e0e0e0;
    border-radius: 10px;
    padding: 16px 18px;
    cursor: pointer;
    background: #fff;
    transition: border-color 0.18s, box-shadow 0.18s;
}
.homiee-pay-option:hover {
    border-color: #aaa;
}
.homiee-pay-option.homiee-pay-selected {
    border-color: var(--red);
    box-shadow: 0 0 0 1px var(--red);
    background: #fff8f8;
}
.homiee-pay-option input[type="radio"] {
    display: none;
}
.homiee-pay-option-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}
.homiee-pay-option-inner svg {
    flex-shrink: 0;
    color: #555;
}
.homiee-pay-option.homiee-pay-selected .homiee-pay-option-inner svg {
    color: var(--red);
}
.homiee-pay-option-inner > span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.homiee-pay-option-inner strong {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}
.homiee-pay-option-inner small {
    font-size: 12px;
    color: #777;
    font-weight: 400;
}

/* ── GST BREAKDOWN BLOCK ── */
.homiee-co-gst-block {
    background: #f8f8f8;
    border: 1px solid #efefef;
    border-radius: 8px;
    padding: 12px 16px;
    margin: 10px 0 14px;
}
.homiee-co-gst-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #555;
    padding: 3px 0;
}
.homiee-co-gst-note {
    font-size: 11px;
    color: #999;
    margin: 6px 0 0;
    padding: 0;
}

/* ── THANK YOU OVERLAY ── */
.homiee-ty-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
    box-sizing: border-box;
}
.homiee-ty-card {
    background: #fff;
    border-radius: 16px;
    padding: 48px 40px 40px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    animation: homieTySlideIn 0.35s cubic-bezier(0.4,0,0.2,1);
}
@keyframes homieTySlideIn {
    from { opacity: 0; transform: translateY(28px) scale(0.97); }
    to   { opacity: 1; transform: none; }
}
.homiee-ty-icon {
    margin-bottom: 22px;
}
.homiee-ty-title {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px;
}
.homiee-ty-sub {
    font-size: 15px;
    color: #444;
    margin: 0 0 8px;
}
.homiee-ty-items {
    text-align: left;
    max-height: 260px;
    overflow-y: auto;
    margin: 18px 0 22px;
    padding-right: 4px;
}
.homiee-ty-item {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 10px;
    background: #fafafa;
}
.homiee-ty-item:last-child { margin-bottom: 0; }
.homiee-ty-item-img {
    position: relative;
    flex-shrink: 0;
}
.homiee-ty-item-img img {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
    background: #f0f0f0;
    display: block;
}
.homiee-ty-item-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--red);
    color: #fff;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 10.5px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.homiee-ty-item-info { flex: 1; min-width: 0; }
.homiee-ty-item-name {
    font-size: 13.5px;
    font-weight: 600;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.homiee-ty-item-price {
    font-size: 13.5px;
    font-weight: 700;
    color: #111;
    margin-top: 2px;
}
.homiee-ty-msg {
    font-size: 13.5px;
    color: #888;
    line-height: 1.6;
    margin: 0 0 28px;
}
.homiee-ty-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.homiee-ty-btn-primary {
    display: block;
    background: var(--red);
    color: #fff;
    border-radius: 8px;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.18s;
}
.homiee-ty-btn-primary:hover { opacity: 0.88; color: #fff; }
.homiee-ty-btn-secondary {
    display: block;
    background: #f4f4f4;
    color: #333;
    border-radius: 8px;
    padding: 13px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.18s;
}
.homiee-ty-btn-secondary:hover { background: #ebebeb; color: #111; }

/* ── ORDERS PAGE — RETURN ROW ── */
.homiee-orders-return-row {
    padding: 18px 0 6px;
}
.homiee-orders-return-btn {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s;
}
.homiee-orders-return-btn:hover { color: var(--red); }

/* ── PAY NOW BUTTON (in order summary) ── */
.homiee-co-pay-btn {
    width: 100% !important;
    background: var(--red) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 16px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    font-family: var(--font-body) !important;
    cursor: pointer !important;
    transition: background 0.2s, transform 0.1s !important;
    margin-top: 10px !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    display: block !important;
    box-shadow: none !important;
}

/* Pay Now button styles */
.homiee-co-pay-btn {
    width: 100% !important;
    background: var(--red) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 16px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    font-family: var(--font-body) !important;
    cursor: pointer !important;
    margin-top: 16px !important;
    transition: background 0.2s, transform 0.1s !important;
    display: block !important;
    text-align: center !important;
    letter-spacing: 0 !important;
}
.homiee-co-pay-btn:hover { background: #b02020 !important; }
.homiee-co-pay-btn:active { transform: scale(0.98) !important; }

/* ── BILLING ADDRESS RADIO OPTIONS ── */
h3.homiee-co-billing-title,
.homiee-co-billing-title {
    font-family: var(--font-body) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    margin: 20px 0 12px !important;
    font-family: var(--font-body) !important;
}

.homiee-co-radio-option {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    border: 1px solid var(--gray-border) !important;
    border-radius: 8px !important;
    padding: 14px 16px !important;
    margin-bottom: 10px !important;
    cursor: pointer !important;
    transition: border-color 0.2s, background 0.2s !important;
    background: #fff !important;
}

.homiee-co-radio-option.homiee-co-radio-selected {
    border-color: #3366cc !important;
    background: #f0f4ff !important;
}

.homiee-co-radio-option input[type="radio"] {
    accent-color: #3366cc !important;
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
    margin: 0 !important;
}

.homiee-co-radio-option label {
    font-size: 14px !important;
    cursor: pointer !important;
    margin: 0 !important;
    color: var(--black) !important;
    font-family: var(--font-body) !important;
}

/* ── SEPARATE BILLING FORM ── */
.homiee-billing-form {
    margin-top: 16px !important;
    padding: 20px !important;
    border: 1px solid var(--gray-border) !important;
    border-radius: 10px !important;
    background: #fafafa !important;
    animation: homiee-slide-down 0.25s ease !important;
}

@keyframes homiee-slide-down {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.homiee-billing-form .homiee-co-field input {
    background: #fff !important;
}

/* ── RIGHT: ORDER SUMMARY ── */
.homiee-co-summary {
    flex: 0 0 360px !important;
}

.homiee-co-item {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    border: 1px solid var(--gray-border) !important;
    border-radius: 10px !important;
    padding: 14px !important;
    margin-bottom: 14px !important;
    background: #fff !important;
}

.homiee-co-item-img {
    position: relative !important;
    flex-shrink: 0 !important;
}

.homiee-co-item-img img {
    width: 64px !important;
    height: 64px !important;
    border-radius: 8px !important;
    object-fit: cover !important;
    background: #f5f5f5 !important;
    display: block !important;
}

.homiee-co-badge {
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    background: var(--red) !important;
    color: #fff !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

.homiee-co-item-info { flex: 1 !important; }

.homiee-co-item-name {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--black) !important;
    margin: 0 !important;
}

.homiee-co-item-price {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: var(--black) !important;
    margin-top: 4px !important;
}

.homiee-co-item-price .woocommerce-Price-amount {
    font-size: 15px !important;
    font-weight: 700 !important;
}

.homiee-co-divider {
    border: none !important;
    border-top: 1px solid var(--gray-border) !important;
    margin: 6px 0 !important;
}

.homiee-co-summary-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 0 !important;
    font-size: 14px !important;
    color: var(--black) !important;
}

.homiee-co-gray {
    color: var(--gray-text) !important;
    font-size: 13px !important;
}

.homiee-co-total-row {
    padding: 14px 0 !important;
}

.homiee-co-total-label {
    font-family: var(--font-body) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}

.homiee-co-total-value {
    font-size: 22px !important;
    font-weight: 700 !important;
}

.homiee-co-total-value small {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--gray-text) !important;
    margin-right: 4px !important;
}

.homiee-co-total-value .woocommerce-Price-amount {
    font-size: 22px !important;
    font-weight: 700 !important;
}


/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .homiee-co-hero { padding: 0 !important; }
    .homiee-co-hero-title { padding: 0 0 16px 24px !important; }
    .homiee-co-hero-card { margin: 0 16px !important; }
    .homiee-co-layout { flex-direction: column !important; padding: 0 16px !important; }
    .homiee-co-summary { flex: none !important; width: 100% !important; }
    .woocommerce div.product { padding: 20px 16px 0 !important; }
    .homiee-product-card-top { flex-direction: column !important; gap: 20px !important; }
    .homiee-product-features { flex: none !important; width: 100% !important; }
    .homiee-product-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .homiee-section,
    .homiee-grid-section { padding: 0 16px !important; }
    .homiee-description-section .homiee-section-heading { font-size: 26px !important; }
    .homiee-sticky-item { font-size: 9px; padding: 11px 12px; }
    .homiee-sticky-book-now { min-width: 120px; padding: 10px 14px; }
    .homiee-sticky-book-tagline { font-size: 7px; }
    .homiee-sticky-book-cta { font-size: 12px; }
}

@media (max-width: 480px) {
    .homiee-product-grid { grid-template-columns: 1fr 1fr !important; }
    .woocommerce div.product div.images,
    .woocommerce div.product .woocommerce-product-gallery { max-width: 100% !important; }
    .homiee-product-card { padding: 20px 16px !important; }
}

/* ══════════════════════════════════════════════════════════════
   HOMIEE CUSTOM NAV
══════════════════════════════════════════════════════════════ */

/* ── Kill old header: everything inside #page before #content ── */
/* CSS layer — covers all known Astra / HFE / Elementor wrappers */
header#masthead,
#masthead,
#ast-desktop-header,
#ast-mobile-header,
.ast-above-header-wrap,
.site-above-header-wrap,
.main-header-bar-wrap,
.ast-hfb-header .site-header,
.ast-hfb-fixed-header,
.elementor-location-header,
.hfe-header,
[data-elementor-type="header"] {
    display: none !important;
}

/* Nuclear fallback: hide ANY direct child of #page that isn't #content */
#page > *:not(#content):not(script):not(style):not(noscript) {
    display: none !important;
}

/* Zero out any body/html padding Astra injects for its own sticky header */
html { margin-top: 0 !important; }
body { padding-top: 0 !important; margin-top: 0 !important; }
body #page { padding-top: 0 !important; }

#homiee-navbar {
    display: flex;
    align-items: center;
    padding: 0 32px;
    height: 64px;
    background: #ffffff;
    border-bottom: 1px solid var(--gray-border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100000;
}

/* Push page content below the fixed nav */
html body #page {
    margin-top: 64px !important;
    padding-top: 0 !important;
}

/* When WP admin bar is visible (logged-in), shift nav below it */
.admin-bar #homiee-navbar { top: 32px !important; }
html.admin-bar body #page { margin-top: 96px !important; }

.homiee-nav-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.homiee-nav-item:first-child { justify-content: flex-start; }
.homiee-nav-item:last-child  { justify-content: flex-end; }

/* ── Hamburger button ── */
.homiee-hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    padding: 0;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.homiee-hamburger-btn:hover,
.homiee-hamburger-btn:focus,
.homiee-hamburger-btn:active {
    background: none;
    outline: none;
    box-shadow: none;
}
.homiee-hamburger-btn:hover .homiee-bar span {
    background: var(--red);
}

.homiee-hamburger-btn .homiee-bar,
.homiee-hamburger-btn .homiee-close-x {
    position: absolute;
    transition: opacity 0.2s;
}

.homiee-hamburger-btn .homiee-bar {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.homiee-hamburger-btn .homiee-bar span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    border-radius: 2px;
}

.homiee-hamburger-btn .homiee-close-x {
    font-size: 20px;
    color: var(--red);
    opacity: 0;
    line-height: 1;
    font-weight: 300;
}

#homiee-navbar.menu-open .homiee-hamburger-btn .homiee-bar   { opacity: 0; }
#homiee-navbar.menu-open .homiee-hamburger-btn .homiee-close-x { opacity: 1; }

/* ── Nav links ── */
.homiee-nav-link {
    text-decoration: none;
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}
.homiee-nav-link:hover { color: var(--red); }

/* ── Logo ── */
.homiee-logo-wrap {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.homiee-logo-img {
    height: 42px !important;
    width: auto !important;
    max-width: none !important;
    display: block;
}

/* ── Cart button ── */
.homiee-header-cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
    color: var(--black);
    position: relative;
}

.homiee-cart-count {
    font-size: 12px;
    font-weight: 600;
    background: var(--red);
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    position: absolute;
    top: -6px;
    right: -8px;
}

/* ══════════════════════════════
   MEGA MENU DROPDOWN
══════════════════════════════ */
.homiee-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    z-index: 200;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.28s ease;
}

.homiee-mega-menu.open {
    max-height: 520px;
    opacity: 1;
    pointer-events: all;
}

.homiee-mega-inner {
    display: flex;
    gap: 0;
    padding: 40px 48px;
}

/* ── Policy columns ── */
.homiee-menu-col {
    flex: 0 0 200px;
    padding-right: 32px;
}

.homiee-menu-col h3 {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.homiee-menu-col ul { list-style: none; margin: 0; padding: 0; }
.homiee-menu-col ul li { margin-bottom: 14px; }
.homiee-menu-col ul li a {
    text-decoration: none;
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s;
}
.homiee-menu-col ul li a:hover { color: var(--red); }

/* ── Right image panel ── */
.homiee-menu-panel {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 240px;
    background: linear-gradient(to right, rgba(0,0,0,0.45), rgba(0,0,0,0.2)),
                url('https://images.unsplash.com/photo-1567620905732-2d1ec7ab7445?w=900&q=80')
                center / cover no-repeat;
    display: flex;
    align-items: center;
}

.homiee-panel-content {
    display: flex;
    width: 100%;
    padding: 32px 36px;
    gap: 0;
}

.homiee-touch-block { flex: 1; }
.homiee-touch-block h4 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
}
.homiee-touch-block p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
    line-height: 1.6;
}
.homiee-touch-block p a {
    color: inherit;
    text-decoration: none;
}
.homiee-touch-block p a:hover { text-decoration: underline; }

.homiee-follow-block { flex: 1; }
.homiee-follow-block h4 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.homiee-social-icons {
    display: flex;
    gap: 14px;
    align-items: center;
}

.homiee-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.homiee-social-icons a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}
.homiee-social-icons svg {
    width: 18px;
    height: 18px;
    fill: #ffffff;
}

/* ── Desktop: hide mobile-only drawer elements ── */
.homiee-drawer-overlay,
.homiee-drawer-header,
.homiee-drawer-nav,
.homiee-drawer-divider,
.homiee-drawer-policies { display: none; }

/* ── Mobile drawer ── */
@media (max-width: 768px) {
    /* 3-column grid: hamburger | logo | cart */
    #homiee-navbar {
        display: grid !important;
        grid-template-columns: 1fr auto 1fr !important;
        padding: 0 16px !important;
        gap: 0 !important;
    }

    /* Hide all nav items by default on mobile */
    .homiee-nav-item { display: none !important; }

    /* Hamburger — left */
    .homiee-nav-item:first-child {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }
    /* Enlarge hamburger to 44px minimum tap target */
    .homiee-hamburger-btn {
        width: 44px !important;
        height: 44px !important;
    }

    /* Logo — centre */
    .homiee-nav-item:nth-child(4) {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    /* Cart — right (7th child; mega-menu div is 8th/last so :last-child misses cart) */
    .homiee-nav-item:nth-child(7) {
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;
    }

    /* Overlay */
    .homiee-drawer-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.25);
        z-index: 290;
    }
    .homiee-drawer-overlay.open { display: block; }

    /* Drawer panel */
    .homiee-mega-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: auto !important;
        bottom: 0 !important;
        width: 88% !important;
        max-width: 340px !important;
        max-height: none !important;
        opacity: 1 !important;
        border-radius: 0 20px 20px 0 !important;
        box-shadow: 4px 0 32px rgba(0, 0, 0, 0.18) !important;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        z-index: 300 !important;
        padding-bottom: 32px !important;
        pointer-events: none !important;
        will-change: transform;
    }
    .homiee-mega-menu.open {
        transform: translateX(0) !important;
        pointer-events: all !important;
    }

    /* Drawer header */
    .homiee-drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        border-bottom: 1px solid #f0f0f0;
        position: sticky;
        top: 0;
        background: #fff;
        z-index: 1;
    }
    .homiee-drawer-close {
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        display: flex;
        align-items: center;
        outline: none;
    }
    .homiee-drawer-close:focus { outline: none; }

    /* Drawer nav links */
    .homiee-drawer-nav {
        display: block;
        padding: 10px 0 4px;
    }
    .homiee-drawer-navlink {
        display: block;
        padding: 13px 28px;
        font-size: 16px;
        font-weight: 600;
        color: #1a1a1a;
        text-decoration: none;
        font-family: var(--font-body);
        transition: background 0.15s;
    }
    .homiee-drawer-navlink:hover { background: #f7f7f5; color: #1a1a1a; }
    .homiee-drawer-navlink:active { background: #f0f0ee; }

    /* Drawer divider */
    .homiee-drawer-divider {
        display: block;
        height: 1px;
        background: #f0f0ee;
        margin: 6px 0;
    }

    /* Policies section inside drawer */
    .homiee-drawer-policies { display: block; }

    .homiee-drawer-policies-title {
        font-size: 26px;
        font-weight: 700;
        color: #1a1a1a;
        padding: 14px 28px 6px;
        font-family: var(--font-body);
        letter-spacing: -0.4px;
    }

    .homiee-drawer-policy-link {
        display: block;
        padding: 11px 28px;
        font-size: 14px;
        font-weight: 400;
        color: #444;
        text-decoration: none;
        transition: background 0.15s, color 0.15s;
    }
    .homiee-drawer-policy-link:hover { background: #f7f7f5; color: #1a1a1a; }
    .homiee-drawer-policy-link:active { background: #f0f0ee; }

    /* Hide desktop mega-menu inner on mobile */
    .homiee-mega-inner { display: none !important; }
}

/* ── Account dropdown ── */
.homiee-account-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.homiee-account-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #1a1a1a;
    padding: 6px 2px;
    line-height: 1;
    font-family: inherit;
    transition: color 0.18s;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}
.homiee-account-btn:hover { color: var(--red); background: none; outline: none !important; box-shadow: none; }
.homiee-account-btn:focus,
.homiee-account-btn:focus-visible,
.homiee-account-btn:focus-within { outline: none !important; box-shadow: none !important; }
.homiee-account-btn:active { background: rgba(0,0,0,0.06); outline: none !important; box-shadow: none !important; }

/* Override Astra's global button:focus/hover (color:#fff) using ID specificity */
#homiee-navbar button:hover,
#homiee-navbar button:focus,
#homiee-navbar button:focus-visible,
#homiee-navbar button:active {
    outline: 0 !important;
    box-shadow: none !important;
    border: none !important;
    border-color: transparent !important;
    background: none !important;
    color: var(--red) !important;
}
#homiee-navbar button::-moz-focus-inner {
    border: 0 !important;
    padding: 0 !important;
}

.homiee-account-dropdown {
    position: absolute;
    top: calc(100% + 20px);
    right: -20px;
    width: 290px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.14);
    padding: 14px 14px 10px;
    z-index: 200;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
}
.homiee-account-dropdown.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.homiee-acc-email-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 13.5px;
    color: #444;
    margin-bottom: 6px;
    word-break: break-all;
}
.homiee-acc-email-row svg {
    flex-shrink: 0;
    color: #888;
}

.homiee-acc-divider {
    border: none;
    border-top: 1px solid #f0f0f0;
    margin: 6px 0;
}

.homiee-acc-link {
    display: block;
    padding: 9px 12px;
    font-size: 14.5px;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.15s;
}
.homiee-acc-link:hover {
    background: #f5f5f5;
    color: #1a1a1a;
}

/* ── Sign In / OTP Popup ── */
.homiee-signin-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    padding: 20px;
}
.homiee-signin-overlay[hidden] { display: none !important; }

.homiee-signin-modal {
    background: #ffffff;
    border-radius: 22px;
    width: 100%;
    max-width: 470px;
    padding: 40px 44px 36px;
    position: relative;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22);
    animation: homieePopIn 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
}
@keyframes homieePopIn {
    from { opacity: 0; transform: scale(0.93) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.homiee-signin-close {
    position: absolute;
    top: 16px; right: 20px;
    background: none; border: none;
    font-size: 18px; color: #888;
    cursor: pointer; padding: 4px 8px;
    line-height: 1;
    transition: color 0.2s;
    font-family: inherit;
}
.homiee-signin-close:hover { color: #1a1a1a; }

.homiee-signin-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}
.homiee-signin-logo img { height: 40px; width: auto; }

.homiee-signin-title {
    font-size: 24px; font-weight: 700;
    color: #1a1a1a; margin-bottom: 6px;
}
.homiee-signin-sub {
    font-size: 14px; color: #888;
    margin-bottom: 28px; line-height: 1.5;
}

.homiee-signin-input-wrap { margin-bottom: 10px; }
.homiee-signin-input {
    width: 100%;
    padding: 15px 16px;
    border: 1.5px solid #e4e4e4;
    border-radius: 12px;
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #ffffff;
    box-sizing: border-box;
}
.homiee-signin-input:focus {
    border-color: #ccc;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
}
.homiee-signin-input::placeholder { color: #c0c0c0; }
.homiee-signin-input.error { border-color: #D62B2B; }

.homiee-signin-error {
    font-size: 12px; color: #D62B2B;
    margin: 0 0 12px; min-height: 16px;
}

.homiee-signin-btn {
    width: 100%;
    padding: 15px;
    background: #D62B2B;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 15px; font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    letter-spacing: 0.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
}
.homiee-signin-btn:hover { background: #b52020; }
.homiee-signin-btn:active { transform: scale(0.98); }
.homiee-signin-btn:disabled { background: #e0a0a0; cursor: not-allowed; }

.homiee-btn-spinner {
    display: none;
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: homieeSpinOtp 0.7s linear infinite;
}
.homiee-signin-btn.loading .homiee-btn-text { display: none; }
.homiee-signin-btn.loading .homiee-btn-spinner { display: block; }
@keyframes homieeSpinOtp { to { transform: rotate(360deg); } }

.homiee-screen { display: none; }
.homiee-screen--active { display: block; }

.homiee-code-sent {
    font-size: 14px; color: #888;
    margin-bottom: 24px; line-height: 1.6;
}
.homiee-code-sent strong { color: #1a1a1a; font-weight: 600; }

.homiee-code-boxes {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 10px;
}
.homiee-code-box {
    width: 52px; height: 56px;
    text-align: center;
    border: 1.5px solid #e4e4e4;
    border-radius: 10px;
    font-size: 22px; font-weight: 700;
    color: #1a1a1a;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    caret-color: #D62B2B;
}
.homiee-code-box:focus {
    border-color: #D62B2B;
    box-shadow: 0 0 0 3px rgba(214,43,43,0.1);
}
.homiee-code-box.filled { border-color: #ccc; }

.homiee-resend-row {
    text-align: center;
    font-size: 13px; color: #888;
    margin-bottom: 20px;
}
.homiee-resend-btn {
    background: none; border: none; cursor: pointer;
    color: #D62B2B; font-weight: 600;
    font-family: inherit; font-size: 13px;
    padding: 0; transition: opacity 0.2s;
}
.homiee-resend-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.homiee-diff-email {
    text-align: center;
    margin-top: 16px;
    font-size: 13px; color: #888;
}
.homiee-diff-email button {
    background: none; border: none; cursor: pointer;
    color: #1a1a1a; font-weight: 600;
    font-family: inherit; font-size: 13px;
    text-decoration: underline;
    transition: color 0.2s;
}
.homiee-diff-email button:hover { color: #D62B2B; }

@keyframes homieeShakeBoxes {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-6px); }
    40%       { transform: translateX(6px); }
    60%       { transform: translateX(-4px); }
    80%       { transform: translateX(4px); }
}

@media (max-width: 520px) {
    .homiee-signin-modal { padding: 32px 24px 28px; }
    .homiee-code-box { width: 42px; height: 48px; font-size: 18px; }
    .homiee-code-boxes { gap: 7px; }
}

/* Guest sign-in row in account dropdown */
.homiee-acc-signin-row {
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s;
}
.homiee-acc-signin-row:hover {
    background: #ebebeb;
}
.homiee-acc-signin-row span {
    font-weight: 600;
    color: #1a1a1a;
}

/* ── Auto Signup Popup ── */
.homiee-autopopup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 999998;
}
.homiee-autopopup-overlay[hidden] { display: none !important; }

.homiee-autopopup-modal {
    background: #ffffff;
    border-radius: 22px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
    animation: homieePopIn 0.32s cubic-bezier(0.34, 1.4, 0.64, 1);
    overflow: hidden;
}

.homiee-autopopup-body {
    padding: 44px 48px 40px;
    text-align: center;
}

.homiee-autopopup-close {
    position: absolute;
    top: 18px; right: 20px;
    background: none; border: none;
    cursor: pointer;
    font-size: 20px; color: #bbb;
    line-height: 1;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
    font-family: inherit;
    z-index: 2;
}
.homiee-autopopup-close:hover { color: #1a1a1a; background: #f5f5f5; }

.homiee-autopopup-illustration {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}
.homiee-autopopup-illustration svg {
    width: 130px;
    height: 130px;
}

.homiee-autopopup-title {
    font-size: 22px; font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.homiee-autopopup-sub {
    font-size: 14px; color: #888;
    margin-bottom: 26px; line-height: 1.6;
}

.homiee-autopopup-input {
    width: 100%;
    padding: 15px 16px;
    border: 1.5px solid #e4e4e4;
    border-radius: 12px;
    font-size: 14px;
    color: #1a1a1a;
    outline: none;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #ffffff;
    box-sizing: border-box;
    margin-bottom: 10px;
    text-align: left;
}
.homiee-autopopup-input:focus {
    border-color: #ccc;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
}
.homiee-autopopup-input::placeholder { color: #c0c0c0; }
.homiee-autopopup-input.error { border-color: #D62B2B; }

.homiee-autopopup-error {
    font-size: 12px; color: #D62B2B;
    margin: 0 0 10px;
    min-height: 16px;
    text-align: left;
}

.homiee-autopopup-btn {
    width: 100%;
    padding: 15px;
    background: #D62B2B;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 15px; font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-bottom: 0;
}
.homiee-autopopup-btn:hover { background: #b52020; }
.homiee-autopopup-btn:active { transform: scale(0.98); }
.homiee-autopopup-btn:disabled { background: #e0a0a0; cursor: not-allowed; }
.homiee-autopopup-btn.loading .homiee-btn-text { display: none; }
.homiee-autopopup-btn.loading .homiee-btn-spinner { display: block; }

.homiee-autopopup-success {
    font-size: 14px; color: #2e7d32;
    margin-top: 16px; font-weight: 500;
}
.homiee-autopopup-success[hidden] { display: none !important; }

@media (max-width: 520px) {
    .homiee-autopopup-body { padding: 36px 24px 30px; }
    .homiee-autopopup-illustration svg { width: 100px; height: 100px; }
}


/* ── Signup popup: screen 2 (enter code) ── */
#homieeSignupScreen1[hidden],
#homieeSignupScreen2[hidden] { display: none !important; }

.homiee-apu-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}
.homiee-apu-logo img { height: 38px; width: auto; }

.homiee-apu-code-sent {
    font-size: 14px; color: #888;
    margin-bottom: 22px; line-height: 1.5;
}
.homiee-apu-code-sent strong { color: #1a1a1a; font-weight: 600; }

.homiee-apu-code-input {
    width: 100%;
    padding: 15px 18px;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    font-size: 22px;
    font-family: inherit;
    color: #1a1a1a;
    outline: none;
    letter-spacing: 6px;
    transition: border-color 0.22s, box-shadow 0.22s;
    background: #ffffff;
    box-sizing: border-box;
    margin-bottom: 10px;
    text-align: center;
}
.homiee-apu-code-input:focus {
    border-color: #c0c0c0;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}
.homiee-apu-code-input::placeholder {
    color: #c8c8c8;
    letter-spacing: 0;
    font-size: 14px;
}
.homiee-apu-code-input.error {
    border-color: #D62B2B;
    box-shadow: 0 0 0 3px rgba(214,43,43,0.1);
}

.homiee-apu-diff-link {
    text-align: center;
    font-size: 13px; font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    transition: color 0.2s;
    margin-top: 18px; margin-bottom: 4px;
}
.homiee-apu-diff-link:hover { color: #D62B2B; }

.homiee-apu-resend-row {
    text-align: center;
    font-size: 13px; color: #888;
    margin-top: 12px;
}
.homiee-apu-resend-btn {
    background: none; border: none; cursor: pointer;
    color: #D62B2B; font-weight: 600;
    font-family: inherit; font-size: 13px; padding: 0;
    transition: opacity 0.2s;
}
.homiee-apu-resend-btn:disabled { opacity: 0.4; cursor: not-allowed; }

@keyframes homieeShakeInput {
    0%,100% { transform: translateX(0); }
    20%      { transform: translateX(-7px); }
    40%      { transform: translateX(7px); }
    60%      { transform: translateX(-4px); }
    80%      { transform: translateX(4px); }
}

/* ════════════════════════════════
   ORDERS PAGE
════════════════════════════════ */

/* Hide WC sidebar + make content full-width on orders page */
body.homiee-orders-page .woocommerce-MyAccount-navigation { display: none !important; }
body.homiee-orders-page .woocommerce-MyAccount-content {
    width: 100% !important; float: none !important;
    padding: 0 !important; margin: 0 !important;
    border: none !important;
}
body.homiee-orders-page #content .ast-container { padding: 0 !important; max-width: 100% !important; width: 100% !important; }
body.homiee-orders-page .site-content,
body.homiee-orders-page #content { padding: 0 !important; }
body.homiee-orders-page .entry-content { padding: 0 !important; margin: 0 !important; }
body.homiee-orders-page #primary,
body.homiee-orders-page .woocommerce { padding: 0 !important; margin: 0 !important; max-width: 100% !important; width: 100% !important; }

/* Hero banner */
.homiee-orders-hero {
    width: 100%;
    height: 191px;
    background:
        #202020 url('https://images.unsplash.com/photo-1567620905732-2d1ec7ab7445?w=1400&q=80')
        center left / cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0;
}
.homiee-orders-hero h1 {
    font-size: 30px; font-weight: 600;
    color: #ffffff;
    margin: 0; padding: 0 0 20px 100px;
    font-family: var(--font-body);
    text-transform: capitalize;
}

/* Page body — pulls card up over banner */
.homiee-orders-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -48px;
    padding: 0 24px 60px;
    position: relative;
    z-index: 10;
}

/* ── Empty state card ── */
.homiee-orders-card {
    background: #ffffff;
    border-radius: 20px;
    width: 100%; max-width: 560px;
    padding: 52px 48px 48px;
    display: flex; flex-direction: column; align-items: center;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
}

.homiee-orders-illustration { margin-bottom: 28px; }
.homiee-orders-illustration svg { width: 140px; height: 140px; }

.homiee-empty-title {
    font-size: 22px; font-weight: 700;
    color: #1a1a1a; margin-bottom: 8px; text-align: center;
}
.homiee-empty-sub {
    font-size: 14px; color: #888;
    margin-bottom: 28px; text-align: center;
}

.homiee-explore-btn {
    width: 100%; max-width: 340px;
    padding: 16px;
    background: #D62B2B; color: #ffffff;
    border: none; border-radius: 50px;
    font-size: 15px; font-weight: 700;
    font-family: inherit; cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    text-decoration: none; text-align: center; display: block;
    letter-spacing: 0.2px;
}
.homiee-explore-btn:hover { background: #b52020; color: #fff; }
.homiee-explore-btn:active { transform: scale(0.98); }

/* ── Orders list (has orders) ── */
.homiee-orders-list {
    width: 100%; max-width: 760px;
    display: flex; flex-direction: column; gap: 14px;
}

.homiee-order-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: box-shadow 0.2s;
}
.homiee-order-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,0.11); }

.homiee-order-card-left { flex: 1; min-width: 0; }

.homiee-order-number {
    font-size: 15px; font-weight: 700; color: #1a1a1a;
    margin-bottom: 4px;
}
.homiee-order-date {
    font-size: 13px; color: #888; margin-bottom: 6px;
}
.homiee-order-items {
    font-size: 13px; color: #555;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    max-width: 320px;
}

.homiee-order-card-right {
    display: flex; flex-direction: column;
    align-items: flex-end; gap: 8px; flex-shrink: 0;
}

/* Status badges */
.homiee-order-status {
    font-size: 12px; font-weight: 600;
    padding: 4px 12px; border-radius: 50px;
    white-space: nowrap;
}
.homiee-status--completed   { background: #e8f5e9; color: #2e7d32; }
.homiee-status--processing  { background: #e3f2fd; color: #1565c0; }
.homiee-status--pending,
.homiee-status--pending-payment { background: #f5f5f5; color: #555; }
.homiee-status--on-hold     { background: #fff3e0; color: #e65100; }
.homiee-status--cancelled   { background: #fce4ec; color: #c62828; }
.homiee-status--refunded    { background: #f3e5f5; color: #6a1b9a; }
.homiee-status--failed      { background: #ffebee; color: #b71c1c; }

.homiee-order-total {
    font-size: 16px; font-weight: 700; color: #1a1a1a;
}

.homiee-order-view-btn {
    font-size: 13px; font-weight: 600;
    color: #D62B2B; text-decoration: none;
    padding: 6px 16px; border: 1.5px solid #D62B2B;
    border-radius: 50px;
    transition: background 0.18s, color 0.18s;
    white-space: nowrap;
}
.homiee-order-view-btn:hover {
    background: #D62B2B; color: #fff;
}

/* Pagination */
.homiee-orders-pagination {
    margin-top: 24px;
    display: flex; gap: 12px;
}
.homiee-page-btn {
    padding: 10px 22px; border-radius: 50px;
    border: 1.5px solid #e0e0e0; background: #fff;
    font-size: 14px; font-weight: 500; color: #1a1a1a;
    text-decoration: none; transition: border-color 0.18s, background 0.18s;
}
.homiee-page-btn:hover { border-color: #D62B2B; color: #D62B2B; }

/* Responsive */
@media (max-width: 600px) {
    .homiee-orders-hero { padding: 0; }
    .homiee-orders-hero h1 { font-size: 26px; padding: 0 0 16px 24px; }
    .homiee-orders-card { padding: 40px 28px 36px; }
    .homiee-order-card { flex-direction: column; align-items: flex-start; }
    .homiee-order-card-right { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
    .homiee-order-items { max-width: 100%; }
}

/* ── Orders page: hide Astra's duplicate page title ── */
body.homiee-orders-page h1.entry-title,
body.homiee-orders-page .ast-page-title-wrap { display: none !important; }

/* ── VIEW ORDER PAGE — reuses the checkout page's design system (.homiee-co-*) ── */
.homiee-vo-return-row {
    max-width: 1080px;
    margin: 20px auto 0;
    padding: 0 48px;
}
.homiee-vo-home-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding: 11px 26px;
    border-radius: 50px;
    transition: background 0.18s, transform 0.1s;
}
.homiee-vo-home-btn:hover { background: #b52020; color: #fff; }
.homiee-vo-home-btn:active { transform: scale(0.98); }

.homiee-vo-order-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--gray-border);
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 24px;
}
.homiee-vo-number { font-size: 16px; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.homiee-vo-date { font-size: 13px; color: var(--gray-text); }

.homiee-vo-addresses {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.homiee-vo-addresses--2col { flex-direction: row; flex-wrap: wrap; }
.homiee-vo-address-block { flex: 1; min-width: 220px; }
.homiee-vo-address-block h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin: 0 0 8px;
}
.homiee-vo-address-block address {
    font-style: normal;
    font-size: 13.5px;
    color: var(--gray-text);
    line-height: 1.7;
}

.homiee-vo-note-text {
    font-size: 13.5px;
    color: var(--gray-text);
    line-height: 1.7;
    background: #f8f8f8;
    border: 1px solid #efefef;
    border-radius: 8px;
    padding: 12px 16px;
}

.homiee-vo-action-btn {
    display: block;
    width: 100%;
    background: transparent;
    color: var(--red);
    border: 1.5px solid var(--red);
    border-radius: 50px;
    padding: 14px;
    margin-top: 12px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--font-body);
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    transition: background 0.18s, color 0.18s;
}
.homiee-vo-action-btn:hover { background: var(--red); color: #fff; }

@media (max-width: 600px) {
    .homiee-vo-return-row { padding: 0 16px; }
    .homiee-vo-order-meta { flex-direction: column; align-items: flex-start; gap: 10px; }
    .homiee-vo-addresses--2col { flex-direction: column; }
}

/* ════════════════════════════════
   PROFILE PAGE
════════════════════════════════ */
body.homiee-profile-page .woocommerce-MyAccount-navigation { display: none !important; }
body.homiee-profile-page .woocommerce-MyAccount-content {
    width: 100% !important; float: none !important;
    padding: 0 !important; margin: 0 !important;
    border: none !important;
}
body.homiee-profile-page #content .ast-container { padding: 0 !important; max-width: 100% !important; width: 100% !important; }
body.homiee-profile-page .site-content,
body.homiee-profile-page #content { padding: 0 !important; }
body.homiee-profile-page .entry-content { padding: 0 !important; margin: 0 !important; }
body.homiee-profile-page #primary,
body.homiee-profile-page .woocommerce { padding: 0 !important; margin: 0 !important; max-width: 100% !important; width: 100% !important; }
body.homiee-profile-page h1.entry-title,
body.homiee-profile-page .ast-page-title-wrap { display: none !important; }

/* Hero reuse */
.homiee-profile-hero { position: relative; }

/* Page body */
.homiee-profile-body {
    max-width: 820px;
    margin: -48px auto 0;
    padding: 0 32px 60px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Card base */
.homiee-pcard {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    padding: 32px 40px;
}

/* Profile info card */
.homiee-pcard {
    display: flex;
    gap: 64px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.homiee-pfield { display: flex; flex-direction: column; gap: 6px; }

.homiee-plabel { font-size: 13px; color: #999; font-weight: 500; }

.homiee-prow { display: flex; align-items: center; gap: 10px; }

.homiee-pvalue { font-size: 16px; font-weight: 600; color: #1a1a1a; }
.homiee-pvalue.homiee-hidden { display: none; }

.homiee-pname-input {
    font-size: 16px; font-weight: 600; color: #1a1a1a;
    border: 1.5px solid #e4e4e4; border-radius: 8px;
    padding: 6px 12px; font-family: inherit; outline: none;
    display: none; transition: border-color 0.2s;
}
.homiee-pname-input:focus { border-color: #bbb; }
.homiee-pname-input.homiee-active { display: block; }

.homiee-pedit-btn {
    background: none; border: none; cursor: pointer; padding: 2px;
    display: flex; align-items: center; color: #1a1a1a;
    opacity: 0.55; transition: opacity 0.2s; flex-shrink: 0;
}
.homiee-pedit-btn:hover { opacity: 1; }
.homiee-pedit-btn svg { width: 16px; height: 16px; }
.homiee-pedit-btn.homiee-hidden { display: none; }

.homiee-plabel-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.homiee-pdivider { display: none; }

.homiee-psave-btn {
    background: #D62B2B; color: #fff; border: none; border-radius: 6px;
    padding: 6px 14px; font-size: 12px; font-weight: 700; font-family: inherit;
    cursor: pointer; display: none; transition: background 0.2s;
}
.homiee-psave-btn:hover { background: #b52020; }
.homiee-psave-btn.homiee-active { display: block; }
.homiee-psave-btn:disabled { opacity: 0.6; cursor: not-allowed; }

/* Addresses card */
.homiee-addr-card {
    flex-direction: column;
    gap: 0;
    padding: 28px 40px 32px;
}

.homiee-addr-header {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 20px;
}
.homiee-addr-title { font-size: 16px; font-weight: 600; color: #1a1a1a; }

.homiee-addr-add-btn {
    display: inline-flex; align-items: center; gap: 4px;
    border: 1.5px solid #D62B2B; color: #D62B2B; background: none;
    border-radius: 6px; padding: 5px 14px; font-size: 13px; font-weight: 600;
    cursor: pointer; transition: background 0.2s, color 0.2s; text-decoration: none;
}
.homiee-addr-add-btn:hover { background: #D62B2B; color: #fff; }

.homiee-addr-empty {
    border: 1px solid #e4e4e4; border-radius: 10px;
    padding: 20px 24px; display: flex; align-items: center; gap: 12px;
    background: #fafafa;
}
.homiee-addr-empty svg { flex-shrink: 0; color: #555; }
.homiee-addr-empty span { font-size: 14px; color: #1a1a1a; font-weight: 500; }

.homiee-addr-item {
    border: 1px solid #e4e4e4; border-radius: 10px;
    padding: 16px 20px; display: flex; align-items: flex-start;
    justify-content: space-between; gap: 12px; background: #fafafa;
}
.homiee-addr-lines { font-size: 14px; color: #1a1a1a; line-height: 1.6; }
.homiee-addr-phone { color: #888; font-size: 13px; }

.homiee-addr-edit-link,
.homiee-addr-edit-btn {
    flex-shrink: 0; opacity: 0.55; color: #1a1a1a; transition: opacity 0.2s;
    display: flex; align-items: center;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 2px !important;
    cursor: pointer;
}
.homiee-addr-edit-link:hover,
.homiee-addr-edit-btn:hover { opacity: 1; }
.homiee-addr-edit-link svg,
.homiee-addr-edit-btn svg { width: 16px; height: 16px; stroke: #1a1a1a; }

@media (max-width: 640px) {
    /* ── Profile hero ── */
    .homiee-profile-hero {
        height: 140px;
        justify-content: center;
    }
    .homiee-profile-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
    }
    .homiee-profile-hero h1 {
        position: relative;
        z-index: 1;
        font-size: 26px !important;
        font-weight: 700;
        padding: 0 !important;
        text-align: center;
    }

    /* ── Profile body – no hero overlap ── */
    .homiee-profile-body {
        margin-top: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
    }

    /* ── Profile info card – flat full-width ── */
    .homiee-pcard {
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 28px 20px !important;
        flex-direction: column !important;
        gap: 0 !important;
    }

    /* ── Field rows ── */
    .homiee-pfield { margin-bottom: 28px; }

    .homiee-plabel { font-size: 13px; color: #888; font-weight: 400; }

    .homiee-pvalue { font-size: 16px; font-weight: 500; color: #111; }

    /* ── Divider between fields ── */
    .homiee-pdivider {
        display: block;
        height: 1px;
        background: #f0f0f0;
        margin-bottom: 28px;
    }

    /* ── Edit pencil – always full opacity on mobile ── */
    .homiee-pedit-btn { opacity: 1; }

    /* ── Address card – flat with top separator ── */
    .homiee-addr-card {
        border-radius: 0 !important;
        box-shadow: none !important;
        padding: 20px !important;
        border-top: 8px solid #f5f5f0 !important;
    }

    /* ── Address header – hide title, keep +Add accessible ── */
    .homiee-addr-card .homiee-addr-title { display: none; }

    /* ── Address item – blue bordered card ── */
    .homiee-addr-item {
        border: 1.5px solid #3a7fd5 !important;
        border-radius: 10px !important;
        padding: 16px !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        background: #fff !important;
        margin-bottom: 14px;
    }

    /* Name row */
    .homiee-addr-name {
        display: block;
        font-size: 15px;
        font-weight: 600;
        color: #111;
        margin-bottom: 6px;
    }

    /* Address lines */
    .homiee-addr-lines { font-size: 14px; color: #555; line-height: 1.7; }

    /* Divider */
    .homiee-addr-item-divider {
        display: block;
        height: 1px;
        background: #e8e8e8;
        width: 100%;
        margin: 12px 0;
    }

    /* Shipping badge */
    .homiee-addr-shipping-badge {
        display: flex;
        align-items: center;
        gap: 7px;
        font-size: 14px;
        font-weight: 500;
        color: #3a7fd5;
    }

    /* Hide desktop pencil on mobile */
    .homiee-addr-item .homiee-addr-edit-btn { display: none !important; }

    /* Mobile Edit / Delete buttons */
    .homiee-addr-mob-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .homiee-addr-mob-btn {
        width: 100%;
        padding: 15px;
        background: #fff;
        border: 1.5px solid #CC2A2A;
        border-radius: 8px;
        color: #CC2A2A;
        font-size: 15px;
        font-weight: 600;
        font-family: inherit;
        cursor: pointer;
        letter-spacing: 0.3px;
        transition: background 0.2s, color 0.2s;
        text-align: center;
    }
    .homiee-addr-mob-btn:hover  { background: #CC2A2A; color: #fff; }
    .homiee-addr-mob-btn:active { transform: scale(0.98); }
}

@media (max-width: 480px) {
    .homiee-profile-hero                 { height: 120px; }
    .homiee-profile-hero h1              { font-size: 22px !important; }
    .homiee-pcard                        { padding: 22px 16px !important; }
    .homiee-pvalue { font-size: 15px !important; }
}

/* New addr-item elements – desktop hidden */
.homiee-addr-name          { display: none; }
.homiee-addr-item-divider  { display: none; }
.homiee-addr-shipping-badge { display: none; }
.homiee-addr-mob-actions   { display: none; }

/* ── Address modal ── */
.homiee-addrmodal-overlay {
    position: fixed; inset: 0;
    background: rgba(80,80,80,0.45);
    backdrop-filter: blur(2px);
    z-index: 200000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.homiee-addrmodal-overlay[hidden] { display: none !important; }

/* Hero inside modal – desktop hidden, shown on mobile */
.homiee-addrmodal-hero { display: none; }
/* Body wrapper – no special desktop styles */
.homiee-addrmodal-body { }

.homiee-addrmodal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 580px;
    padding: 40px 44px 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    max-height: 92vh;
    overflow-y: auto;
    animation: homieePopIn 0.28s cubic-bezier(0.34,1.4,0.64,1);
}

.homiee-addrmodal-title {
    font-size: 22px; font-weight: 700; color: #1a1a1a;
    margin-bottom: 28px;
}

.homiee-addrform-row {
    display: flex; gap: 14px; margin-bottom: 14px;
}
.homiee-addrform-row .homiee-addrform-input { flex: 1; }

.homiee-addrform-input {
    width: 100%; padding: 14px 16px;
    border: 1.5px solid #e4e4e4; border-radius: 10px;
    font-size: 14px; font-family: inherit; color: #1a1a1a;
    outline: none; background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.homiee-addrform-input:focus { border-color: #bbb; box-shadow: 0 0 0 3px rgba(0,0,0,0.04); }
.homiee-addrform-input::placeholder { color: #c0c0c0; }
.homiee-addrform-full { display: block; margin-bottom: 14px; }

.homiee-addrform-country {
    border: 1.5px solid #e4e4e4; border-radius: 10px;
    padding: 12px 16px; margin-bottom: 14px;
}
.homiee-addrform-country-label { font-size: 11px; color: #999; display: block; margin-bottom: 2px; }
.homiee-addrform-country-value { font-size: 14px; font-weight: 600; color: #1a1a1a; }

.homiee-addrform-check-row {
    display: flex; align-items: center; gap: 10px;
    margin: 4px 0 28px;
}
.homiee-addrform-check-row input[type="checkbox"] {
    width: 16px; height: 16px; accent-color: #1a1a1a; cursor: pointer;
}
.homiee-addrform-check-row label { font-size: 14px; color: #1a1a1a; cursor: pointer; }

.homiee-addrmodal-actions {
    display: flex; align-items: center; justify-content: flex-end; gap: 20px;
}
.homiee-addrmodal-cancel {
    background: none; border: none; font-size: 15px; font-weight: 600;
    color: #1a1a1a; cursor: pointer; font-family: inherit; transition: color 0.2s;
}
.homiee-addrmodal-cancel:hover { color: #888; }

.homiee-addrmodal-save {
    background: #D62B2B; color: #fff; border: none;
    border-radius: 50px; padding: 14px 40px;
    font-size: 15px; font-weight: 700; font-family: inherit;
    cursor: pointer; transition: background 0.2s;
    display: flex; align-items: center; justify-content: center; min-width: 110px;
}
.homiee-addrmodal-save:hover { background: #b52020; }
.homiee-addrmodal-save:disabled { opacity: 0.6; cursor: not-allowed; }

@media (max-width: 640px) {
    /* Overlay becomes a plain full-screen container */
    .homiee-addrmodal-overlay {
        padding: 0;
        align-items: flex-start;
        background: #fff;
        backdrop-filter: none;
    }

    /* Modal fills the whole screen */
    .homiee-addrmodal {
        width: 100%;
        max-width: 100%;
        min-height: 100vh;
        max-height: none;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        animation: none;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    /* Hero banner */
    .homiee-addrmodal-hero {
        display: flex;
        position: relative;
        width: 100%;
        height: 140px;
        flex-shrink: 0;
        background: #202020 url('https://images.unsplash.com/photo-1567620905732-2d1ec7ab7445?w=1400&q=80') center / cover no-repeat;
        align-items: center;
        justify-content: center;
    }
    .homiee-addrmodal-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
    }
    .homiee-addrmodal-hero h1 {
        position: relative;
        z-index: 1;
        color: #fff;
        font-size: 26px;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin: 0;
        font-family: inherit;
    }

    /* Form body padding */
    .homiee-addrmodal-body {
        flex: 1;
        padding: 24px 20px 36px;
    }

    /* Section title */
    .homiee-addrmodal-title {
        font-size: 16px;
        font-weight: 700;
        color: #111;
        margin-bottom: 16px;
    }

    /* Single-column rows */
    .homiee-addrform-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }

    /* Input fields */
    .homiee-addrform-input {
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 13px 14px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    .homiee-addrform-input:focus { border-color: #CC2A2A; box-shadow: none; }
    .homiee-addrform-full { margin-bottom: 10px; }

    /* Country box */
    .homiee-addrform-country {
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 10px 14px;
        margin-bottom: 10px;
    }

    /* Checkbox row */
    .homiee-addrform-check-row { margin: 4px 0 22px; gap: 10px; }

    /* Actions: Save full-width, Cancel below */
    .homiee-addrmodal-actions {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 10px;
        justify-content: flex-start;
    }

    /* Save – outlined red on mobile */
    .homiee-addrmodal-save {
        width: 100%;
        background: #fff !important;
        border: 1.5px solid #CC2A2A !important;
        color: #CC2A2A !important;
        border-radius: 8px !important;
        padding: 15px !important;
        font-size: 15px !important;
        min-width: 0 !important;
        letter-spacing: 0.3px;
    }
    .homiee-addrmodal-save:hover {
        background: #CC2A2A !important;
        color: #fff !important;
    }

    /* Cancel – plain centred text */
    .homiee-addrmodal-cancel {
        width: 100%;
        text-align: center;
        color: #888;
        font-size: 14px;
        font-weight: 400;
    }
}

@media (max-width: 480px) {
    .homiee-addrmodal-hero    { height: 120px; }
    .homiee-addrmodal-hero h1 { font-size: 22px; }
    .homiee-addrmodal-body    { padding: 20px 16px 32px; }
    .homiee-addrform-input    { padding: 12px 12px; }
}

/* WooCommerce notice colours handled via wp_footer inline style (overrides Astra dynamic CSS) */

/* ── Edit Profile modal ── */
.homiee-editmodal-overlay {
    position: fixed; inset: 0;
    background: rgba(80,80,80,0.45);
    backdrop-filter: blur(2px);
    z-index: 200000;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.homiee-editmodal-overlay[hidden] { display: none !important; }

/* Hero inside edit modal – desktop hidden, shown on mobile */
.homiee-editmodal-hero { display: none; }
/* Body wrapper */
.homiee-editmodal-body { }

.homiee-editmodal {
    background: #fff; border-radius: 20px;
    width: 100%; max-width: 580px;
    padding: 40px 44px 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    animation: homieePopIn 0.28s cubic-bezier(0.34,1.4,0.64,1);
}
.homiee-editmodal-title {
    font-size: 22px; font-weight: 700; color: #1a1a1a; margin-bottom: 28px;
}
.homiee-editform-row {
    display: flex; gap: 14px; margin-bottom: 14px;
}
.homiee-editform-input {
    flex: 1; width: 100%; padding: 14px 16px;
    border: 1.5px solid #e4e4e4; border-radius: 10px;
    font-size: 14px; font-family: inherit; color: #1a1a1a;
    outline: none; background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.homiee-editform-input:focus { border-color: #bbb; box-shadow: 0 0 0 3px rgba(0,0,0,0.04); }
.homiee-editform-input::placeholder { color: #c0c0c0; }

.homiee-editmodal-emailbox {
    border: 1.5px solid #e4e4e4; border-radius: 10px;
    padding: 12px 16px; margin-bottom: 8px; background: #fafafa;
}
.homiee-editmodal-email-label {
    font-size: 11px; color: #999; display: block; margin-bottom: 3px;
}
.homiee-editmodal-email-value { font-size: 14px; font-weight: 500; color: #1a1a1a; }

.homiee-editmodal-note {
    font-size: 13px; color: #999; margin-bottom: 28px; line-height: 1.5;
}
.homiee-editmodal-actions {
    display: flex; align-items: center; justify-content: flex-end; gap: 20px;
}
.homiee-editmodal-cancel {
    background: none !important; border: none !important; box-shadow: none !important;
    font-size: 15px; font-weight: 600; color: #1a1a1a;
    cursor: pointer; font-family: inherit; transition: color 0.2s; padding: 0;
}
.homiee-editmodal-cancel:hover { color: #888; }
.homiee-editmodal-save {
    background: #D62B2B !important; color: #fff; border: none !important;
    border-radius: 50px; padding: 14px 40px;
    font-size: 15px; font-weight: 700; font-family: inherit;
    cursor: pointer; transition: background 0.2s;
    display: flex; align-items: center; justify-content: center; min-width: 100px;
}
.homiee-editmodal-save:hover { background: #b52020 !important; }
.homiee-editmodal-save:disabled { opacity: 0.6; cursor: not-allowed; }

@media (max-width: 640px) {
    /* Overlay: plain full-screen container */
    .homiee-editmodal-overlay {
        padding: 0;
        align-items: flex-start;
        background: #fff;
        backdrop-filter: none;
    }

    /* Modal fills the whole screen */
    .homiee-editmodal {
        width: 100%;
        max-width: 100%;
        min-height: 100vh;
        max-height: none;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        animation: none;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    /* Hero banner */
    .homiee-editmodal-hero {
        display: flex;
        position: relative;
        width: 100%;
        height: 140px;
        flex-shrink: 0;
        background: #202020 url('https://images.unsplash.com/photo-1567620905732-2d1ec7ab7445?w=1400&q=80') center / cover no-repeat;
        align-items: center;
        justify-content: center;
    }
    .homiee-editmodal-hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
    }
    .homiee-editmodal-hero h1 {
        position: relative;
        z-index: 1;
        color: #fff;
        font-size: 26px;
        font-weight: 700;
        letter-spacing: 0.5px;
        margin: 0;
        font-family: inherit;
    }

    /* Form body */
    .homiee-editmodal-body {
        flex: 1;
        padding: 24px 20px 36px;
    }

    /* Section title */
    .homiee-editmodal-title {
        font-size: 16px;
        font-weight: 700;
        color: #111;
        margin-bottom: 16px;
    }

    /* Single-column first/last name row */
    .homiee-editform-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }

    /* Inputs */
    .homiee-editform-input {
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 13px 14px;
        margin-bottom: 10px;
    }
    .homiee-editform-input:focus { border-color: #CC2A2A; box-shadow: none; }

    /* Email box */
    .homiee-editmodal-emailbox {
        border: 1px solid #ddd;
        border-radius: 8px;
        padding: 10px 14px 12px;
        margin-bottom: 20px;
        background: #fff;
    }
    .homiee-editmodal-email-label { font-size: 11px; color: #888; }

    /* Hide the note on mobile */
    .homiee-editmodal-note { display: none; }

    /* Actions: Save full-width, Cancel below */
    .homiee-editmodal-actions {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 10px;
        justify-content: flex-start;
    }

    /* Save – outlined red on mobile */
    .homiee-editmodal-save {
        width: 100%;
        background: #fff !important;
        border: 1.5px solid #CC2A2A !important;
        color: #CC2A2A !important;
        border-radius: 8px !important;
        padding: 15px !important;
        font-size: 15px !important;
        min-width: 0 !important;
        letter-spacing: 0.3px;
    }
    .homiee-editmodal-save:hover {
        background: #CC2A2A !important;
        color: #fff !important;
    }

    /* Cancel – plain centred text */
    .homiee-editmodal-cancel {
        width: 100%;
        text-align: center;
        color: #888;
        font-size: 14px;
        font-weight: 400;
    }
}

@media (max-width: 480px) {
    .homiee-editmodal-hero    { height: 120px; }
    .homiee-editmodal-hero h1 { font-size: 22px; }
    .homiee-editmodal-body    { padding: 20px 16px 32px; }
    .homiee-editform-input    { padding: 12px; }
}

/* ── Account pages: kill WC nav float globally (nav removed from template) ── */
.woocommerce-account .woocommerce-MyAccount-navigation { display: none !important; }
.woocommerce-account .woocommerce-MyAccount-content {
    float: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
}
.woocommerce-account h1.entry-title,
.woocommerce-account .ast-page-title-wrap,
.woocommerce-account .woocommerce-breadcrumb { display: none !important; }

/* ── Settings Page ─────────────────────────────────────────────────────────── */
body.homiee-settings-page .woocommerce { padding: 0 !important; margin: 0 !important; max-width: 100% !important; width: 100% !important; }
body.homiee-settings-page #content .ast-container { padding: 0 !important; max-width: 100% !important; width: 100% !important; }
body.homiee-settings-page .site-content,
body.homiee-settings-page #content { padding: 0 !important; }
body.homiee-settings-page .entry-content { padding: 0 !important; margin: 0 !important; }
body.homiee-settings-page #primary { padding: 0 !important; margin: 0 !important; max-width: 100% !important; width: 100% !important; }
body.homiee-settings-page .ast-page-title-wrap { display: none !important; }

.homiee-settings-hero {
    width: 100%;
    height: 191px;
    background:
        #202020 url('https://images.unsplash.com/photo-1567620905732-2d1ec7ab7445?w=1400&q=80')
        center left / cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0;
}
.homiee-settings-hero h1 {
    font-size: 30px; font-weight: 600;
    color: #fff;
    margin: 0; padding: 0 0 20px 100px;
    font-family: var(--font-body);
    text-transform: capitalize;
}

.homiee-settings-body {
    max-width: 960px;
    margin: -28px auto 0;
    padding: 0 32px 60px;
    position: relative;
    z-index: 10;
}

.homiee-settings-card {
    background: #fff;
    border: 1px solid #e8e8e6;
    border-radius: 14px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}

.homiee-settings-card-left {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.homiee-settings-icon-wrap {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: #f5f5f3;
    border: 1px solid #e8e8e6;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.homiee-settings-icon-wrap svg {
    width: 20px; height: 20px;
    stroke: #444; fill: none;
    stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}

.homiee-settings-card-text h3 {
    font-size: 15px; font-weight: 600;
    color: #1a1a1a; margin-bottom: 5px;
}
.homiee-settings-card-text p {
    font-size: 13px; color: #777;
    line-height: 1.55; max-width: 440px; margin: 0;
}

.homiee-settings-signout-btn {
    background: #fff;
    border: 1.5px solid #d0d0ce;
    border-radius: 9px;
    padding: 9px 22px;
    font-size: 14px; font-weight: 500;
    color: #1a1a1a; cursor: pointer;
    white-space: nowrap; font-family: inherit;
    transition: background 0.15s, border-color 0.15s, transform 0.1s;
}
.homiee-settings-signout-btn:hover { background: #f5f5f3; border-color: #bbb; }
.homiee-settings-signout-btn:active { transform: scale(0.97); }
.homiee-settings-signout-btn.loading { color: #999; pointer-events: none; }

.homiee-settings-toast {
    position: fixed;
    bottom: 32px; left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #1a1a1a; color: #fff;
    font-size: 13px; font-weight: 500;
    padding: 10px 20px;
    border-radius: 99px;
    opacity: 0;
    transition: opacity 0.25s, transform 0.25s;
    pointer-events: none; white-space: nowrap;
    z-index: 99999;
}
.homiee-settings-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

@media (max-width: 640px) {
    .homiee-settings-body { padding: 0 16px 40px; }
    .homiee-settings-card { flex-direction: column; align-items: flex-start; }
    .homiee-settings-signout-btn { width: 100%; text-align: center; }
}

/* ════════════════════════════════════════════════════════════════
   GLOBAL FOOTER
   ════════════════════════════════════════════════════════════════ */

.homiee-footer {
    background: #111111;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-body);
}

.homiee-footer-inner {
    display: flex;
    gap: 48px;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 48px 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Brand column */
.homiee-footer-brand {
    flex: 0 0 220px;
}

.homiee-footer-logo {
    height: 38px;
    width: auto;
    display: block;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.homiee-footer-tagline {
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 14px;
    color: rgba(255,255,255,0.55);
}

.homiee-footer-contact {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(255,255,255,0.4);
}
.homiee-footer-contact a {
    color: inherit;
    text-decoration: none;
}
.homiee-footer-contact a:hover { text-decoration: underline; }

/* Link columns */
.homiee-footer-col {
    flex: 1;
    min-width: 120px;
}

.homiee-footer-col-title {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

.homiee-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.homiee-footer-col ul li {
    margin-bottom: 12px;
}

.homiee-footer-col ul li a {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: color 0.2s;
}

.homiee-footer-col ul li a:hover { color: var(--red); }

/* Social icons */
.homiee-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.homiee-footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
    flex-shrink: 0;
}

.homiee-footer-social-link:hover { background: var(--red); color: #fff; }

.homiee-footer-social-link svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    display: block;
}

/* Bottom bar */
.homiee-footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 48px 22px;
    font-size: 12px;
    color: rgba(255,255,255,0.28);
}

/* Extra padding on product pages so sticky bar doesn't overlap footer */
body.single-product .homiee-footer-inner,
body.single-product .homiee-footer-bottom { padding-bottom: 56px; }

/* Responsive */
@media (max-width: 900px) {
    .homiee-footer-inner {
        flex-wrap: wrap;
        gap: 36px;
        padding: 40px 24px 36px;
    }
    .homiee-footer-brand { flex: 0 0 100%; }
    .homiee-footer-col   { flex: 0 0 calc(50% - 18px); }
    .homiee-footer-bottom { padding: 16px 24px 20px; }
}

@media (max-width: 480px) {
    .homiee-footer-col { flex: 0 0 100%; }
}

/* ══════════════════════════════════════════════════════════════
   GLOBAL MOBILE RESPONSIVE
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

    /* ── Single product: gallery full-width ── */
    .woocommerce div.product div.images,
    .woocommerce div.product .woocommerce-product-gallery {
        max-width: 100% !important;
        width: 100% !important;
        float: none !important;
    }

    /* ── Single product – mobile layout ── */
    .homiee-sp-mob-hero { display: block !important; position: relative !important; height: 160px !important; background-color: #1a1a1a !important; background-size: cover !important; background-position: center !important; overflow: hidden !important; }
    .homiee-sp-mob-hero::after { content: '' !important; position: absolute !important; inset: 0 !important; background: #1a1a1a !important; opacity: 0.55 !important; }
    .homiee-sp-mob-hero-title { position: relative !important; z-index: 1 !important; color: #fff !important; font-size: 26px !important; font-weight: 700 !important; text-align: center !important; padding-top: 60px !important; margin: 0 !important; font-family: var(--font-body) !important; }
    .single-product .woocommerce-product-gallery { display: none !important; }
    .homiee-gallery-dots { display: none !important; }
    .homiee-sp-mob-img-wrap { display: flex !important; justify-content: center !important; margin-bottom: 20px !important; }
    .homiee-sp-mob-img { width: 190px !important; height: 190px !important; border-radius: 50% !important; object-fit: cover !important; display: block !important; }
    .homiee-product-card { background: none !important; border-radius: 0 !important; padding: 24px 20px 0 !important; gap: 0 !important; }
    .homiee-product-card-top { flex-direction: column !important; gap: 0 !important; }
    .homiee-product-info { width: 100% !important; }
    .homiee-product-name { font-size: 18px !important; font-weight: 700 !important; color: #111 !important; margin: 0 0 3px !important; font-family: var(--font-body) !important; }
    .homiee-product-subtitle { font-size: 12.5px !important; color: #444 !important; line-height: 1.7 !important; margin: 0 !important; }
    .homiee-product-subtitle:last-of-type { margin-bottom: 10px !important; }
    .homiee-mrp-label { display: none !important; }
    .homiee-price-from { display: inline !important; font-size: 15px !important; font-weight: 400 !important; color: #111 !important; }
    .homiee-price { font-size: 15px !important; font-weight: 400 !important; color: #111 !important; margin-bottom: 20px !important; display: block !important; }
    .homiee-price .price { font-size: 15px !important; font-weight: 400 !important; display: inline !important; }
    .homiee-price .woocommerce-Price-amount { font-size: 20px !important; font-weight: 700 !important; display: inline !important; }
    .homiee-product-features { flex: none !important; width: 100% !important; padding-top: 0 !important; margin-bottom: 0 !important; }
    .homiee-feature-item { font-size: 14px !important; color: #111 !important; gap: 10px !important; padding: 7px 0 !important; margin-bottom: 0 !important; }
    .homiee-inclusive-note { font-size: 12.5px !important; color: #888 !important; text-align: left !important; line-height: 1.6 !important; margin-bottom: 20px !important; }
    .homiee-product-card-bottom { align-items: stretch !important; }
    .homiee-add-to-cart-btn,
    .homiee-product-card-bottom .single_add_to_cart_button,
    .homiee-product-card-bottom button[type="submit"] { max-width: 100% !important; width: 100% !important; padding: 14px !important; font-size: 15px !important; font-weight: 600 !important; margin-bottom: 28px !important; }
    .woocommerce div.product div.summary.entry-summary { padding: 0 !important; margin: 0 !important; }

    /* ── Section headings ── */
    .homiee-section-heading { font-size: 22px !important; }
    .homiee-description-section .homiee-section-heading { font-size: 24px !important; }

    /* ── Feedback section – mobile layout ── */
    .homiee-feedback-section .homiee-section-heading { display: none !important; }
    .homiee-feedback-section { border-top: 1px solid #f0f0f0 !important; }
    .homiee-feedback-card { border: none !important; border-radius: 0 !important; padding: 24px 20px 28px !important; box-shadow: none !important; }
    .homiee-feedback-question { font-size: 13.5px !important; color: #555 !important; margin-bottom: 16px !important; }
    .homiee-emoji-row { justify-content: space-between !important; gap: 0 !important; margin-bottom: 22px !important; }
    .homiee-emoji-btn { width: 44px !important; height: 44px !important; font-size: 22px !important; border: 1.5px solid #ddd !important; }
    .homiee-feedback-more-label { font-size: 13.5px !important; font-weight: 500 !important; color: #111 !important; margin-bottom: 8px !important; }
    .homiee-feedback-form textarea { border: 1.5px solid #e0e0e0 !important; border-radius: 6px !important; font-size: 13px !important; }
    .homiee-feedback-actions { flex-direction: column !important; gap: 10px !important; margin-top: 16px !important; }
    .homiee-btn-cancel { display: none !important; }
    .homiee-btn-submit { width: 100% !important; padding: 14px !important; font-size: 15px !important; font-weight: 600 !important; border-radius: 6px !important; }

    /* ── Product grid cards (recently viewed / suggestions) ── */
    .homiee-product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
    .homiee-thumb-body { padding: 8px 10px !important; }
    .homiee-thumb-name { font-size: 12px !important; }
    .homiee-thumb-sub { font-size: 10px !important; }
    .homiee-thumb-price { font-size: 12px !important; }
    .homiee-book-btn { font-size: 11px !important; padding: 6px 10px !important; }

    /* ── Shop page – mobile list layout ── */
    .homiee-shop-hero { height: auto !important; padding: 28px 0 24px !important; align-items: center !important; justify-content: center !important; }
    .homiee-shop-hero-title { font-size: 26px !important; font-weight: 700 !important; padding: 0 !important; text-align: center !important; width: 100% !important; }
    .homiee-shop-intro-card { flex-direction: column !important; margin: 0 !important; padding: 24px 18px 16px !important; border-radius: 0 !important; box-shadow: none !important; text-align: center !important; gap: 0 !important; }
    .homiee-shop-intro-heading { font-size: 20px !important; margin-bottom: 10px !important; }
    .homiee-shop-intro-desc { font-size: 12.5px !important; text-align: left !important; }
    .homiee-shop-filter-btn { display: none !important; }
    .homiee-shop-section { padding: 0 0 10px !important; }
    .homiee-shop-grid { display: block !important; }
    .homiee-shop-card { border: none !important; border-radius: 0 !important; box-shadow: none !important; padding: 10px 18px 0 !important; overflow: visible !important; }
    .homiee-shop-card:hover { transform: none !important; box-shadow: none !important; }
    .homiee-shop-card:not(:last-child) { border-bottom: 1px solid #f0f0f0 !important; }
    .homiee-shop-card-img-wrap { display: flex !important; justify-content: flex-start !important; margin-bottom: 10px !important; }
    .homiee-shop-card-img { width: 175px !important; height: 175px !important; aspect-ratio: unset !important; border-radius: 50% !important; }
    .homiee-shop-card-body { padding: 0 !important; }
    .homiee-shop-card-name { font-size: 17px !important; font-weight: 700 !important; color: #111 !important; margin-bottom: 1px !important; }
    .homiee-shop-card-sub { font-size: 12px !important; color: #444 !important; line-height: 1.6 !important; margin-bottom: 8px !important; }
    .homiee-shop-card-price { font-size: 15px !important; font-weight: 400 !important; color: #111 !important; margin-bottom: 10px !important; }
    .homiee-shop-card-price span { font-size: 15px !important; font-weight: 400 !important; color: #111 !important; }
    .homiee-shop-card-price strong { font-size: 18px !important; font-weight: 700 !important; }
    .homiee-shop-book-btn { padding: 13px !important; font-size: 15px !important; font-weight: 600 !important; margin-bottom: 10px !important; border-radius: 6px !important; }
    .homiee-shop-card-dots { display: flex !important; }

    /* ── Checkout hero ── */
    .homiee-co-hero { height: 140px !important; }
    .homiee-co-hero-title {
        font-size: 24px !important;
        padding: 0 0 16px 24px !important;
    }
    .homiee-co-hero-card { margin: 0 16px !important; }
    .homiee-co-layout { flex-direction: column !important; padding: 0 16px !important; margin: 24px auto 40px !important; }
    .homiee-co-summary { flex: none !important; width: 100% !important; }

    /* ── Gallery dots ── */
    .homiee-gallery-dots { gap: 6px !important; margin: 8px 0 !important; }
    .homiee-gdot { width: 8px !important; height: 8px !important; }

    /* ── Sticky bar ── */
    .homiee-sticky-bar { flex-direction: column !important; height: auto !important; }
    .homiee-sticky-book-now { width: 100% !important; min-width: unset !important; padding: 10px 16px !important; }
    .homiee-sticky-categories { width: 100% !important; }

    /* ── Summary entry wrapper ── */
    .woocommerce div.product div.summary.entry-summary {
        padding: 0 16px !important;
        margin: 0 auto 40px !important;
    }
}

@media (max-width: 480px) {

    /* ── Nav ── */
    #homiee-navbar { padding: 0 12px !important; }

    /* ── Shop grid: keep single-column list on small phones ── */
    .homiee-shop-grid { display: block !important; }
    .homiee-shop-card-body { padding: 0 !important; }

    /* ── Product grid: 2 columns ── */
    .homiee-product-grid { grid-template-columns: repeat(2, 1fr) !important; }

    /* ── Product card: keep mobile layout on small phones ── */
    .homiee-product-card { padding: 20px 16px 0 !important; }
    .homiee-product-name { font-size: 18px !important; }

    /* ── Two-col checkout fields stack to 1 ── */
    .homiee-co-row-two { flex-direction: column !important; gap: 0 !important; }

    /* ── Feedback ── */
    .homiee-btn { width: 100% !important; }

    /* ── Section/grid padding ── */
    .homiee-section,
    .homiee-grid-section { padding: 0 12px !important; }
}


/* ═══════════════════════════════════════════════════════════════
   POLICY PAGES  (page-policy.php template)
   ═══════════════════════════════════════════════════════════════ */

body.homiee-policy-page {
    background: #f9f9f7;
}
body.homiee-policy-page #page {
    margin-top: 64px !important;
}

/* ── Hero banner ── */
.homiee-policy-hero {
    width: 100%;
    min-height: 180px;
    background:
        #202020 url('https://images.unsplash.com/photo-1567620905732-2d1ec7ab7445?w=1400&q=80')
        center center / cover no-repeat;
    display: flex;
    align-items: flex-end;
}
.homiee-policy-hero-inner {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 0 40px 28px;
}
.homiee-policy-hero-inner h1 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: var(--font-body);
    letter-spacing: -0.3px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ── Content wrapper ── */
.homiee-policy-content {
    padding: 48px 24px 80px;
}
.homiee-policy-body {
    max-width: 820px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 16px;
    padding: 48px 52px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

/* ── Typography inside policy body ── */
.homiee-policy-body h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 36px 0 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0ee;
    font-family: var(--font-body);
    letter-spacing: -0.2px;
}
.homiee-policy-body h2:first-child { margin-top: 0; }

.homiee-policy-body h3 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 24px 0 8px;
    font-family: var(--font-body);
}

.homiee-policy-body p {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    margin: 0 0 14px;
}

.homiee-policy-body ul,
.homiee-policy-body ol {
    margin: 0 0 16px 0;
    padding-left: 24px;
}
.homiee-policy-body ul li,
.homiee-policy-body ol li {
    font-size: 15px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 6px;
}
.homiee-policy-body ul li::marker { color: #D62B2B; }
.homiee-policy-body ol li::marker { color: #D62B2B; font-weight: 600; }

.homiee-policy-body strong { color: #1a1a1a; font-weight: 600; }

.homiee-policy-body a {
    color: #D62B2B;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.homiee-policy-body a:hover { color: #a81f1f; }

.homiee-policy-body hr {
    border: none;
    border-top: 1px solid #f0f0ee;
    margin: 32px 0;
}

/* Last updated line */
.homiee-policy-updated {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 32px;
}

/* ── Admin bar adjustment ── */
.admin-bar .homiee-policy-hero { margin-top: 0; }
.admin-bar body.homiee-policy-page #page { margin-top: 96px !important; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .homiee-policy-hero { min-height: 140px; align-items: flex-end; }
    .homiee-policy-hero-inner { padding: 0 24px 22px; }
    .homiee-policy-hero-inner h1 { font-size: 26px; }
    .homiee-policy-content { padding: 24px 16px 60px; }
    .homiee-policy-body { padding: 32px 24px; border-radius: 12px; }
    .homiee-policy-body h2 { font-size: 18px; margin-top: 28px; }
}

@media (max-width: 480px) {
    .homiee-policy-hero-inner h1 { font-size: 22px; }
    .homiee-policy-body { padding: 24px 18px; }
    .homiee-policy-body h2 { font-size: 17px; }
    .homiee-policy-body p,
    .homiee-policy-body li { font-size: 14px; }
}
