/* ==========================================================================
   shaddai THEME â€” Main Stylesheet
   Mobile-First | Modern | Lightweight
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Colors */
    --color-primary: #AC1330;
    --color-primary-light: #D61A3F;
    --color-primary-lighter: #E45F79;
    --color-primary-dark: #7D0E23;
    --color-primary-darker: #520917;
    --color-accent: #000000;
    --color-accent-light: #333333;
    --color-white: #FFFFFF;
    --color-cream: #F8F9F0;
    --color-gray-50: #F9FAFB;
    --color-gray-100: #F3F4F6;
    --color-gray-200: #E5E7EB;
    --color-gray-300: #D1D5DB;
    --color-gray-400: #9CA3AF;
    --color-gray-500: #6B7280;
    --color-gray-600: #4B5563;
    --color-gray-700: #374151;
    --color-gray-800: #1F2937;
    --color-gray-900: #111827;
    --color-text: #2C2C2C;
    --color-text-light: #6B7280;
    --color-success: #059669;
    --color-error: #DC2626;
    --color-warning: #F59E0B;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    --shadow-green: 0 4px 20px rgba(172, 19, 48, 0.25);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Layout */
    --container-max: 1280px;
    --container-narrow: 960px;
    --header-height: 70px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    background-color: #f8f9fa;
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 24px 24px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 1920px;
    margin: 0 auto;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.3);
}

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

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

a:hover {
    color: var(--color-primary-dark);
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading) !important;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary-dark);
}

h1 {
    font-size: clamp(1.75rem, 5vw, 3rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
}

p {
    margin-bottom: var(--space-md);
}

/* ---------- Utilities ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: var(--space-lg);
    padding-right: var(--space-lg);
}

.container--narrow {
    max-width: var(--container-narrow);
}

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

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

.text-primary {
    color: var(--color-primary);
}

.text-accent {
    color: var(--color-accent);
}

.section-padding {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-sm);
    position: relative;
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
    font-size: 1.05rem;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(45, 106, 79, 0.1), rgba(82, 183, 136, 0.1));
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.12);
    border-radius: inherit;
    opacity: 0;
    transition: opacity var(--transition-fast);
    pointer-events: none;
}

.btn:hover::after {
    opacity: 1;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    box-shadow: var(--shadow-green);
}

.btn--primary:hover {
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(45, 106, 79, 0.35);
}

.btn--secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn--secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn--accent {
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

.btn--accent:hover {
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 168, 67, 0.4);
}

.btn--whatsapp {
    background: #25D366;
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.btn--sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* ---------- HEADER ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
    height: var(--header-height);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.site-logo img {
    height: 48px;
    width: auto;
    transition: transform var(--transition-base);
}

@media (max-width: 768px) {
    .site-logo img {
        height: 36px;
    }
}


.site-logo:hover img {
    transform: scale(1.03);
}

.site-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary-dark);
    letter-spacing: -0.5px;
}

.site-logo .logo-text span {
    color: var(--color-primary-light);
}

/* Desktop Nav */
.main-nav {
    display: none;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.main-nav a {
    font-family: var(--font-heading);
    font-weight: 600;
    /* Bolder for premium look */
    font-size: 1.05rem;
    /* Larger font */
    color: var(--color-gray-700);
    position: relative;
    padding: 8px 0;
    letter-spacing: 0.02em;
    transition: all var(--transition-base);
}

/* Premium Focus Effect */
.main-nav ul:hover a {
    opacity: 0.5;
}

.main-nav ul a:hover {
    opacity: 1 !important;
    color: var(--color-primary) !important;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: width var(--transition-base);
}

.main-nav a:hover,
.main-nav .current-menu-item a,
.main-nav .current_page_item a {
    color: var(--color-primary);
}

.main-nav a:hover::after,
.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after {
    width: 100%;
}

/* Submenu Styles */
.main-nav .menu-item-has-children {
    position: relative;
}

.main-nav .menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.main-nav .menu-item-has-children > a::after {
    display: none; /* Hide standard underline for parent items if preferred, or keep it */
}

/* Dropdown Arrow */
.main-nav .menu-item-has-children > a .dropdown-arrow {
    font-size: 0.7rem;
    transition: transform var(--transition-base);
}

.main-nav .menu-item-has-children:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

.main-nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--color-white);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all var(--transition-base);
    z-index: 100;
    display: block; /* Overriding default ul display block but hidden */
}

.main-nav .menu-item-has-children:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .sub-menu li {
    display: block;
    width: 100%;
    border: none;
    padding: 0;
}

.main-nav .sub-menu a {
    display: block;
    padding: 10px 25px;
    font-size: 0.95rem;
    color: var(--color-gray-700);
    transition: all var(--transition-fast);
}

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

.main-nav .sub-menu a:hover {
    background: var(--color-gray-50);
    color: var(--color-primary);
    padding-left: 30px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.header-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    color: var(--color-gray-700);
    transition: all var(--transition-base);
}

.header-cart:hover {
    background: var(--color-gray-100);
    color: var(--color-primary);
}

