/**
 * MacherHut Main Stylesheet
 * Lightweight, mobile-first, performance-optimized
 *
 * @package MacherHut
 * @version 1.0.0
 */

/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */
:root {
    /* ── Primary Teal/Ocean Palette ── */
    --mh-primary: #0d9488;
    --mh-primary-dark: #0f766e;
    --mh-primary-darker: #115e59;
    --mh-primary-light: #ccfbf1;
    --mh-primary-xlight: #f0fdfa;

    /* ── Accent (Cyan/Teal) ── */
    --mh-secondary: #06b6d4;
    --mh-secondary-dark: #0891b2;

    /* ── Accent warm (for highlights) ── */
    --mh-accent: #f59e0b;
    --mh-accent-dark: #d97706;
    --mh-accent-light: #fef3c7;

    /* ── Semantic ── */
    --mh-success: #22c55e;
    --mh-danger: #ef4444;
    --mh-warning: #f59e0b;
    --mh-info: #06b6d4;

    /* ── Neutral Text ── */
    --mh-text: #1e293b;
    --mh-text-light: #475569;
    --mh-text-muted: #94a3b8;
    --mh-heading: #0f172a;

    /* ── Backgrounds ── */
    --mh-bg: #ffffff;
    --mh-bg-alt: #f8fafc;
    --mh-bg-light: #f1f5f9;

    /* ── Borders ── */
    --mh-border: #e2e8f0;
    --mh-border-light: #f1f5f9;

    /* ── Typography ── */
    --mh-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --mh-font-size: 16px;
    --mh-line-height: 1.6;
    --mh-font-size-xs: 0.75rem;
    --mh-font-size-sm: 0.875rem;
    --mh-font-size-md: 1rem;
    --mh-font-size-lg: 1.125rem;
    --mh-font-size-xl: 1.25rem;
    --mh-font-size-2xl: 1.5rem;
    --mh-font-size-3xl: 2rem;
    --mh-font-size-4xl: 2.5rem;

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

    /* ── Layout ── */
    --mh-container: 1200px;
    --mh-container-padding: 1rem;
    --mh-radius: 8px;
    --mh-radius-sm: 4px;
    --mh-radius-lg: 12px;
    --mh-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --mh-shadow: 0 2px 8px rgba(13, 148, 136, 0.08);
    --mh-shadow-md: 0 4px 16px rgba(13, 148, 136, 0.12);
    --mh-shadow-lg: 0 8px 32px rgba(13, 148, 136, 0.15);
    --mh-transition: 0.2s ease;
}

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

html {
    font-size: var(--mh-font-size);
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--mh-font);
    font-size: var(--mh-font-size);
    line-height: var(--mh-line-height);
    color: var(--mh-text);
    background-color: var(--mh-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--mh-heading);
    font-weight: 600;
    line-height: 1.3;
}

h1 { font-size: var(--mh-font-size-4xl); }
h2 { font-size: var(--mh-font-size-3xl); }
h3 { font-size: var(--mh-font-size-2xl); }
h4 { font-size: var(--mh-font-size-xl); }

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
    max-width: var(--mh-container);
    margin: 0 auto;
    padding: 0 var(--mh-container-padding);
    width: 100%;
}

.section-padding {
    padding: var(--mh-space-3xl) 0;
}

.bg-light {
    background-color: var(--mh-bg-alt);
}

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

/* ==========================================================================
   Skip Link
   ========================================================================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--mh-primary);
    color: #fff;
    padding: var(--mh-space-sm) var(--mh-space-md);
    z-index: 10000;
}

.skip-link:focus {
    top: 0;
    color: #fff;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--mh-space-sm);
    padding: 0.625rem 1.25rem;
    font-size: var(--mh-font-size-sm);
    font-weight: 500;
    font-family: var(--mh-font);
    line-height: 1.5;
    border: 2px solid transparent;
    border-radius: var(--mh-radius);
    cursor: pointer;
    transition: all var(--mh-transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn:focus-visible {
    outline: 2px solid var(--mh-primary);
    outline-offset: 2px;
}

.btn-primary {
    background-color: var(--mh-primary);
    color: #fff;
    border-color: var(--mh-primary);
}

.btn-primary:hover {
    background-color: var(--mh-primary-dark);
    border-color: var(--mh-primary-dark);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--mh-primary);
    border-color: var(--mh-primary);
}

.btn-outline:hover {
    background: var(--mh-primary);
    color: #fff;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: var(--mh-font-size-xs);
}

.btn-lg {
    padding: 0.875rem 1.75rem;
    font-size: var(--mh-font-size-md);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* ==========================================================================
   Forms
   ========================================================================== */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="url"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: var(--mh-font-size-sm);
    font-family: var(--mh-font);
    color: var(--mh-text);
    background-color: var(--mh-bg);
    border: 1px solid var(--mh-border);
    border-radius: var(--mh-radius-sm);
    transition: border-color var(--mh-transition), box-shadow var(--mh-transition);
    -webkit-appearance: none;
    appearance: none;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--mh-primary);
    box-shadow: 0 0 0 3px var(--mh-primary-light);
}

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background-color: var(--mh-text);
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--mh-font-size-xs);
    padding: 0.375rem 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: var(--mh-space-lg);
}

.top-bar-link {
    display: inline-flex;
    align-items: center;
    gap: var(--mh-space-xs);
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--mh-transition);
}

.top-bar-link:hover {
    color: #fff;
}

.top-bar-menu {
    display: flex;
    gap: var(--mh-space-md);
}

.top-bar-menu a {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--mh-font-size-xs);
}

.top-bar-menu a:hover {
    color: #fff;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
    background-color: var(--mh-bg);
    border-bottom: 1px solid var(--mh-border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--mh-shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--mh-space-md);
    padding: var(--mh-space-md) 0;
    min-height: 90px;
}

.site-branding {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.site-title {
    font-size: var(--mh-font-size-2xl);
    font-weight: 700;
    color: var(--mh-primary);
    line-height: 1.2;
}

.site-description {
    font-size: var(--mh-font-size-xs);
    color: var(--mh-text-muted);
}

.site-logo {
    max-height: 85px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

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

/* Header Search */
.header-search {
    flex: 1;
    max-width: 650px;
    margin: 0;
}

.header-search .search-form {
    display: flex;
    position: relative;
    width: 100%;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    transition: box-shadow 0.3s ease;
}

.header-search .search-form:focus-within {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.header-search .search-field {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1.5rem;
    border: 1px solid var(--mh-border);
    border-radius: 50px 0 0 50px;
    font-size: var(--mh-font-size-sm);
    background: #f8fafc;
    transition: all 0.3s ease;
}

.header-search .search-field:focus {
    background: #ffffff;
    border-color: var(--mh-primary);
    outline: none;
}

.header-search .search-submit {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 65px;
    background: var(--mh-primary);
    color: #fff;
    border: none;
    border-radius: 0 50px 50px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--mh-transition);
}

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

.header-search .search-submit:hover {
    background: var(--mh-primary-dark);
}

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

/* Header Actions Group */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Header Socials */
.header-socials {
    display: flex;
    gap: 0.5rem;
}

.header-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--mh-text-muted);
    background: #f8fafc;
    transition: all var(--mh-transition);
}

.header-social-link:hover {
    color: #fff;
    background: var(--mh-primary);
    transform: translateY(-2px);
}

.header-social-link.whatsapp-color:hover {
    background: #25D366;
}

/* Call Center */
.header-call-center {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.call-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    color: var(--mh-primary);
    flex-shrink: 0;
}

.call-text {
    display: flex;
    flex-direction: column;
    white-space: nowrap;
}

.call-label {
    font-size: 0.75rem;
    color: var(--mh-text-muted);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.call-number {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--mh-heading);
    line-height: 1;
    transition: color var(--mh-transition);
}

.call-number:hover {
    color: var(--mh-primary);
}

.header-divider {
    width: 1px;
    height: 40px;
    background: var(--mh-border-light);
}

.header-action-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    color: var(--mh-text);
    background: #f1f5f9;
    border-radius: 50%;
    transition: all var(--mh-transition);
}

.header-action-link svg {
    width: 26px;
    height: 26px;
}

.header-action-link:hover {
    color: var(--mh-primary);
    background: #e2e8f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Cart */
.header-cart {
    position: relative;
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--mh-secondary);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

body.mini-cart-open {
    overflow: hidden;
}

/* Mini Cart Dropdown */
.mini-cart-dropdown {
    display: none;
    position: fixed !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
    width: 90vw !important;
    max-width: 400px !important;
    max-height: 80vh !important;
    overflow-y: auto !important;
    box-shadow: 0 0 0 10000px rgba(0,0,0,0.6), 0 10px 50px rgba(0,0,0,0.5) !important;
    background: var(--mh-bg);
    border-radius: var(--mh-radius-lg);
    z-index: 99999;
    border: 1px solid var(--mh-border-light);
}

.header-cart.active .mini-cart-dropdown {
    display: block;
}

.mini-cart-inner {
    padding: var(--mh-space-lg);
}

.mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--mh-space-md);
    border-bottom: 1px solid var(--mh-border-light);
    margin-bottom: var(--mh-space-md);
}

.mini-cart-header h3 {
    font-size: var(--mh-font-size-md);
    font-weight: 600;
}

.mini-cart-count {
    font-size: var(--mh-font-size-xs);
    color: var(--mh-text-muted);
}

.mini-cart-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: var(--mh-space-md);
}

.mini-cart-item {
    display: flex;
    gap: var(--mh-space-md);
    padding: var(--mh-space-sm) 0;
    border-bottom: 1px solid var(--mh-border-light);
    align-items: center;
}

.mini-cart-item-image {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: var(--mh-radius-sm);
    overflow: hidden;
}

.mini-cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-cart-item-details {
    flex: 1;
    min-width: 0;
}

.mini-cart-item-name {
    display: block;
    font-size: var(--mh-font-size-sm);
    font-weight: 500;
    color: var(--mh-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-cart-item-qty,
.mini-cart-item-price {
    display: block;
    font-size: var(--mh-font-size-xs);
    color: var(--mh-text-muted);
}

.mini-cart-item-price {
    font-weight: 600;
    color: var(--mh-primary);
}

.mini-cart-item-remove {
    background: none;
    border: none;
    color: var(--mh-text-muted);
    cursor: pointer;
    padding: var(--mh-space-xs);
    border-radius: 50%;
    transition: all var(--mh-transition);
}

.mini-cart-item-remove:hover {
    color: var(--mh-danger);
    background: rgba(220, 53, 69, 0.1);
}

.mini-cart-totals {
    padding: var(--mh-space-md) 0;
    border-top: 1px solid var(--mh-border-light);
}

.mini-cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.mini-cart-actions {
    display: flex;
    flex-direction: column;
    gap: var(--mh-space-sm);
    padding-top: var(--mh-space-md);
}

.mini-cart-empty {
    text-align: center;
    padding: var(--mh-space-2xl) var(--mh-space-lg);
    color: var(--mh-text-muted);
}

.mini-cart-empty svg {
    margin: 0 auto var(--mh-space-md);
    opacity: 0.3;
}

.mini-cart-empty p {
    margin-bottom: var(--mh-space-md);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--mh-space-sm);
    width: 42px;
    height: 42px;
    justify-content: center;
    align-items: center;
}

.hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--mh-text);
    border-radius: 2px;
    transition: all var(--mh-transition);
}

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

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

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

