/* ═══════════════════════════════════════════
   Mummy & Me Boutique – Complete Theme CSS
   ═══════════════════════════════════════════ */

/* ─── Tokens ─── */
:root {
    /* Baby Pink Palette */
    --bg-body: #FFF0F5;
    /* Lavender Blush */
    --bg-soft: #FFE4E1;
    /* Misty Rose */
    --bg-card: #FFFFFF;

    --text-main: #5D4037;
    /* Warm Soft Brown */
    --text-light: #8D6E63;
    /* Lighter Brown */

    --accent: #FFB6C1;
    /* Light Pink */
    --accent-hover: #FF69B4;
    /* Hot Pink */

    --border: #F8BBD0;
    /* Soft Pink Border */

    /* Typography */
    --font-head: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Shapes */
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 40px;
    --radius-xl: 60px;

    /* Spacing */
    --gutter: 20px;
    --section-gap: 120px;

    /* Shadows */
    --shadow-soft: 0 10px 40px rgba(255, 182, 193, 0.15);
    /* Pink-tinted shadow */
}

html {
    overflow-x: hidden;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
}

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

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

.site-main {
    overflow-x: hidden;
    width: 100%;
}

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

ul {
    list-style: none;
}

/* ─── Typography ─── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-head);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 1.5rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.display-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.italic-serif {
    font-style: italic;
    font-family: var(--font-head);
    font-weight: 400;
}

.eyebrow {
    text-transform: uppercase;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 1rem;
    display: block;
    font-weight: 600;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ─── Layout ─── */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 4%;
    padding-right: 4%;
    box-sizing: border-box;
}

.content-narrow {
    max-width: 760px;
}

.section {
    padding: 80px 0;
}

.section--alt {
    background: var(--cream);
}

.section-head {
    text-align: center;
    margin-bottom: 48px;
}

.section-head h2 {
    margin-bottom: 10px;
}

.section-head p {
    color: var(--ink-soft);
    max-width: 540px;
    margin: 0 auto;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none;
    border: 1px solid transparent;
}

.btn:active {
    transform: scale(0.98);
}

.btn--pill {
    background-color: var(--text-main);
    color: var(--bg-body);
    border-radius: 99px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn--pill:hover {
    background-color: var(--accent);
    color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(234, 210, 172, 0.4);
}

.btn--primary {
    background: var(--text-main);
    color: var(--bg-body);
}

.btn--primary:hover {
    background: var(--accent);
    color: var(--text-main);
}

.btn--outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--text-main);
}

.btn--outline:hover {
    background: var(--text-main);
    color: var(--bg-body);
    border-color: var(--text-main);
}

.btn--sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ═══ TOP BAR ═══ */
.top-bar {
    background: var(--text-main);
    color: var(--bg-body);
    font-size: 0.8rem;
    letter-spacing: 0.02em;
    overflow: hidden;
    width: 100%;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: 16px;
    flex-wrap: wrap;
    min-width: 0;
}

.top-bar-left {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    min-width: 0;
}

.top-bar-right {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}

.top-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--bg-body);
    opacity: 0.9;
    transition: opacity 0.2s;
    font-weight: 500;
}

.top-bar-link:hover {
    opacity: 1;
    color: var(--accent);
}

.top-bar-link svg {
    flex-shrink: 0;
}

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

.top-bar-social .social-icon {
    display: inline-flex;
}

.top-bar-social .social-icon svg {
    width: 16px;
    height: 16px;
}

.footer-social-icon {
    display: inline-flex;
    color: var(--text-light);
}

.footer-social-icon:hover {
    color: var(--accent-hover);
}

.footer-social-icon svg {
    width: 22px;
    height: 22px;
}

/* ═══ HEADER ═══ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
    width: 100%;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 80px;
}

.site-branding {
    flex-shrink: 0;
}

.custom-logo-link {
    text-decoration: none;
    display: block;
}

.custom-logo-link img {
    height: 72px;
    width: auto;
    max-width: 280px;
    display: block;
    object-fit: contain;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 16px;
}

/* ─── Navigation ─── */
.primary-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.primary-nav .menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.primary-nav .menu li {
    list-style: none;
}

