/*
Theme Name: Kadence Child - GaliTextile
Theme URI: https://gali.naimibaby.co.il
Description: GaliTextile "Craft Animated" child theme — handcrafted UI with playful animations
Author: GaliTextile
Version: 2.0.0
Template: kadence
Text Domain: kadence-child
*/

/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
    --bg: #FFF9F0;
    --primary: #3A2136;
    --accent-red: #E84545;
    --accent-yellow: #F9D56E;
    --muted: #6B4E6B;
    --whatsapp: #25D366;
    --text: #3A2136;
    --border-w: 3px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-pill: 28px;
    --radius-circle: 50%;
    --shadow-sm: 2px 2px 0 var(--primary);
    --shadow-md: 3px 3px 0 var(--primary);
    --shadow-lg: 4px 4px 0 var(--primary);
    --shadow-xl: 6px 6px 0 var(--primary);
    --shadow-hover: 8px 8px 0 var(--primary);
    --font-display: 'Amatic SC', cursive;
    --font-body: 'Heebo', sans-serif;
    --ease-bounce: cubic-bezier(0.16, 1, 0.3, 1);
    --cat-1: #FFEAA7;
    --cat-2: #DFE6E9;
    --cat-3: #FAD4D4;
    --cat-4: #C8E6C9;
    --cat-5: #E8DAEF;
    --cat-6: #FFDAB9;
    --cat-7: #B5EAD7;
    --cat-8: #FFD3E0;
    --cat-9: #FFF3C4;
}

/* ============================================================
   2. @KEYFRAMES
   ============================================================ */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes float-r {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-3deg); }
    25% { transform: rotate(3deg); }
    50% { transform: rotate(-2deg); }
    75% { transform: rotate(2deg); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 3px 3px 0 var(--primary), 0 0 0 rgba(249, 213, 110, 0); }
    50% { box-shadow: 3px 3px 0 var(--primary), 0 0 20px rgba(249, 213, 110, 0.4); }
}

@keyframes bounce-in {
    0% { transform: scale(0) rotate(-10deg); opacity: 0; }
    50% { transform: scale(1.15) rotate(3deg); }
    100% { transform: scale(1) rotate(0); opacity: 1; }
}