/* ==========================================================================
   Main Navigation
   ========================================================================== */
.main-navigation {
    background-color: #0ea5e9;
}

.main-navigation .container {
    display: flex;
    justify-content: space-between;
}

.nav-menu {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: var(--mh-space-xs);
    padding: 0.45rem 1rem;
    margin: 0.15rem 0;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: background var(--mh-transition);
    white-space: nowrap;
    letter-spacing: 0.01em;
    border-radius: var(--mh-radius);
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Dropdown */
.nav-menu > li > .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--mh-bg);
    border-radius: 0 0 var(--mh-radius) var(--mh-radius);
    box-shadow: var(--mh-shadow-lg);
    border: 1px solid var(--mh-border-light);
    z-index: 100;
}

.nav-menu > li:hover > .sub-menu {
    display: block;
}

.sub-menu > li > a {
    display: block;
    padding: 0.625rem 1rem;
    color: var(--mh-text);
    font-size: var(--mh-font-size-sm);
    border-bottom: 1px solid var(--mh-border-light);
    transition: all var(--mh-transition);
}

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

.sub-menu > li > a:hover {
    background: var(--mh-bg-alt);
    color: var(--mh-primary);
    padding-left: 1.25rem;
}

/* Mobile Navigation */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    transition: opacity var(--mh-transition);
}

.mobile-nav-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85vw;
    height: 100%;
    background: var(--mh-bg);
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--mh-space-lg);
    border-bottom: 1px solid var(--mh-border-light);
}

.mobile-nav-title {
    font-weight: 700;
    color: var(--mh-primary);
    font-size: var(--mh-font-size-lg);
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--mh-text);
    cursor: pointer;
    padding: var(--mh-space-xs);
}

.mobile-nav-content {
    padding: var(--mh-space-md);
}

.mobile-menu > li > a {
    display: block;
    padding: 0.75rem var(--mh-space-md);
    color: var(--mh-text);
    font-weight: 500;
    border-bottom: 1px solid var(--mh-border-light);
}

.mobile-menu > li > a:hover {
    color: var(--mh-primary);
}

.mobile-menu .sub-menu > li > a {
    padding-left: var(--mh-space-2xl);
}

.mobile-nav-actions {
    padding: var(--mh-space-lg) var(--mh-space-md);
    border-top: 1px solid var(--mh-border-light);
}

.mobile-nav-action {
    display: block;
    padding: 0.75rem 0;
    color: var(--mh-text);
    font-weight: 500;
    border-bottom: 1px solid var(--mh-border-light);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-slider,
.hero-banner {
    position: relative;
}

.hero-slide-bg,
.hero-banner-bg {
    position: relative;
    overflow: hidden;
}

.hero-slide-bg img,
.hero-banner-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide,
.hero-banner {
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-slide-content,
.hero-banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 100%);
}

.hero-title {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: var(--mh-space-md);
    max-width: 600px;
    line-height: 1.2;
}

.hero-text {
    font-size: var(--mh-font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--mh-space-xl);
    max-width: 500px;
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--mh-transition);
    color: var(--mh-text);
}

.slider-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: var(--mh-space-xl); }
.slider-next { right: var(--mh-space-xl); }

.slider-dots {
    position: absolute;
    bottom: var(--mh-space-xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--mh-space-sm);
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    cursor: pointer;
    transition: all var(--mh-transition);
}

.slider-dot.active {
    background: #fff;
    width: 32px;
    border-radius: 6px;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--mh-space-2xl);
}

.section-title {
    font-size: var(--mh-font-size-2xl);
    font-weight: 700;
    color: var(--mh-heading);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--mh-primary);
    margin-top: var(--mh-space-sm);
    border-radius: 2px;
}

.section-link {
    font-size: var(--mh-font-size-sm);
    font-weight: 500;
    color: var(--mh-primary);
    display: flex;
    align-items: center;
    gap: var(--mh-space-xs);
}

.section-link:hover {
    color: var(--mh-primary-dark);
}

/* ==========================================================================
   Category Grid
   ========================================================================== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--mh-space-lg);
}

.category-card {
    display: block;
    text-align: center;
    padding: var(--mh-space-lg);
    border-radius: var(--mh-radius-lg);
    background: var(--mh-bg);
    border: 1px solid var(--mh-border-light);
    transition: all var(--mh-transition);
    text-decoration: none;
    color: var(--mh-text);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mh-shadow-md);
    border-color: var(--mh-primary);
    color: var(--mh-text);
}

.category-card-image {
    width: 150px;
    height: 150px;
    margin: 0 auto var(--mh-space-md);
    border-radius: 50%;
    overflow: hidden;
}

.category-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover .category-card-image img {
    transform: scale(1.1);
}

.category-card-title {
    font-size: var(--mh-font-size-md);
    font-weight: 600;
    margin-bottom: var(--mh-space-xs);
}

.category-card-count {
    font-size: var(--mh-font-size-xs);
    color: var(--mh-text-muted);
}

/* ==========================================================================
   Promo Grid
   ========================================================================== */
.promo-grid {
    display: grid;
    gap: var(--mh-space-lg);
}

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

.promo-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--mh-radius-lg);
    display: block;
    text-decoration: none;
}

.promo-card-image {
    position: relative;
}

.promo-card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.promo-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--mh-space-xl);
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}

.promo-card-content h3 {
    font-size: var(--mh-font-size-xl);
    color: #fff;
    margin-bottom: var(--mh-space-xs);
}

.promo-card-content p {
    font-size: var(--mh-font-size-sm);
    opacity: 0.9;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--mh-space-xl);
}

.feature-item {
    text-align: center;
    padding: var(--mh-space-xl);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--mh-space-md);
    background: var(--mh-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mh-primary);
    font-size: 28px;
}

.feature-title {
    font-size: var(--mh-font-size-md);
    margin-bottom: var(--mh-space-sm);
}

.feature-text {
    font-size: var(--mh-font-size-sm);
    color: var(--mh-text-light);
}

/* ==========================================================================
   Blog Layout
   ========================================================================== */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--mh-space-2xl);
}

.posts-grid {
    display: grid;
    gap: var(--mh-space-xl);
}

/* Post Card */
.post-card {
    background: var(--mh-bg);
    border-radius: var(--mh-radius-lg);
    overflow: hidden;
    border: 1px solid var(--mh-border-light);
    transition: all var(--mh-transition);
}

.post-card:hover {
    box-shadow: var(--mh-shadow-md);
    transform: translateY(-2px);
}

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

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

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

.post-card-category {
    position: absolute;
    top: var(--mh-space-md);
    left: var(--mh-space-md);
    background: var(--mh-primary);
    color: #fff;
    font-size: var(--mh-font-size-xs);
    padding: 0.25rem 0.75rem;
    border-radius: var(--mh-radius-sm);
    font-weight: 500;
}

.post-card-content {
    padding: var(--mh-space-lg);
}

.post-card-meta {
    display: flex;
    gap: var(--mh-space-md);
    margin-bottom: var(--mh-space-sm);
    font-size: var(--mh-font-size-xs);
    color: var(--mh-text-muted);
}

.post-card-meta span {
    display: flex;
    align-items: center;
    gap: var(--mh-space-xs);
}

.post-card-title {
    font-size: var(--mh-font-size-xl);
    margin-bottom: var(--mh-space-sm);
}

.post-card-title a {
    color: var(--mh-heading);
}

.post-card-title a:hover {
    color: var(--mh-primary);
}

.post-card-excerpt {
    font-size: var(--mh-font-size-sm);
    color: var(--mh-text-light);
    margin-bottom: var(--mh-space-md);
}

.post-card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--mh-space-xs);
    font-size: var(--mh-font-size-sm);
    font-weight: 500;
    color: var(--mh-primary);
}

/* Single Post */
.single-post .post-thumbnail {
    margin-bottom: var(--mh-space-xl);
    border-radius: var(--mh-radius-lg);
    overflow: hidden;
}

.single-post .post-thumbnail img {
    width: 100%;
    height: auto;
}

.single-post .post-meta {
    display: flex;
    gap: var(--mh-space-lg);
    margin-bottom: var(--mh-space-xl);
    font-size: var(--mh-font-size-sm);
    color: var(--mh-text-muted);
}

.single-post .post-meta span {
    display: flex;
    align-items: center;
    gap: var(--mh-space-xs);
}

.single-post .post-content {
    font-size: var(--mh-font-size-md);
    line-height: 1.8;
}

.single-post .post-content h2,
.single-post .post-content h3,
.single-post .post-content h4 {
    margin: var(--mh-space-2xl) 0 var(--mh-space-md);
}

.single-post .post-content p {
    margin-bottom: var(--mh-space-md);
}

.single-post .post-content img {
    border-radius: var(--mh-radius);
    margin: var(--mh-space-lg) 0;
}

.single-post .post-content ul,
.single-post .post-content ol {
    margin: var(--mh-space-md) 0;
    padding-left: var(--mh-space-xl);
}

.single-post .post-content ul { list-style: disc; }
.single-post .post-content ol { list-style: decimal; }

.single-post .post-content li {
    margin-bottom: var(--mh-space-sm);
}

.post-tags {
    margin-top: var(--mh-space-2xl);
    padding-top: var(--mh-space-lg);
    border-top: 1px solid var(--mh-border-light);
    font-size: var(--mh-font-size-sm);
}

.post-tags a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--mh-bg-alt);
    border-radius: var(--mh-radius-sm);
    margin: 0.125rem;
    color: var(--mh-text-light);
}

.post-tags a:hover {
    background: var(--mh-primary-light);
    color: var(--mh-primary);
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: var(--mh-space-md);
    margin-top: var(--mh-space-2xl);
    padding-top: var(--mh-space-xl);
    border-top: 1px solid var(--mh-border-light);
}

.post-nav-link {
    display: flex;
    flex-direction: column;
    padding: var(--mh-space-md);
    border-radius: var(--mh-radius);
    border: 1px solid var(--mh-border-light);
    text-decoration: none;
    max-width: 48%;
    transition: all var(--mh-transition);
}

.post-nav-link:hover {
    border-color: var(--mh-primary);
    box-shadow: var(--mh-shadow);
}

.post-nav-next {
    text-align: right;
    margin-left: auto;
}

.post-nav-label {
    font-size: var(--mh-font-size-xs);
    color: var(--mh-text-muted);
    margin-bottom: var(--mh-space-xs);
}

.post-nav-title {
    font-size: var(--mh-font-size-sm);
    font-weight: 500;
    color: var(--mh-heading);
}

/* Pagination */
.pagination {
    margin-top: var(--mh-space-2xl);
    text-align: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: var(--mh-space-sm);
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--mh-radius);
    font-size: var(--mh-font-size-sm);
    font-weight: 500;
    color: var(--mh-text);
    border: 1px solid var(--mh-border);
    transition: all var(--mh-transition);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--mh-primary);
    color: #fff;
    border-color: var(--mh-primary);
}

.pagination .prev,
.pagination .next {
    width: auto;
    padding: 0 var(--mh-space-md);
}

/* ==========================================================================
   Page Header
   ========================================================================== */
