/* ===== AKSHOP CARBON CLONE CSS ===== */
:root {
    --primary: #0087e0;
    --orange: #F68625;
    --footer-bg: #0464a4;
    --black: #323232;
    --border: #eeeeee;
    --shadow: rgba(99,99,99,0.1) 0 2px 8px 0;
}

/* Base resets & elements */
body.akshop-menu-open {
    overflow: hidden;
}

/* Top Bar */
.akshop-topbar {
    background: #0464a4;
    color: #fff;
    font-size: 12px;
}
.akshop-topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.akshop-topbar-left {
    font-weight: 500;
}
.akshop-topbar-right {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}
@media(max-width: 600px) {
    .akshop-topbar-left { display: none; }
    .akshop-topbar-inner { justify-content: center; padding: 6px 10px; }
}

/* Header */
.akshop-header {
    background: #fff;
    border-bottom: 2px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 999;
}
.akshop-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}
.akshop-logo-link img {
    height: 45px;
    display: block;
}

/* Search Bar (Desktop) */
/* ── Desktop Search Bar ──────────────────────────── */
.akshop-header-search {
    display: flex;
    align-items: center;
    border: 2px solid var(--primary);
    border-radius: 50px;
    overflow: hidden;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    transition: box-shadow 0.2s;
}
.akshop-header-search:focus-within {
    box-shadow: 0 0 0 3px rgba(0,135,224,0.15);
}
.akshop-search-prefix-icon {
    flex-shrink: 0;
    margin-left: 14px;
    color: #aaa;
    fill: #aaa;
}
.akshop-header-search input {
    flex: 1;
    border: none;
    padding: 9px 10px;
    font-size: 14px;
    outline: none;
    background: transparent;
    color: #333;
}
.akshop-header-search button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 9px 22px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: 0 50px 50px 0;
    transition: background 0.2s;
}
.akshop-header-search button:hover {
    background: #0064aa;
}

/* ── Desktop Header Icons ────────────────────────── */
.akshop-header-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

/* Categories button */
.akshop-categories-wrapper {
    position: relative;
}
.akshop-categories-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
    white-space: nowrap;
}
.akshop-categories-btn:hover,
.akshop-categories-btn.open {
    background: #0064aa;
}
.akshop-categories-btn svg { fill: currentColor; }
.akshop-cat-arrow {
    transition: transform 0.25s;
}
.akshop-categories-btn.open .akshop-cat-arrow {
    transform: rotate(180deg);
}

/* Categories dropdown panel */
.akshop-categories-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    min-width: 210px;
    z-index: 9999;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
}
.akshop-categories-dropdown.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.akshop-categories-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
    border-bottom: 1px solid #f5f5f5;
}
.akshop-categories-dropdown a:last-child { border-bottom: none; }
.akshop-categories-dropdown a:hover {
    background: #f0f7ff;
    color: var(--primary);
}
.akshop-categories-dropdown a svg {
    fill: var(--primary);
    flex-shrink: 0;
}

/* Cart button */
.akshop-cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: 6px;
    padding: 7px 14px;
    text-decoration: none;
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    position: relative;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}
.akshop-cart-btn:hover {
    background: var(--primary);
    color: #fff;
}
.akshop-cart-btn svg { fill: currentColor; flex-shrink: 0; }
.akshop-cart-label { line-height: 1; }
.akshop-badge,
.wc-cart-count-badge {
    background: #e53935;
    color: #fff;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -7px;
    right: -7px;
    font-weight: 700;
}


/* Mobile Toggle */
.akshop-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
    padding: 5px;
    margin-right: 10px;
    line-height: 1;
    align-items: center;
    justify-content: center;
}
.akshop-menu-toggle svg {
    display: block;
    color: inherit;
    fill: currentColor;
}

/* Mobile Drawer */
.akshop-mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    z-index: 10000;
    transition: left 0.3s ease;
    display: flex;
}
.akshop-mobile-menu.active {
    left: 0;
}
.akshop-mobile-menu-overlay {
    flex: 1;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
}
.akshop-mobile-menu-content {
    width: 280px;
    background: #fff;
    height: 100%;
    box-shadow: 2px 0 10px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}