@keyframes slide-up {
    0% { transform: translateY(40px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes slide-right {
    0% { transform: translateX(-40px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes spin-slow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}

@keyframes color-cycle {
    0% { border-color: var(--accent-red); }
    25% { border-color: var(--accent-yellow); }
    50% { border-color: #2D6A4F; }
    75% { border-color: #8B5E83; }
    100% { border-color: var(--accent-red); }
}

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

@keyframes confetti-fall {
    0% { transform: translateY(-10px) rotate(0deg); opacity: 1; }
    100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

@keyframes wave {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(14deg); }
    20% { transform: rotate(-8deg); }
    30% { transform: rotate(14deg); }
    40% { transform: rotate(-4deg); }
    50% { transform: rotate(10deg); }
    60%, 100% { transform: rotate(0deg); }
}

@keyframes pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes dash-move {
    0% { background-position: 0 0; }
    100% { background-position: -32px 0; }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

/* ============================================================
   3. SCROLL ANIMATION CLASSES
   ============================================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s var(--ease-bounce);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.visible:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll.visible:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll.visible:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll.visible:nth-child(5) { transition-delay: 0.35s; }
.animate-on-scroll.visible:nth-child(6) { transition-delay: 0.4s; }
.animate-on-scroll.visible:nth-child(7) { transition-delay: 0.45s; }
.animate-on-scroll.visible:nth-child(8) { transition-delay: 0.5s; }
.animate-on-scroll.visible:nth-child(9) { transition-delay: 0.55s; }

/* ============================================================
   4. GLOBAL RESETS
   ============================================================ */
body {
    font-family: var(--font-body) !important;
    color: var(--text) !important;
    background: var(--bg) !important;
    overflow-x: hidden;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
}

.site.wp-site-blocks {
    overflow: visible !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--primary);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--accent-red);
    text-decoration: none;
}

/* ============================================================
   5. TOPBAR TICKER
   ============================================================ */
.topbar {
    background: var(--primary);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.topbar-inner {
    display: inline-block;
    animation: ticker 22s linear infinite;
}

.topbar span {
    color: var(--bg);
    font-size: 13px;
    font-weight: 500;
    margin: 0 28px;
}

.topbar .sep {
    color: var(--accent-yellow);
    animation: wiggle 2s ease-in-out infinite;
    display: inline-block;
}

/* ============================================================
   6. HEADER — Sticky + Craft Border
   ============================================================ */
.site-header,
.header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    background: var(--bg) !important;
    border-bottom: var(--border-w) solid var(--primary) !important;
}

.site-header .site-header-row-container-inner {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

/* Logo — Amatic SC style */
.site-header .custom-logo-link,
.site-header .site-title {
    font-family: var(--font-display) !important;
    font-size: 38px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    transition: transform 0.3s;
}

.site-header .custom-logo-link:hover,
.site-header .site-title:hover {
    animation: wiggle 0.5s ease-in-out;
}

.site-header .custom-logo {
    max-height: 50px !important;
    width: auto !important;
}

.site-header .site-branding .site-description {
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--accent-red);
    font-weight: 700;
    margin-top: -4px;
}

/* Nav pills */
.site-header .header-navigation nav > ul > li > a,
.header nav a {
    color: var(--primary) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 24px;
    border: 2px solid transparent;
    transition: all 0.25s var(--ease-bounce);
    position: relative;
}

.site-header .header-navigation nav > ul > li > a:hover,
.header nav a:hover {
    border-color: var(--primary);
    background: var(--accent-yellow);
    transform: translateY(-2px);
    text-decoration: none;
}

.site-header .header-navigation nav > ul > li > a:active,
.header nav a:active {
    transform: translateY(0) scale(0.97);
}

/* Fix dropdown arrow gap in nav — keep arrow next to text */
.header-navigation .nav-drop-title-wrap {
    display: inline-flex !important;
    align-items: center;
    gap: 2px;
}

.header-navigation .dropdown-nav-toggle {
    position: static !important;
    display: inline-flex !important;
    align-items: center;
}

/* Cart button — red bg + shadow */
.header-cart-wrap .header-cart-button,
.cart-btn {
    background: var(--accent-red) !important;
    color: white !important;
    padding: 12px 28px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: 2px solid var(--primary) !important;
    box-shadow: var(--shadow-md);
    transition: all 0.15s;
    animation: pulse-glow 3s ease-in-out infinite;
}

.header-cart-wrap .header-cart-button:hover,
.cart-btn:hover {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 var(--primary);
}

.header-cart-wrap .header-cart-button .header-cart-total {
    background: var(--accent-yellow);
    color: var(--primary);
    border-radius: var(--radius-circle);
    font-size: 11px;
    min-width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    font-weight: 700;
}

/* ============================================================
   7. HOMEPAGE HERO — Grid 2 Columns
   ============================================================ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    border-bottom: var(--border-w) solid var(--primary);
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 56px;
}

.hero-sticker {
    display: inline-block;
    width: fit-content;
    background: var(--accent-yellow);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-sm);
    animation: float-r 4s ease-in-out infinite;
}

.hero h1 {
    font-family: var(--font-display) !important;
    font-size: 76px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 20px;
}

.hero h1 .pop {
    color: var(--accent-red);
    display: inline-block;
    animation: pop 3s ease-in-out infinite;
}

.hero h1 .letter-animate {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.hero h1 .letter-animate:nth-child(2) { animation-delay: 0.15s; }
.hero h1 .letter-animate:nth-child(3) { animation-delay: 0.3s; }
.hero h1 .letter-animate:nth-child(4) { animation-delay: 0.45s; }

.hero p {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 36px;
    animation: slide-up 0.8s ease-out 0.3s both;
}

.hero-btns {
    display: flex;
    gap: 12px;
    align-items: center;
    animation: slide-up 0.8s ease-out 0.5s both;
}

/* Hero visual — dark bg side */
.hero-visual {
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Floating shapes */
.shape {
    position: absolute;
    border-radius: var(--radius-circle);
    border: 3px solid rgba(249, 213, 110, 0.12);
}

.shape.s1 { width: 400px; height: 400px; top: -100px; right: -100px; animation: spin-slow 40s linear infinite; }
.shape.s2 { width: 250px; height: 250px; bottom: -60px; left: -40px; animation: spin-reverse 30s linear infinite; }
.shape.s3 { width: 80px; height: 80px; top: 20%; left: 15%; background: rgba(232, 69, 69, 0.08); animation: float 5s ease-in-out infinite; }
.shape.s4 { width: 50px; height: 50px; bottom: 25%; right: 15%; background: rgba(249, 213, 110, 0.1); animation: float 4s ease-in-out 1s infinite; }
.shape.s5 { width: 30px; height: 30px; top: 60%; left: 30%; background: rgba(200, 230, 201, 0.1); animation: float 6s ease-in-out 2s infinite; }

/* Price orbit */
.hero-center {
    position: relative;
    z-index: 2;
    text-align: center;
}

.price-orbit {
    width: 220px;
    height: 220px;
    position: relative;
    margin: 0 auto 24px;
}

.price-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px dashed rgba(249, 213, 110, 0.3);
    border-radius: var(--radius-circle);
    animation: spin-slow 20s linear infinite;
}

.price-ring-2 {
    position: absolute;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    border: 2px dotted rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-circle);
    animation: spin-reverse 25s linear infinite;
}

/* Orbiting dots */
.orbit-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: var(--radius-circle);
    animation: spin-slow 8s linear infinite;
    transform-origin: 110px 110px;
}

.orbit-dot::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    border-radius: var(--radius-circle);
}

.orbit-dot:nth-child(3) { animation-delay: 0s; }
.orbit-dot:nth-child(3)::after { background: var(--accent-red); }
.orbit-dot:nth-child(4) { animation-delay: -2.67s; }
.orbit-dot:nth-child(4)::after { background: var(--accent-yellow); }
.orbit-dot:nth-child(5) { animation-delay: -5.33s; }
.orbit-dot:nth-child(5)::after { background: #81C784; }

.price-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border-radius: var(--radius-circle);
    background: var(--accent-yellow);
    border: 4px solid var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    animation: float 4s ease-in-out infinite;
}

.price-core .amount {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.price-core .unit {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.hero-visual .tagline {
    color: var(--bg);
    font-size: 14px;
    letter-spacing: 2px;
    animation: slide-up 0.8s ease-out 0.6s both;
}

.hero-visual .cats-preview {
    display: flex;
    gap: 8px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.cat-chip {
    padding: 5px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(249, 213, 110, 0.15);
    color: rgba(255, 248, 240, 0.6);
    font-size: 12px;
    transition: all 0.3s;
    animation: slide-up 0.6s ease-out both;
}

.cat-chip:nth-child(1) { animation-delay: 0.7s; }
.cat-chip:nth-child(2) { animation-delay: 0.8s; }
.cat-chip:nth-child(3) { animation-delay: 0.9s; }
.cat-chip:nth-child(4) { animation-delay: 1.0s; }
.cat-chip:nth-child(5) { animation-delay: 1.1s; }
.cat-chip:nth-child(6) { animation-delay: 1.2s; }

.cat-chip:hover {
    background: rgba(249, 213, 110, 0.15);
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
    transform: translateY(-2px);
}

/* ============================================================
   8. HOMEPAGE TRUST STRIP
   ============================================================ */
.trust-strip {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 32px 40px;
    background: var(--accent-yellow);
    border-bottom: var(--border-w) solid var(--primary);
}

.trust-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg);
    border: 2px solid var(--primary);
    border-radius: 24px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 2px 2px 0 rgba(58, 33, 54, 0.15);
    transition: all 0.3s var(--ease-bounce);
    cursor: default;
}

.trust-chip:hover {
    transform: translateY(-4px) rotate(-2deg);
    box-shadow: 4px 6px 0 rgba(58, 33, 54, 0.2);
}

.trust-icon {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    transition: transform 0.3s;
}

.trust-chip:hover .trust-icon {
    animation: wiggle 0.5s ease-in-out;
}

.trust-icon.green { background: #C8E6C9; color: #2D6A4F; }
.trust-icon.red { background: #FAD4D4; color: var(--accent-red); }
.trust-icon.yellow { background: #FFF3C4; color: #B8860B; }
.trust-icon.purple { background: #E8DAEF; color: var(--primary); }

/* ============================================================
   9. HOMEPAGE CATEGORIES GRID — 9 Colored Cards
   ============================================================ */
.categories {
    padding: 80px 40px;
}

.section-title {
    font-family: var(--font-display) !important;
    font-size: 56px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: 8px;
}

.section-sub {
    text-align: center;
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 48px;
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.cat-card {
    border: var(--border-w) solid var(--primary);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    cursor: pointer;
    transition: all 0.3s var(--ease-bounce);
    position: relative;
    overflow: hidden;
}

/* Category card colors — set via inline style from PHP, fallback below */
.cat-card:nth-child(1) { background: var(--cat-1); }
.cat-card:nth-child(2) { background: var(--cat-2); }
.cat-card:nth-child(3) { background: var(--cat-3); }
.cat-card:nth-child(4) { background: var(--cat-4); }
.cat-card:nth-child(5) { background: var(--cat-5); }
.cat-card:nth-child(6) { background: var(--cat-6); }

.cat-card:hover {
    transform: translate(-4px, -4px) rotate(-1deg);
    box-shadow: var(--shadow-hover);
    animation: color-cycle 4s linear infinite;
}

.cat-card .cat-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.cat-letter {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-circle);
    background: rgba(58, 33, 54, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.3s;
}

.cat-card:hover .cat-letter {
    background: var(--primary);
    color: var(--accent-yellow);
    transform: rotate(360deg);
}

.cat-count {
    font-size: 11px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.6);
    padding: 3px 10px;
    border-radius: var(--radius-sm);
    transition: all 0.3s;
}

.cat-card:hover .cat-count {
    background: var(--primary);
    color: var(--accent-yellow);
}

.cat-card h3 {
    font-family: var(--font-display) !important;
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.cat-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.cat-arrow {
    position: absolute;
    bottom: 16px;
    left: 16px;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-circle);
    background: rgba(58, 33, 54, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s;
}

.cat-card:hover .cat-arrow {
    opacity: 1;
    transform: translateX(0);
}

.cat-arrow svg {
    width: 14px;
    height: 14px;
    stroke: var(--primary);
    fill: none;
    stroke-width: 2.5;
}

/* ============================================================
   10. HOMEPAGE WHY-US — Plum BG + Glass Cards
   ============================================================ */
.why-us {
    padding: 80px 40px;
    background: var(--primary);
    border-top: var(--border-w) solid var(--accent-yellow);
    border-bottom: var(--border-w) solid var(--accent-yellow);
    position: relative;
    overflow: hidden;
}

.why-bg-shape {
    position: absolute;
    border-radius: var(--radius-circle);
    opacity: 0.05;
    background: var(--accent-yellow);
}

.why-bg-shape.a { width: 200px; height: 200px; top: -50px; right: -50px; animation: float 8s ease-in-out infinite; }
.why-bg-shape.b { width: 150px; height: 150px; bottom: -40px; left: -30px; animation: float 10s ease-in-out 3s infinite; }

.why-us .section-title {
    color: var(--accent-yellow) !important;
    position: relative;
    z-index: 2;
}

.why-us .section-sub {
    color: rgba(255, 248, 240, 0.5);
    position: relative;
    z-index: 2;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(249, 213, 110, 0.15);
    border-radius: var(--radius-md);
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s var(--ease-bounce);
}

.why-card:hover {
    border-color: var(--accent-yellow);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px) rotate(-1deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    transition: all 0.4s;
}

.why-card:hover .why-icon {
    transform: scale(1.2) rotate(5deg);
    border-radius: var(--radius-circle);
}

.why-card:nth-child(1) .why-icon { background: rgba(249, 213, 110, 0.15); color: var(--accent-yellow); }
.why-card:nth-child(2) .why-icon { background: rgba(232, 69, 69, 0.15); color: var(--accent-red); }
.why-card:nth-child(3) .why-icon { background: rgba(200, 230, 201, 0.15); color: #81C784; }
.why-card:nth-child(4) .why-icon { background: rgba(255, 255, 255, 0.1); color: var(--bg); }

.why-card h4 {
    color: var(--bg);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-card p {
    color: rgba(255, 248, 240, 0.5);
    font-size: 13px;
    line-height: 1.5;
}

/* ============================================================
   11. HOMEPAGE PROCESS STEPS — Bubbles + Dashed Line
   ============================================================ */
.process {
    padding: 80px 40px;
}

.process .section-title {
    margin-bottom: 56px;
}

.steps-fun {
    display: flex;
    justify-content: center;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Dashed animated line */
.steps-fun::before {
    content: '';
    position: absolute;
    top: 55px;
    right: 160px;
    left: 160px;
    height: 4px;
    background: repeating-linear-gradient(90deg, var(--primary) 0, var(--primary) 8px, transparent 8px, transparent 16px);
    background-size: 200% 100%;
    animation: dash-move 2s linear infinite;
}

.step-fun {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-bubble {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-circle);
    border: var(--border-w) solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-bounce);
    cursor: default;
}

.step-fun:nth-child(1) .step-bubble { background: var(--cat-1); }
.step-fun:nth-child(2) .step-bubble { background: var(--cat-3); }
.step-fun:nth-child(3) .step-bubble { background: var(--cat-4); }

.step-bubble:hover {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 5px 5px 0 var(--primary);
}

.step-fun h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.step-fun p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

/* ============================================================
   12. HOMEPAGE CTA SECTION — Yellow BG + Confetti
   ============================================================ */
.cta-section {
    padding: 72px 40px;
    background: var(--accent-yellow);
    border-top: var(--border-w) solid var(--primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Confetti particles */
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 2px;
    top: -10px;
}

.confetti:nth-child(1) { left: 10%; background: var(--accent-red); animation: confetti-fall 4s linear infinite; animation-delay: 0s; }
.confetti:nth-child(2) { left: 25%; background: var(--primary); animation: confetti-fall 5s linear infinite; animation-delay: 1s; width: 8px; height: 14px; }
.confetti:nth-child(3) { left: 40%; background: #2D6A4F; animation: confetti-fall 4.5s linear infinite; animation-delay: 2s; }
.confetti:nth-child(4) { left: 55%; background: #8B5E83; animation: confetti-fall 3.5s linear infinite; animation-delay: 0.5s; width: 12px; height: 8px; }
.confetti:nth-child(5) { left: 70%; background: var(--accent-red); animation: confetti-fall 5.5s linear infinite; animation-delay: 1.5s; }
.confetti:nth-child(6) { left: 85%; background: var(--primary); animation: confetti-fall 4s linear infinite; animation-delay: 3s; width: 6px; height: 12px; }
.confetti:nth-child(7) { left: 15%; background: #2D6A4F; animation: confetti-fall 6s linear infinite; animation-delay: 2.5s; }
.confetti:nth-child(8) { left: 60%; background: var(--accent-yellow); border: 2px solid var(--primary); animation: confetti-fall 4.8s linear infinite; animation-delay: 3.5s; }
.confetti:nth-child(9) { left: 35%; background: #8B5E83; animation: confetti-fall 5.2s linear infinite; animation-delay: 0.8s; width: 14px; height: 6px; }
.confetti:nth-child(10) { left: 80%; background: var(--accent-red); animation: confetti-fall 3.8s linear infinite; animation-delay: 1.8s; border-radius: var(--radius-circle); }

.cta-section h2 {
    font-family: var(--font-display) !important;
    font-size: 64px;
    color: var(--primary);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.cta-section h2 .wave-hand {
    display: inline-block;
    animation: wave 2s ease-in-out infinite;
    transform-origin: 70% 70%;
}

.cta-section p {
    font-size: 16px;
    color: var(--muted);
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.cta-section .btn-main {
    font-size: 18px;
    padding: 18px 48px;
    background: var(--primary);
    position: relative;
    z-index: 2;
    animation: pulse-glow 2s ease-in-out infinite;
}

.cta-section .btn-main:hover {
    background: #2A1526;
    animation: none;
}

/* ============================================================
   13. WOOCOMMERCE SHOP PAGE — Craft Product Cards
   ============================================================ */

/* Product cards */
.woocommerce ul.products li.product {
    border: var(--border-w) solid var(--primary) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    transition: all 0.3s var(--ease-bounce);
    position: relative;
    padding-bottom: 16px;
}

/* Cycle through 9 pastel bg colors */
.woocommerce ul.products li.product:nth-child(9n+1) { background: var(--cat-1) !important; }
.woocommerce ul.products li.product:nth-child(9n+2) { background: var(--cat-2) !important; }
.woocommerce ul.products li.product:nth-child(9n+3) { background: var(--cat-3) !important; }
.woocommerce ul.products li.product:nth-child(9n+4) { background: var(--cat-4) !important; }
.woocommerce ul.products li.product:nth-child(9n+5) { background: var(--cat-5) !important; }
.woocommerce ul.products li.product:nth-child(9n+6) { background: var(--cat-6) !important; }
.woocommerce ul.products li.product:nth-child(9n+7) { background: var(--cat-7) !important; }
.woocommerce ul.products li.product:nth-child(9n+8) { background: var(--cat-8) !important; }
.woocommerce ul.products li.product:nth-child(9n+9) { background: var(--cat-9) !important; }

/* Hover */
.woocommerce ul.products li.product:hover {
    transform: translate(-3px, -3px);
    box-shadow: var(--shadow-xl);
}

/* Product image */
.woocommerce ul.products li.product a img {
    border-radius: var(--radius-sm) var(--radius-sm) 0 0 !important;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-bottom: 2px solid var(--primary);
}

/* Product title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-display) !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    padding: 12px 16px 4px !important;
    line-height: 1.2;
}

/* Price — craft badge */
.woocommerce ul.products li.product .price {
    display: inline-block;
    background: var(--accent-yellow) !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    padding: 4px 14px !important;
    margin: 4px 16px 8px !important;
    border-radius: 16px;
    border: 2px solid var(--primary);
    box-shadow: 1px 1px 0 var(--primary);
}

/* Hide add-to-cart in product grid by default, show on hover */
.woocommerce ul.products li.product .product-action-wrap {
    display: none !important;
}

.woocommerce ul.products li.product:hover .product-action-wrap,
.woocommerce ul.products li.product:focus-within .product-action-wrap {
    display: block !important;
    position: static !important;
    opacity: 1 !important;
    padding: 0 16px 8px !important;
    margin-top: 0 !important;
}

/* Add to cart button — craft badge */
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .button.product_type_simple {
    display: inline-block !important;
    background: var(--accent-red) !important;
    color: white !important;
    border: 2px solid var(--primary) !important;
    border-radius: 16px !important;
    box-shadow: 1px 1px 0 var(--primary);
    font-weight: 700 !important;
    font-size: 15px !important;
    padding: 4px 14px !important;
    margin: 0 !important;
    text-align: center;
    line-height: 1.4 !important;
    width: auto !important;
    height: auto !important;
    min-height: 0 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

/* After adding: hide button, show "view cart" */
.woocommerce ul.products li.product .button.added {
    display: none !important;
}

.woocommerce ul.products li.product .added_to_cart {
    display: inline-block !important;
    background: var(--accent-yellow) !important;
    color: var(--primary) !important;
    border: 2px solid var(--primary) !important;
    border-radius: 16px !important;
    box-shadow: 1px 1px 0 var(--primary);
    font-weight: 700 !important;
    font-size: 14px !important;
    padding: 4px 14px !important;
    margin: 0 !important;
    text-decoration: none;
}

/* Hide arrow icon in grid buttons */
.woocommerce ul.products li.product .add_to_cart_button .kadence-svg-iconset,
.woocommerce ul.products li.product .button.product_type_simple .kadence-svg-iconset {
    display: none !important;
}

/* Category tag under product */
.product-category-tag {
    font-size: 12px;
    color: var(--muted);
    padding: 0 16px;
    margin-top: -2px;
}

/* Category filter bar */
.galitextile-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 16px 0;
    justify-content: center;
}

.galitextile-filter-bar a {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    border: 2px solid var(--primary);
    border-radius: 24px;
    background: var(--bg);
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.25s var(--ease-bounce);
    box-shadow: var(--shadow-sm);
}

.galitextile-filter-bar a:hover {
    background: var(--accent-yellow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.galitextile-filter-bar a.active {
    background: var(--primary);
    color: var(--accent-yellow);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.galitextile-filter-sticky {
    position: sticky;
    top: 80px;
    z-index: 100;
    background: var(--bg);
    padding: 12px 0;
}

/* ============================================================
   14. WOOCOMMERCE SINGLE PRODUCT
   ============================================================ */

/* Title */
.single-product .product .product_title,
.single-product .product .summary h1 {
    font-family: var(--font-display) !important;
    font-size: 42px !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    line-height: 1.1;
    margin-bottom: 12px;
}

/* Price — large craft badge */
.single-product .product .summary .price {
    display: inline-block;
    background: var(--accent-yellow) !important;
    color: var(--primary) !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    padding: 8px 24px !important;
    border-radius: var(--radius-md);
    border: var(--border-w) solid var(--primary);
    box-shadow: var(--shadow-md);
    margin-bottom: 16px;
}

/* Quantity input */
.single-product .product .quantity .qty,
.single-product .quantity input[type="number"] {
    border: var(--border-w) solid var(--primary) !important;
    border-radius: var(--radius-sm) !important;
    padding: 10px 14px !important;
    font-size: 18px !important;
    font-weight: 700;
    color: var(--primary);
    background: var(--bg) !important;
    text-align: center;
    width: 80px;
    min-height: 44px;
    transition: border-color 0.2s;
}

.single-product .product .quantity .qty:focus,
.single-product .quantity input[type="number"]:focus {
    border-color: var(--accent-yellow) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(249, 213, 110, 0.3);
}

/* Add to cart button — btn-main style */
.single-product .product .single_add_to_cart_button,
.single_add_to_cart_button {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 16px 36px !important;
    background: var(--accent-red) !important;
    color: white !important;
    border-radius: var(--radius-pill) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid var(--primary) !important;
    box-shadow: var(--shadow-lg) !important;
    transition: all 0.15s !important;
    position: relative;
    overflow: hidden;
    min-height: 44px;
}

.single-product .product .single_add_to_cart_button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-circle);
    transition: all 0.5s;
}

.single-product .product .single_add_to_cart_button:hover::after {
    width: 300px;
    height: 300px;
    margin-top: -150px;
    margin-left: -150px;
}

.single-product .product .single_add_to_cart_button:hover,
.single_add_to_cart_button:hover {
    transform: translate(2px, 2px) !important;
    box-shadow: 2px 2px 0 var(--primary) !important;
    background: #d03a3a !important;
}

.single-product .product .single_add_to_cart_button:active,
.single_add_to_cart_button:active {
    transform: translate(3px, 3px) !important;
    box-shadow: 1px 1px 0 var(--primary) !important;
}

/* Tabs — craft styled */
.woocommerce-tabs .tabs,
.woocommerce div.product .woocommerce-tabs ul.tabs {
    padding: 0 !important;
    margin: 0 0 24px !important;
    display: flex;
    gap: 8px;
    border-bottom: 2px solid rgba(58, 33, 54, 0.1) !important;
}

.woocommerce-tabs .tabs li,
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: transparent !important;
    border: 2px solid transparent !important;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0 !important;
    border-bottom: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.woocommerce-tabs .tabs li a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    padding: 10px 20px !important;
    font-weight: 700 !important;
    color: var(--muted) !important;
    font-size: 14px !important;
    transition: all 0.25s;
    display: block;
}

.woocommerce-tabs .tabs li.active,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    background: var(--accent-yellow) !important;
    border-color: var(--primary) !important;
}

.woocommerce-tabs .tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: var(--primary) !important;
}

.woocommerce-tabs .tabs li:hover a {
    color: var(--primary) !important;
}

/* Quick specs — craft pills */
.product-quick-specs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-top: 2px dashed rgba(58, 33, 54, 0.15);
    border-bottom: 2px dashed rgba(58, 33, 54, 0.15);
    margin: 16px 0;
}

.product-quick-specs span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    box-shadow: 1px 1px 0 var(--primary);
    transition: all 0.2s;
}

.product-quick-specs span:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Product specs table */
.product-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs-table tr {
    border-bottom: 1px dashed rgba(58, 33, 54, 0.15);
}

.product-specs-table th {
    text-align: right;
    padding: 10px 0;
    font-weight: 700;
    color: var(--primary);
    width: 35%;
}

.product-specs-table td {
    padding: 10px 0;
    color: var(--muted);
}

/* Related products — same card style as shop */
.single-product .related.products ul.products li.product {
    border: var(--border-w) solid var(--primary) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    transition: all 0.3s var(--ease-bounce);
}

.single-product .related.products ul.products li.product:nth-child(9n+1) { background: var(--cat-1) !important; }
.single-product .related.products ul.products li.product:nth-child(9n+2) { background: var(--cat-2) !important; }
.single-product .related.products ul.products li.product:nth-child(9n+3) { background: var(--cat-3) !important; }
.single-product .related.products ul.products li.product:nth-child(9n+4) { background: var(--cat-4) !important; }

.single-product .related.products ul.products li.product:hover {
    transform: translate(-3px, -3px);
    box-shadow: var(--shadow-xl);
}

/* Breadcrumbs */
.rank-math-breadcrumb,
.woocommerce-breadcrumb {
    font-size: 13px;
    color: var(--muted);
    padding: 12px 0;
}

.rank-math-breadcrumb a,
.woocommerce-breadcrumb a {
    color: var(--muted);
    transition: color 0.2s;
}

.rank-math-breadcrumb a:hover,
.woocommerce-breadcrumb a:hover {
    color: var(--accent-red);
}

/* Product live total */
.product-live-total {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 12px 0;
}

/* Product image gallery */
.single-product .woocommerce-product-gallery img {
    border-radius: var(--radius-md);
    border: var(--border-w) solid var(--primary);
}

/* ============================================================
   15. CART PAGE
   ============================================================ */

/* Table — clean craft style */
.woocommerce-cart table.cart {
    border: none !important;
    border-radius: 0 !important;
    overflow: visible;
    border-collapse: separate !important;
    border-spacing: 0;
}

.woocommerce-cart table.cart th {
    background: transparent !important;
    color: var(--primary) !important;
    font-weight: 700;
    padding: 10px 16px !important;
    font-size: 13px;
    border-bottom: 2px solid var(--primary) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.woocommerce-cart table.cart td {
    border-bottom: 1px solid rgba(58, 33, 54, 0.08) !important;
    padding: 16px !important;
    vertical-align: middle;
}

.woocommerce-cart table.cart img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid var(--primary);
}

/* Qty inputs — craft style */
.woocommerce-cart table.cart .quantity .qty {
    border: var(--border-w) solid var(--primary) !important;
    border-radius: var(--radius-sm) !important;
    padding: 8px 12px !important;
    font-weight: 700;
    color: var(--primary);
    background: var(--bg) !important;
    text-align: center;
    width: 70px;
    min-height: 44px;
}

.woocommerce-cart table.cart .quantity .qty:focus {
    border-color: var(--accent-yellow) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(249, 213, 110, 0.3);
}

/* Remove button — red */
.woocommerce-cart table.cart .remove {
    color: var(--accent-red) !important;
    font-size: 22px !important;
    font-weight: 700;
    width: 36px;
    height: 36px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-circle);
    border: 2px solid var(--accent-red);
    background: transparent;
    transition: all 0.2s;
}

.woocommerce-cart table.cart .remove:hover {
    background: var(--accent-red) !important;
    color: white !important;
    transform: rotate(90deg);
}

/* Coupon input */
.woocommerce-cart .coupon .input-text {
    border: var(--border-w) solid var(--primary) !important;
    border-radius: var(--radius-sm) !important;
    padding: 10px 16px !important;
    font-size: 14px;
    background: var(--bg) !important;
    min-height: 44px;
    transition: border-color 0.2s;
}

.woocommerce-cart .coupon .input-text:focus {
    border-color: var(--accent-yellow) !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(249, 213, 110, 0.3);
}

.woocommerce-cart .coupon .button {
    background: var(--primary) !important;
    color: var(--accent-yellow) !important;
    border: 2px solid var(--primary) !important;
    border-radius: var(--radius-sm) !important;
    padding: 10px 20px !important;
    font-weight: 700 !important;
    min-height: 44px;
    transition: all 0.15s;
    box-shadow: var(--shadow-sm);
}

.woocommerce-cart .coupon .button:hover {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 var(--primary);
}

/* Cart totals — clean craft card */
.woocommerce-cart .cart_totals {
    background: var(--bg) !important;
    border: 2px solid var(--primary) !important;
    border-radius: var(--radius-md) !important;
    padding: 20px !important;
    box-shadow: var(--shadow-sm);
}

.woocommerce-cart .cart_totals h2 {
    font-family: var(--font-display) !important;
    font-size: 32px !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    margin-bottom: 16px;
}

.woocommerce-cart .cart_totals table {
    border: none !important;
    border-collapse: collapse;
}

.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
    font-weight: 700;
    color: var(--primary);
    background: transparent !important;
    border: none !important;
    padding: 10px 8px !important;
}

.woocommerce-cart .cart_totals .order-total .amount {
    font-size: 24px;
    color: var(--primary) !important;
}

/* Hide shipping destination address in cart */
.woocommerce-shipping-destination {
    display: none !important;
}

/* Checkout button — btn-main style */
.woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button,
.wc-proceed-to-checkout a.checkout-button {
    display: block !important;
    text-align: center;
    padding: 16px 36px !important;
    background: var(--accent-red) !important;
    color: white !important;
    border-radius: var(--radius-pill) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border: 2px solid var(--primary) !important;
    box-shadow: var(--shadow-lg) !important;
    transition: all 0.15s !important;
    min-height: 44px;
}

.woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button:hover,
.wc-proceed-to-checkout a.checkout-button:hover {
    transform: translate(2px, 2px) !important;
    box-shadow: 2px 2px 0 var(--primary) !important;
    background: #d03a3a !important;
    text-decoration: none;
}

/* ============================================================
   16. CHECKOUT PAGE
   ============================================================ */

/* Form fields */
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    border: var(--border-w) solid var(--primary) !important;
    border-radius: var(--radius-sm) !important;
    padding: 12px 16px !important;
    font-size: 15px;
    font-family: var(--font-body);
    background: var(--bg) !important;
    color: var(--primary);
    min-height: 44px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
    border-color: var(--accent-yellow) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(249, 213, 110, 0.3) !important;
}

/* Section headings */
.woocommerce-checkout h3,
.woocommerce-checkout .woocommerce-billing-fields h3,
.woocommerce-checkout .woocommerce-shipping-fields h3,
.woocommerce-checkout .woocommerce-additional-fields h3,
.woocommerce-checkout #order_review_heading {
    font-family: var(--font-display) !important;
    font-size: 36px !important;
    font-weight: 700 !important;
    color: var(--primary) !important;
    margin-bottom: 20px;
}

/* Checkout labels — more visible */
.woocommerce-checkout .form-row label {
    font-weight: 700 !important;
    color: var(--primary) !important;
    font-size: 14px !important;
    margin-bottom: 6px !important;
    display: block !important;
}

.woocommerce-checkout .form-row label .required {
    color: var(--accent-red) !important;
}

/* Checkout — hide ship to different address */
#ship-to-different-address {
    display: none !important;
}

/* Checkout — hide postcode field */
#billing_postcode_field {
    display: none !important;
}

/* Checkout payment section — clean styling */
.woocommerce-checkout #payment {
    background: var(--bg) !important;
    border: 2px solid var(--primary) !important;
    border-radius: var(--radius-md) !important;
    padding: 20px !important;
}

.woocommerce-checkout #payment .payment_methods {
    border-bottom: 1px solid rgba(58, 33, 54, 0.1) !important;
    padding: 0 0 16px !important;
    margin: 0 0 16px !important;
}

.woocommerce-checkout #payment .payment_methods li {
    list-style: none !important;
    padding: 12px !important;
    border: 2px solid rgba(58, 33, 54, 0.1) !important;
    border-radius: var(--radius-sm) !important;
    margin-bottom: 8px !important;
    background: white !important;
    transition: border-color 0.2s;
}

.woocommerce-checkout #payment .payment_methods li:hover,
.woocommerce-checkout #payment .payment_methods li.active {
    border-color: var(--accent-yellow) !important;
}

.woocommerce-checkout #payment .payment_methods li label {
    font-weight: 700 !important;
    color: var(--primary) !important;
    cursor: pointer;
    display: inline !important;
}

.woocommerce-checkout #payment .payment_box {
    background: rgba(249, 213, 110, 0.08) !important;
    border-radius: var(--radius-sm) !important;
    padding: 16px !important;
    margin-top: 8px;
    color: var(--primary) !important;
}

.woocommerce-checkout #payment .payment_box::before {
    display: none !important;
}

.woocommerce-checkout #payment #place_order {
    display: block !important;
    width: 100% !important;
    text-align: center;
    padding: 16px 36px !important;
    background: var(--accent-red) !important;
    color: white !important;
    border-radius: var(--radius-pill) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border: 2px solid var(--primary) !important;
    box-shadow: var(--shadow-lg) !important;
    transition: all 0.15s !important;
    min-height: 44px;
    margin-top: 16px;
}

