/*
Theme Name: AkkaPrints
Theme URI: https://akkaprints.com
Author: Vinit
Description: Custom Web-to-Print WooCommerce Theme for AkkaPrints.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
Text Domain: akkaprints
*/

/* ==========================================================================
   1. GLOBAL VARIABLES & RESET
   ========================================================================== */
:root {
    --brand: #ff4d2e;
    --brand-hover: #e63e20;
    --brand-light: #fff0ed;
    --text-main: #111827;
    --text-muted: #6b7280;
    --bg-main: #f3f4f6;
    --bg-surface: #ffffff;
    --border: #e5e7eb;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    transition: color 0.2s, background-color 0.2s;
    text-decoration: none;
}

/* ==========================================================================
   2. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-main);
}


/* ==========================================================================
   3. GLOBAL BUTTONS
   ========================================================================== */
.akka-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand);
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-out;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 77, 46, 0.2);
}

.akka-btn:hover {
    background-color: var(--brand-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 77, 46, 0.3);
}

.akka-btn-outline {
    background-color: transparent;
    color: var(--text-main) !important;
    border: 1px solid var(--border);
    box-shadow: none;
}
.akka-btn-outline:hover {
    background-color: var(--bg-main);
    color: var(--brand) !important;
    border-color: var(--brand);
    box-shadow: none;
}


/* ==========================================================================
   4. HEADER (Sticky & Blurred)
   ========================================================================== */
.akka-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 24px;
    height: 72px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.akka-logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
}
.akka-logo span {
    color: var(--brand);
}

.akka-nav {
    display: none; /* Mobile setup later */
}

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

/* Layout Containers */
.akka-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.akka-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 32px;
}

.akka-menu li a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
}

.akka-menu li a:hover {
    color: var(--brand);
}

/* --- Dropdown / Submenu Styles --- */
.akka-menu li {
    position: relative;
    /* Optional: allows sub-menus to line up */
}

/* Arrow indicator on parent items that have a submenu */
.akka-menu li.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 0; 
    height: 0; 
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--text-muted);
    margin-left: 6px;
    transition: transform 0.2s;
}

.akka-menu li.menu-item-has-children:hover > a::after {
    transform: rotate(180deg);
    border-top-color: var(--brand);
}

.akka-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--bg-surface);
    min-width: 200px;
    padding: 12px 0;
    margin: 0;
    list-style: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease-out;
    z-index: 1000;
}

/* Sub-Submenu positioning (depth 2+) */
.akka-menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    transform: translateX(10px) translateY(0);
}
.akka-menu .sub-menu li:hover > .sub-menu {
    transform: translateX(0) translateY(0);
}

.akka-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Base style reset for dropdown links */
.akka-menu .sub-menu li {
    padding: 0;
    margin: 0;
}

.akka-menu .sub-menu li a {
    display: block;
    padding: 10px 24px;
    font-size: 14px;
    color: var(--text-main);
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.akka-menu .sub-menu li a:hover {
    background: var(--bg-main);
    color: var(--brand);
}
/* --- End Dropdown Styles --- */

.akka-header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.akka-header-cart, 
.akka-header-user {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-main);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    background: var(--bg-main);
    transition: background 0.2s;
}

.akka-header-cart:hover,
.akka-header-user:hover {
    background: var(--border);
}