.primary-nav .menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    position: relative;
    white-space: nowrap;
}

.primary-nav .menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.primary-nav .menu a:hover::after {
    width: 100%;
}

/* ─── Header Actions (cart, shop, hamburger) ─── */
.header-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}

.header-cart {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text-main);
    transition: color 0.2s;
}

.header-cart:hover {
    color: var(--accent-hover);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    font-size: 0.65rem;
    font-weight: 700;
    background: var(--accent-hover);
    color: #fff;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ─── Hamburger ─── */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile menu open state */
.menu-toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══ HERO (Lumi Skin) ═══ */
.hero-lumi {
    padding: 40px 0 60px;
    /* Reduced from 60px 0 100px */
    background: linear-gradient(180deg, var(--bg-soft) 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    /* Reduced from 80px */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 400px;
}

.hero-visual {
    position: relative;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-xl);
    /* Big round corners */
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.hero-image-card img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.7s ease;
}

.hero-image-card:hover img {
    transform: scale(1.03);
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    right: -20px;
    background: var(--bg-card);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.badge-text {
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 991px) {
    .display-title {
        font-size: 3.5rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-top: 40px;
    }

    .hero-desc {
        margin: 0 auto 2rem;
    }

    .hero-image-card img {
        height: 400px;
    }
}

/* ═══ TRUST BAR ═══ */
.trust-bar {
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
    padding: 24px 0;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 48px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-row span {
    position: relative;
    padding-left: 0;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.trust-row span:hover {
    opacity: 1;
}

/* ═══ SECTIONS ═══ */
.section {
    padding: 100px 0;
}

.section--alt {
    background: var(--bg-soft);
}

.section-head {
    text-align: center;
    margin-bottom: 64px;
}

.section-head h2 {
    margin-bottom: 16px;
}

.section-head p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ═══ CARDS (category grid) ═══ */
.card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Homepage categories: fluid tile count from front-page.php */
.card-row--cats {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.card-row--cats .card {
    grid-column: span var(--mm-cat-span, 4);
}

.card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    border: 1px solid var(--border);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--accent);
}

.card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.card:hover img {
    transform: scale(1.05);
}

.card-body {
    padding: 32px;
    text-align: center;
    background: var(--bg-card);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-body h3 {
    margin-bottom: 8px;
    font-size: 1.5rem;
    color: var(--text-main);
}

.card-body p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

/* ═══ SPLIT SECTION ═══ */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-grid--reverse .split-img {
    order: -1;
}

.split-copy h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.split-copy p {
    margin-bottom: 32px;
    font-size: 1.1rem;
    color: var(--text-light);
}

.split-img img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
    object-position: top center;
}

/* ═══ TESTIMONIALS ═══ */
.testimonial {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 48px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border);
}

.testimonial p {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 24px;
    color: var(--text-main);
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--accent-hover);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
}

/* ═══ CTA BAND ═══ */
.cta-band {
    background: var(--text-main);
    color: var(--bg-body);
    text-align: center;
    padding: 80px 0;
}

.cta-inner h2 {
    color: var(--bg-body);
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 540px;
    margin: 0 auto 32px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn--white {
    background: var(--bg-body);
    color: var(--text-main);
    border-radius: 99px;
}

.btn--white:hover {
    background: var(--accent);
    color: var(--text-main);
    transform: translateY(-2px);
}

.btn--outline-white {
    background: transparent;
    color: var(--bg-body);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 99px;
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

/* Card row 2-column variant */
.card-row--2 {
    grid-template-columns: repeat(2, 1fr);
}

/* Testimonial blocks */
.testimonial {
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    padding: 32px;
    border: 1px solid var(--border);
    margin: 0;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ─── 404 Page ─── */
.error-404-page {
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.error-404-content {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.error-404-content .lead {
    margin-bottom: 24px;
}

/* ═══ PAGE HERO ═══ */
.page-hero {
    background: var(--bg-soft);
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
}

.page-hero h1 {
    margin-bottom: 12px;
    color: var(--text-main);
}

.page-hero .lead {
    color: var(--text-light);
    max-width: 540px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Page hero with optional banner image */
.page-hero--has-image {
    padding: 0 0 40px;
}

.page-hero__image {
    width: 100%;
    max-height: 320px;
    overflow: hidden;
    margin-bottom: 32px;
}

.page-hero__image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

/* ═══ CONTACT ═══ */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.contact-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-list strong {
    font-weight: 600;
    min-width: 80px;
    color: var(--text-main);
}

.info-card {
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    padding: 32px;
    margin-bottom: 24px;
    border: 1px solid var(--border);
}

.info-card h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.info-card p {
    color: var(--text-light);
    margin: 0;
}

.form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-main);
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: var(--bg-body);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(234, 210, 172, 0.2);
}

.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert--ok {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.alert--warn {
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fde68a;
}

/* ═══ FOOTER ═══ */
.site-footer {
    background: var(--bg-soft);
    color: var(--text-light);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 40px;
}

.site-footer h3,
.site-footer h4 {
    color: var(--text-main);
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-about p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--text-main);
    text-decoration: underline;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-social a {
    color: var(--text-light);
    font-size: 0.9rem;
}

.footer-social a:hover {
    color: var(--accent-hover);
}

.footer-logo-link {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo-link img {
    height: 48px;
    width: auto;
    display: block;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    border-radius: 50px;
    border: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--bg-body);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════════
   WOOCOMMERCE OVERRIDES (Lumi Skin)
   ═══════════════════════════════════════════ */

/* ─── Shop toolbar ─── */
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
    float: none !important;
    margin: 0 0 16px !important;
}

.woocommerce .woocommerce-result-count {
    color: var(--text-light);
    font-size: 0.9rem;
}

.woocommerce .woocommerce-ordering select {
    padding: 12px 18px;
    border-radius: 50px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-main);
    cursor: pointer;
}

.woocommerce-page .woocommerce-notices-wrapper {
    margin-bottom: 32px;
}

/* ═══ SHOP PAGE LAYOUT & FILTERS ═══ */
body.mummy-shop-page .section .container {
    max-width: 1400px;
}

.shop-page .container,
.shop-page--shortcode {
    max-width: 1400px;
}

.shop-page--shortcode {
    width: 100%;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

.shop-sidebar {
    position: sticky;
    top: 140px;
}

.shop-main__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.shop-result-count,
.woocommerce-result-count {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.shop-products-wrap {
    position: relative;
    min-height: 200px;
}

.shop-products-wrap.is-loading {
    pointer-events: none;
    opacity: 0.6;
}

.shop-products-wrap.is-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid var(--border);
    border-top-color: var(--accent-hover);
    border-radius: 50%;
    animation: mummy-spin 0.8s linear infinite;
}

@keyframes mummy-spin {
    to { transform: rotate(360deg); }
}

.shop-pagination {
    margin-top: 48px;
}

.woocommerce-pagination {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.woocommerce-pagination ul.page-numbers {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.woocommerce-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    font-weight: 500;
    color: var(--text-main);
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.2s;
}

.woocommerce-pagination .page-numbers:hover,
.woocommerce-pagination .page-numbers.current {
    background: var(--text-main);
    color: var(--bg-body);
    border-color: var(--text-main);
}

/* ─── Category bar (horizontal, prominent) ─── */
.shop-filter-category-bar {
    margin-bottom: 24px;
}

.shop-filter-category-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 12px;
}

.shop-filter-category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.shop-filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: 99px;
    background: var(--bg-card);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.2s;
}

.shop-filter-pill input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.shop-filter-pill:hover {
    border-color: var(--accent);
}

.shop-filter-pill.is-selected {
    background: var(--text-main);
    color: var(--bg-body);
    border-color: var(--text-main);
}

/* ─── Filter box ─── */
.shop-filters {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.shop-filters__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.shop-filters__title {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-main);
}

.shop-filters__toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.shop-filters__toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-main);
    margin: 3px 0;
    border-radius: 2px;
}

.shop-filters__body {
    padding: 24px;
}

.shop-filter-group {
    margin-bottom: 28px;
}

.shop-filter-group:last-child {
    margin-bottom: 0;
}

.shop-filter-group__title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin: 0 0 14px;
}

.shop-filter-group__options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.shop-filter-option {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-main);
}

.shop-filter-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.shop-filter-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border: 2px solid var(--border);
    border-radius: 4px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-filter-option input:checked + .shop-filter-check {
    background: var(--text-main);
    border-color: var(--text-main);
}

.shop-filter-option input:checked + .shop-filter-check::before {
    content: '✓';
    color: var(--bg-body);
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
}

/* Color swatch in filter */
.shop-filter-option--color {
    flex-wrap: wrap;
}

.shop-filter-color {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.shop-filter-option--color.is-selected .shop-filter-color,
.shop-filter-option--color input:checked ~ .shop-filter-color {
    box-shadow: 0 0 0 2px var(--bg-body), 0 0 0 4px var(--text-main);
}

.shop-filter-color-label {
    flex: 1;
}

.shop-filters__footer {
    display: flex;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-soft);
}

.shop-filters__apply {
    flex: 1;
}

.shop-filters__clear {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 16px;
}

.shop-filters__clear:hover {
    color: var(--text-main);
}

/* ─── Product grid ─── */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)) !important;
    gap: 32px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
}