.woocommerce-checkout #payment #place_order:hover {
    transform: translate(2px, 2px) !important;
    box-shadow: 2px 2px 0 var(--primary) !important;
    background: #d03a3a !important;
}

/* Checkout mobile */
@media (max-width: 767px) {
    .woocommerce-checkout #payment {
        padding: 14px !important;
    }

    .woocommerce-checkout #payment #place_order {
        font-size: 16px !important;
        padding: 14px 24px !important;
    }

    .woocommerce-checkout .form-row {
        margin-bottom: 12px !important;
    }
}

/* Place order button — large btn-main */
.woocommerce-checkout #place_order,
#place_order {
    display: block !important;
    width: 100%;
    padding: 18px 48px !important;
    background: var(--accent-red) !important;
    color: white !important;
    border-radius: var(--radius-pill) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    border: 2px solid var(--primary) !important;
    box-shadow: var(--shadow-lg) !important;
    transition: all 0.15s !important;
    cursor: pointer;
    min-height: 56px;
    font-family: var(--font-body);
}

.woocommerce-checkout #place_order:hover,
#place_order:hover {
    transform: translate(2px, 2px) !important;
    box-shadow: 2px 2px 0 var(--primary) !important;
    background: #d03a3a !important;
}

/* Payment methods — craft cards */
.woocommerce-checkout #payment,
.woocommerce #payment {
    background: var(--bg) !important;
    border: var(--border-w) solid var(--primary) !important;
    border-radius: var(--radius-md) !important;
    padding: 24px !important;
    box-shadow: var(--shadow-md);
}