.akka-cart-count {
    background: var(--brand);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Drawer */
.akka-mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    max-width: 85vw;
    height: 100vh;
    background: var(--bg-surface);
    z-index: 2000;
    box-shadow: 4px 0 24px rgba(0,0,0,0.1);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.akka-mobile-drawer.is-open {
    left: 0;
}

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

.drawer-brand {
    font-size: 20px;
    font-weight: 800;
    color: var(--brand);
}

.drawer-close {
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
}

.drawer-menu {
    list-style: none;
    padding: 24px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-menu li a {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
}


/* ==========================================================================
   5. HOME PAGE SECTIONS
   ========================================================================== */
.home-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

/* Hero Section */
.akka-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 0;
    margin-bottom: 40px;
    position: relative;
}

.akka-hero h1 {
    font-size: clamp(40px, 8vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
    max-width: 800px;
}

.akka-hero h1 span.brand-text {
    color: var(--brand);
    position: relative;
    display: inline-block;
}

.akka-hero p.subheadline {
    font-size: clamp(16px, 3vw, 20px);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

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


/* Features Grid */
.akka-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 80px;
}

.akka-feature-box {
    background: var(--bg-surface);
    padding: 32px 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.akka-feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: #cbd5e1;
}

.akka-feature-icon {
    font-size: 40px;
    color: var(--brand);
    margin-bottom: 16px;
    display: inline-block;
}


/* ==========================================================================
   5.5 PREMIUM PRODUCT PAGE — CUSTOMIZE CTA BLOCK
   ========================================================================== */

/* Wrapper */
.akka-customize-cta {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

/* Template Preview Strip */
.akka-tmpl-preview-strip {
    display: flex;
    gap: 14px;
    align-items: center;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px 16px;
    transition: border-color 0.2s;
}
.akka-tmpl-preview-strip:hover {
    border-color: #ff4d2e;
}

.akka-tmpl-preview-thumb {
    position: relative;
    flex-shrink: 0;
    width: 88px;
    height: 66px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #f3f4f6;
}
.akka-tmpl-preview-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.akka-tmpl-preview-badge {
    position: absolute;
    bottom: 4px;
    left: 4px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.akka-tmpl-preview-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.akka-tmpl-preview-name {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}
.akka-tmpl-preview-size,
.akka-tmpl-preview-fields {
    margin: 0;
    font-size: 12px;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
}
.akka-tmpl-preview-size i,
.akka-tmpl-preview-fields i {
    font-size: 14px;
    color: #9ca3af;
}

/* Feature Chips */
.akka-cta-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.akka-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #f3f4f6;
    color: #374151;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    white-space: nowrap;
}
.akka-chip i { font-size: 13px; color: #6b7280; }
.akka-chip--purple {
    background: #faf5ff;
    color: #7c3aed;
    border-color: #ddd6fe;
}
.akka-chip--purple i { color: #a78bfa; }

/* Main CTA Button */
.akka-customize-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #ff4d2e 0%, #e63e20 100%);
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 18px 22px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(255, 77, 46, 0.28);
    transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
}
.akka-customize-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -80%; width: 60%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.18), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}
.akka-customize-btn:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 14px 32px rgba(255, 77, 46, 0.38);
}
.akka-customize-btn:hover::before {
    left: 130%;
}
.akka-customize-btn__icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.akka-customize-btn__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.akka-customize-btn__text strong {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.2px;
    line-height: 1.2;
}
.akka-customize-btn__text small {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.85;
}
.akka-customize-btn__arrow {
    font-size: 22px;
    flex-shrink: 0;
    transition: transform 0.2s;
}
.akka-customize-btn:hover .akka-customize-btn__arrow {
    transform: translateX(4px);
}

/* Trust note below CTA */
.akka-cta-trust-note {
    margin: 0;
    font-size: 12px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.akka-cta-trust-note i {
    font-size: 14px;
    color: #10b981;
}

/* Responsive: stack everything on small screens */
@media (max-width: 480px) {
    .akka-tmpl-preview-strip {
        flex-direction: column;
        align-items: flex-start;
    }
    .akka-tmpl-preview-thumb {
        width: 100%;
        height: 120px;
    }
    .akka-customize-btn {
        padding: 16px 18px;
    }
    .akka-customize-btn__text strong {
        font-size: 15px;
    }
}


/* ==========================================================================
   6. SHOP MODULE (Products Grid)
   ========================================================================== */
.home-section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

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

.akka-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.akka-product-card {
    background: var(--bg-surface);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.akka-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.akka-product-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    background: var(--bg-main);
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

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

.akka-product-card:hover .akka-product-img-wrapper img {
    transform: scale(1.05); /* Soft zoom effect */
}

.akka-product-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.akka-product-card-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}
.akka-product-card-title a {
    color: var(--text-main);
}
.akka-product-card-title a:hover {
    color: var(--brand);
}

.akka-product-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px dashed var(--border);
}

.akka-price {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-main);
}
.akka-price del {
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 400;
    margin-right: 4px;
}
.akka-price ins {
    text-decoration: none;
}