.akshop-mobile-menu-header {
    padding: 15px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--primary);
    color: #fff;
}
.akshop-mobile-menu-title {
    font-size: 16px;
    font-weight: 700;
}
.akshop-mobile-menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}
.akshop-mobile-menu-search {
    padding: 15px;
    border-bottom: 1px solid #eee;
}
.akshop-mobile-search-form {
    display: flex;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}
.akshop-mobile-search-form input {
    flex: 1;
    border: none;
    padding: 8px;
    outline: none;
    font-size: 14px;
}
.akshop-mobile-search-form button {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0 12px;
    cursor: pointer;
}
.akshop-mobile-menu-links {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}
.akshop-mobile-menu-links a {
    display: block;
    padding: 12px 20px;
    color: var(--black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #f9f9f9;
}
.akshop-mobile-menu-links a:hover {
    background: #f5f5f5;
    color: var(--primary);
}

/* Navbar (Desktop) */
.akshop-navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
}
.akshop-navbar-inner a {
    color: #fff;
    padding: 12px 18px;
    display: inline-block;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}
.akshop-navbar-inner a:hover {
    background: var(--orange);
}

/* Hero Slider */
.akshop-slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.akshop-slider-slides {
    display: flex;
    width: 100%;
}
.akshop-slide {
    display: none;
    width: 100%;
    flex-shrink: 0;
}
.akshop-slide.active {
    display: block;
}
.akshop-slide img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    display: block;
}
.akshop-slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}
.akshop-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s;
}
.akshop-dot.active {
    background: var(--primary);
}

/* Features Strip */
.akshop-features {
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}
.akshop-features-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}
.akshop-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #555;
}
.akshop-feature-item i {
    font-size: 24px;
    color: var(--primary);
}
@media(max-width: 768px) {
    .akshop-features-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding: 15px;
    }
}

/* Section Title */
.akshop-section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 8px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
}
.akshop-section-title h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    text-transform: uppercase;
    margin: 0;
    position: relative;
}
.akshop-section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary);
}

/* Categories Section */
.akshop-cats {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 15px;
}
.akshop-cats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.akshop-cat-item {
    text-align: center;
    text-decoration: none;
    color: var(--black);
    transition: transform 0.2s;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}
.akshop-cat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.akshop-cat-item img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.akshop-cat-item span {
    font-size: 13px;
    font-weight: 700;
    display: block;
}
@media(max-width: 768px) {
    .akshop-cats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .akshop-cat-item {
        padding: 10px;
    }
    .akshop-cat-item img {
        width: 70px;
        height: 70px;
    }
    .akshop-cat-item span {
        font-size: 11px;
    }
}

/* WooCommerce Products Grid & Cards */
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 15px !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after {
    display: none !important;
}
.woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    background: #fff !important;
    border: 1px solid var(--border) !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    box-shadow: var(--shadow) !important;
    transition: box-shadow 0.2s, transform 0.2s !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    padding: 10px !important;
    box-sizing: border-box !important;
}
.woocommerce ul.products li.product:hover {
    box-shadow: rgba(0,0,0,0.12) 0 4px 12px !important;
    transform: translateY(-2px) !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--black) !important;
    margin: 8px 0 2px !important; /* Reduced bottom margin */
    line-height: 1.4 !important;
    height: auto !important; /* Removed fixed 38px height */
    overflow: hidden !important;
}
.woocommerce ul.products li.product .price {
    color: red !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    margin: 0 0 10px !important;
    display: block !important;
}
.woocommerce ul.products li.product .price del {
    color: #999 !important;
    font-size: 12px !important;
    font-weight: normal !important;
    margin-right: 5px !important;
    display: inline-block !important;
}
.woocommerce ul.products li.product .price ins {
    background: transparent !important;
    color: red !important;
    text-decoration: none !important;
    display: inline-block !important;
}
.woocommerce ul.products li.product img {
    margin: 0 auto !important;
    aspect-ratio: 1 !important;
    object-fit: cover !important;
    border-radius: 4px !important;
    width: 100% !important;
    height: auto !important;
}

/* Custom Product Buttons inside shop loops */
.akshop-product-buttons {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    width: 100% !important;
    margin-top: auto !important;
    order: 10 !important; /* Force to bottom */
}