.woocommerce-checkout #payment ul.payment_methods li,
.woocommerce #payment ul.payment_methods li {
    border-bottom: 2px dashed rgba(58, 33, 54, 0.1);
    padding: 16px 0;
}

.woocommerce-checkout #payment ul.payment_methods li:last-child {
    border-bottom: none;
}

.woocommerce-checkout #payment ul.payment_methods li label {
    font-weight: 700;
    color: var(--primary);
    font-size: 15px;
    cursor: pointer;
}

.woocommerce-checkout #payment div.payment_box {
    background: rgba(249, 213, 110, 0.15) !important;
    border: 2px solid rgba(249, 213, 110, 0.3);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-top: 8px;
    color: var(--primary);
}

/* Order review table */
.woocommerce-checkout .woocommerce-checkout-review-order-table {
    border: var(--border-w) solid var(--primary) !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    border-collapse: separate !important;
    border-spacing: 0;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table th {
    background: var(--primary) !important;
    color: var(--accent-yellow) !important;
    font-weight: 700;
    padding: 12px 16px !important;
}

.woocommerce-checkout .woocommerce-checkout-review-order-table td {
    padding: 12px 16px !important;
    border-bottom: 1px dashed rgba(58, 33, 54, 0.1) !important;
}

/* ============================================================
   17. FOOTER — Plum BG + Yellow Accents
   ============================================================ */
.galitextile-footer,
.footer,
.site-footer {
    background: var(--primary) !important;
    color: var(--bg);
    border-top: var(--border-w) solid var(--accent-yellow) !important;
}

.galitextile-footer {
    padding: 48px 0 0;
    font-family: var(--font-body);
    direction: rtl;
}

.galitextile-footer-grid,
.footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.galitextile-footer-col h3 {
    color: var(--accent-yellow) !important;
    font-family: var(--font-display) !important;
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 700;
}

.galitextile-footer-col p {
    color: rgba(255, 248, 240, 0.6);
    line-height: 1.6;
    margin: 0 0 8px;
}

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

.galitextile-footer-col ul li {
    margin-bottom: 8px;
}

.galitextile-footer-col ul li a {
    color: rgba(255, 248, 240, 0.6) !important;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 14px;
}

.galitextile-footer-col ul li a:hover {
    color: var(--accent-yellow) !important;
    transform: translateX(-4px);
    display: inline-block;
    text-decoration: none;
}

.galitextile-footer-whatsapp a {
    color: var(--whatsapp) !important;
    text-decoration: none;
    font-weight: 700;
}

.galitextile-footer-whatsapp a:hover {
    text-decoration: underline;
}

.galitextile-footer-bottom {
    border-top: 1px solid rgba(249, 213, 110, 0.2);
    margin-top: 32px;
    padding: 16px 24px;
    text-align: center;
    color: rgba(255, 248, 240, 0.3);
    font-size: 13px;
}

/* Footer brand for mockup-style footer */
.footer-brand .logo {
    color: var(--accent-yellow) !important;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
}

.footer-brand .logo small {
    color: rgba(255, 248, 240, 0.4);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 248, 240, 0.5) !important;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}