/* ==========================================================================
   7. FOOTER
   ========================================================================== */
.akka-footer {
    background-color: #0f172a; /* Slate 900 */
    color: #94a3b8; /* Slate 400 */
    padding: 80px 24px 24px;
    font-size: 15px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 64px;
}

.footer-col-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-brand {
    font-size: 24px;
    font-weight: 800;
    color: var(--brand);
    margin-bottom: 16px;
    display: block;
}

.footer-nav {
    list-style: none;
    padding: 0; margin: 0;
}
.footer-nav li {
    margin-bottom: 12px;
}
.footer-nav a {
    color: #94a3b8;
}
.footer-nav a:hover {
    color: #ffffff;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #1e293b;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 14px;
}

/* ==========================================================================
   8. USER AUTHENTICATION UI (Login / Registration Card)
   ========================================================================== */

/* Main Wrapper to center the auth cards beautifully */
.akka-auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    min-height: calc(100vh - 200px);
    background-color: transparent;
    width: 100%;
    flex: 1 1 100%;
}

/* The Glass/Solid Clean E-commerce Card */
.akka-auth-card {
    background-color: var(--bg-surface);
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02);
    border: 1px solid var(--border);
    overflow: hidden;
}

/* Tab Headers */
.akka-auth-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    background-color: #f8fafc; /* Very light slate */
}

.akka-tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    padding: 20px 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 2px solid transparent;
}

.akka-tab-btn:hover {
    color: var(--text-main);
    background-color: #f1f5f9;
}

.akka-tab-btn.active {
    color: var(--brand);
    border-bottom-color: var(--brand);
    background-color: var(--bg-surface);
}

/* Inner Form Container */
.akka-auth-content {
    padding: 32px 40px 40px;
}

@media (max-width: 500px) {
    .akka-auth-content {
        padding: 24px;
    }
}

.akka-form-panel {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.akka-form-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.akka-form-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-main);
    text-align: center;
}

.akka-form-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

/* Input Fields */
.akka-input-group {
    margin-bottom: 20px;
}

.akka-input-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.akka-auth-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background-color: #f9fafb;
    color: var(--text-main);
    transition: all 0.2s;
    font-family: inherit;
}

.akka-auth-input:focus {
    outline: none;
    border-color: var(--brand);
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 77, 46, 0.1);
}

/* Form Actions, Remember Me, Forgot Password */
.akka-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
}

.akka-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    cursor: pointer;
}

.akka-remember input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--brand);
}

.akka-lost-password {
    color: var(--brand);
    font-weight: 600;
}

.akka-lost-password:hover {
    text-decoration: underline;
}

.akka-auth-submit {
    width: 100%;
    padding: 14px;
    font-size: 16px;
}

/* Override default woocommerce wrappers inside auth card */
.akka-auth-card .woocommerce-form {
    border: none;
    padding: 0;
    margin: 0;
}

.mb-20 {
    margin-bottom: 20px;
}

/* WooCommerce Notices UI Upgrade */
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
    padding: 16px 24px;
    margin: 0 0 24px;
    border-radius: 8px;
    font-weight: 500;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-left: 4px solid var(--brand);
    list-style: none outside !important;
}