.page-header {
    background: var(--mh-bg-alt);
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--mh-border-light);
}

.page-title {
    font-size: var(--mh-font-size-xl);
    margin-bottom: 0.25rem;
}

/* Breadcrumbs */
.breadcrumbs {
    font-size: var(--mh-font-size-xs);
    color: var(--mh-text-muted);
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: var(--mh-space-sm);
    list-style: none;
}

.breadcrumbs ol li {
    display: flex;
    align-items: center;
    gap: var(--mh-space-sm);
}

.breadcrumbs ol li + li::before {
    content: '/';
    color: var(--mh-text-muted);
}

.breadcrumbs a {
    color: var(--mh-text-muted);
}

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

/* ==========================================================================
   Page Layout
   ========================================================================== */
.page-layout {
    max-width: 800px;
}

.page-content {
    font-size: var(--mh-font-size-md);
    line-height: 1.8;
}

.page-content h2,
.page-content h3,
.page-content h4 {
    margin: var(--mh-space-2xl) 0 var(--mh-space-md);
}

.page-content p {
    margin-bottom: var(--mh-space-md);
}

.page-content img {
    border-radius: var(--mh-radius);
    margin: var(--mh-space-lg) 0;
}

/* ==========================================================================
   Blog Sidebar
   ========================================================================== */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--mh-space-xl);
}

.blog-sidebar .widget {
    padding: var(--mh-space-lg);
    background: var(--mh-bg-alt);
    border-radius: var(--mh-radius-lg);
}

.blog-sidebar .widget-title {
    font-size: var(--mh-font-size-md);
    margin-bottom: var(--mh-space-md);
    padding-bottom: var(--mh-space-sm);
    border-bottom: 2px solid var(--mh-primary);
}

/* ==========================================================================
   404 Page
   ========================================================================== */
.error-404 {
    padding: var(--mh-space-3xl) 0;
}

.error-number {
    font-size: 8rem;
    font-weight: 800;
    color: var(--mh-primary-light);
    line-height: 1;
    display: block;
    margin-bottom: var(--mh-space-lg);
}

/* ==========================================================================
   No Results
   ========================================================================== */
.no-results {
    text-align: center;
    padding: var(--mh-space-3xl) 0;
}

.no-results h2 {
    margin-bottom: var(--mh-space-md);
}

.no-results p {
    color: var(--mh-text-light);
    margin-bottom: var(--mh-space-xl);
}

/* ==========================================================================
   Newsletter Section
   ========================================================================== */
.newsletter-section {
    background: var(--mh-primary);
    padding: var(--mh-space-2xl) 0;
    color: #fff;
}

.newsletter-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--mh-space-xl);
}

.newsletter-content h2 {
    color: #fff;
    margin-bottom: var(--mh-space-xs);
}

.newsletter-content p {
    opacity: 0.9;
    font-size: var(--mh-font-size-sm);
}

.subscribe-form {
    display: flex;
    gap: var(--mh-space-sm);
    flex-shrink: 0;
}

.subscribe-form input[type="email"] {
    width: 280px;
    padding: 0.75rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: var(--mh-radius);
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.subscribe-form input:focus {
    border-color: #fff;
    box-shadow: none;
}

.subscribe-form .btn {
    background: #fff;
    color: var(--mh-primary);
    border-color: #fff;
}

.subscribe-form .btn:hover {
    background: var(--mh-text);
    color: #fff;
    border-color: var(--mh-text);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--mh-heading);
    color: rgba(255, 255, 255, 0.7);
    padding-top: var(--mh-space-3xl);
}

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

.footer-logo {
    margin-bottom: var(--mh-space-md);
}

.footer-logo a {
    font-size: var(--mh-font-size-2xl);
    font-weight: 700;
    color: #fff;
}

.footer-about {
    font-size: var(--mh-font-size-sm);
    line-height: 1.7;
    margin-bottom: var(--mh-space-lg);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--mh-transition);
}

.social-link:hover {
    background: var(--mh-primary);
    color: #fff;
}

.footer-col .widget-title {
    color: #fff;
    font-size: var(--mh-font-size-md);
    margin-bottom: var(--mh-space-lg);
    position: relative;
    padding-bottom: var(--mh-space-sm);
}

.footer-col .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--mh-primary);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--mh-font-size-sm);
    transition: all var(--mh-transition);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: var(--mh-space-sm);
    margin-bottom: var(--mh-space-md);
    font-size: var(--mh-font-size-sm);
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: #fff;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--mh-space-lg) 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--mh-font-size-xs);
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: var(--mh-space-sm);
}

.payment-label {
    opacity: 0.7;
}

.payment-icons {
    display: flex;
    gap: var(--mh-space-xs);
}

.payment-icon {
    display: inline-block;
    padding: 0.125rem 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--mh-radius-sm);
    font-size: 10px;
    font-weight: 600;
}

/* ==========================================================================
   Screen Reader Text
   ========================================================================== */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

    .blog-sidebar {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --mh-container-padding: 1rem;
        --mh-space-3xl: 2.5rem;
    }

    .top-bar-right {
        display: none;
    }

    .header-inner {
        min-height: 56px;
        flex-wrap: nowrap !important;
        align-items: center !important;
    }

    .site-branding .custom-logo-link,
    .site-branding img,
    .custom-logo-link img {
        max-height: 48px !important;
    }

    .section-title-v4 {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 0.25rem !important;
    }
    
    .section-title-v4 h2 {
        font-size: 1.4rem !important;
        white-space: nowrap;
    }
    
    .section-title-v4 p {
        font-size: 0.75rem !important;
        white-space: nowrap;
        margin: 0;
    }

    .header-search {
        flex: 1;
        order: unset;
        width: auto;
        margin: 0 0.5rem;
    }
    
    .header-search .search-field {
        padding: 0.4rem 2rem 0.4rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .header-search .search-submit {
        width: 32px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: block;
    }

    .main-navigation {
        display: none;
    }

    .header-inner {
        min-height: 56px;
    }

    .hero-slide,
    .hero-banner {
        min-height: 350px;
    }

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

    .promo-grid-2,
    .promo-grid-3 {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--mh-space-md);
    }

    .newsletter-inner {
        flex-direction: column;
        text-align: center;
    }

    .subscribe-form {
        flex-direction: column;
        width: 100%;
    }

    .subscribe-form input[type="email"] {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--mh-space-xl);
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: var(--mh-space-md);
        text-align: center;
    }

    .mini-cart-dropdown {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        transform: translate(-50%, -50%) !important;
        width: 90vw !important;
        max-width: 400px !important;
        max-height: 80vh !important;
        overflow-y: auto !important;
        box-shadow: 0 0 0 10000px rgba(0,0,0,0.6), 0 10px 50px rgba(0,0,0,0.5) !important;
        z-index: 99999 !important;
        border-radius: var(--mh-radius-lg) !important;
    }

    .slider-arrow {
        display: none;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--mh-space-sm);
    }

    .post-navigation {
        flex-direction: column;
    }

    .post-nav-link {
        max-width: 100%;
    }

    .post-nav-next {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--mh-space-sm);
    }

    .category-card-image {
        width: 100px;
        height: 100px;
    }

    .category-card {
        padding: var(--mh-space-md);
    }

    .hero-title {
        font-size: 1.5rem;
    }

    h1 { font-size: var(--mh-font-size-2xl); }
    h2 { font-size: var(--mh-font-size-xl); }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
    .top-bar, .site-header, .main-navigation, .mobile-nav,
    .newsletter-section, .site-footer, .header-search,
    .header-actions, .mobile-menu-toggle {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    a {
        text-decoration: underline;
    }
}

/* ==========================================================================
   premiumfruitbd.com Redesign V4 Styles
   ========================================================================== */

/* Theme Color Variable Tweaks */
:root {
    --mh-primary: #0d9488;
    --mh-primary-dark: #0f766e;
    --mh-primary-light: #e2f0d9;
    --mh-bg-white: #ffffff;
    --mh-shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --mh-shadow-md: 0 8px 24px rgba(0,0,0,0.08);
}

/* Custom Logo Constraints */
.site-branding .custom-logo-link,
.site-branding img,
.custom-logo-link img {
    max-height: 80px !important;
    width: auto !important;
    display: block;
}

.site-branding {
    display: flex;
    align-items: center;
}

.footer-logo {
    display: inline-block;
    background: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.footer-logo .custom-logo-link,
.footer-logo img {
    max-height: 48px !important;
    width: auto !important;
    display: block;
}

/* ==========================================================================
   Premium Hero Slider (phs-*)
   ========================================================================== */
.premium-hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.phs-track {
    position: relative;
    width: 100%;
}

.phs-slide {
    display: none;
    position: relative;
    min-height: 160px;
    overflow: hidden;
}

.phs-slide.active {
    display: block;
    animation: phsFadeIn 0.7s ease;
}

@keyframes phsFadeIn {
    from { opacity: 0; transform: scale(1.02); }
    to   { opacity: 1; transform: scale(1); }
}

/* Decorative animated shapes */
.phs-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.phs-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    mix-blend-mode: screen;
}

.phs-circle--1 {
    width: 600px; height: 600px;
    top: -200px; right: -100px;
    background: radial-gradient(circle at center, #3b82f6 0%, transparent 70%);
    animation: phsFloat 10s ease-in-out infinite;
}

.phs-circle--2 {
    width: 700px; height: 700px;
    bottom: -250px; left: -150px;
    background: radial-gradient(circle at center, #10b981 0%, transparent 70%);
    animation: phsFloat 12s ease-in-out infinite reverse;
}

.phs-circle--3 {
    width: 500px; height: 500px;
    top: 10%; left: 20%;
    background: radial-gradient(circle at center, #8b5cf6 0%, transparent 70%);
    animation: phsFloat 14s ease-in-out infinite 2s;
}

.phs-wave {
    position: absolute;
    bottom: -2px; left: 0; right: 0;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60'%3E%3Cpath fill='%23ffffff' fill-opacity='0.06' d='M0,30 C240,0 480,60 720,30 C960,0 1200,60 1440,30 L1440,60 L0,60 Z'/%3E%3C/svg%3E") repeat-x bottom;
}

@keyframes phsFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-18px) scale(1.04); }
}

/* Premium Animated Fish SVG Icons */
.phs-fish-icon {
    position: absolute;
    width: 150px;
    height: auto;
    color: rgba(255, 255, 255, 0.25);
    pointer-events: none;
    z-index: 1;
}

.phs-fish-icon--1 {
    top: 15%;
    left: -20%;
    animation: phsSwimRight 25s linear infinite;
}

.phs-fish-icon--2 {
    bottom: 20%;
    left: -30%;
    width: 250px;
    color: rgba(255, 255, 255, 0.15);
    animation: phsSwimRight 35s linear infinite 10s;
}

.phs-fish-icon--3 {
    top: 40%;
    right: -20%;
    width: 180px;
    color: rgba(255, 255, 255, 0.2);
    animation: phsSwimLeft 28s linear infinite 5s;
}

@keyframes phsSwimRight {
    0% { transform: translateX(0) translateY(0) rotate(-5deg); }
    25% { transform: translateX(30vw) translateY(-30px) rotate(5deg); }
    50% { transform: translateX(60vw) translateY(20px) rotate(-2deg); }
    75% { transform: translateX(90vw) translateY(-20px) rotate(3deg); }
    100% { transform: translateX(120vw) translateY(0) rotate(-5deg); }
}