.header-cart svg {
    width: 22px;
    height: 22px;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--color-gray-700);
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background: var(--color-white);
    z-index: 999;
    transition: right var(--transition-slow);
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    overflow-y: auto;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu li {
    border-bottom: 1px solid var(--color-gray-100);
}

.mobile-menu a {
    display: block;
    padding: var(--space-lg) var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--color-gray-800);
    transition: all var(--transition-fast);
}

.mobile-menu a:hover,
.mobile-menu .current-menu-item > a {
    color: var(--color-primary);
    padding-left: var(--space-md);
}

/* Mobile Submenu */
.mobile-menu .menu-item-has-children {
    position: relative;
    border-bottom: 1px solid var(--color-gray-100);
}

.mobile-menu .menu-item-has-children > a {
    padding-right: 60px; /* Space for toggle */
}

.mobile-menu .sub-menu-toggle {
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px; /* Matches the approximate height of the link */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    border-left: 1px solid var(--color-gray-50);
    color: var(--color-gray-400);
    transition: all var(--transition-base);
}

.mobile-menu .menu-item-has-children.active > .sub-menu-toggle {
    color: var(--color-primary);
    transform: rotate(180deg);
}

.mobile-menu .sub-menu {
    display: none;
    background: var(--color-gray-50);
    padding: 0;
}

.mobile-menu .menu-item-has-children.active > .sub-menu {
    display: block;
}

.mobile-menu .sub-menu a {
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.mobile-menu .sub-menu li:last-child a {
    border-bottom: none;
}

.mobile-menu .menu-cta {
    margin-top: var(--space-xl);
    text-align: center;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, var(--color-primary-darker) 0%, var(--color-primary-dark) 40%, var(--color-primary) 100%);
    overflow: hidden;
    padding-top: calc(var(--header-height) + var(--space-xl));
    padding-bottom: var(--space-xl);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(82, 183, 136, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 168, 67, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0.25;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: var(--space-lg);
    padding-bottom: var(--space-lg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        text-align: left;
    }
}

.hero-text {
    text-align: center;
    position: relative;
    padding: var(--space-2xl) 0;
}

@media (min-width: 992px) {
    .hero-text {
        text-align: left;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(8px);
        padding: var(--space-3xl);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    color: var(--color-primary-lighter);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(10px);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    font-weight: 800;
    line-height: 1.15;
}

.hero h1 .highlight {
    background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 580px;
}

@media (max-width: 991px) {
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    align-items: center;
}

@media (min-width: 576px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-top: var(--space-2xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

.hero-visual {
    display: none; /* Hidden by default (mobile) */
}

@media (min-width: 992px) {
    .hero-visual {
        display: block;
        position: relative;
    }
}

.hero-reel-wrapper {
    position: relative;
    width: 280px;
    height: 498px; /* Precise 9:16 for 280px width */
    margin: 0 auto;
    z-index: 10;
}

.reel-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 35px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.7);
    border: 6px solid rgba(255, 255, 255, 0.08);
}

.reel-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%; /* Match container width */
    height: 100%; /* Match container height */
    transform: translate(-50%, -50%); /* Remove excessive scaling */
    pointer-events: none;
}

.reel-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--color-primary-light) 0%, transparent 70%);
    opacity: 0.2;
    filter: blur(40px);
    z-index: -1;
    animation: glow-pulse 4s infinite alternate;
}

.reel-audio-toggle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 20;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.reel-audio-toggle:hover {
    transform: scale(1.1);
    background: var(--color-primary);
    border-color: var(--color-primary);
}

@keyframes glow-pulse {
    from { opacity: 0.1; transform: scale(0.95); }
    to { opacity: 0.3; transform: scale(1.05); }
}

.hero-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float-particle 15s infinite;
}

.hero-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 3s;
    width: 4px;
    height: 4px;
}

.hero-particle:nth-child(3) {
    top: 80%;
    left: 30%;
    animation-delay: 6s;
    width: 8px;
    height: 8px;
}

.hero-particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 9s;
    width: 5px;
    height: 5px;
}

.hero-particle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 12s;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ---------- CATEGORIES SECTION ---------- */
.categories-section {
    background: var(--color-cream);
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    justify-content: center;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    cursor: pointer;
    width: 100%;
}

.category-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-slow);
}

.category-card:hover .category-card-bg {
    transform: scale(1.08);
}

.category-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 42, 29, 0.85) 0%, rgba(15, 42, 29, 0.2) 100%);
    transition: background var(--transition-base);
}

.category-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    color: var(--color-white);
    z-index: 2;
}

.category-card h3 {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.category-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.category-card .category-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin-top: var(--space-sm);
    transition: all var(--transition-base);
}

.category-card:hover .category-arrow {
    background: var(--color-accent);
    transform: translateX(4px);
}

.category-card .category-arrow svg {
    width: 16px;
    height: 16px;
    color: var(--color-white);
}

/* ---------- PRODUCTS SECTION ---------- */
.products-section {
    background: var(--color-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--color-gray-100);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-card-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--color-gray-50);
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-card-badge {
    position: absolute;
    top: var(--space-sm);
    left: var(--space-sm);
    padding: 4px 12px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
}