.footer-links a:hover {
    color: var(--accent-yellow) !important;
    transform: translateY(-2px);
}

.footer-copy {
    text-align: left;
    font-size: 11px;
    color: rgba(255, 248, 240, 0.3);
}

/* Kadence footer overrides */
.site-footer .site-footer-row-container-inner {
    background: var(--primary) !important;
}

.site-footer .footer-widget-area .widget-title {
    color: var(--accent-yellow) !important;
    font-family: var(--font-display) !important;
    font-size: 28px !important;
}

.site-footer a {
    color: rgba(255, 248, 240, 0.6) !important;
}

.site-footer a:hover {
    color: var(--accent-yellow) !important;
    text-decoration: none;
}

.site-footer,
.site-footer .site-footer-row-container-inner,
.site-footer .footer-widget-area {
    color: rgba(255, 248, 240, 0.6) !important;
}

/* ============================================================
   18. WHATSAPP FLOATING BUTTON — Craft Style
   ============================================================ */
.galitextile-whatsapp,
.whatsapp {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9999;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-circle);
    background: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    border: var(--border-w) solid var(--primary);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all 0.15s;
    animation: float 3s ease-in-out infinite;
    text-decoration: none;
}

.galitextile-whatsapp:hover,
.whatsapp:hover {
    transform: translate(2px, 2px) scale(1.05);
    box-shadow: 1px 1px 0 var(--primary);
    animation: none;
    text-decoration: none;
}