@keyframes phsSwimLeft {
    0% { transform: translateX(0) translateY(0) rotate(5deg) scaleX(-1); }
    25% { transform: translateX(-30vw) translateY(30px) rotate(-5deg) scaleX(-1); }
    50% { transform: translateX(-60vw) translateY(-20px) rotate(2deg) scaleX(-1); }
    75% { transform: translateX(-90vw) translateY(20px) rotate(-3deg) scaleX(-1); }
    100% { transform: translateX(-120vw) translateY(0) rotate(5deg) scaleX(-1); }
}

/* Content layout */
.phs-content-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem 1rem 2rem 1rem;
    position: relative;
    z-index: 2;
    min-height: 180px;
}

.phs-content {
    color: #fff;
    padding: 0 !important;
    max-width: 900px;
    width: 100%;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
}

.phs-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.phs-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    background: linear-gradient(to right, #ffffff 0%, #93c5fd 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: phsShine 6s linear infinite;
    text-shadow: 0 10px 30px rgba(0,0,0,0.15);
    white-space: nowrap;
}

@keyframes phsShine {
    to { background-position: 200% center; }
}

.phs-title span {
    color: inherit;
}

.phs-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0 auto 1.5rem auto;
    max-width: 900px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.phs-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.phs-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
    border: 2px solid transparent;
}

.phs-btn--primary {
    background: #fff;
    color: #0f766e;
    border-color: #fff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15), 0 0 0 4px rgba(255,255,255,0.05);
}

.phs-btn--primary:hover {
    background: #f8fafc;
    color: #0d9488;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25), 0 0 0 6px rgba(255,255,255,0.1);
}

.phs-btn--whatsapp {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25), 0 0 0 4px rgba(37, 211, 102, 0.1);
}

.phs-btn--whatsapp:hover {
    background: #22c55e;
    color: #fff;
    border-color: #22c55e;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35), 0 0 0 6px rgba(37, 211, 102, 0.15);
}



.phs-stats-bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    position: absolute;
    bottom: 1.5rem;
    left: 0;
    width: 100%;
    z-index: 10;
}

@media (max-width: 768px) {
    .phs-stats-bottom {
        flex-direction: column;
        align-items: center;
        position: relative;
        bottom: 0;
        margin-top: 2rem;
    }
}

.phs-stat-pill {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: default;
}

.phs-stat-pill:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Navigation arrows */
.phs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: 1.5px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
    color: #fff;
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
}

.phs-arrow:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

.phs-arrow--prev { left: 1.25rem; }
.phs-arrow--next { right: 1.25rem; }

/* Dot indicators */
.phs-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.phs-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.phs-dot.active {
    background: #fff;
    width: 28px;
    border-radius: 50px;
}

/* ==========================================================================
   Trust Stats Bar
   ========================================================================== */
.trust-stats-bar {
    background: #fff;
    border-bottom: 1px solid var(--mh-border);
    box-shadow: 0 2px 12px rgba(13, 148, 136,0.06);
    padding: 0;
}

.trust-stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.85rem;
    padding: 1rem 1.5rem;
    border-right: 1px solid var(--mh-border);
}

.trust-stat:last-child {
    border-right: none;
}

.trust-stat__icon {
    font-size: 1.8rem;
    line-height: 1;
    flex-shrink: 0;
}

.trust-stat div {
    display: flex;
    flex-direction: column;
}

.trust-stat strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--mh-heading);
    line-height: 1.3;
}

.trust-stat span {
    font-size: 0.78rem;
    color: var(--mh-text-muted);
    margin-top: 0.1rem;
}

/* Responsive */
@media (max-width: 900px) {
    .phs-content-wrap {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .phs-content { padding-left: 0; }
    .phs-visual { display: none; }
    .phs-actions { justify-content: center; }
    .phs-desc { margin: 0 auto 2rem; }
    .phs-title { font-size: 2rem; }
    .trust-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .trust-stat { border-right: 1px solid var(--mh-border); border-bottom: 1px solid var(--mh-border); }
}

@media (max-width: 560px) {
    .phs-title { font-size: 1.6rem; padding: 0 25px; }
    .phs-desc { padding: 0 45px; font-size: 0.9rem; }
    .phs-slide { min-height: 340px; }
    .phs-content-wrap { padding: 2rem 1rem; }
    .phs-arrow { width: 32px; height: 32px; }
    .phs-arrow--prev { left: 0.2rem; }
    .phs-arrow--next { right: 0.2rem; }
    .trust-stats-inner { grid-template-columns: repeat(2, 1fr); }
    .phs-btn { padding: 0.7rem 1.2rem; font-size: 0.85rem; }
}

/* Hero Section V4 */
.hero-section-v4 {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 3rem 0;
    overflow: hidden;
}


.hero-banner-v4 {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 3rem;
}

.hero-content-v4 .hero-subtitle {
    display: inline-block;
    background-color: var(--mh-primary-light);
    color: var(--mh-primary-dark);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-content-v4 .hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--mh-heading);
    margin-bottom: 1.25rem;
}

.hero-content-v4 .hero-desc {
    font-size: 1.1rem;
    color: var(--mh-text-light);
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-actions-v4 {
    display: flex;
    gap: 1rem;
}

.btn-primary-v4 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--mh-primary);
    color: #fff;
    padding: 0.875rem 1.75rem;
    border-radius: var(--mh-radius);
    font-weight: 600;
    transition: all var(--mh-transition);
}

.btn-primary-v4:hover {
    background-color: var(--mh-primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-v4 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: transparent;
    color: var(--mh-text);
    border: 2px solid var(--mh-border);
    padding: 0.875rem 1.75rem;
    border-radius: var(--mh-radius);
    font-weight: 600;
    transition: all var(--mh-transition);
}

.btn-outline-v4:hover {
    background-color: #fff;
    border-color: var(--mh-primary);
    color: var(--mh-primary);
    transform: translateY(-2px);
}

.btn-whatsapp-v4 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #25D366;
    color: #fff;
    border: 2px solid #25D366;
    padding: 0.875rem 1.75rem;
    border-radius: var(--mh-radius);
    font-weight: 600;
    transition: all var(--mh-transition);
    text-decoration: none;
}

.btn-whatsapp-v4:hover {
    background-color: #1da851;
    border-color: #1da851;
    color: #fff;
    transform: translateY(-2px);
}

.btn-facebook-v4 {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #1877F2;
    color: #fff;
    border: 2px solid #1877F2;
    padding: 0.875rem 1.75rem;
    border-radius: var(--mh-radius);
    font-weight: 600;
    transition: all var(--mh-transition);
    text-decoration: none;
}

.btn-facebook-v4:hover {
    background-color: #0d65d9;
    border-color: #0d65d9;
    color: #fff;
    transform: translateY(-2px);
}

.hero-image-v4 {
    display: flex;
    justify-content: center;
    position: relative;
}

.floating-fish {
    max-height: 380px;
    animation: floatFish 4s ease-in-out infinite;
    filter: drop-shadow(0 15px 20px rgba(0,0,0,0.15));
}

@keyframes floatFish {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.fish-bubble {
    position: absolute;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    animation: blowBubble 3.5s ease-in infinite;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
}

@keyframes blowBubble {
    0% { transform: translate(0, 0) scale(0.2); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translate(-30px, -80px) scale(1.5); opacity: 0; }
}

/* Section Titles */
.section-title-v4 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title-v4 h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title-v4 h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--mh-primary);
    border-radius: 2px;
}

.section-title-v4 p {
    color: var(--mh-text-light);
    font-size: 1rem;
}

/* Circular Categories */
.categories-circle-section {
    padding: 3.5rem 0 2rem;
    background-color: var(--mh-bg);
}

.categories-circle-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: center;
    justify-items: center;
    gap: 2rem 1.5rem;
    padding: 0.5rem 0 1.5rem;
}

.category-circle-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    text-align: center;
    width: 96px;
}

.category-circle-img {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background-color: var(--mh-bg-alt);
    border: 2px solid transparent;
    padding: 4px;
    transition: all var(--mh-transition);
    box-shadow: var(--mh-shadow-sm);
    overflow: hidden;
}

.category-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.category-circle-card:hover .category-circle-img {
    border-color: var(--mh-primary);
    transform: scale(1.06);
    box-shadow: 0 4px 10px rgba(13, 148, 136, 0.15);
}

.category-circle-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--mh-text);
}

/* Product Cards Grid V4 */
.products-grid-section-v4 {
    padding: 3rem 0;
    background-color: var(--mh-bg-alt);
}

.products-grid-v4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.product-card-v4 {
    background-color: #fff;
    border-radius: var(--mh-radius-lg);
    border: 1px solid var(--mh-border-light);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all var(--mh-transition);
}

.product-card-v4:hover {
    transform: translateY(-5px);
    box-shadow: var(--mh-shadow-md);
    border-color: var(--mh-primary-light);
}

.product-card-badge-v4 {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 10;
}

.badge-tag-v4 {
    background-color: rgba(0, 0, 0, 0.65);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 50px;
}

.badge-delivery-v4 {
    background-color: var(--mh-secondary);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 50px;
}

.badge-sale-v4 {
    background-color: #e74c3c;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 50px;
}

.product-card-img-v4 {
    padding-top: 100%;
    position: relative;
    background-color: #fcfcfc;
    overflow: hidden;
}

.product-card-img-v4 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-v4:hover .product-card-img-v4 img {
    transform: scale(1.08);
}

.product-card-info-v4 {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-title-v4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-title-v4 a {
    color: var(--mh-heading);
}

.product-card-title-v4 a:hover {
    color: var(--mh-primary);
}

.product-card-meta-v4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.product-weight-v4 {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--mh-text-light);
    background-color: var(--mh-bg-light);
    padding: 2px 8px;
    border-radius: 4px;
}

.product-card-price-row-v4 {
    margin-bottom: 1.25rem;
}

.product-card-price-v4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--mh-primary);
}

.product-card-price-v4 del {
    font-size: 0.9rem;
    color: var(--mh-text-muted);
    font-weight: 400;
    margin-left: 6px;
}

.product-card-action-v4 {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-cart-v4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #fff;
    color: var(--mh-primary);
    border: 2px solid var(--mh-primary);
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--mh-radius);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: all var(--mh-transition);
    cursor: pointer;
}

.btn-cart-v4:hover {
    background-color: var(--mh-primary);
    color: #fff;
}

.btn-buy-v4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--mh-secondary);
    color: #fff;
    width: 100%;
    padding: 0.75rem;
    border-radius: var(--mh-radius);
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    transition: all var(--mh-transition);
}

.btn-buy-v4:hover {
    background-color: #e55a2b;
    color: #fff;
}

.no-products-v4 {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--mh-text-light);
    padding: 2rem;
}

/* Why Choose Us Redesign */
.features-section-v4 {
    padding: 4rem 0;
    background-color: var(--mh-bg);
}

.features-grid-v4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card-v4 {
    background-color: var(--mh-bg-alt);
    padding: 2rem 1.5rem;
    border-radius: var(--mh-radius-lg);
    text-align: center;
    border: 1px solid var(--mh-border-light);
}