.product-card-actions {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition-base);
}

.product-card:hover .product-card-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-card-action-btn {
    width: 36px;
    height: 36px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-fast);
    color: var(--color-gray-600);
}

.product-card-action-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.product-card-action-btn svg {
    width: 16px;
    height: 16px;
}

.product-card-info {
    padding: var(--space-md);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-category {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-primary-light);
    margin-bottom: 4px;
}

.product-card h3 {
    font-size: 0.95rem;
    color: var(--color-gray-800);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-card h3 a {
    color: inherit;
}

.product-card h3 a:hover {
    color: var(--color-primary);
}

.product-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: var(--space-sm);
}

.product-card-price .price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.product-card-price del {
    font-size: 0.85rem;
    color: var(--color-gray-400);
}

.product-card .add-to-cart-btn {
    width: 100%;
    padding: 8px 12px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: auto;
}

.product-card .add-to-cart-btn:hover {
    box-shadow: var(--shadow-green);
    transform: translateY(-1px);
}

.product-card .add-to-cart-btn svg {
    width: 16px;
    height: 16px;
}

/* ---------- BENEFITS SECTION ---------- */
.benefits-section {
    background: linear-gradient(160deg, var(--color-primary-darker), var(--color-primary-dark));
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(82, 183, 136, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.benefits-section .section-title {
    color: var(--color-white);
}

.benefits-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-lg);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-base);
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.benefit-card h3 {
    color: var(--color-white);
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.cta-section {
    padding: var(--space-4xl) 0;
    background: #ffffff;
}

.cta-premium-box {
    background: linear-gradient(135deg, #111827 0%, #000000 100%);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-xl);
}

.cta-premium-box::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(172, 19, 48, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    flex: 1;
    text-align: left;
}

.cta-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(172, 19, 48, 0.1);
    color: var(--color-primary-light);
    border: 1px solid rgba(172, 19, 48, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.cta-content p {
    color: var(--color-gray-400);
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: var(--space-lg);
}

.cta-trust-items {
    display: flex;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-gray-300);
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-item svg {
    color: var(--color-primary-light);
}

.cta-actions {
    display: flex;
    align-items: center;
}

.btn-shaddai-whatsapp {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 10px 25px -5px rgba(172, 19, 48, 0.4);
}

.btn-shaddai-whatsapp:hover {
    background: var(--color-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(172, 19, 48, 0.5);
}

@media (min-width: 992px) {
    .cta-premium-box {
        flex-direction: row;
        align-items: center;
        padding: var(--space-4xl);
        text-align: left;
    }
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: #0F2315;
    color: var(--color-gray-300);
    padding-top: var(--space-3xl);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
}

.footer-brand .footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    display: block;
}

.footer-brand .footer-logo span {
    color: var(--color-primary-light);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-gray-400);
}

.footer-column h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-primary-light);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: var(--color-gray-400);
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--color-primary-light);
    transform: translateX(4px);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
    color: var(--color-gray-200);
}

.footer-contact a {
    color: var(--color-gray-200);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--color-primary-light);
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary-light);
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-400);
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-lg) 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-gray-500);
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 900;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-base);
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    color: white;
    fill: white;
}