/* ─── Product card ─── */
.woocommerce ul.products li.product,
.woocommerce ul.products li.product-card {
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: var(--bg-card);
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    display: flex;
    flex-direction: column;
    position: relative;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    border-color: var(--accent) !important;
}

/* Product card link */
.woocommerce ul.products .product-card__link {
    display: block;
    color: inherit;
    text-decoration: none;
    flex: 1;
}

/* Product card image */
.woocommerce ul.products li.product img,
.woocommerce ul.products .product-card__img img {
    width: 100% !important;
    height: 450px !important;
    /* Taller for full body shots */
    object-fit: cover !important;
    object-position: top !important;
    /* Strictly top alignment */
    border-radius: 0 !important;
    margin: 0 !important;
    background: var(--bg-soft);
}

/* Product card body */
.product-card__body {
    padding: 20px 24px;
    text-align: center;
}

/* Product title */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.product-card__title {
    font-family: var(--font-head) !important;
    font-size: 1.1rem !important;
    font-weight: 500;
    line-height: 1.3;
    margin: 0 0 8px !important;
    padding: 0 !important;
    color: var(--text-main);
}

/* Product price */
.woocommerce ul.products li.product .price,
.product-card__price {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 0 !important;
    padding: 0 !important;
}

.woocommerce ul.products li.product .price del {
    opacity: .5;
    margin-right: 6px;
    font-weight: 400;
}