.feature-icon-v4 {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.feature-card-v4 h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.feature-card-v4 p {
    font-size: 0.875rem;
    color: var(--mh-text-light);
    line-height: 1.5;
}

/* Customer Video Reviews */
.reviews-section-v4 {
    padding: 2.5rem 0;
    background-color: #ffffff;
}

.reviews-grid-v4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-video-card-v4 {
    background-color: #fff;
    border-radius: var(--mh-radius-lg);
    overflow: hidden;
    box-shadow: var(--mh-shadow-sm);
    border: 1px solid var(--mh-border-light);
}

.video-placeholder-v4 {
    position: relative;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-color: #000;
    overflow: hidden;
    cursor: pointer;
}

.video-placeholder-v4 img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.video-play-btn-v4 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background-color: rgba(13, 148, 136, 0.95);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: all var(--mh-transition);
}

.video-placeholder-v4:hover .video-play-btn-v4 {
    background-color: var(--mh-primary);
    transform: translate(-50%, -50%) scale(1.08);
}

.review-text-v4 {
    padding: 1.5rem;
}

.review-text-v4 h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--mh-heading);
}

.review-text-v4 p {
    font-size: 0.875rem;
    color: var(--mh-text-light);
    line-height: 1.5;
    font-style: italic;
}

/* YouTube Slider */
.youtube-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 2.5rem;
}

.youtube-slider-track {
    display: flex;
    transition: transform 0.4s ease;
}

.youtube-slide-item {
    min-width: calc(36.666% - 14px);
    padding: 0;
    box-sizing: border-box;
    flex-shrink: 0;
}

.mh-slider-item {
    min-width: calc(36.666% - 14px);
    padding: 0 0.75rem;
    box-sizing: border-box;
    flex-shrink: 0;
}

.mh-dynamic-slider-section {
    padding: 4rem 0;
    background: #fff;
}

.mh-dynamic-slider-section:nth-of-type(even) {
    background: var(--mh-bg-alt);
}

.mh-slider-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
    min-height: 320px;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--mh-border-light);
    border-radius: var(--mh-radius-lg);
    box-shadow: var(--mh-shadow-md);
}

.mh-slider-image,
.mh-slider-video {
    min-width: 0;
    min-height: 280px;
}

.mh-slider-image {
    overflow: hidden;
    border-radius: var(--mh-radius);
    background: var(--mh-bg-light);
}

.mh-slider-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mh-slider-video {
    display: flex;
    align-items: stretch;
}

.mh-slider-video .video-placeholder-v4 {
    width: 100%;
    min-height: 280px;
    padding-top: 0;
    border-radius: var(--mh-radius);
}

.mh-slider-video .video-placeholder-v4 img {
    opacity: 1;
}

.youtube-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--mh-border);
    background: #fff;
    color: var(--mh-text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    z-index: 2;
}

.youtube-slider-btn:hover {
    background: var(--mh-primary);
    color: #fff;
    border-color: var(--mh-primary);
}

.youtube-slider-prev { left: 0; }
.youtube-slider-next { right: 0; }

.youtube-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.youtube-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--mh-border);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.youtube-slider-dot.active {
    background: var(--mh-primary);
    border-color: var(--mh-primary);
}

@media (max-width: 960px) {
    .youtube-slide-item,
    .mh-slider-item { min-width: 50%; }

    .mh-slider-item {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .mh-slider-image,
    .mh-slider-video,
    .mh-slider-video .video-placeholder-v4 {
        min-height: 240px;
    }
}

@media (max-width: 640px) {
    .youtube-slide-item,
    .mh-slider-item { min-width: 100%; }

    .youtube-slider-wrapper { padding: 0 2rem; }

    .mh-slider-item {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 0.75rem;
    }

    .mh-slider-image,
    .mh-slider-video,
    .mh-slider-video .video-placeholder-v4 {
        min-height: 220px;
    }
}

/* ==========================================================================
   Single Product V4 Styles — Premium Redesign
   ========================================================================== */
.page-header-v4 {
    background: linear-gradient(135deg, #f0faf3 0%, #e8f5ec 100%);
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--mh-border);
}

.page-header-v4 .breadcrumbs {
    font-size: 0.75rem;
}

.single-product-container-v4 {
    padding-top: 1rem;
    padding-bottom: 5rem;
}

.shop-container-v4 {
    padding-top: 2rem;
    padding-bottom: 4rem;
}

.shop-content-v4 {
    padding-top: 0;
    margin-top: 0;
}

.shop-content-v4 > *:first-child {
    margin-top: 0 !important;
}

.sidebar-v4 > .sidebar-sticky {
    margin-top: 0;
    padding-top: 0;
}

/* ==========================================================================
   Shop Archive Layout — sidebar + product grid side by side
   ========================================================================== */
.shop-layout {
    display: flex;
    flex-wrap: wrap;
    row-gap: 2rem;
    column-gap: 2rem;
    align-items: stretch;
}

.sidebar-v4 {
    flex: 0 0 25%;
    max-width: 25%;
    min-width: 240px;
    order: 1;
    align-self: flex-start;
}

.shop-content-v4 {
    flex: 1 1 0;
    min-width: 0;
    order: 2;
    padding-top: 0;
    margin-top: 0;
}

.shop-content-v4 > *:first-child {
    margin-top: 0 !important;
}

.sidebar-v4 > .sidebar-sticky {
    margin-top: 0;
    padding-top: 0;
    position: sticky;
    top: 16px;
    max-height: calc(100vh - 24px);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.sidebar-v4 {
    flex: 0 0 25%;
    max-width: 25%;
    min-width: 240px;
    order: 1;
    align-self: flex-start;
}

.shop-content-v4 {
    flex: 1 1 0;
    min-width: 0;
    order: 2;
}

@media (max-width: 991.98px) {
    .sidebar-v4 {
        display: none;
    }
    .shop-content-v4 {
        flex: 0 0 100%;
        max-width: 100%;
        min-width: 0;
        order: 2;
    }
    .sidebar-sticky {
        position: static;
    }
}

/* Sidebar widget polish — works with the new shop layout */
.sidebar-v4 .sidebar-sticky > * + * {
    margin-top: 1.25rem;
}

.sidebar-v4 .sidebar-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0.5rem 0 0;
    color: var(--mh-text);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--mh-primary, #1a8a4a);
    display: inline-block;
}

.sidebar-v4 .sidebar-sticky > h3.sidebar-title + .category-list-widget {
    margin-top: 1rem;
}

.sidebar-v4 .sidebar-title {
    margin-bottom: 0.75rem !important;
    padding-bottom: 0.6rem !important;
}

.category-list-widget {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    overflow: visible;
}

.category-list-widget .category-tree {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-list-widget .category-item + .category-item {
    border-top: 1px solid var(--mh-border-light, #f1f1f1);
    margin-top: 0;
    padding-top: 0;
}

.category-list-widget .category-item {
    border-bottom: 0;
}

.category-list-widget .category-item:last-child {
    border-bottom: 0;
}

.category-list-widget .category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0.5rem;
    color: var(--mh-text);
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    font-weight: 500;
}

.category-list-widget .category-link:hover {
    background: rgba(26, 138, 74, 0.08);
    color: var(--mh-primary, #1a8a4a);
    transform: translateX(2px);
}

.category-list-widget .category-item.active > .category-link {
    color: #ffffff;
    font-weight: 600;
    background: var(--mh-primary, #1a8a4a);
}

.category-list-widget .category-item.active .category-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.category-list-widget .category-count {
    font-size: 0.78rem;
    background: var(--mh-bg-soft, #f4f6f4);
    color: var(--mh-text-muted, #6b7280);
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    min-width: 1.6rem;
    text-align: center;
    font-weight: 600;
    transition: background 0.2s ease, color 0.2s ease;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
}

.shop-toolbar-category {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--mh-text);
    margin-right: 1.5rem;
    white-space: nowrap;
}

.shop-toolbar-left {
    display: flex;
    align-items: center;
    gap: 0;
}

@media (max-width: 768px) {
    .shop-toolbar-category {
        font-size: 0.95rem;
        margin-right: 0.75rem;
    }
    .shop-toolbar-left {
        flex-wrap: wrap;
        gap: 0.25rem;
    }
}

.category-list-widget .category-link:hover .category-count {
    background: var(--mh-primary, #1a8a4a);
    color: #ffffff;
}

/* Two-column main layout */
.single-product-layout-v4 {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 2.5rem;
    align-items: start;
}

/* ---- LEFT COLUMN ---- */
.product-left-col-v4 {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    position: sticky;
    top: 100px;
    align-self: start;
}

/* Gallery */
.product-gallery-v4 {
    display: flex;
    flex-direction: row;
    gap: 0.875rem;
    align-items: stretch;
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--mh-border-light);
    padding: 1.25rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.main-image-wrapper-v4 {
    flex: 1;
    border-radius: 12px;
    background: #fafafa;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    min-height: 380px;
    position: relative;
}

.main-image-wrapper-v4::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
    pointer-events: none;
}

#main-product-img-v4 {
    max-height: 440px;
    object-fit: contain;
    width: 100%;
    transition: transform 0.35s ease;
}

.main-image-wrapper-v4:hover #main-product-img-v4 {
    transform: scale(1.04);
}

.gallery-thumbs-v4 {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
    max-height: 440px;
    scrollbar-width: thin;
    scrollbar-color: var(--mh-border) transparent;
}

.gallery-thumbs-v4::-webkit-scrollbar {
    width: 3px;
}

.gallery-thumbs-v4::-webkit-scrollbar-thumb {
    background: var(--mh-border);
    border-radius: 3px;
}

.thumb-item-v4 {
    width: 68px;
    height: 68px;
    min-width: 68px;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    background: #f5f5f5;
    flex-shrink: 0;
    transition: all 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.thumb-item-v4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item-v4.active,
.thumb-item-v4:hover {
    border-color: var(--mh-primary);
    box-shadow: 0 0 0 3px rgba(13, 148, 136,0.2);
}

/* Tabs (description / shipping) */
.product-tabs-v4 {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--mh-border-light);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.tabs-nav-v4 {
    display: flex;
    border-bottom: 1px solid var(--mh-border-light);
    background: #fafafa;
}

.tab-btn-v4 {
    flex: 1;
    background: none;
    border: none;
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    color: var(--mh-text-muted);
    border-bottom: 3px solid transparent;
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.tab-btn-v4:hover {
    color: var(--mh-primary);
    background: rgba(13, 148, 136,0.04);
}

.tab-btn-v4.active {
    color: var(--mh-primary);
    border-bottom-color: var(--mh-primary);
    background: #fff;
    font-weight: 700;
}

.tab-content-v4 {
    display: none;
    padding: 1.5rem;
    line-height: 1.7;
}

.tab-content-v4.active {
    display: block;
}

.tab-content-v4 p {
    margin-bottom: 0.75rem;
    color: var(--mh-text-light);
    font-size: 0.95rem;
}

.product-description-content h1,
.product-description-content h2,
.product-description-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--mh-heading);
}

/* ---- RIGHT COLUMN (Order Panel) ---- */
.product-right-col-v4 {
    display: flex;
    flex-direction: column;
}

.order-summary-section-v4 {
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    overflow: hidden;
}

/* Product title + price block at top of right panel */
.product-header-v4 {
    padding: 1.75rem 1.75rem 0;
    margin-bottom: 1.25rem;
}

.product-title-v4 {
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--mh-heading);
    margin-bottom: 0.6rem;
    letter-spacing: -0.3px;
}

@media (max-width: 768px) {
    .product-title-v4 {
        font-size: 1.2rem;
    }
}

.stock-badge-v4 {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.stock-badge-v4.in-stock {
    background: #d4edda;
    color: #115e59;
}

.stock-badge-v4.out-of-stock {
    background: #f8d7da;
    color: #721c24;
}

.product-price-row-v4 {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, #f0faf3, #e8f5ec);
    border-top: 1px solid rgba(13, 148, 136,0.15);
    border-bottom: 1px solid rgba(13, 148, 136,0.15);
}

.price-label-v4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--mh-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-display-price-v4 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--mh-primary);
    line-height: 1;
}

.product-display-price-v4 del {
    font-size: 1.1rem;
    color: var(--mh-text-muted);
    font-weight: 400;
    text-decoration: line-through;
}

/* Section headings inside right column */
.section-title-v4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--mh-heading);
    padding: 0 0 0.75rem;
    border-bottom: 2px solid var(--mh-border-light);
    margin-bottom: 1.1rem;
}