.woocommerce-message { border-left-color: #10b981; color: #065f46; } /* Green */
.woocommerce-error { border-left-color: #ef4444; color: #991b1b; } /* Red */
.woocommerce-info { border-left-color: #3b82f6; color: #1e3a8a; } /* Blue */

/* ==========================================================================
   9. WOOCOMMERCE MY ACCOUNT DASHBOARD
   ========================================================================== */
.woocommerce-account .woocommerce {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* My Account Navigation Sidebar */
.woocommerce-MyAccount-navigation {
    flex: 0 0 260px;
    background: var(--bg-surface);
    border-radius: 16px;
    padding: 24px 16px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.woocommerce-MyAccount-navigation ul li {
    margin: 0;
}

.woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 16px;
    color: var(--text-muted);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 15px;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    color: var(--brand);
    background: #fff0ed;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    color: #ffffff;
    background: var(--brand);
    box-shadow: 0 4px 12px rgba(255, 77, 46, 0.2);
}

/* My Account Content Area */
.woocommerce-MyAccount-content {
    flex: 1;
    min-width: 0;
    background: var(--bg-surface);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.woocommerce-MyAccount-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

.woocommerce-MyAccount-content a {
    color: var(--brand);
    font-weight: 600;
}

.woocommerce-MyAccount-content a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   10. CONTACT US PAGE (PREMIUM LAYOUT)
   ========================================================================== */

.akka-contact-page {
    background-color: var(--bg-main);
    min-height: 80vh;
}

.akka-contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.akka-contact-header h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.akka-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: flex-start;
}

/* Left side Info Cards */
.akka-info-card {
    background: var(--bg-surface);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    height: 100%;
}

.akka-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.akka-info-item:last-child {
    margin-bottom: 0;
}

.akka-info-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #fff0ed;
    color: var(--brand);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: all 0.3s ease;
}

.akka-info-item:hover .akka-info-icon {
    background: var(--brand);
    color: #ffffff;
    transform: scale(1.1);
}

.akka-info-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-main);
}

.akka-info-text p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Right side Form Card with Glass effect */
.akka-contact-form-card {
    background: var(--bg-surface);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.akka-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.akka-form-status {
    text-align: center;
    padding: 30px;
    border-radius: 16px;
}

.akka-form-status.success {
    background: #ecfdf5;
    color: #065f46;
}

.akka-form-status.success h3 {
    font-size: 22px;
    margin: 15px 0 10px;
}

.akka-form-status.success i {
    font-size: 48px;
    color: #10b981;
}

.akka-form-status.error {
    background: #fef2f2;
    color: #991b1b;
}

@media (max-width: 768px) {
    .akka-contact-header h1 {
        font-size: 32px;
    }
    .akka-form-row {
        grid-template-columns: 1fr;
    }
    .akka-info-card, .akka-contact-form-card {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
        margin: 20px auto;
    }
    
    .woocommerce-MyAccount-navigation {
        flex: none;
        width: 100%;
        padding: 16px;
    }
    
    .woocommerce-MyAccount-navigation ul {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
    }
    
    .woocommerce-MyAccount-navigation ul li a {
        white-space: nowrap;
    }
    
    .woocommerce-MyAccount-content {
        padding: 24px 16px;
    }
}


/* ==========================================================================
   PREMIUM CART PAGE — WooCommerce Override Styles
   ========================================================================== */

/* ── Page background ── */
.woocommerce-cart .woocommerce,
.woocommerce-cart #page {
    background: #f3f4f6;
}

/* ── Cart page title area ── */
.woocommerce-cart .entry-header,
.woocommerce-cart .page-header {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%) !important;
    padding: 48px 0 36px !important;
    text-align: center;
    margin-bottom: 0;
}

/* Override generic page title styling for cart */
.woocommerce-cart h1.entry-title,
.woocommerce-cart h1.page-title {
    color: #fff !important;
    font-size: 32px !important;
    font-weight: 800 !important;
}

/* ── Outer wrapper ── */
.woocommerce-cart .entry-content,
.woocommerce-cart article.page,
.woocommerce-cart .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

/* ── Cart layout: table + totals side by side ── */
.woocommerce-cart .woocommerce {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: flex-start;
}

.woocommerce-cart .woocommerce-cart-form {
    flex: 1;
    min-width: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    overflow: hidden;
    padding: 0;
}

/* ── Cart Table ── */
.woocommerce-cart table.woocommerce-cart-form__contents {
    width: 100%;
    border-collapse: collapse;
    border: none;
    margin: 0;
}