.woocommerce ul.products li.product .price ins {
    text-decoration: none;
    color: var(--text-main);
}

/* Add-to-cart button in grid */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product a.add_to_cart_button,
.woocommerce ul.products li.product a.product_type_simple {
    display: block !important;
    width: calc(100% - 40px) !important;
    margin: 0 auto 20px !important;
    padding: 12px 20px !important;
    text-align: center !important;
    background: var(--text-main) !important;
    color: var(--bg-body) !important;
    border: none !important;
    border-radius: 50px !important;
    font-family: var(--font-body) !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    line-height: normal !important;
    box-shadow: none !important;
    float: none !important;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product a.button:hover {
    background: var(--accent) !important;
    color: var(--text-main) !important;
    transform: translateY(-2px);
}

/* ─── Single product ─── */
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-top: 40px;
}

.product-gallery {
    position: relative;
}

.product-gallery img {
    border-radius: var(--radius-lg);
    width: 100%;
    box-shadow: var(--shadow-soft);
}

.product-info .product_title {
    font-family: var(--font-head);
    font-size: 2.5rem;
    margin-top: 0;
    margin-bottom: 16px;
}

.product-info .price {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 24px;
    display: block;
}

.product-info .woocommerce-product-details__short-description {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Single product add-to-cart */
.woocommerce div.product form.cart {
    margin-bottom: 32px;
    display: flex;
    gap: 16px;
}

.woocommerce div.product form.cart .qty {
    width: 80px;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-family: var(--font-body);
    font-size: 1rem;
    text-align: center;
}

.woocommerce div.product form.cart .button,
.woocommerce div.product form.cart .single_add_to_cart_button {
    background: var(--text-main) !important;
    color: var(--bg-body) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 14px 40px !important;
    font-family: var(--font-body) !important;
    font-weight: 500 !important;
    font-size: 1rem !important;
    cursor: pointer;
    flex: 1;
    max-width: 300px;
}

.woocommerce div.product form.cart .button:hover {
    background: var(--accent) !important;
    color: var(--text-main) !important;
}

/* Tabs */
.woocommerce-tabs {
    margin-top: 80px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    gap: 32px;
    border-bottom: 1px solid var(--border);
    justify-content: center;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 12px 0;
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    color: var(--text-light);
    text-decoration: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--text-main);
    border-bottom-color: var(--text-main);
}