.galitextile-whatsapp svg,
.whatsapp svg {
    width: 28px;
    height: 28px;
    fill: white;
}

/* ============================================================
   19. UTILITY CLASSES
   ============================================================ */

/* btn-main */
.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: var(--accent-red);
    color: white;
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-lg);
    transition: all 0.15s;
    position: relative;
    overflow: hidden;
    font-family: var(--font-body);
}

.btn-main::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-circle);
    transition: all 0.5s;
}

.btn-main:hover::after {
    width: 300px;
    height: 300px;
    margin-top: -150px;
    margin-left: -150px;
}

.btn-main:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--primary);
    color: white;
    text-decoration: none;
}

.btn-main:active {
    transform: translate(3px, 3px);
    box-shadow: 1px 1px 0 var(--primary);
}

.btn-main svg {
    width: 18px;
    height: 18px;
    stroke: white;
    fill: none;
    stroke-width: 2.5;
    transition: transform 0.3s;
}

.btn-main:hover svg {
    transform: translateX(-4px);
}

/* btn-outline */
.btn-outline {
    padding: 16px 28px;
    background: transparent;
    color: var(--primary);
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid var(--primary);
    transition: all 0.25s var(--ease-bounce);
    font-family: var(--font-body);
    display: inline-flex;
    align-items: center;
}

.btn-outline:hover {
    background: var(--accent-yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(58, 33, 54, 0.15);
    color: var(--primary);
    text-decoration: none;
}

/* General WooCommerce buttons override to craft style */
.woocommerce .button,
.woocommerce button[type="submit"],
.wc-block-components-button {
    background: var(--primary) !important;
    color: var(--bg) !important;
    border: 2px solid var(--primary) !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 700 !important;
    font-family: var(--font-body) !important;
    min-height: 44px;
    padding: 10px 24px !important;
    cursor: pointer;
    transition: all 0.15s;
    box-shadow: var(--shadow-sm);
}

.woocommerce .button:hover,
.woocommerce button[type="submit"]:hover,
.wc-block-components-button:hover {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 var(--primary);
    text-decoration: none;
}

/* ============================================================
   20. TAX DISPLAY — Hide Tax Lines
   ============================================================ */
.tax-rate,
.includes_tax,
.woocommerce-shipping-calculator,
.tax-total {
    display: none !important;
}

/* ============================================================
   21. KADENCE OVERRIDES
   ============================================================ */

/* Override Kadence default header */
.site-header .site-header-row-container-inner {
    background: var(--bg) !important;
}

.site-header.item-is-fixed {
    box-shadow: 0 4px 16px rgba(58, 33, 54, 0.1);
}

/* Hide Kadence page title hero on single product pages (RankMath breadcrumbs used instead) */
.single-product .entry-hero-container-inner {
    display: none !important;
}

/* Hide Kadence breadcrumbs — keep only RankMath (in galitextile-breadcrumbs wrapper) */
.kadence-breadcrumbs,
.kadence-breadcrumb-container,
.woocommerce-breadcrumb {
    display: none !important;
}

/* Style the RankMath breadcrumbs */
.galitextile-breadcrumbs {
    padding: 12px 24px;
    font-size: 14px;
    color: var(--muted);
}

.galitextile-breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
}