.woocommerce-cart table.woocommerce-cart-form__contents thead th {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    padding: 14px 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    white-space: nowrap;
}

.woocommerce-cart table.woocommerce-cart-form__contents tbody td {
    border: none;
    border-bottom: 1px solid #f3f4f6;
    padding: 18px 20px;
    vertical-align: middle;
}

.woocommerce-cart table tbody tr:last-child td {
    border-bottom: none;
}

.woocommerce-cart table tbody tr:hover td {
    background: #fafafa;
}

/* Product thumbnail */
.woocommerce-cart .product-thumbnail img {
    width: 72px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    display: block;
}

/* Product name */
.woocommerce-cart .product-name a {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
}
.woocommerce-cart .product-name a:hover { color: #ff4d2e; }

.woocommerce-cart .product-name .variation {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}

/* Custom design pill */
.woocommerce-cart .product-name .akka-custom-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #fff0ed;
    color: #ff4d2e;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    margin-top: 4px;
}

/* Price cells */
.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
}
.woocommerce-cart .product-subtotal { font-weight: 800; }

/* Quantity */
.woocommerce-cart .product-quantity input[type="number"],
.woocommerce-cart .quantity input.qty {
    width: 64px !important;
    padding: 8px 6px !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 8px !important;
    text-align: center !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    outline: none !important;
    box-shadow: none !important;
}
.woocommerce-cart .quantity input.qty:focus {
    border-color: #ff4d2e !important;
}

/* Remove button */
.woocommerce-cart a.remove {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    background: #f3f4f6 !important;
    color: #9ca3af !important;
    font-size: 16px !important;
    text-decoration: none !important;
    transition: all 0.2s !important;
    font-weight: 700;
}
.woocommerce-cart a.remove:hover {
    background: #fee2e2 !important;
    color: #ef4444 !important;
}

/* Actions row (coupon + update) */
.woocommerce-cart .actions {
    padding: 16px 20px !important;
    background: #fafafa;
    border-top: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.woocommerce-cart .coupon {
    display: flex;
    gap: 8px;
    flex: 1;
    align-items: center;
}

.woocommerce-cart .coupon input#coupon_code {
    flex: 1 !important;
    padding: 10px 14px !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    outline: none !important;
    transition: border-color 0.2s !important;
}
.woocommerce-cart .coupon input#coupon_code:focus {
    border-color: #ff4d2e !important;
}
.woocommerce-cart .coupon button[name="apply_coupon"] {
    padding: 10px 20px !important;
    background: #111827 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
}
.woocommerce-cart .coupon button[name="apply_coupon"]:hover {
    background: #374151 !important;
}

.woocommerce-cart button[name="update_cart"] {
    padding: 10px 20px !important;
    background: transparent !important;
    color: #6b7280 !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 8px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    margin-left: auto !important;
    transition: all 0.2s !important;
}
.woocommerce-cart button[name="update_cart"]:hover {
    border-color: #111827 !important;
    color: #111827 !important;
}

/* ══ RIGHT: Cart Totals ══ */
.woocommerce-cart .cart-collaterals {
    width: 360px !important;
    min-width: 0;
    position: sticky;
    top: 20px;
}

.woocommerce-cart .cart_totals {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 28px 24px;
    width: 100% !important;
    float: none !important;
}

.woocommerce-cart .cart_totals h2 {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #111827 !important;
    margin: 0 0 20px !important;
    padding-bottom: 16px !important;
    border-bottom: 2px solid #f3f4f6 !important;
}

.woocommerce-cart .cart_totals table {
    width: 100%;
    border: none !important;
    border-collapse: collapse;
    margin-bottom: 0;
}

.woocommerce-cart .cart_totals table th,
.woocommerce-cart .cart_totals table td {
    border: none !important;
    padding: 9px 0 !important;
    font-size: 14px;
    color: #374151;
    background: transparent !important;
    vertical-align: middle;
}