.woocommerce div.product .woocommerce-tabs .panel {
    padding: 0;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

/* Related / upsells */
.woocommerce .related.products,
.woocommerce .upsells.products {
    margin-top: 80px;
    border-top: 1px solid var(--border);
    padding-top: 60px;
}

.woocommerce .related.products h2,
.woocommerce .upsells.products h2 {
    font-family: var(--font-head);
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

/* ─── Cart page ─── */
.woocommerce table.shop_table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: middle;
}

.woocommerce table.shop_table th {
    background: var(--bg-soft);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--text-light);
}

.woocommerce table.shop_table img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}

.woocommerce table.shop_table .product-remove a {
    color: var(--text-light);
    font-size: 1.2rem;
}

.woocommerce table.shop_table .product-remove a:hover {
    color: #ef4444;
}

.woocommerce table.shop_table .quantity .qty {
    width: 70px;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--border);
    text-align: center;
    font-family: var(--font-body);
}

/* Cart actions / coupon */
.woocommerce-cart table.cart td.actions {
    padding: 24px;
    background: var(--bg-soft);
}

.woocommerce-cart table.cart td.actions .coupon {
    display: inline-flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
    width: 200px;
    padding: 12px 18px;
    border-radius: 50px;
    border: 1px solid var(--border);
    font-family: var(--font-body);
}

/* Cart totals – 2-column layout: products left, totals + buttons right */
.woocommerce-cart .woocommerce {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.woocommerce-cart form.woocommerce-cart-form {
    flex: 1;
    min-width: 0;
}

.woocommerce-cart .cart-collaterals {
    flex: 0 0 380px;
    margin-top: 0;
}

@media (max-width: 960px) {
    .woocommerce-cart .cart-collaterals {
        flex: 1 1 100%;
    }
}

.woocommerce-cart .cart_totals {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.woocommerce-cart .cart_totals h2 {
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.woocommerce-cart .cart_totals table {
    width: 100%;
    border: none;
    margin-bottom: 24px;
}

.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
    background: transparent;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.woocommerce-cart .cart_totals table th {
    font-weight: 500;
    color: var(--text-light);
}

.woocommerce-cart .cart_totals table td {
    text-align: right;
    font-weight: 600;
}

.woocommerce-cart .wc-proceed-to-checkout {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
    display: block;
    width: 100%;
    text-align: center;
}

/* General WC buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    background: var(--text-main) !important;
    color: var(--bg-body) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 14px 28px !important;
    font-family: var(--font-body) !important;
    font-weight: 500 !important;
    font-size: 0.95rem !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
    line-height: normal !important;
    box-shadow: none !important;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    background: var(--accent) !important;
    color: var(--text-main) !important;
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
    background: var(--text-main) !important;
    color: var(--bg-body) !important;
}

.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
    background: var(--accent) !important;
    color: var(--text-main) !important;
}

/* ─── Checkout ─── */
.woocommerce-checkout .col2-set {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
    width: auto;
}

.woocommerce form .form-row {
    margin-bottom: 20px;
}

.woocommerce form .form-row label {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: var(--text-main);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--border);
    font-family: var(--font-body);
    transition: border-color .2s;
    background: var(--bg-body);
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: var(--accent);
    outline: none;
}

.woocommerce-checkout .woocommerce-checkout-review-order {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
}

/* Checkout payment: make CTA clear and conversion-friendly */
.woocommerce-checkout #payment {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-top: 18px;
}

.woocommerce-checkout #payment ul.payment_methods {
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
    margin-bottom: 18px;
}