.section-title-v4 svg {
    color: var(--mh-primary);
    flex-shrink: 0;
}

.subsection-title-v4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--mh-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

/* Order Summary table */
.order-summary-v4 {
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid var(--mh-border-light);
}

.summary-table-wrapper-v4 {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--mh-border-light);
}

.summary-table-v4 {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.925rem;
}

.summary-table-v4 td {
    padding: 0.65rem 1rem !important;
    color: var(--mh-text);
    border-bottom: 1px solid var(--mh-border-light);
}

.summary-table-v4 tr:last-child td {
    border-bottom: none;
}

.summary-table-v4 td.text-right {
    text-align: right;
    font-weight: 600;
    color: var(--mh-heading);
}

.summary-table-v4 .total-row-v4 td {
    background: linear-gradient(135deg, #f0faf3, #e8f5ec);
    font-weight: 700;
    font-size: 1rem;
    color: var(--mh-heading);
    padding: 0.875rem 1rem;
}

.summary-table-v4 .total-row-v4 td.text-right {
    color: var(--mh-primary);
    font-size: 1.35rem;
    font-weight: 900;
}

/* Checkout Form */
.checkout-form-v4 {
    background: #ffffff;
    border: 1px solid var(--mh-border-light);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    margin-top: 1rem;
}

.express-checkout-form-v4 {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* Variation pills */
.variation-pills-v4 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

/* Fix WooCommerce Notices stretching & Make them Toasts */
.woocommerce-notices-wrapper {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99999;
    width: auto;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.woocommerce-message, .woocommerce-error, .woocommerce-info {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 100% !important;
    box-sizing: border-box;
    padding: 1rem 1.5rem !important;
    border-radius: 8px !important;
    pointer-events: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: slideIn 0.3s ease;
    margin: 0 !important;
}

.woocommerce-message .button, .woocommerce-error .button, .woocommerce-info .button {
    margin-left: 1rem;
    background: rgba(255,255,255,0.2) !important;
    color: inherit !important;
    border: none !important;
    padding: 0.4rem 0.8rem !important;
    border-radius: 4px !important;
    text-decoration: none !important;
}

.variation-pill-v4 {
    background: #fff;
    border: 2px solid var(--mh-border);
    color: var(--mh-text);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.variation-pill-v4:hover {
    border-color: var(--mh-primary);
    color: var(--mh-primary);
}

.variation-pill-v4.active {
    background: var(--mh-primary);
    border-color: var(--mh-primary);
    color: #fff;
    box-shadow: 0 3px 10px rgba(13, 148, 136,0.3);
}

/* Quantity control */
.quantity-selector-v4 {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.selector-label-v4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--mh-heading);
    white-space: nowrap;
}

.qty-control-v4 {
    display: inline-flex;
    align-items: center;
    border: 2px solid var(--mh-border);
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.qty-btn-v4 {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    color: var(--mh-primary);
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn-v4:hover {
    background: var(--mh-primary-light);
}

#product-qty-v4 {
    width: 52px;
    height: 40px;
    border: none;
    border-left: 2px solid var(--mh-border);
    border-right: 2px solid var(--mh-border);
    text-align: center;
    font-weight: 800;
    font-size: 1.05rem;
    background: #fff;
    -moz-appearance: textfield;
    appearance: textfield;
}

#product-qty-v4::-webkit-inner-spin-button,
#product-qty-v4::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Customer info section */
.customer-info-section-v4 {
    background: var(--mh-bg-alt);
    border-radius: 10px;
    padding: 1.1rem 1.25rem;
    border: 1px solid var(--mh-border-light);
}

.info-grid-v4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
}

.form-group-v4 {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.form-group-v4.full-width {
    grid-column: 1 / -1;
}

.form-group-v4 label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--mh-text);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.form-group-v4 label .required {
    color: var(--mh-danger);
    margin-left: 2px;
}

.form-group-v4 input,
.form-group-v4 select,
.form-group-v4 textarea {
    width: 100% !important;
    padding: 0.75rem 1rem !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    border: 1.5px solid var(--mh-border) !important;
    background: #fff !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.form-group-v4 input:focus,
.form-group-v4 select:focus,
.form-group-v4 textarea:focus {
    border-color: var(--mh-primary) !important;
    box-shadow: 0 0 0 3px rgba(13, 148, 136,0.15) !important;
}

.form-group-v4 textarea {
    min-height: 70px;
    resize: vertical;
}

/* Payment method */
.payment-method-section-v4 {
    background: var(--mh-bg-alt);
    border-radius: 10px;
    padding: 1.1rem 1.25rem;
    border: 1px solid var(--mh-border-light);
}

.payment-options-v4 {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.payment-option-v4 {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 2px solid var(--mh-border);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.payment-option-v4:hover {
    border-color: var(--mh-primary);
}

.payment-option-v4.active {
    border-color: var(--mh-primary);
    background: rgba(13, 148, 136,0.05);
    box-shadow: 0 0 0 2px rgba(13, 148, 136,0.15);
}

.radio-label-v4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--mh-text);
}

/* bKash details box */
.bkash-info-box-v4 {
    background: linear-gradient(135deg, #fff0f5, #ffe4ee);
    border: 1px solid #ffb3cc;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.bkash-amount-v4 {
    font-size: 0.9rem;
    color: #c0186c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.bkash-number-display-v4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.bkash-label-v4 {
    font-size: 0.8rem;
    color: var(--mh-text-muted);
    font-weight: 600;
}

.bkash-number-text-v4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #c0186c;
    letter-spacing: 1px;
}

.copy-bkash-number-v4 {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #c0186c;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.copy-bkash-number-v4:hover {
    background: #9e1459;
}

.bkash-fields-v4 .form-row-v4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

/* Order notes */
.order-notes-section-v4 {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.optional {
    font-size: 0.75rem;
    color: var(--mh-text-muted);
    font-weight: 400;
    margin-left: 0.25rem;
}

/* Submit button */
.form-submit-v4 {
    padding-top: 0.25rem;
}

.btn-submit-v4 {
    width: 100%;
    background: linear-gradient(135deg, #0d9488, #0f766e);
    color: #fff;
    border: none;
    padding: 1.05rem 1.5rem;
    border-radius: 12px;
    font-size: 1.15rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 6px 20px rgba(13, 148, 136,0.35);
    letter-spacing: 0.01em;
    position: relative;
}

.btn-submit-v4:hover {
    background: linear-gradient(135deg, #0f766e, #115e59);
    box-shadow: 0 8px 24px rgba(13, 148, 136,0.45);
    transform: translateY(-1px);
}

.btn-submit-v4:active {
    transform: translateY(0);
}

.btn-submit-v4.loading {
    opacity: 0.8;
    pointer-events: none;
}

.btn-submit-v4 .btn-text-v4 {
    transition: opacity 0.2s;
}

.btn-submit-v4.loading .btn-text-v4 {
    opacity: 0;
}

.spinner-v4 {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spinV4 0.9s ease-in-out infinite;
    position: absolute;
}

.btn-submit-v4.loading .spinner-v4 {
    display: block;
}

@keyframes spinV4 {
    to { transform: rotate(360deg); }
}

.checkout-error-msg-v4 {
    display: none;
    background: #fff0f0;
    color: #c00;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid #ffcccc;
}



/* Related products section */
.related-products-section-v4 {
    margin-top: 4rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--mh-border-light);
}

.related-products-section-v4 .section-title-v4 {
    border: none;
    padding-bottom: 0;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.related-products-section-v4 .section-title-v4 h2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--mh-heading);
    margin: 0;
}

/* Related products grid — matches shop page card size exactly */
.related-products-grid-v4 {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.related-products-grid-v4 > li {
    margin: 0 !important;
    float: none !important;
    width: auto !important;
}

@media (max-width: 768px) {
    .related-products-grid-v4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 400px) {
    .related-products-grid-v4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
}

/* Left Column Styling */
.product-left-col-v4 {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-gallery-v4 {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: stretch;
}

.main-image-wrapper-v4 {
    flex: 1;
    border-radius: var(--mh-radius-lg);
    border: 1px solid var(--mh-border);
    background-color: #fff;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    min-height: 400px;
}

.main-image-wrapper-v4 img {
    max-height: 480px;
    object-fit: contain;
    width: 100%;
}

.gallery-thumbs-v4 {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    overflow-y: auto;
    padding-right: 0.25rem;
    max-height: 480px;
    scrollbar-width: thin;
}

.gallery-thumbs-v4::-webkit-scrollbar {
    width: 4px;
}

.gallery-thumbs-v4::-webkit-scrollbar-thumb {
    background: var(--mh-border);
    border-radius: 4px;
}

.thumb-item-v4 {
    width: 72px;
    height: 72px;
    min-width: 72px;
    border-radius: var(--mh-radius-sm);
    border: 2px solid var(--mh-border);
    cursor: pointer;
    overflow: hidden;
    background-color: #fff;
    flex-shrink: 0;
    transition: all var(--mh-transition);
}

.thumb-item-v4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb-item-v4.active,
.thumb-item-v4:hover {
    border-color: var(--mh-primary);
}

/* Tabs */
.product-tabs-v4 {
    background-color: #fff;
    border-radius: var(--mh-radius-lg);
    border: 1px solid var(--mh-border-light);
    overflow: hidden;
}

.tabs-nav-v4 {
    display: flex;
    border-bottom: 1px solid var(--mh-border);
    background-color: var(--mh-bg-light);
}

.tab-btn-v4 {
    flex: 1;
    background: none;
    border: none;
    padding: 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    color: var(--mh-text-light);
    border-bottom: 3px solid transparent;
    transition: all var(--mh-transition);
}

.tab-btn-v4.active {
    color: var(--mh-primary);
    border-bottom-color: var(--mh-primary);
    background-color: #fff;
}

.tab-content-v4 {
    display: none;
    padding: 1.5rem;
}

.tab-content-v4.active {
    display: block;
}

.tab-content-v4 p {
    margin-bottom: 0.75rem;
    color: var(--mh-text-light);
}

/* Right Column Styling */
.product-right-col-v4 {
    background-color: #fff;
    border-radius: var(--mh-radius-lg);
    border: 1px solid var(--mh-border);
    padding: 0rem;
    box-shadow: var(--mh-shadow-sm);
}

.product-header-v4 {
    margin-bottom: 1.25rem;
}

.product-title-v4 {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--mh-heading);
    margin-bottom: 0.5rem;
}

.stock-badge-v4 {
    display: inline-block;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.stock-badge-v4.in-stock {
    background-color: #d4edda;
    color: #115e59;
}

.stock-badge-v4.out-of-stock {
    background-color: #f8d7da;
    color: #721c24;
}

.product-price-row-v4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--mh-border);
}

.price-label-v4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--mh-text-light);
}

.product-display-price-v4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--mh-primary);
}

.product-display-price-v4 del {
    font-size: 1.2rem;
    color: var(--mh-text-muted);
    font-weight: 400;
}

/* Form Settings */
.express-checkout-form-v4 {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.selector-label-v4 {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--mh-heading);
    margin-bottom: 0.75rem;
}

/* Variations Selector */
.variation-pills-v4 {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.variation-pill-v4 {
    background-color: #fff;
    border: 1px solid var(--mh-border);
    color: var(--mh-text);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--mh-transition);
}

.variation-pill-v4:hover {
    border-color: var(--mh-primary);
    color: var(--mh-primary);
}

.variation-pill-v4.active {
    background-color: var(--mh-primary);
    border-color: var(--mh-primary);
    color: #fff;
    box-shadow: 0 4px 10px rgba(13, 148, 136, 0.2);
}

/* Quantity Control */
.qty-control-v4 {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--mh-border);
    border-radius: var(--mh-radius);
    overflow: hidden;
    background-color: #fff;
}