.woocommerce-cart .cart_totals table th {
    font-weight: 600 !important;
    color: #374151 !important;
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #111827 !important;
    border-top: 2px dashed #e5e7eb !important;
    padding-top: 14px !important;
}

/* GST / Tax row styling */
.woocommerce-cart .cart_totals .tax-rate {
    font-size: 13px;
    color: #6b7280;
}

/* Shipping section */
.woocommerce-cart .cart_totals .shipping td {
    font-size: 14px;
}
.woocommerce-cart .cart_totals .shipping-calculator-button {
    font-size: 12px;
    color: #ff4d2e;
}

/* Free shipping badge */
.woocommerce-cart .cart_totals .free-shipping span,
.woocommerce-cart .cart_totals .woocommerce-shipping-destination {
    color: #16a34a;
    font-weight: 700;
}

/* GST info note */
.woocommerce-cart .cart_totals::after {
    content: "ℹ All prices include GST. Tax invoice will be emailed after order.";
    display: block;
    font-size: 11px;
    color: #9ca3af;
    background: #f9fafb;
    border-radius: 8px;
    padding: 10px 12px;
    margin-top: 16px;
    line-height: 1.5;
}

/* ── Checkout Button ── */
.woocommerce .wc-proceed-to-checkout,
.woocommerce-cart .wc-proceed-to-checkout {
    padding: 0 !important;
    margin-top: 16px !important;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
    background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #111827 100%) !important;
    background-size: 200% auto !important;
    color: #fff !important;
    text-align: center !important;
    padding: 20px 24px !important;
    border-radius: 14px !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    text-decoration: none !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
    box-shadow: 0 10px 25px rgba(17, 24, 39, 0.25), inset 0 1px 0 rgba(255,255,255,0.1) !important;
    border: none !important;
    margin-bottom: 0 !important;
    position: relative !important;
    overflow: hidden !important;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button::before,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    transition: all 0.6s ease;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button::after,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button::after {
    content: " →" !important;
    font-weight: bold;
    font-size: 20px;
    transition: transform 0.3s ease !important;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover {
    transform: translateY(-3px) scale(1.01) !important;
    box-shadow: 0 15px 35px rgba(17, 24, 39, 0.35), inset 0 1px 0 rgba(255,255,255,0.1) !important;
    background-position: right center !important;
    color: #ff4d2e !important;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button:hover::before,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover::before {
    left: 150%;
}

.woocommerce .wc-proceed-to-checkout a.checkout-button:hover::after,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover::after {
    transform: translateX(6px) !important;
}

/* Trust badges after totals */
.woocommerce-cart .cross-sells { display: none; }

/* ── Mobile ── */
@media (max-width: 900px) {
    .woocommerce-cart .woocommerce {
        flex-direction: column;
    }
    .woocommerce-cart .cart-collaterals {
        width: 100% !important;
        position: static;
    }
    .woocommerce-cart table.woocommerce-cart-form__contents thead {
        display: none;
    }
    .woocommerce-cart .product-thumbnail {
        display: none;
    }
    .woocommerce-cart table tbody td {
        padding: 12px 12px !important;
    }
}


/* ==========================================================================
   PREMIUM THANK YOU PAGE (Order Received)
   ========================================================================== */
.woocommerce-checkout.woocommerce-order-received .woocommerce {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.woocommerce-order .woocommerce-notice--success,
.woocommerce-order .woocommerce-thankyou-order-received {
    text-align: center;
    background: #dcfce7 !important;
    color: #16a34a !important;
    padding: 24px 32px !important;
    border-radius: 16px;
    font-size: 18px !important;
    font-weight: 800 !important;
    border: none !important;
    margin-bottom: 40px !important;
    box-shadow: 0 4px 16px rgba(22,163,74,0.15);
}
.woocommerce-order .woocommerce-thankyou-order-received::before {
    content: "🎉 ";
    font-size: 24px;
}

ul.woocommerce-order-overview.woocommerce-thankyou-order-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    background: #fff;
    padding: 32px !important;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid #f3f4f6;
    margin: 0 0 40px 0 !important;
}

ul.woocommerce-order-overview li {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}
ul.woocommerce-order-overview li strong {
    font-size: 16px;
    color: #111827;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 800;
}

.woocommerce-order-details {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    border: 1px solid #f3f4f6;
}
.woocommerce-order-details h2.woocommerce-order-details__title {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f3f4f6;
}

.woocommerce-table--order-details th,
.woocommerce-table--order-details td {
    padding: 16px 0 !important;
    border-bottom: 1px solid #f3f4f6 !important;
    border-top: none !important;
}
.woocommerce-table--order-details th {
    color: #6b7280 !important;
    font-weight: 600 !important;
}
.woocommerce-table--order-details td.product-name a {
    color: #111827 !important;
    font-weight: 700 !important;
    text-decoration: none;
}
.woocommerce-table--order-details td.product-name a:hover {
    color: #ff4d2e !important;
}

.woocommerce-table--order-details tfoot th,
.woocommerce-table--order-details tfoot td {
    border-bottom: none !important;
    border-top: 1px dashed #e5e7eb !important;
}
.woocommerce-table--order-details tfoot tr:last-child th,
.woocommerce-table--order-details tfoot tr:last-child td {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #111827 !important;
}

/* Fallback: Force hide legacy raw JSON strings from old order meta */
.wc-item-meta dt.variation-akka_design_json,
.wc-item-meta dd.variation-akka_design_json,
.wc-item-meta dt.variation-akka_preview_img,
.wc-item-meta dd.variation-akka_preview_img {
    display: none !important;
}
p.akka_design_json, p.akka_preview_img {
    display: none !important;
}


/* ── Hero Banner ── */
.akka-cart-hero {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #fff;
    padding: 48px 0 36px;
    text-align: center;
    margin-bottom: 0;
}
.akka-cart-hero h1 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}
.akka-cart-hero p {
    color: #9ca3af;
    font-size: 15px;
    margin: 0;
}

/* ── Page Wrapper ── */
.akka-cart-page {
    background: #f3f4f6;
    min-height: 80vh;
}

.akka-cart-form {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px 80px;
}

/* ── Two-column layout ── */
.akka-cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 28px;
    align-items: start;
}