.woocommerce-checkout #payment ul.payment_methods li {
    margin-bottom: 10px;
}

.woocommerce-checkout #payment ul.payment_methods li label {
    font-weight: 600;
    color: var(--text-main);
}

.woocommerce-checkout #payment .payment_box {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px;
}

.woocommerce-checkout #payment .payment_box::before {
    border-bottom-color: var(--border) !important;
}

/* Main checkout CTA and PayPal-triggered place-order button text */
.woocommerce-checkout #payment #place_order,
.woocommerce-checkout #payment button#place_order,
.woocommerce-checkout #payment input#place_order {
    width: 100%;
    min-height: 52px;
    border-radius: 999px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em;
    padding: 14px 22px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--text-main) !important;
    color: var(--bg-body) !important;
    box-shadow: 0 10px 24px rgba(93, 64, 55, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.woocommerce-checkout #payment #place_order:hover,
.woocommerce-checkout #payment button#place_order:hover,
.woocommerce-checkout #payment input#place_order:hover {
    background: var(--accent-hover) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(93, 64, 55, 0.24);
}

.woocommerce-checkout #payment #place_order:disabled,
.woocommerce-checkout #payment button#place_order:disabled,
.woocommerce-checkout #payment input#place_order:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* PayPal Payments wrappers: keep them full-width and visually button-like */
.woocommerce-checkout #payment .ppcp-button-wrapper,
.woocommerce-checkout #payment #ppc-button-ppcp-gateway,
.woocommerce-checkout #payment [id^="ppc-button-"],
.woocommerce-checkout #payment [id*="ppcp"] {
    width: 100%;
    border-radius: 16px;
    margin-top: 10px;
}

/* If plugin outputs fallback links/buttons, force button appearance */
.woocommerce-checkout #payment [id*="ppcp"] a,
.woocommerce-checkout #payment [id*="ppcp"] button,
.woocommerce-checkout #payment .ppcp-button-wrapper a,
.woocommerce-checkout #payment .ppcp-button-wrapper button {
    border-radius: 999px !important;
    min-height: 52px;
    font-weight: 700 !important;
}

.mummy-checkout-legal-note {
    margin: 14px 0 18px;
    padding: 12px 14px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 12px;
}

.mummy-checkout-legal-note p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #7c2d12;
}

.mummy-checkout-legal-note a {
    color: #7c2d12;
    text-decoration: underline;
    font-weight: 700;
}

/* Policy pages: cleaner premium reading experience */
.policy-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: 0 10px 28px rgba(93, 64, 55, 0.06);
}

.policy-content > p:first-child {
    font-size: 1.02rem;
    color: var(--text-main);
}

.policy-content h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    margin: 22px 0 10px;
    color: var(--text-main);
}

.policy-content p,
.policy-content li {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.98rem;
}

.policy-content ul {
    margin: 0 0 14px 20px;
    list-style: disc;
}

.policy-content p em {
    color: var(--text-light);
    font-size: 0.88rem;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 22px;
    }
}

/* ─── My Account ─── */
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation li {
    margin-bottom: 8px;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
    display: block;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background .15s;
    color: var(--text-main);
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
    background: var(--bg-soft);
    color: var(--text-main);
}