.qty-btn-v4 {
    background: none;
    border: none;
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--mh-transition);
}

.qty-btn-v4:hover {
    background-color: var(--mh-bg-light);
}

#product-qty-v4 {
    width: 50px;
    height: 42px;
    border: none;
    border-left: 1px solid var(--mh-border);
    border-right: 1px solid var(--mh-border);
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    background-color: #fff;
}

/* Customer details fields styling */
.customer-info-section-v4,
.payment-method-section-v4 {
    background-color: var(--mh-bg-light);
    border-radius: var(--mh-radius);
    padding: 1.25rem;
    border: 1px solid var(--mh-border-light);
}

.info-title-v4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--mh-heading);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--mh-border);
    padding-bottom: 0.5rem;
}

.info-fields-v4 {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.form-group-v4 {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group-v4 label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--mh-text);
}

.form-group-v4 label .required {
    color: var(--mh-danger);
}

.form-group-v4 input,
.form-group-v4 select,
.form-group-v4 textarea {
    background-color: #fff !important;
}

.form-group-v4 textarea {
    min-height: 80px;
    resize: vertical;
}

/* Payment Option Radio Wrappers */
.payment-options-v4 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-option-v4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background-color: #fff;
    border: 1px solid var(--mh-border);
    border-radius: var(--mh-radius-sm);
    cursor: pointer;
    transition: all var(--mh-transition);
}

.payment-option-v4.active,
.payment-option-v4:hover {
    border-color: var(--mh-primary);
    background-color: var(--mh-primary-light);
}

.radio-label-v4 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--mh-text);
}

/* Order Summary */
.order-summary-v4 {
    border: 1px solid var(--mh-border);
    border-radius: var(--mh-radius);
    padding: 1.25rem;
}



/* Submit Checkout button and loaders */
.submit-action-v4 {
    margin-top: 1rem;
}

.submit-buttons-row-v4 {
    display: flex;
    gap: 0.75rem;
}

.btn-add-cart-v4 {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: #fff;
    color: var(--mh-primary);
    border: 2px solid var(--mh-primary);
    padding: 1rem 1.25rem;
    border-radius: var(--mh-radius);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--mh-transition);
    white-space: nowrap;
}

.btn-add-cart-v4:hover {
    background-color: var(--mh-primary);
    color: #fff;
}

.btn-checkout-submit-v4 {
    flex: 1;
    width: 100%;
    background-color: var(--mh-primary);
    color: #fff;
    border: none;
    padding: 1rem;
    border-radius: var(--mh-radius);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--mh-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(13, 148, 136, 0.25);
}

.btn-checkout-submit-v4:hover {
    background-color: var(--mh-primary-dark);
    box-shadow: 0 6px 16px rgba(13, 148, 136, 0.35);
}

.btn-checkout-submit-v4.loading .btn-text-v4 {
    opacity: 0.5;
}

.btn-checkout-submit-v4.loading .spinner-v4 {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spinV4 1s ease-in-out infinite;
}

@keyframes spinV4 {
    to { transform: rotate(360deg); }
}

.checkout-error-msg-v4 {
    display: none;
    background-color: #f8d7da;
    color: #721c24;
    padding: 0.75rem;
    border-radius: var(--mh-radius-sm);
    margin-top: 0.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid #f5c6cb;
}

.related-products-section-v4 {
    margin-top: 4rem;
}

/* ==========================================================================
   Responsive & Mobile Adjustments V4
   ========================================================================== */