/* ══ LEFT: Items Panel ══ */
.akka-cart-items {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    overflow: hidden;
}

.akka-cart-header-row {
    display: grid;
    grid-template-columns: 90px 1fr 110px 110px 110px 44px;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
}

/* Each cart row */
.akka-cart-row {
    display: grid;
    grid-template-columns: 90px 1fr 110px 110px 110px 44px;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.15s;
}
.akka-cart-row:last-of-type { border-bottom: none; }
.akka-cart-row:hover { background: #fafafa; }

/* Thumbnail */
.akka-cart-thumb {
    position: relative;
    width: 80px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #f3f4f6;
    flex-shrink: 0;
}
.akka-cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.akka-design-badge {
    position: absolute;
    bottom: 3px;
    left: 3px;
    background: #ff4d2e;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Product info */
.akka-cart-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.akka-cart-product-name {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}
.akka-cart-product-name a {
    color: inherit;
    text-decoration: none;
}
.akka-cart-product-name a:hover { color: #ff4d2e; }
.akka-cart-custom-label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #6b7280;
    font-weight: 500;
}
.akka-edit-design-link {
    font-size: 12px;
    color: #ff4d2e;
    text-decoration: none;
    font-weight: 600;
}
.akka-edit-design-link:hover { text-decoration: underline; }

/* Price & Total cells */
.akka-cart-price,
.akka-cart-row-total {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
}
.akka-cart-row-total { font-weight: 800; }

/* Quantity input */
.akka-cart-qty .quantity {
    display: flex;
    align-items: center;
}
.akka-cart-qty input[type="number"] {
    width: 60px;
    padding: 8px 6px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    outline: none;
}
.akka-cart-qty input[type="number"]:focus { border-color: #ff4d2e; }

/* Remove button */
.akka-remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #9ca3af;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
}
.akka-remove-btn:hover { background: #fee2e2; color: #ef4444; }

/* Actions row */
.akka-cart-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid #f3f4f6;
    background: #fafafa;
    flex-wrap: wrap;
}
.akka-coupon-row {
    display: flex;
    gap: 8px;
    flex: 1;
}
.akka-coupon-input {
    flex: 1;
    padding: 10px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
}
.akka-coupon-input:focus { border-color: #ff4d2e; }
.akka-coupon-btn {
    padding: 10px 20px;
    background: #111827;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.akka-coupon-btn:hover { background: #374151; }
.akka-update-cart-btn {
    padding: 10px 20px;
    background: transparent;
    color: #6b7280;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-left: auto;
}
.akka-update-cart-btn:hover { border-color: #111827; color: #111827; }


/* ══ RIGHT: Summary Card ══ */
.akka-cart-summary {
    position: sticky;
    top: 20px;
}

.akka-summary-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 28px 24px;
}
.akka-summary-title {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f3f4f6;
}

.akka-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #374151;
    padding: 8px 0;
}
.akka-gst-row {
    font-size: 13px;
    color: #6b7280;
}
.akka-gst-row span:first-child { padding-left: 12px; }

.akka-discount-row { color: #10b981; font-weight: 600; }

.akka-summary-divider {
    border: none;
    border-top: 2px dashed #e5e7eb;
    margin: 12px 0;
}

.akka-total-row {
    font-size: 18px;
    font-weight: 800;
    color: #111827;
    padding: 10px 0 16px;
}

.akka-gst-note {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 11.5px;
    color: #9ca3af;
    background: #f9fafb;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.akka-free-badge {
    background: #dcfce7;
    color: #16a34a;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
}

/* WC Checkout Button override */
.woocommerce .wc-proceed-to-checkout a.checkout-button,
.akka-summary-card .wc-proceed-to-checkout a {
    display: block;
    width: 100%;
    background: linear-gradient(135deg, #ff4d2e 0%, #e63e20 100%);
    color: #fff !important;
    text-align: center;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(255,77,46,0.3);
    border: none;
    margin-bottom: 12px;
}
.woocommerce .wc-proceed-to-checkout a.checkout-button:hover,
.akka-summary-card .wc-proceed-to-checkout a:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(255,77,46,0.4);
}

.akka-continue-link {
    display: block;
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    text-decoration: none;
    margin-top: 12px;
    transition: color 0.2s;
}
.akka-continue-link:hover { color: #ff4d2e; }

/* Trust Badges */
.akka-trust-badges {
    display: flex;
    justify-content: space-around;
    margin-top: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 16px 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.akka-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.akka-badge span { font-size: 22px; }
.akka-badge small { font-size: 10px; color: #6b7280; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }

/* Empty cart */
.woocommerce-cart .woocommerce-info {
    border-left-color: #ff4d2e;
    background: #fff0ed;
    color: #374151;
    border-radius: 10px;
    padding: 16px 20px;
    max-width: 1200px;
    margin: 40px auto;
}

/* ── Mobile Cart ── */
@media (max-width: 900px) {
    .akka-cart-layout {
        grid-template-columns: 1fr;
    }
    .akka-cart-header-row {
        display: none;
    }
    .akka-cart-row {
        grid-template-columns: 80px 1fr auto;
        grid-template-rows: auto auto auto;
        padding: 16px;
    }
    .akka-cart-row .akka-cart-thumb  { grid-row: 1 / 3; }
    .akka-cart-row .akka-cart-info   { grid-column: 2; }
    .akka-cart-row .akka-cart-price  { display: none; }
    .akka-cart-row .akka-cart-qty    { grid-column: 2; }
    .akka-cart-row .akka-cart-row-total { grid-column: 3; grid-row: 1; text-align: right; }
    .akka-cart-row .akka-cart-remove { grid-column: 3; grid-row: 2; text-align: right; justify-self: end; }
    .akka-cart-summary { position: static; }
    .akka-cart-form { padding: 24px 16px 60px; }
}