/* My Account: tracking endpoint cards */
.mummy-track-wrap h2 {
    margin-bottom: 8px;
}

.mummy-track-subtext {
    margin-bottom: 24px;
}

.mummy-track-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 18px;
}

.mummy-track-card__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.mummy-track-card__head h3 {
    margin: 0;
    font-size: 1.15rem;
}

.mummy-track-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 700;
    border: 1px solid transparent;
}

.mummy-track-badge.status-pending,
.mummy-track-badge.status-on-hold {
    background: #fff7ed;
    color: #9a3412;
    border-color: #fed7aa;
}

.mummy-track-badge.status-processing {
    background: #eff6ff;
    color: #1d4ed8;
    border-color: #bfdbfe;
}

.mummy-track-badge.status-completed {
    background: #f0fdf4;
    color: #166534;
    border-color: #bbf7d0;
}

.mummy-track-badge.status-cancelled,
.mummy-track-badge.status-failed,
.mummy-track-badge.status-refunded {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

.mummy-track-meta {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.mummy-track-meta li {
    margin: 0;
    color: var(--text-light);
}

.mummy-track-progress {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 14px;
}

.mummy-track-step {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 10px;
    background: var(--bg-soft);
}

.mummy-track-step.is-done {
    border-color: #bbf7d0;
    background: #f0fdf4;
}

.mummy-track-step.is-current {
    border-color: var(--text-main);
    background: #ffffff;
}

.mummy-track-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    flex-shrink: 0;
}

.mummy-track-step.is-done .mummy-track-dot {
    background: #22c55e;
}

.mummy-track-step.is-current .mummy-track-dot {
    background: var(--text-main);
}

.mummy-track-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-main);
}

.mummy-track-note {
    margin: 0 0 14px;
}

.mummy-track-actions {
    margin: 0;
}

/* ─── WC notices ─── */
.woocommerce-message,
.woocommerce-info {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 24px;
    color: var(--text-main);
}

.woocommerce-message::before,
.woocommerce-info::before {
    color: var(--accent) !important;
}

.woocommerce-error {
    background: #fef2f2;
    border: 1px solid #fee2e2;
    border-radius: var(--radius-sm);
    padding: 16px 20px;
    margin-bottom: 24px;
    color: #ef4444;
    list-style: none;
}

/* Breadcrumbs */
.woocommerce .woocommerce-breadcrumb {
    margin-bottom: 32px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.woocommerce .woocommerce-breadcrumb a {
    color: var(--text-light);
}

.woocommerce .woocommerce-breadcrumb a:hover {
    color: var(--text-main);
}

/* Star ratings */
.woocommerce .star-rating {
    color: var(--accent);
}

/* ═══ RESPONSIVE ═══ */

/* Tablet / iPad landscape */
@media (max-width: 1024px) {
    .custom-logo-link img {
        height: 68px;
    }

    .container {
        padding-left: 5%;
        padding-right: 5%;
    }

    .section {
        padding: 60px 0;
    }
}

@media (max-width: 960px) {

    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
    }

    .shop-filters__toggle {
        display: flex;
    }

    .shop-filters__body,
    .shop-filters__footer {
        display: none;
    }

    .shop-filters.is-open .shop-filters__body,
    .shop-filters.is-open .shop-filters__footer {
        display: block;
    }

    .hero-grid,
    .split-grid,
    .product-layout,
    .woocommerce-checkout .col2-set {
        grid-template-columns: 1fr;
    }

    .split-grid--reverse .split-img {
        order: 0;
    }

    .card-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-row--cats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card-row--cats .card {
        grid-column: auto;
    }

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

    /* Product grid: 2 cols on tablet, larger tiles */
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .woocommerce ul.products li.product img,
    .woocommerce ul.products .product-card__img img {
        height: 320px !important;
    }
}