/* Force correct vertical order in Elementor grids */
.woocommerce ul.products li.product > a:first-child,
.woocommerce ul.products li.product > .woocommerce-loop-product__link {
    order: 1 !important;
}
.woocommerce ul.products li.product > .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product h3 {
    order: 2 !important;
}
.woocommerce ul.products li.product > .price,
.woocommerce ul.products li.product > .star-rating {
    order: 3 !important;
}
.akshop-btn-cart {
    background: var(--orange) !important;
    color: #fff !important;
    border: none !important;
    padding: 8px 5px !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    text-align: center !important;
    text-decoration: none !important;
    display: block !important;
    transition: all 0.2s !important;
    position: relative;
}
.akshop-btn-cart:hover {
    background: #d4700e !important;
    color: #fff !important;
}
.akshop-btn-cart.loading {
    background: #ccc !important;
    color: #666 !important;
    pointer-events: none;
    opacity: 0.8;
}
.akshop-btn-cart.added {
    background: #4caf50 !important;
    color: #fff !important;
}
.akshop-btn-order {
    background: var(--primary) !important;
    color: #fff !important;
    border: none !important;
    padding: 8px 5px !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    text-align: center !important;
    text-decoration: none !important;
    display: block !important;
    transition: background 0.2s !important;
}
.akshop-btn-order:hover {
    background: #005fa3 !important;
    color: #fff !important;
}