@keyframes pulse-whatsapp {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

/* ---------- BREADCRUMBS ---------- */
.breadcrumbs {
    padding: var(--space-md) 0;
    font-size: 0.85rem;
    color: var(--color-gray-500);
}

.breadcrumbs a {
    color: var(--color-gray-500);
}

.breadcrumbs a:hover {
    color: var(--color-primary);
}

.breadcrumbs .separator {
    margin: 0 8px;
    color: var(--color-gray-300);
}

/* ---------- PAGE HEADER ---------- */
.page-header {
    background: linear-gradient(160deg, var(--color-primary-darker), var(--color-primary));
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 120%, rgba(82, 183, 136, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.page-header h1 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    word-wrap: break-word;
    overflow-wrap: break-word;
}


.page-header p {
    color: #ffffff !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.page-header .breadcrumbs {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9) !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
}


.page-header .breadcrumbs,
.page-header .breadcrumbs a {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
}

.page-header .breadcrumbs a:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* ---------- Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger children */
.stagger-children .fade-in:nth-child(1) {
    transition-delay: 0.1s;
}

.stagger-children .fade-in:nth-child(2) {
    transition-delay: 0.2s;
}

.stagger-children .fade-in:nth-child(3) {
    transition-delay: 0.3s;
}

.stagger-children .fade-in:nth-child(4) {
    transition-delay: 0.4s;
}

.stagger-children .fade-in:nth-child(5) {
    transition-delay: 0.5s;
}

.stagger-children .fade-in:nth-child(6) {
    transition-delay: 0.6s;
}

/* ---------- RESPONSIVE: Tablets (768px+) ---------- */
@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
    }

    .hero-stats {
        gap: var(--space-xl);
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .categories-grid {
        gap: var(--space-lg);
    }

    .category-card {
        width: calc(50% - var(--space-lg) / 2);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-lg);
    }

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

    .cta-inner {
        padding: var(--space-4xl) var(--space-2xl);
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

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

/* ---------- RESPONSIVE: Desktop (1024px+) ---------- */
@media (min-width: 1024px) {
    .main-nav {
        display: block;
    }

    .menu-toggle {
        display: none;
    }

    .mobile-menu,
    .mobile-menu-overlay {
        display: none;
    }

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

    .hero-text {
        text-align: left;
    }

    .hero-description {
        margin-left: 0;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .category-card {
        width: calc(33.333% - var(--space-lg) * 2 / 3);
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

/* ---------- RESPONSIVE: Large Desktop (1280px+) ---------- */
@media (min-width: 1280px) {
    :root {
        --header-height: 80px;
    }

    .container {
        padding-left: var(--space-xl);
        padding-right: var(--space-xl);
    }

    .hero-stat-number {
        font-size: 2.5rem;
    }
}

/* ---------- Print ---------- */
@media print {

    .site-header,
    .whatsapp-float,
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}


.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-3 { margin-left: 0.75rem; margin-right: 0.75rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }

.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }


/* ==========================================================================
   PURE CSS UTILITIES (Tailwind Replacements)
   ========================================================================== */

/* Grid System */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .md\:grid-cols-5 {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lg\:grid {
        display: grid;
    }
}

/* Gaps */
.gap-1 {
    gap: 0.25rem;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

@media (min-width: 1280px) {
    .xl\:gap-20 {
        gap: 5rem;
    }
}

/* Flexbox */
.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.items-start {
    align-items: flex-start;
}

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

.justify-between {
    justify-content: space-between;
}

.flex-col {
    flex-direction: column;
}

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

/* Spacing Between */
.space-y-1>*+* {
    margin-top: 0.25rem;
}

.space-y-2>*+* {
    margin-top: 0.5rem;
}

.space-y-4>*+* {
    margin-top: 1rem;
}

.space-y-6>*+* {
    margin-top: 1.5rem;
}

.space-x-2>*+* {
    margin-left: 0.5rem;
}

.space-x-3>*+* {
    margin-left: 0.75rem;
}

.space-x-4>*+* {
    margin-left: 1rem;
}

.space-x-6>*+* {
    margin-left: 1.5rem;
}

/* Margins & Paddings */
.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-20 {
    margin-bottom: 5rem;
}

.mt-10 {
    margin-top: 2.5rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-20 {
    margin-top: 5rem;
}

@media (min-width: 768px) {
    .md\:mt-32 {
        margin-top: 8rem;
    }

    .md\:mb-0 {
        margin-bottom: 0;
    }
}

.p-1 {
    padding: 0.25rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-1\.5 {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
}

.py-3\.5 {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .md\:py-12 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .md\:p-0 {
        padding: 0;
    }
}

.pt-4 {
    padding-top: 1rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pb-2 {
    padding-bottom: 0.5rem;
}

/* Typography */
.text-xs {
    font-size: 0.75rem;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.font-black {
    font-weight: 900;
}

.uppercase {
    text-transform: uppercase;
}

.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-widest {
    letter-spacing: 0.1em;
}

.leading-none {
    line-height: 1;
}

.leading-tight {
    line-height: 1.25;
}

/* Colors */
.text-white {
    color: var(--color-white);
}

.text-gray-400 {
    color: var(--color-gray-400);
}

.text-gray-500 {
    color: var(--color-gray-500);
}

.text-gray-600 {
    color: var(--color-gray-600);
}

.text-gray-800 {
    color: var(--color-gray-800);
}

.text-shaddai-dark {
    color: #1B4432;
}

.text-shaddai-medium {
    color: #39533B;
}

.text-shaddai-light {
    color: #75AD4F;
}

.bg-shaddai-dark {
    background-color: #1B4432;
}

.bg-shaddai-medium {
    background-color: #39533B;
}

.bg-shaddai-light {
    background-color: #75AD4F;
}

.bg-white {
    background-color: var(--color-white);
}

.bg-gray-50 {
    background-color: var(--color-gray-50);
}

.bg-green-50 {
    background-color: #f0fdf4;
}

.bg-green-100 {
    background-color: #dcfce7;
}

.bg-red-500 {
    background-color: #ef4444;
}

/* Border & Radius */
.border {
    border: 1px solid var(--color-gray-200);
}

.border-t {
    border-top: 1px solid var(--color-gray-200);
}

.border-y {
    border-top: 1px solid var(--color-gray-200);
    border-bottom: 1px solid var(--color-gray-200);
}

.border-gray-50 {
    border-color: var(--color-gray-50);
}

.border-gray-100 {
    border-color: var(--color-gray-100);
}

.border-transparent {
    border-color: transparent;
}

.border-2 {
    border-width: 2px;
}

.rounded-sm {
    border-radius: 0.125rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-4xl {
    border-radius: 2rem;
}

.rounded-5xl {
    border-radius: 2.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

/* Effects */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.backdrop-blur-md {
    backdrop-filter: blur(12px);
}

/* Layout & Visibility */
.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.w-14 {
    width: 3.5rem;
}

.h-14 {
    height: 3.5rem;
}

.w-6 {
    width: 1.5rem;
}

.h-4 {
    height: 1rem;
}

.w-8 {
    width: 2rem;
}

.h-8 {
    height: 2rem;
}

.w-10 {
    width: 2.5rem;
}

.h-10 {
    height: 2.5rem;
}

.max-w-none {
    max-width: none;
}

.max-w-600 {
    max-width: 600px;
}

.max-w-7xl {
    max-width: 80rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mr-3 {
    margin-right: 0.75rem;
}

.aspect-square {
    aspect-ratio: 1 / 1;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-x-auto {
    overflow-x: auto;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.hidden {
    display: none;
}

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

@media (min-width: 768px) {
    .md\:block {
        display: block;
    }

    .md\:rounded-none {
        border-radius: 0;
    }

    .md\:border-0 {
        border-width: 0;
    }

    .md\:shadow-none {
        box-shadow: none;
    }

    .md\:text-sm {
        font-size: 0.875rem;
    }

    .md\:mb-10 {
        margin-bottom: 2.5rem;
    }

    .md\:p-6 {
        padding: 1.5rem;
    }

    .md\:p-12 {
        padding: 3rem;
    }

    .md\:gap-4 {
        gap: 1rem;
    }
}

.fixed {
    position: fixed;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.z-\[9999\] {
    z-index: 9999;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

@media (min-width: 1024px) {
    .lg\:sticky {
        position: sticky;
    }

    .lg\:top-8 {
        top: 2rem;
    }

    .lg\:pt-0 {
        padding-top: 0;
    }

    .lg\:hidden {
        display: none;
    }
}

/* Utils */
.object-fit-contain {
    object-fit: contain;
}

.object-fit-cover {
    object-fit: cover;
}

.pointer-events-none {
    pointer-events: none;
}

.cursor-pointer {
    cursor: pointer;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-200 {
    transition-duration: 200ms;
}

/* ==========================================================================
   Product Page - Premium Aesthetic Correction
   ========================================================================== */

.single-product-page {
    padding-top: 5rem;
    /* More breathing room from sticky header */
    padding-bottom: 6rem;
}

/* WooCommerce Notices Fix - Drop below header */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    margin-top: calc(var(--header-height) + 20px) !important;
    margin-bottom: 2rem !important;
    border-radius: 1rem !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05) !important;
    border: none !important;
    background: #ffffff !important;
    padding: 1.5rem 2rem !important;
}

.product-main-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .product-main-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 5rem;
    }
}

/* Breadcrumbs Refinement */
.breadcrumb-nav {
    margin-top: 1rem;
    margin-bottom: 3rem !important;
    font-size: 0.95rem !important;
    /* Larger breadcrumbs */
    color: var(--color-gray-500);
}

.product-title {
    font-family: var(--font-heading);
    color: #1B4432;
    letter-spacing: -0.02em;
    line-height: 1.2;
    font-weight: 950;
    /* Extra bold */
    margin-bottom: 1.5rem !important;
}

/* Gallery & Thumbnails Fix */
.product-gallery-side {
    position: relative;
    /* Removed overflow: hidden and border-radius from here so shadows/thumbs aren't clipped */
}

.woocommerce-product-gallery {
    position: relative;
    margin-bottom: 2rem;
    /* Space for thumbs */
}

/* This is the actual main image container - Professional Premium Fix */
.woocommerce-product-gallery__wrapper {
    border-radius: 2rem !important;
    overflow: hidden !important;
    /* Centered, professional premium shadow */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05) !important;
    background: #ffffff !important;
    transform: translateZ(0);
    /* Anti-aliasing fix for rounded corners */
}

/* Force rounding on the images themselves to be sure */
.woocommerce-product-gallery__wrapper img {
    border-radius: 2rem !important;
}

.woocommerce-product-gallery .flex-control-nav {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    /* Larger gap */
    margin-top: 1.5rem !important;
    padding: 0 !important;
    list-style: none !important;
    position: relative !important;
    z-index: 10;
}

.woocommerce-product-gallery .flex-control-nav li {
    width: 80px !important;
    /* Larger thumbnails */
    margin: 0 !important;
    float: none !important;
}

.woocommerce-product-gallery .flex-control-nav li img {
    border-radius: 1rem !important;
    border: 2px solid transparent !important;
    aspect-ratio: 1/1 !important;
    object-fit: cover !important;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.woocommerce-product-gallery .flex-control-nav li img.flex-active {
    border-color: #75AD4F !important;
    opacity: 1;
    transform: scale(1.05);
}

/* User Requested Utility Overrides for Button Thickness */
.single-product .text-sm {
    font-size: 1.5rem !important;
    /* As requested to increase font thickness */
}

.single-product .px-8 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    padding-top: 15px !important;
    /* As requested to increase button thickness */
    padding-bottom: 15px !important;
}

/* Specific Rating Summary Fix (Don't let text-sm break it) */
.product-rating-summary.text-sm {
    font-size: 0.9rem !important;
}

/* Indicators */
.product-features-row {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Price */
.price-current .woocommerce-Price-amount {
    color: #75AD4F;
    font-weight: 900;
}

/* Description & Prose */
.product-description {
    color: #4b5563;
    line-height: 1.6;
    font-size: 1rem;
    margin-top: 1rem;
}

/* Action Box */
.product-actions-box {
    background: #ffffff;
    border: 1px solid #f3f4f6;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    padding: 1.5rem !important;
    border-radius: 2rem !important;
    margin-top: 2rem;
}

/* Quantity Selector - Scaled Down back to elegant size */
.quantity-nav {
    display: flex !important;
    align-items: center !important;
    background: #f9fafb !important;
    border-radius: 0.75rem !important;
    padding: 0.25rem !important;
    border: 1px solid #f3f4f6 !important;
    height: 52px !important;
    width: auto !important;
    min-width: 120px;
}

.quantity-nav .qty {
    width: 40px !important;
    height: 100% !important;
    background: transparent !important;
    border: none !important;
    text-align: center !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    color: #1B4432 !important;
}

.qty-btn,
.qty-plus,
.qty-minus {
    width: 2.5rem !important;
    height: 2.5rem !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 0.5rem !important;
    color: #1B4432 !important;
    font-weight: bold !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Add to Cart Button Core Styles */
body.single-product .woocommerce div.product form.cart .single_add_to_cart_button {
    flex: 2 !important;
    min-width: 200px !important;
    height: auto !important;
    min-height: 60px !important;
    padding: 18px 40px !important;
    /* Explicit vertical padding */
    background: linear-gradient(135deg, #39533B, #52B788) !important;
    border-radius: 1rem !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 10px 15px -3px rgba(57, 83, 59, 0.2) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
    line-height: 1 !important;
}

.woocommerce div.product form.cart .single_add_to_cart_button:hover {
    background: linear-gradient(135deg, #1B4432, #39533B) !important;
    transform: translateY(-2px);
    box-shadow: 0 15px 20px -5px rgba(57, 83, 59, 0.3) !important;
}

/* Sticky Cart Fixes */
#sticky-cart.is-visible {
    display: block !important;
    background: #ffffff !important;
    z-index: 99999 !important;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1) !important;
    padding: 1rem !important;
    border-top: 1px solid #f3f4f6 !important;
}

/* Trust Benefits - Scaling back from MEGA to Professional */
.trust-benefits-container {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trust-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: #4b5563;
    font-size: 0.9rem !important;
}

.trust-benefit-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #f0fdf4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #16a34a;
    font-size: 1rem;
}

/* Prose Typography Restoration */
.prose h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem !important;
    /* Reverting oversized H2 */
    font-weight: 800;
    color: #39533B;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.prose p {
    font-size: 1rem !important;
    line-height: 1.7;
    color: #4b5563;
}

/* Tabs Balanced */
.woocommerce-tabs ul.tabs {
    gap: 2rem;
}

.woocommerce-tabs ul.tabs li a {
    font-size: 0.85rem;
    padding: 1rem 0;
}

/* Animations */
.stagger-children>* {
    animation: slideUp 0.6s ease-out both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- BLOG INDEX: SPECTACULAR MODERN DESIGN ---------- */
.blog-index-layout {
    background-color: #fbfcfb;
}

.blog-featured-hero {
    position: relative;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0f7f2 0%, #ffffff 100%);
    overflow: hidden;
}

.featured-hero-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    background: #ffffff;
    border-radius: 3rem;
    overflow: hidden;
    box-shadow: 0 30px 60px -12px rgba(57, 83, 59, 0.12);
    border: 1px solid rgba(82, 183, 136, 0.1);
}

@media (min-width: 1024px) {
    .featured-hero-wrapper {
        grid-template-columns: 1.2fr 1fr;
    }
}

.featured-hero-image {
    height: 100%;
    min-height: 350px;
    overflow: hidden;
}

.featured-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.featured-hero-wrapper:hover .featured-hero-image img {
    transform: scale(1.05);
}

.featured-hero-content {
    padding: 3rem;
}

@media (min-width: 1200px) {
    .featured-hero-content {
        padding: 5rem;
    }
}

.post-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
}

.badge {
    padding: 6px 16px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.badge--featured {
    background: #1B4432;
    color: #ffffff;
}

.badge--category {
    background: rgba(82, 183, 136, 0.15);
    color: #1B4432;
}

.featured-hero-content h2 {
    font-size: 2.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 950;
}

@media (max-width: 768px) {
    .featured-hero-content h2 {
        font-size: 1.8rem;
    }
}

.featured-hero-content h2 a {
    color: #1B4432;
    transition: color 0.3s ease;
}

.featured-hero-meta {
    display: flex;
    gap: 20px;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.featured-hero-excerpt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 2.5rem;
}

/* Modern Grid & Premium Cards */
.modern-grid {
    gap: 40px !important;
}

.post-card-premium {
    background: #ffffff;
    border-radius: 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f3f4f6;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.post-card-premium:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 50px -10px rgba(57, 83, 59, 0.15);
    border-color: rgba(82, 183, 136, 0.3);
}

.post-card-media {
    position: relative;
    aspect-ratio: 16/11;
    overflow: hidden;
}

.post-image-anchor {
    width: 100%;
    height: 100%;
    display: block;
}

.post-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.post-card-premium:hover .post-card-media img {
    transform: scale(1.1);
}

.post-card-category-float {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.cat-pill {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 900;
    color: #1B4432;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.post-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.post-card-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #9ca3af;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.meta-divider {
    width: 4px;
    height: 4px;
    background: #d1d5db;
    border-radius: 50%;
}

.post-card-premium h3 {
    font-size: 1.4rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 800;
}

.post-card-premium h3 a {
    color: #1B4432;
    transition: color 0.3s ease;
}

.post-card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 2rem;
}

.post-card-footer {
    margin-top: auto;
}

.premium-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: #52B788;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    transition: gap 0.3s ease;
}

.premium-link:hover {
    gap: 15px;
    color: #1B4432;
}

/* Empty State Modern */
.empty-blog-state {
    max-width: 500px;
    margin: 0 auto;
}

.empty-icon {
    font-size: 5rem;
    display: block;
    margin-bottom: 2rem;
    filter: drop-shadow(0 10px 15px rgba(82, 183, 136, 0.3));
}

/* Pagination Modern */
.pagination-modern .pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.pagination-modern .page-numbers {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 12px;
    font-weight: 800;
    color: #1B4432;
    transition: all 0.3s ease;
}

.pagination-modern .page-numbers:hover,
.pagination-modern .page-numbers.current {
    background: #1B4432;
    color: #ffffff;
    border-color: #1B4432;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(27, 68, 50, 0.3);
}

/* ---------- RESPONSIVE OVERRIDES ---------- */

/* ---------- SINGLE POST LAYOUT (PREMIUM) ---------- */
.post-single-layout {
    background: #ffffff;
    padding-top: 5rem;
    padding-bottom: 8rem;
}

.post-wrapper {
    max-width: 860px;
    margin: 0 auto;
    overflow: hidden; /* Prevent early overflow issues */
}


.post-featured-media {
    margin-bottom: 4rem;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.post-main-img {
    width: 100%;
    height: auto;
    display: block;
}

.post-entry-content {
    font-size: 1.15rem;
    line-height: 1.85;
    color: #4b5563;
    overflow-wrap: break-word;
    word-wrap: break-word;
}


.post-body-text p {
    margin-bottom: 2.5rem;
}

.post-body-text h2, 
.post-body-text h3 {
    color: var(--color-primary-dark);
    font-weight: 800;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.25;
}

.post-body-text h2 { font-size: 2.25rem; }
.post-body-text h3 { font-size: 1.75rem; }

.post-body-text img {
    border-radius: 2rem;
    margin: 4rem auto;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    max-width: 100%;
    height: auto;
}

.post-body-text table {
    width: 100%;
    margin-bottom: 2.5rem;
    border-collapse: collapse;
}

@media (max-width: 768px) {
    .post-body-text table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    .post-body-text img {
        margin: 2rem auto;
        border-radius: 1rem;
    }
}

.post-body-text iframe,
.post-body-text video,
.post-body-text embed {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}


.post-action-footer {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid #f3f4f6;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.tags-label, .share-label {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    color: var(--color-gray-400);
    margin-bottom: 0.75rem;
    display: block;
}

.share-icons-group {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.share-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.share-fb { background: #1877F2; }
.share-x { background: #000000; }
.share-wa { background: #25D366; }

.post-next-prev {
    margin-top: 6rem;
    padding: 3rem 0;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .post-next-prev {
        grid-template-columns: 1fr 1fr;
    }
}

.nav-box a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform var(--transition-base);
}

.nav-box a:hover {
    transform: translateY(-5px);
}

.nav-thumb {
    width: 100%;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
}

.nav-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nav-box a:hover .nav-thumb img {
    transform: scale(1.05);
}

.nav-next {
    text-align: right;
}

@media (max-width: 767px) {
    .nav-next {
        text-align: left;
    }
}

.nav-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.nav-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--color-primary-dark);
    line-height: 1.3;
    transition: color 0.3s ease;
}

.nav-box a:hover .nav-title {
    color: var(--color-primary);
}

/* ---------- COMMENTS SECTION ---------- */
.post-comments-section {
    margin-top: 6rem;
}

.comment-reply-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2rem;
    color: var(--color-primary-dark);
    margin-bottom: 2rem;
}

.comment-form {
    background: #f9fafb;
    padding: 3rem;
    border-radius: 2rem;
    border: 1px solid #f3f4f6;
}

.comment-form label {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.1);
}

.comment-form .submit {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: #ffffff;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1.25rem 3rem;
    border: none;
    border-radius: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(57, 83, 59, 0.2);
}

.comment-form .submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 20px -5px rgba(57, 83, 59, 0.3);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin-top: 4rem;
}

.comment {
    margin-bottom: 2rem;
    border-radius: 1.5rem;
    background: #ffffff;
    transition: all 0.3s ease;
}

.comment-body {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: #ffffff;
    border: 1px solid #f3f4f6;
    border-radius: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.comment-author {
    flex-shrink: 0;
}

.comment-author img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    border: 3px solid #f3f4f6;
    object-fit: cover;
}


.comment-text {
    flex-grow: 1;
}

.comment-meta {
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    margin-bottom: 5px;
}

.comment-author .fn {
    font-weight: 800;
    color: var(--color-primary-dark);
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
    display: block;
    width: 100%;
}

.comment-author .says {
    display: none;
}

.comment-metadata {
    font-size: 0.75rem;
    color: #9ca3af;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.comment-metadata a {
    color: inherit;
}

.comment-content {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.8;
    position: relative;
    padding-right: 120px; /* Space for absolute reply button on desktop */
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.reply {
    position: absolute;
    top: 3rem;
    right: 3rem;
}

.comment-reply-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 10px 24px;
    border: 2px solid rgba(172, 19, 48, 0.1);
    border-radius: 99px;
    background: transparent;
    transition: all 0.3s ease;
}

.comment-reply-link:hover {
    background: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
    box-shadow: 0 8px 20px rgba(172, 19, 48, 0.2);
}

/* Children/Nested Comments */
.comment .children {
    list-style: none;
    margin-left: 5rem;
    margin-top: 2rem;
}

@media (max-width: 991px) {
    .comment .children {
        margin-left: 2rem;
    }
}


/* ---------- RESPONSIVE OVERRIDES ---------- */
@media (max-width: 480px) {
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    
    .hero h1 {
        font-size: 2.2rem !important;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        margin-top: 30px;
        padding-top: 25px;
    }
    
    .hero-buttons {
        width: 100%;
        gap: 12px;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .page-header {
        padding-top: calc(var(--header-height) + 40px) !important;
        padding-bottom: 40px !important;
    }
    
    .page-header h1 {
        font-size: 1.8rem !important;
    }
    
    /* Post Single Mobile */
    .post-single-layout {
        padding-top: 3rem;
    }
    
    .post-featured-media {
        margin-bottom: 2.5rem;
        border-radius: 1.5rem;
    }
    
    .post-body-text {
        font-size: 1.05rem;
    }
    
    .post-body-text h2 { font-size: 1.75rem; }
    .post-body-text h3 { font-size: 1.4rem; }
    
    .comment-form {
        padding: 1.5rem;
        border-radius: 1.5rem;
    }
    
    .comment-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }

    .comment-meta {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1rem;
        border-bottom: 1px solid #f3f4f6;
        padding-bottom: 1.5rem;
    }

    .comment-author {
        align-items: flex-start;
    }

    .comment-author img {
        width: 48px;
        height: 48px;
        margin-bottom: 0;
    }

    .comment-author .fn {
        font-size: 1rem;
    }

    .comment-content {
        padding-right: 0;
        font-size: 1rem;
    }

    .reply {
        position: static;
        margin-top: 1.5rem;
    }

    .comment-reply-link {
        width: 100%;
    }

    /* Modern Grid & Hero Mobile Fixes */
    .modern-grid {
        gap: 25px !important;
    }
    
    .blog-featured-hero {
        padding: 2rem 0;
    }
    
    .featured-hero-wrapper {
        border-radius: 1.5rem;
    }
    
    .featured-hero-content {
        padding: 2rem;
    }
    
    .featured-hero-meta {
        flex-direction: column;
        gap: 8px;
    }
}

/* Iframely Embeds Fix */
.iframely-responsive {
    padding-top: 0 !important;
}

.iframely-embed {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

/* ========== Blog Image Lightbox ========== */
.img-lightbox-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.img-lightbox-wrapper.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.img-lightbox-wrapper.alignleft {
    float: left;
    margin-right: 1.5em;
}
.img-lightbox-wrapper.alignright {
    float: right;
    margin-left: 1.5em;
}
.img-lightbox-wrapper.alignnone {
    display: block;
    margin-bottom: 1.5em;
}

.img-lightbox-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform var(--transition-base);
}

.img-lightbox-wrapper:hover img {
    transform: scale(1.02);
}

.img-magnify-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--color-primary);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.img-lightbox-wrapper:hover .img-magnify-icon {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

@media (hover: none) {
    .img-magnify-icon {
        opacity: 0.9;
        visibility: visible;
        transform: translate(-50%, -50%) scale(0.9);
    }
}

.shaddai-lightbox-modal {
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.shaddai-lightbox-modal.show {
    opacity: 1;
    visibility: visible;
}

.shaddai-lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transform: scale(0.95);
    transition: transform var(--transition-spring);
    object-fit: contain;
}

.shaddai-lightbox-modal.show .shaddai-lightbox-content {
    transform: scale(1);
}

.shaddai-lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
}

.shaddai-lightbox-close:hover,
.shaddai-lightbox-close:focus {
    color: var(--color-primary-light);
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 700px) {
    .shaddai-lightbox-content {
        width: 100%;
        max-width: 95%;
        border-radius: var(--radius-md);
    }
    .shaddai-lightbox-close {
        top: 10px;
        right: 20px;
    }
}