@media (max-width: 768px) {

    /* Logo: bigger on mobile for visibility */
    .custom-logo-link img {
        height: 60px;
    }

    /* Top bar: compact layout, prevent overflow */
    .top-bar {
        padding: 0;
    }

    .top-bar-inner {
        flex-direction: row;
        justify-content: space-between;
        padding: 10px 0;
        gap: 12px;
    }

    .top-bar-left {
        gap: 16px;
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }

    .top-bar-left .top-bar-link {
        font-size: 0.75rem;
    }

    /* Hide phone/email/account text on small screens – icons only to prevent overflow */
    .top-bar-link--contact .top-bar-link-text,
    .top-bar-link--account .top-bar-link-text {
        display: none;
    }

    .top-bar-link.hide-mobile {
        display: none;
    }

    /* Header: show hamburger */
    .menu-toggle {
        display: flex;
    }

    .header-inner {
        height: 72px;
        gap: 16px;
    }

    /* Nav: slide-in mobile menu */
    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--bg-card);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 32px 32px;
        transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .primary-nav.is-open {
        right: 0;
    }

    .primary-nav .menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .primary-nav .menu li {
        border-bottom: 1px solid var(--border);
    }

    .primary-nav .menu a {
        display: block;
        padding: 16px 0;
        font-size: 1.1rem;
    }

    .primary-nav .menu a::after {
        display: none;
    }

    /* Keep cart + shop visible */
    .header-actions .btn--pill {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    /* Overlay when menu is open */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 999;
    }

    .nav-overlay.is-active {
        display: block;
    }

    .hero-lumi {
        padding: 40px 0;
    }

    .card-row {
        grid-template-columns: 1fr;
    }

    .card-row--cats {
        grid-template-columns: 1fr;
    }

    .card-row--cats .card {
        grid-column: auto;
    }

    .card-row--2 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Product grid: 2 cols with larger tiles on mobile */
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .woocommerce ul.products li.product img,
    .woocommerce ul.products .product-card__img img {
        height: 220px !important;
    }

    .product-card__body {
        padding: 14px 12px;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title,
    .product-card__title {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {

    /* Top bar: keep single row, compact */
    .top-bar-inner {
        flex-direction: row;
        justify-content: space-between;
        padding: 8px 0;
        gap: 8px;
    }

    .top-bar-left {
        gap: 12px;
    }

    /* Product grid: 1 column on small phones for larger tiles */
    .woocommerce ul.products {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .woocommerce ul.products li.product img,
    .woocommerce ul.products .product-card__img img {
        height: 280px !important;
    }

    .trust-row {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .header-actions .btn--pill {
        display: none;
    }

    /* Slightly smaller logo on very small screens */
    .custom-logo-link img {
        height: 52px;
    }
}

/* ═══════════════════════════════════════════
   VISUAL SWATCHES (Single Product Page)
   ═══════════════════════════════════════════ */

/*
 * Hide default WooCommerce variation dropdowns.
 * Our custom swatches replace them entirely.
 * The JS in swatches.js keeps the <select> elements functional but hidden,
 * syncing swatch clicks to the hidden selects so WooCommerce still works.
 */
.variations_form .variations {
    position: absolute !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    pointer-events: none !important;
}

/* Also hide the reset link that WC shows */
.variations_form .reset_variations {
    display: none !important;
}

/* Swatches container */
#mummy-swatches-root {
    margin: 20px 0;
    padding: 0;
    border: none;
    background: transparent;
}

/* Each attribute group (e.g. "Choose Color") */
.mummy-attribute-row {
    margin-bottom: 24px;
}

.mummy-attribute-row label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Row of swatch buttons */
.mummy-swatch-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

/* Individual swatch button */
.mummy-swatch-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 16px;
    border: 1px solid var(--border);
    background: var(--bg-card);
    color: var(--text-main);
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.mummy-swatch-label:hover {
    border-color: var(--accent);
    transform: translateY(-1px);
}

/* Selected state */
.mummy-swatch-label.selected {
    border-color: var(--text-main);
    background: var(--text-main);
    color: var(--bg-body);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    font-weight: 600;
}

/* Color circle inside color swatches */
.mummy-color-circle {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: inline-block;
    flex-shrink: 0;
    margin-right: 8px;
}