/* Responsive WooCommerce Grids */
@media(max-width: 900px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
@media(max-width: 600px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .akshop-product-buttons {
        grid-template-columns: 1fr !important;
        gap: 4px !important;
    }
}

/* Single Product customization */
.akshop-call-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
}
.akshop-btn-call {
    background: #27ae60;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
}
.akshop-btn-message {
    background: #0084ff;
    color: #fff;
    padding: 10px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
}
.akshop-btn-single-cart {
    background: #d4700e !important;
    color: #fff !important;
}
.akshop-btn-single-order {
    background: var(--primary) !important;
    color: #fff !important;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}
.akshop-variation-buttons {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.akshop-variation-btn {
    border: 1px solid #ccc;
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 4px;
    text-align: black;
    cursor: pointer;
    color: black;
}
.akshop-variation-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

/* Footer Styling */
.akshop-footer {
    background: var(--footer-bg);
    color: #fff;
    padding: 45px 0 0;
}
.akshop-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: 4fr 3fr 3fr;
    gap: 40px;
}
.akshop-footer h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
}
.akshop-footer p, .akshop-footer a {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    line-height: 2;
    text-decoration: none;
}
.akshop-footer a:hover {
    color: var(--orange);
}
.akshop-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.akshop-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 30px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
@media(max-width: 768px) {
    .akshop-footer-inner {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
}

/* Floating Chat */
.akshop-chat-wrapper {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
.akshop-chat-item {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}
.akshop-chat-item:hover {
    transform: scale(1.1);
}
.akshop-chat-wrapper.open .akshop-chat-item {
    display: flex;
}
.akshop-chat-call { background: #27ae60; }
.akshop-chat-messenger { background: #0084ff; }
.akshop-chat-whatsapp { background: #25d366; }
.akshop-chat-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,135,224,0.4);
    transition: background 0.3s;
}

/* =============================================
   Custom Mobile Header (Clean 3-div structure)
   ============================================= */

/* Hide default on desktop, show on mobile */
.akshop-mob-header,
.akshop-mob-search-bar { display: none; }

@media(max-width: 768px) {

    /* Push page content down so it's not hidden under fixed header */
    body {
        padding-top: 52px !important;
    }

    /* Hide ALL old headers and topbars on mobile */
    .akshop-header,
    .akshop-topbar,
    .elementor-location-header,
    .elementor-element-e_con_header,
    .hfe-full-width-header,
    .hfe-header,
    [data-elementor-type="header"],
    body > header,
    .site-header {
        display: none !important;
        visibility: hidden !important;
        height: 0 !important;
        overflow: hidden !important;
    }

    /* But make sure our new custom header stays visible */
    .akshop-mob-header,
    .akshop-mob-search-bar {
        visibility: visible !important;
        height: auto !important;
    }

    /* Main mobile header bar */
    .akshop-mob-header {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        background: #fff !important;
        border-bottom: 2px solid var(--primary) !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9999 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
        height: 52px !important;
    }

    /* 3 equal columns */
    .akshop-mob-left,
    .akshop-mob-center,
    .akshop-mob-right {
        flex: 1 1 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    .akshop-mob-left  { justify-content: flex-start !important; }
    .akshop-mob-center { justify-content: center !important; }
    .akshop-mob-right { justify-content: flex-end !important; }

    /* Hamburger button */
    .akshop-mob-hamburger {
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        color: var(--primary) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 48px !important;
        height: 48px !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .akshop-mob-hamburger svg { fill: currentColor !important; }

    /* Logo */
    .akshop-mob-logo {
        display: flex !important;
        align-items: center !important;
        text-decoration: none !important;
    }
    .akshop-mob-logo img {
        height: 32px !important;
        width: auto !important;
        display: block !important;
    }

    /* Search icon button */
    .akshop-mob-search-btn {
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        color: var(--primary) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 48px !important;
        height: 48px !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .akshop-mob-search-btn svg { fill: currentColor !important; }

    /* Slide-down search bar */
    .akshop-mob-search-bar {
        display: block !important;
        max-height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.3s ease !important;
        background: #f5f5f5 !important;
        position: fixed !important;
        top: 52px !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 9998 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .akshop-mob-search-bar.open {
        max-height: 60px !important;
    }
    .akshop-mob-search-bar form {
        display: flex !important;
        align-items: center !important;
        padding: 8px 12px !important;
        gap: 6px !important;
    }
    .akshop-mob-search-bar input[type="search"] {
        flex: 1 !important;
        border: 1.5px solid var(--primary) !important;
        border-radius: 4px !important;
        padding: 6px 10px !important;
        font-size: 13px !important;
        outline: none !important;
    }
    .akshop-mob-search-bar button {
        background: var(--primary) !important;
        border: none !important;
        border-radius: 4px !important;
        color: #fff !important;
        padding: 6px 10px !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
    }
}

/* Header Column Reordering on Mobile */
@media(max-width: 768px) {

    /* Full-width header row, logo absolutely centered */
    .akshop-header-inner {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 6px 10px !important;
        gap: 0 !important;
        position: relative !important;
        overflow: visible !important;
    }

    /* logo_col: left half — hamburger left-aligned */
    .elementor-element-logo_col {
        display: flex !important;
        align-items: center !important;
        flex: 1 1 0 !important;
        justify-content: flex-start !important;
        padding: 0 !important;
        margin: 0 !important;
        order: 1 !important;
        position: static !important;
        z-index: 1 !important;
    }

    /* search_col: right half — search icon right-aligned */
    .elementor-element-search_col {
        display: flex !important;
        align-items: center !important;
        flex: 1 1 0 !important;
        justify-content: flex-end !important;
        padding: 0 !important;
        margin: 0 !important;
        order: 3 !important;
        z-index: 1 !important;
    }

    /* Strip inner Elementor wrappers */
    .elementor-element-logo_col .elementor-widget-wrap,
    .elementor-element-logo_col .elementor-widget-container,
    .elementor-element-search_col .elementor-widget-wrap,
    .elementor-element-search_col .elementor-widget-container {
        display: contents !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* Hamburger: left */
    .akshop-menu-toggle {
        display: flex !important;
        flex: 0 0 auto !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 4px !important;
        margin: 0 !important;
        color: var(--primary) !important;
        background: none !important;
        border: none !important;
        cursor: pointer !important;
        min-width: 40px !important;
        min-height: 40px !important;
    }

    /* Logo: absolutely centered relative to header-inner */
    .akshop-logo-link {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
        z-index: 2 !important;
        pointer-events: auto !important;
        text-decoration: none !important;
        white-space: nowrap !important;
    }
    .akshop-logo-link img {
        height: auto !important;
        max-height: 32px !important;
        width: auto !important;
        max-width: none !important;
        display: block !important;
    }

    /* Search: icon-only button on right, no input visible */
    .akshop-header-search {
        display: flex !important;
        flex: 0 0 auto !important;
        border: none !important;
        background: transparent !important;
        height: 40px !important;
        margin: 0 !important;
        overflow: visible !important;
    }
    .akshop-header-search input {
        display: none !important;
        width: 0 !important;
        padding: 0 !important;
    }
    .akshop-header-search button {
        background: none !important;
        color: var(--primary) !important;
        border: none !important;
        padding: 4px !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 40px !important;
        min-height: 40px !important;
        border-radius: 50% !important;
        transition: background 0.2s !important;
    }
    .akshop-header-search button:hover {
        background: rgba(0,135,224,0.08) !important;
    }
    .akshop-header-search button svg {
        width: 22px !important;
        height: 22px !important;
        fill: currentColor !important;
    }

    /* Hide Cart icons column and nav on mobile */
    .elementor-element-icons_col,
    .elementor-element-e_con_nav {
        display: none !important;
    }
}


/* Mobile Drawer Cart Link Styling */
.akshop-drawer-cart-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: #f4f9fd !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
    border-left: 4px solid var(--primary) !important;
    padding: 12px 20px !important;
    text-decoration: none !important;
    font-size: 14px !important;
}
.akshop-drawer-cart-link:hover {
    background: #e8f3fc !important;
}
.akshop-drawer-cart-left {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}
.akshop-drawer-cart-left i {
    font-size: 18px !important;
    color: var(--primary) !important;
}
.akshop-drawer-cart-badge {
    background: red !important;
    color: #fff !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    padding: 2px 6px !important;
    line-height: 1 !important;
}

/* Hide Astra default header/footer on front page */
.home .ast-primary-header-bar,
.home .ast-masthead-custom-menu-items,
.home .main-header-bar-navigation,
.home .site-footer,
.home .ast-above-header,
.home .ast-below-header { display:none !important; }
.home .ast-container { max-width:100% !important; padding:0 !important; }
.home .entry-content { margin:0 !important; padding:0 !important; }
.home article.page { padding:0 !important; margin:0 !important; }
.home .ast-breadcrumbs-wrapper { display:none; }
.home .ast-page-title-wrap { display:none; }
.home .post-title { display:none; }

/* Responsive Checkout for Mobile */
@media (max-width: 768px) {
    /* Fix for Elementor checkout card layout */
    .elementor-14 .elementor-element.elementor-element-checkout_card {
        display: flex !important;
        flex-direction: column !important;
    }

    /* Use flex column to control order */
    .woocommerce-checkout form.checkout {
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* SUBMIT ORDER FORM (Billing details) goes to top */
    .woocommerce-checkout form.checkout #customer_details {
        order: 1 !important;
        width: 100% !important;
        float: none !important;
    }
    
    /* Order review goes to bottom */
    .woocommerce-checkout form.checkout #order_review_heading {
        order: 2 !important;
        margin-top: 35px !important;
        font-size: 20px !important;
        border-bottom: 2px solid #eee;
        padding-bottom: 10px;
    }
    
    .woocommerce-checkout form.checkout #order_review {
        order: 3 !important;
        width: 100% !important;
        float: none !important;
    }

    /* Full width columns inside customer_details */
    .woocommerce-checkout .col2-set .col-1,
    .woocommerce-checkout .col2-set .col-2 {
        float: none !important;
        width: 100% !important;
        margin-bottom: 20px !important;
        padding: 0 !important;
    }
    
    /* Make inputs and selects bigger and full width */
    .woocommerce-checkout .form-row {
        width: 100% !important;
        float: none !important;
        margin-bottom: 15px !important;
    }
    .woocommerce-checkout input.input-text,
    .woocommerce-checkout select,
    .woocommerce-checkout textarea {
        width: 100% !important;
        padding: 12px 15px !important;
        height: auto !important;
        font-size: 15px !important;
        border-radius: 6px !important;
    }
    
    /* Optimize order review table for small screens */
    .woocommerce-checkout .woocommerce-checkout-review-order-table th,
    .woocommerce-checkout .woocommerce-checkout-review-order-table td {
        padding: 12px 8px !important;
        font-size: 14px !important;
    }
    
    /* Prominent Place Order button */
    #place_order {
        width: 100% !important;
        padding: 18px !important;
        font-size: 18px !important;
        border-radius: 6px !important;
        white-space: normal !important;
        margin-top: 20px !important;
    }
    
    /* Coupon form layout */
    .woocommerce-checkout .checkout_coupon {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
    }
    .woocommerce-checkout .checkout_coupon input.input-text {
        width: 100% !important;
        margin: 0 !important;
    }
    .woocommerce-checkout .checkout_coupon button.button {
        width: 100% !important;
        padding: 12px !important;
    }
}

/* Hide elements requested by user */
.price { display: none !important; }
.checkout_coupon.woocommerce-form-coupon { display: none !important; }

.woocommerce-variation-price .price { display: inline-block !important; }
.woocommerce-info { display: none !important; }