.galitextile-breadcrumbs a:hover {
    color: var(--accent-red);
}

/* Override entry-hero / page title banner */
.entry-hero-container-inner {
    background-color: var(--bg) !important;
    border-bottom: var(--border-w) solid var(--primary);
    padding: 16px 0 !important;
}

/* Reduce hero on cart/checkout even more */
.woocommerce-cart .entry-hero-container-inner,
.woocommerce-checkout .entry-hero-container-inner {
    padding: 10px 0 !important;
}

.woocommerce-cart .entry-hero-container-inner h1,
.woocommerce-checkout .entry-hero-container-inner h1 {
    font-size: 40px !important;
}

.entry-hero-container-inner .hero-section-overlay,
.entry-hero-container-inner .page-hero-section > *,
.entry-hero-container-inner .hero-container,
.entry-hero-container-inner .page-hero-section {
    background-color: var(--bg) !important;
    padding: 0 !important;
    min-height: auto !important;
}

.entry-hero-container-inner .entry-header {
    padding: 0 !important;
    margin: 0 !important;
    min-height: auto !important;
    height: auto !important;
}

.entry-hero-container-inner h1,
.entry-hero-container-inner .hero-section-overlay h1,
.entry-hero-container-inner .kadence-breadcrumbs {
    color: var(--primary) !important;
}