@media (max-width: 991px) {
    .hero-banner-v4 {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hero-content-v4 .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-actions-v4 {
        justify-content: center;
    }
    
    .floating-fish {
        max-height: 250px;
    }
    
    .products-grid-v4 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid-v4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid-v4 {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .single-product-layout-v4 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .products-grid-v4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .feature-card-v4 {
        padding: 1.5rem 1rem;
    }

    .product-gallery-v4 {
        flex-direction: column-reverse;
    }

    .gallery-thumbs-v4 {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        max-height: none;
        gap: 0.5rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .gallery-thumbs-v4::-webkit-scrollbar {
        display: none;
    }

    .thumb-item-v4 {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .main-image-wrapper-v4 {
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .section-title-v4 h2 {
        font-size: 1.25rem !important;
    }
    
    .section-title-v4 p {
        font-size: 0.65rem !important;
    }
    
    .hero-actions-v4 {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 575px) {
    .hero-content-v4 .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-content-v4 .hero-desc {
        padding: 0 35px;
        font-size: 1rem;
    }
    
    .hero-actions-v4 {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .products-grid-v4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .features-grid-v4 {
        grid-template-columns: 1fr;
    }
    
    .product-right-col-v4 {
        padding: 1.25rem;
    }
    
    .product-title-v4 {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   AJAX Live Search V4 Styles
   ========================================================================== */
.search-form {
    position: relative;
}

.search-results-dropdown-v4 {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 4px;
}

.search-results-dropdown-v4.active {
    display: block;
}

.live-search-results-list-v4 {
    list-style: none;
    padding: 0;
    margin: 0;
}

.live-search-item-v4 {
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s ease;
}

.live-search-item-v4:last-child {
    border-bottom: none;
}

.live-search-item-v4:hover {
    background-color: #f8fafc;
}

.live-search-link-v4 {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #1e293b;
    gap: 1rem;
}

.live-search-link-v4:hover {
    text-decoration: none;
}

.live-search-thumb-v4 {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
    border: 1px solid #e2e8f0;
}

.live-search-meta-v4 {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    align-items: flex-start;
    text-align: left;
}

.live-search-title-v4 {
    font-size: 0.95rem;
    font-weight: 500;
    color: #0f172a;
    line-height: 1.25;
}

.live-search-price-v4 {
    font-size: 0.9rem;
    color: #22c55e;
    font-weight: 600;
}

.live-search-price-v4 del {
    color: #94a3b8;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    font-weight: 400;
}

.live-search-price-v4 ins {
    text-decoration: none;
}

.search-loading-v4,
.search-no-results-v4 {
    padding: 1.25rem;
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.search-spinner-v4 {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #cbd5e1;
    border-top-color: #22c55e;
    border-radius: 50%;
    animation: spin-v4 0.8s linear infinite;
}

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

/* ==========================================================================
   Footer Social Connect Block V4
   ========================================================================== */
.social-connect-section-v4 {
    background: var(--mh-primary, #0d9488);
    padding: 2.5rem 0;
    color: #ffffff;
}

.social-connect-inner-v4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.social-connect-content-v4 h2 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

.social-connect-icons-v4 {
    display: flex;
    gap: 1.25rem;
}

.social-icon-v4 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.social-icon-v4 svg,
.social-icon-v4 .social-icon-label {
    width: 22px;
    height: 22px;
    fill: currentColor;
    transition: transform 0.3s ease;
    line-height: 1;
    font-weight: 700;
    font-size: 0.95rem;
}

.social-icon-v4:hover {
    background-color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.15);
}

.social-icon-v4.facebook:hover {
    color: #1877f2;
}

.social-icon-v4.youtube:hover {
    color: #ff0000;
}

.social-icon-v4.instagram:hover {
    color: #e4405f;
}

.social-icon-v4:hover svg {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .social-connect-inner-v4 {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    
    .social-connect-content-v4 h2 {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   Infinite Scroll Loader
   ========================================================================== */
.infinite-scroll-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem 0;
    margin: 1.5rem auto 0;
    color: #64748b;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    text-align: center;
}

.infinite-scroll-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #e2e8f0;
    border-top-color: var(--mh-primary, #0d9488);
    border-radius: 50%;
    animation: infiniteSpin 0.8s linear infinite;
}

@keyframes infiniteSpin {
    to { transform: rotate(360deg); }
}

.infinite-scroll-end {
    text-align: center;
    padding: 2rem 0;
    color: #94a3b8;
    font-size: 0.9rem;
    border-top: 1px dashed #e2e8f0;
    margin-top: 1.5rem;
}

#infinite-scroll-sentinel {
    height: 1px;
    width: 100%;
}

@media print {
    .top-bar, .site-header, .main-navigation, .mobile-nav,
    .newsletter-section, .site-footer, .header-search,
    .header-actions, .mobile-menu-toggle {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }

    a {
        text-decoration: underline;
    }
}

/* ==========================================================================
   Product Card Redesign (.pc)
   ========================================================================== */
.pc {
    background: #fff;
    border-radius: var(--mh-radius);
    overflow: hidden;
    border: 1px solid var(--mh-border-light);
    transition: all 0.28s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.pc:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    border-color: rgba(13, 148, 136, 0.3);
}
.pc__img {
    position: relative;
    padding-bottom: 75%;
    overflow: hidden;
    background: #f9f9f9;
}
.pc__img a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.pc__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.pc:hover .pc__img img {
    transform: scale(1.05);
}
.pc__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pc__badge--sale { background: #ff4757; }
.pc__badge--out { background: #747d8c; }
.pc__body {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.pc__cat {
    font-size: 0.75rem;
    color: var(--mh-text-muted);
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pc__cat a { color: inherit; }
.pc__title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: var(--mh-heading);
}
.pc__title a {
    color: inherit;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.pc__title a:hover { color: var(--mh-primary); }
.pc__price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--mh-primary);
    margin-bottom: 1rem;
    margin-top: auto;
}
.pc__price del {
    color: #999;
    font-size: 0.9rem;
    font-weight: 600;
    margin-right: 5px;
}
.pc__price ins { text-decoration: none; }
.pc__btns {
    display: flex;
    flex-direction: row;
    gap: 8px;
}
.pc__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 1;
    padding: 10px 8px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1.5px solid transparent;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.01em;
}
.pc__btn svg { flex-shrink: 0; }

/* Cart Button — premium blue outline */
.pc__btn--cart {
    background: var(--mh-accent-light);
    color: var(--mh-accent);
    border: 1.5px solid var(--mh-accent);
}
.pc__btn--cart:hover {
    background: var(--mh-accent);
    color: #fff;
    border-color: var(--mh-accent);
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
    transform: translateY(-1px);
}

/* Order Button — premium solid blue gradient */
.pc__btn--order {
    background: linear-gradient(135deg, #0d9488, #0f766e);
    color: #fff;
    border: 1.5px solid transparent;
    box-shadow: 0 3px 10px rgba(13, 148, 136, 0.3);
}
.pc__btn--order:hover {
    background: linear-gradient(135deg, #0f766e, #115e59);
    box-shadow: 0 6px 18px rgba(13, 148, 136, 0.45);
    transform: translateY(-2px);
    color: #fff;
}

/* View Button — neutral */
.pc__btn--view {
    background: #f1f5f9;
    color: #475569;
    border: 1.5px solid #e2e8f0;
}
.pc__btn--view:hover {
    background: #e2e8f0;
    color: #1e293b;
}

/* ==========================================================================
   Single Product Info (v4)
   ========================================================================== */
.product-essential-info-v4 {
    background: #fff;
    padding: 0 0 1.5rem 0;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--mh-border-light);
}
.product-categories-v4 {
    font-size: 0.85rem;
    color: var(--mh-text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}
.product-categories-v4 a { color: var(--mh-primary); }
.product-price-v4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--mh-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.product-price-v4 del {
    color: #999;
    font-size: 1.2rem;
    font-weight: 600;
}
.product-price-v4 ins { text-decoration: none; }
.product-short-desc-v4 {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed #eaeaea;
}
.product-stock-v4 {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
}
.product-stock-v4 .in-stock {
    color: #0f766e;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(13, 148, 136, 0.1);
    padding: 6px 12px;
    border-radius: 50px;
    display: inline-flex;
}
.product-stock-v4 .out-of-stock {
    color: #dc3545;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(220, 53, 69, 0.1);
    padding: 6px 12px;
    border-radius: 50px;
    display: inline-flex;
}
.product-variations-v4 { margin-bottom: 1.5rem; }
.variation-label-v4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--mh-heading);
    font-weight: 700;
}
.qty-and-cart-v4 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.qty-control-v4 {
    display: flex;
    align-items: center;
    border: 2px solid #eaeaea;
    border-radius: 50px;
    overflow: hidden;
    height: 52px;
    background: #fff;
}
.qty-btn-v4 {
    background: none;
    border: none;
    width: 44px;
    height: 100%;
    font-size: 1.2rem;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: bold;
}
.qty-btn-v4:hover {
    background: #f4f4f4;
    color: var(--mh-primary);
}
.qty-input-v4 {
    width: 50px;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--mh-heading);
    -moz-appearance: textfield;
    appearance: textfield;
}
.btn-add-to-cart-v4 {
    flex: 1;
    height: 52px;
    border-radius: 50px;
    background: #111;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.btn-add-to-cart-v4:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* ==========================================================================
   Premium Cart V4 Styles
   ========================================================================== */
.cart-layout-v4 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Desktop Header */
.cart-items-header-v4 {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 40px;
    gap: 1rem;
    padding: 1rem;
    background: var(--mh-surface);
    border-radius: var(--mh-radius-lg);
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.cart-items-body-v4 {
    background: #fff;
    border-radius: var(--mh-radius-lg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
}
.cart-item-v4 {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr 1fr 40px;
    gap: 1rem;
    align-items: center;
    padding: 0.5rem 1rem;
    background: transparent;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}
.cart-item-v4:last-child {
    border-bottom: none;
}
.cart-item-v4:hover {
    background: #fafafa;
}

/* Product Info */
.item-product-v4 {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.item-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--mh-radius-md);
    background: #f8fafc;
    padding: 5px;
}
.item-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--mh-heading);
}
.item-name a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.item-name a:hover {
    color: var(--mh-primary);
}

/* Price & Subtotal */
.item-price-v4, .item-subtotal-v4 {
    font-weight: 600;
    color: var(--mh-heading);
}
.item-subtotal-v4 {
    color: var(--mh-primary);
}

/* Remove Button */
.remove-btn-v4 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fee2e2;
    color: #ef4444;
    transition: all 0.2s;
}
.remove-btn-v4:hover {
    background: #ef4444;
    color: #fff;
    transform: scale(1.1);
}

/* Cart Actions */
.cart-actions-v4 {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
}

/* Sidebar & Totals */
.cart-sidebar-wrapper-v4 {
    position: sticky;
    top: 2rem;
}
.cart-totals-v4 {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--mh-radius-lg);
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.5);
}
.cart-totals-title-v4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 0 !important;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px dashed #e2e8f0;
}
.cart-total-row-v4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.cart-total-row-v4:last-child {
    border-bottom: none;
}
.total-label-v4 {
    font-weight: 600;
    color: var(--mh-text-muted);
}
.total-value-v4 {
    font-weight: 700;
    color: var(--mh-heading);
}

/* Shipping Row Fixes */
.shipping-row-v4 {
    align-items: flex-start;
}
.shipping-row-v4 th {
    font-weight: 600;
    color: var(--mh-text-muted);
    text-align: left;
    padding: 0;
    border: none;
    width: 35%;
}
.shipping-row-v4 td {
    padding: 0;
    border: none;
    text-align: right;
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.shipping-row-v4 ul#shipping_method {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}
.shipping-row-v4 ul#shipping_method li {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    margin: 0;
    width: 100%;
}
.shipping-row-v4 ul#shipping_method li input[type="radio"] {
    margin: 0;
    cursor: pointer;
    flex-shrink: 0;
}
.shipping-row-v4 ul#shipping_method li label {
    margin: 0;
    cursor: pointer;
    font-weight: 600;
    color: var(--mh-heading);
    white-space: nowrap;
}
.woocommerce-shipping-destination,
.woocommerce-shipping-calculator,
.shipping-calculator-button {
    display: none !important;
}

.order-total-v4 {
    margin-top: 0;
    padding-top: 1rem;
    border-top: none;
}
.order-total-v4 .total-label-v4 {
    font-size: 1.2rem;
    color: var(--mh-heading);
}
.order-total-v4 .total-value-v4 {
    font-size: 1.5rem;
    color: var(--mh-primary);
}
.wc-proceed-to-checkout-v4 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Coupon Form */
.cart-coupon-v4 {
    margin-bottom: 0.5rem;
}
.coupon-form-v4 {
    display: flex;
    gap: 0.5rem;
}
.coupon-form-v4 .input-text {
    flex: 1;
    border-radius: var(--mh-radius-md);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .cart-layout-v4 {
        grid-template-columns: 1fr;
    }
    .cart-items-header-v4 {
        display: none; /* Hide header on mobile */
    }
    .cart-item-v4 {
        grid-template-columns: 1fr;
        gap: 1rem;
        position: relative;
        padding-top: 3rem; /* Space for absolute remove button */
    }
    .item-product-v4 {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    .item-thumbnail img {
        width: 100%;
        height: auto;
        max-width: 150px;
    }
    .item-price-v4::before,
    .item-quantity-v4::before,
    .item-subtotal-v4::before {
        content: attr(data-title) ": ";
        font-weight: 600;
        color: var(--mh-text-muted);
        margin-right: 0.5rem;
    }
    .item-price-v4,
    .item-quantity-v4,
    .item-subtotal-v4 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0.5rem 0;
        border-top: 1px dashed #e2e8f0;
    }
    .item-remove-v4 {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
}

/* Fix for WooCommerce full width pages */
.woocommerce-cart .page-layout, .woocommerce-checkout .page-layout { max-width: none !important; width: 100% !important; }

/* Fish Source Badge Over Image */
.macherhut-source-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, var(--mh-primary), var(--mh-primary-dark));
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    pointer-events: none;
    letter-spacing: 0.02em;
}

/* ==========================================================================
   Home Page Dynamic Slider Sections
   ========================================================================== */
.mh-home-slider-section {
    padding: 18px 0;
    margin-bottom: 8px;
    background-color: var(--mh-bg-alt);
}
.mh-home-slider-section .section-title-v4 {
    text-align: center;
    margin-bottom: 18px;
}
.mh-home-slider-section .section-title-v4 h2 {
    font-size: var(--mh-font-size-3xl);
    color: var(--mh-heading);
    margin-bottom: 10px;
    font-weight: 700;
}
.mh-home-slider-section .section-title-v4 p {
    color: var(--mh-text-light);
    font-size: var(--mh-font-size-lg);
}

.youtube-slider-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 60px;
}

.youtube-slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    gap: 20px;
    padding: 10px 0; /* Room for shadow */
}

.mh-slider-item {
    flex: 0 0 calc(36.666% - 14px);
    aspect-ratio: 16 / 9;
    scroll-snap-align: center;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    min-height: 0;
    height: auto;
    padding: 0;
    box-sizing: border-box;
}
.mh-slider-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mh-slider-image {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}
.mh-slider-image img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
    display: block;
}

.mh-slider-video {
    width: 100%;
    background: #000;
    min-height: 0;
    /* padding is removed to match image size exactly */
}

.mh-slider-video .video-placeholder-v4 {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio to match image */
    overflow: hidden;
    background: #000;
    min-height: 0;
}
.mh-home-slider-section .mh-slider-video .video-placeholder-v4 img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    background: #000;
}
.mh-slider-video .video-placeholder-v4 .video-play-btn-v4 {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    /* ... existing play button styles handle the rest ... */
}
.youtube-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.6);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mh-primary);
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    z-index: 20;
    transition: all 0.3s ease;
}
.youtube-slider-btn:hover {
    background: #ffffff;
    color: var(--mh-primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.youtube-slider-prev {
    left: 0;
}
.youtube-slider-next {
    right: 0;
}

.youtube-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}
.youtube-slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: var(--mh-transition);
}
.youtube-slider-dots span.active {
    background: var(--mh-primary);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .mh-slider-item {
        flex: 0 0 calc(50% - 10px); /* 2 items on tablet */
        aspect-ratio: 16 / 9;
    }
    .youtube-slider-prev { left: 5px; }
    .youtube-slider-next { right: 5px; }
}
@media (max-width: 576px) {
    .mh-slider-item {
        flex: 0 0 100%; /* 1 item on mobile */
        aspect-ratio: 16 / 9;
    }
}

/* ==========================================================================
   Premium UI Global Overrides
   ========================================================================== */
.pc {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease !important;
    border-radius: 16px !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03) !important;
    border: 1px solid rgba(0,0,0,0.03) !important;
    overflow: hidden;
}
.pc:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08) !important;
}
.pc__img {
    overflow: hidden;
}
.pc__img img {
    transition: transform 0.6s ease !important;
}
.pc:hover .pc__img img {
    transform: scale(1.05) !important;
}
.mh-feature-item, .mh-feature-box, .feature-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    border-radius: 16px !important;
}
.mh-feature-item:hover, .mh-feature-box:hover, .feature-box:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06) !important;
}