.entry-hero-container-inner h1 {
    font-family: var(--font-display) !important;
    font-size: 48px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Reduce Kadence content area spacing */
.content-wrap {
    padding-top: 24px !important;
}

.woocommerce-products-header {
    margin-bottom: 16px !important;
}

/* Override Kadence footer */
.site-footer .site-footer-wrap {
    background: var(--primary) !important;
    border-top: var(--border-w) solid var(--accent-yellow);
}

/* Override Kadence content area */
.content-area {
    background: var(--bg);
}

/* Override Kadence sidebar widget titles */
.widget-area .widget-title {
    font-family: var(--font-display) !important;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

/* Sale badge override */
.woocommerce span.onsale {
    background: var(--accent-red) !important;
    color: white !important;
    border: 2px solid var(--primary) !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    padding: 4px 12px;
    min-height: auto;
    min-width: auto;
    line-height: 1.4;
}

/* WooCommerce notices */
.woocommerce-message {
    border-top-color: var(--accent-yellow) !important;
    background: rgba(249, 213, 110, 0.15);
    border: 3px solid var(--accent-yellow);
    border-radius: var(--radius-md);
    color: var(--primary);
    font-weight: 500;
    padding: 16px 20px !important;
    font-size: 15px;
    box-shadow: var(--shadow-md);
    animation: slide-up 0.4s ease-out;
}

.woocommerce-message a.button.wc-forward {
    background: var(--accent-red) !important;
    color: white !important;
    border: 2px solid var(--primary) !important;
    border-radius: var(--radius-pill) !important;
    padding: 10px 24px !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    box-shadow: var(--shadow-sm);
    float: none !important;
    display: inline-block;
    margin-bottom: 8px;
}

.woocommerce-message a.button.wc-forward:hover {
    background: #d03a3a !important;
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0 var(--primary);
}

.woocommerce-error {
    border-top-color: var(--accent-red) !important;
    background: rgba(232, 69, 69, 0.05);
    border: 2px solid var(--accent-red);
    border-radius: var(--radius-sm);
    color: var(--primary);
}

.woocommerce-info {
    border-top-color: var(--muted) !important;
    background: rgba(107, 78, 107, 0.05);
    border: 2px solid var(--muted);
    border-radius: var(--radius-sm);
    color: var(--primary);
}

/* ============================================================
   22. RESPONSIVE — Mobile (max-width: 767px)
   ============================================================ */
@media (max-width: 767px) {

    /* Global mobile overflow fix */
    body, html {
        overflow-x: hidden !important;
    }

    .galitextile-homepage,
    .galitextile-homepage > section {
        max-width: 100vw;
        overflow-x: hidden;
    }

    /* Hero — stacked */
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        overflow: hidden;
    }

    .hero-text {
        padding: 28px 20px;
        order: 1;
        text-align: center;
        overflow: hidden;
    }

    .hero-visual {
        order: 2;
        min-height: 35vh;
        padding: 28px 16px;
        overflow: hidden;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }

    .hero p {
        font-size: 14px;
        padding: 0;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-sticker {
        font-size: 12px;
        padding: 5px 14px;
        position: relative;
        right: auto;
        top: auto;
        display: inline-block;
        margin-bottom: 12px;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .hero-btns .btn-main,
    .hero-btns .btn-outline {
        text-align: center;
        justify-content: center;
        width: auto;
        min-width: 200px;
        font-size: 16px;
        padding: 14px 32px;
        border-radius: 16px;
    }

    .price-orbit {
        width: 160px;
        height: 160px;
    }

    .price-core {
        width: 110px;
        height: 110px;
    }

    .price-core .amount {
        font-size: 36px;
    }

    .orbit-dot {
        transform-origin: 80px 80px;
    }

    /* Hide large shapes that cause overflow on mobile */
    .shape.s1,
    .shape.s2 {
        display: none;
    }

    .hero-visual .cats-preview {
        max-width: 100%;
        gap: 6px;
    }

    .cat-chip {
        font-size: 11px;
        padding: 3px 10px;
    }

    .hero-visual .tagline {
        font-size: 12px;
    }

    /* Trust strip */
    .trust-strip {
        padding: 14px 12px;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-chip {
        font-size: 11px;
        padding: 5px 8px;
        white-space: nowrap;
    }

    .trust-icon {
        width: 26px;
        height: 26px;
        font-size: 10px;
    }

    /* Categories — 2 columns on mobile */
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .categories {
        padding: 36px 16px;
    }

    .cat-card {
        padding: 20px 14px;
    }

    .cat-card h3 {
        font-size: 18px;
    }

    .cat-card p {
        font-size: 12px;
        line-height: 1.4;
    }

    .cat-letter {
        font-size: 28px;
    }

    .section-title {
        font-size: 40px !important;
    }

    .section-sub {
        font-size: 14px;
    }

    /* Why-us grid — 2 columns on mobile */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .why-us {
        padding: 36px 16px;
    }

    .why-card {
        padding: 20px 14px;
    }

    .why-card h4 {
        font-size: 16px;
    }

    .why-card p {
        font-size: 12px;
    }

    .why-icon {
        font-size: 24px;
        width: 48px;
        height: 48px;
    }

    /* Hide decorative bg shapes on mobile */
    .why-bg-shape {
        display: none;
    }

    /* Process steps */
    .steps-fun {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .steps-fun::before {
        display: none;
    }

    .step-bubble {
        width: 72px;
        height: 72px;
        font-size: 36px;
    }

    /* CTA */
    .cta-section {
        padding: 48px 20px;
    }

    .cta-section h2 {
        font-size: 40px;
    }

    .cta-section .btn-main {
        font-size: 16px;
        padding: 14px 32px;
    }

    /* Header */
    .header {
        padding: 12px 16px;
    }

    .header nav {
        display: none;
    }

    .site-header .site-header-row-container-inner {
        padding: 6px 12px !important;
    }

    .site-header .custom-logo {
        max-height: 36px !important;
    }

    /* Center logo in mobile header */
    .site-header .site-main-header-inner-wrap {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .site-header .site-header-main-section-left {
        position: absolute;
        left: 12px;
    }

    .site-header .site-header-main-section-right {
        position: absolute;
        right: 12px;
    }

    .site-header .site-header-main-section-center {
        text-align: center;
    }

    .site-header .site-branding {
        text-align: center !important;
    }

    /* Ensure site-branding logo text fits */
    .site-branding .site-title {
        font-size: 28px !important;
    }

    /* Single product */
    .single-product .product .product_title,
    .single-product .product .summary h1 {
        font-size: 32px !important;
    }

    .single-product .product .summary .price {
        font-size: 22px !important;
    }

    .single_add_to_cart_button {
        width: 100% !important;
        justify-content: center;
        font-size: 16px !important;
        padding: 14px 24px !important;
        border-radius: 16px !important;
    }

    .single-product .product .cart {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .single-product .product .quantity {
        width: 100%;
    }

    .single-product .product .quantity .qty {
        width: 100% !important;
    }

    /* Cart — stacked cards */
    .woocommerce-cart table.cart,
    .woocommerce-cart table.cart thead,
    .woocommerce-cart table.cart tbody,
    .woocommerce-cart table.cart tr,
    .woocommerce-cart table.cart td {
        display: block;
    }

    .woocommerce-cart table.cart thead {
        display: none;
    }

    .woocommerce-cart table.cart tr {
        margin-bottom: 12px;
        padding: 12px;
        background: var(--bg);
        border: 1px solid rgba(58, 33, 54, 0.12);
        border-radius: var(--radius-sm);
        box-shadow: none;
    }

    .woocommerce-cart table.cart td {
        border-bottom: none !important;
        padding: 8px 0 !important;
    }

    /* Cart totals mobile — compact & centered */
    .woocommerce-cart .cart_totals {
        padding: 10px 12px !important;
        margin-top: 10px;
        box-shadow: 1px 1px 0 var(--primary);
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .woocommerce-cart .cart_totals table th,
    .woocommerce-cart .cart_totals table td {
        font-size: 16px !important;
        padding: 8px 4px !important;
    }

    .woocommerce-cart .cart_totals h2 {
        font-size: 26px !important;
        margin-bottom: 12px !important;
    }

    .woocommerce-cart .cart_totals .order-total .amount {
        font-size: 22px;
    }

    .woocommerce-cart .cart_totals .wc-proceed-to-checkout {
        padding: 8px 0 0 !important;
    }

    .wc-proceed-to-checkout a.checkout-button {
        font-size: 15px !important;
        padding: 10px 16px !important;
        border-radius: 16px !important;
        margin-bottom: 4px !important;
    }

    /* Shipping row */
    .woocommerce-cart .cart_totals .shipping td {
        font-size: 16px !important;
    }
    .woocommerce-cart .cart_totals .shipping td p {
        margin: 4px 0 !important;
    }

    /* Cart item images smaller on mobile */
    .woocommerce-cart table.cart img {
        width: 60px;
        height: 60px;
    }

    /* Footer */
    .galitextile-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 20px;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-copy {
        text-align: center;
    }

    /* Topbar */
    .topbar span {
        font-size: 12px;
        margin: 0 16px;
    }

    /* Filter bar */
    .galitextile-filter-bar a {
        padding: 6px 12px;
        font-size: 12px;
        box-shadow: 1px 1px 0 var(--primary);
    }

    .galitextile-filter-sticky {
        top: 60px;
    }

    /* Shop — 2 products per row on mobile */
    .woocommerce ul.products,
    .woocommerce ul.products[class*="columns-"],
    ul.products.grid-cols,
    .products-grid-view {
        grid-template-columns: repeat(2, 1fr) !important;
        display: grid !important;
        gap: 10px !important;
    }

    .woocommerce ul.products li.product {
        width: 100% !important;
        margin: 0 !important;
        float: none !important;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 18px !important;
        padding: 8px 10px 2px !important;
    }

    .woocommerce ul.products li.product .price {
        font-size: 13px !important;
        padding: 3px 10px !important;
        margin: 2px 10px 6px !important;
    }

    /* Add to cart on mobile — smaller badge */
    .woocommerce ul.products li.product .add_to_cart_button,
    .woocommerce ul.products li.product .button.product_type_simple {
        font-size: 13px !important;
        padding: 3px 10px !important;
        margin: 2px 4px 6px 0 !important;
    }

    /* Checkout */
    .woocommerce-checkout h3,
    .woocommerce-checkout .woocommerce-billing-fields h3,
    .woocommerce-checkout .woocommerce-shipping-fields h3,
    .woocommerce-checkout #order_review_heading {
        font-size: 28px !important;
    }

    /* Entry hero */
    .entry-hero-container-inner h1 {
        font-size: 40px !important;
    }
}

/* ============================================================
   22b. RESPONSIVE — Small phones (max-width: 400px)
   ============================================================ */
@media (max-width: 400px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-btns .btn-main,
    .hero-btns .btn-outline {
        min-width: 160px;
        padding: 12px 24px;
        font-size: 15px;
    }

    .hero p {
        font-size: 13px;
    }

    .hero-sticker {
        font-size: 11px;
        padding: 4px 12px;
    }

    .hero-text {
        padding: 24px 16px;
    }

    .section-title {
        font-size: 34px !important;
    }

    .cat-card h3 {
        font-size: 16px;
    }

    .cat-card p {
        font-size: 11px;
    }

    .cat-letter {
        font-size: 24px;
    }

    .why-card h4 {
        font-size: 14px;
    }

    .why-card p {
        font-size: 11px;
    }

    .why-icon {
        font-size: 20px;
        width: 40px;
        height: 40px;
    }

    .cta-section h2 {
        font-size: 34px;
    }

    .price-orbit {
        width: 140px;
        height: 140px;
    }

    .price-core {
        width: 96px;
        height: 96px;
    }

    .price-core .amount {
        font-size: 32px;
    }

    .orbit-dot {
        transform-origin: 70px 70px;
    }

    .trust-chip {
        font-size: 10px;
        padding: 4px 6px;
    }

    .trust-icon {
        width: 24px;
        height: 24px;
        font-size: 9px;
    }

    .step-bubble {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
}

/* ============================================================
   23. RESPONSIVE — Tablet (max-width: 1023px)
   ============================================================ */
@media (max-width: 1023px) and (min-width: 768px) {

    /* Categories — 2 columns */
    .cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Why-us — 2 columns */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Footer — 2 columns */
    .galitextile-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    /* Hero — slightly smaller */
    .hero h1 {
        font-size: 56px;
    }

    .hero-text {
        padding: 40px 32px;
    }

    /* Section titles */
    .section-title {
        font-size: 44px !important;
    }

    .cta-section h2 {
        font-size: 48px;
    }

    /* Entry hero */
    .entry-hero-container-inner h1 {
        font-size: 44px !important;
    }
}

/* ============================================================
   24. HAMBURGER MENU VISIBILITY FIX
   ============================================================ */
.menu-toggle-icon svg,
.menu-toggle-open svg,
.mobile-toggle-open-container svg {
    fill: var(--primary) !important;
    color: var(--primary) !important;
}

/* Mobile navigation drawer */
.mobile-navigation-container {
    background: var(--bg) !important;
}

.mobile-navigation-container a {
    color: var(--primary) !important;
    font-weight: 500;
}

.mobile-navigation-container a:hover {
    color: var(--accent-red) !important;
}

.mobile-navigation-container .mobile-nav-widget-area {
    background: var(--bg) !important;
}

/* ============================================================
   25. ACCESSIBILITY — Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .topbar-inner {
        animation: none;
    }

    .galitextile-whatsapp,
    .whatsapp {
        animation: none;
    }

    .cart-btn,
    .header-cart-wrap .header-cart-button {
        animation: none;
    }

    .hero-sticker {
        animation: none;
    }

    .hero h1 .pop,
    .hero h1 .letter-animate {
        animation: none;
    }

    .hero p,
    .hero-btns {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .hero-visual .tagline,
    .cat-chip {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .price-core,
    .price-ring,
    .price-ring-2,
    .orbit-dot {
        animation: none;
    }

    .shape {
        animation: none;
    }

    .why-bg-shape {
        animation: none;
    }

    .steps-fun::before {
        animation: none;
    }

    .confetti {
        display: none;
    }

    .topbar .sep {
        animation: none;
    }

    .cta-section .btn-main,
    .cta-section h2 .wave-hand {
        animation: none;
    }
}
