/* ============================================
   AARKAY PREMIUM DESIGN SYSTEM v4.0
   Optimized for: Bagisto v2.2.3 + High-End Fashion
   Theme: Minimalist / High-Contrast / Australian Modern
============================================ */

/* 1. GOOGLE FONTS */
/* Inter for UI/Body, Barlow Condensed for Bold Fashion Headings */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700;800&display=swap');
/* 2. ROOT DESIGN TOKENS */
:root {
    /* Brand Palette - Shifted from SaaS Blue to Premium Black/White */
    --ak-primary: #011750;     /* for Headings/Footer */
    --ak-charcoal: #1F2937;    /* For secondary text */
    --ak-white: #FFFFFF;       /* Pure White for product grids */
    --ak-bg-light: #F9FAFB;    /* Soft Gray for section backgrounds */
    --ak-accent: #FF4500;      /* Signature Orange-Red from your logo dot */
    
    /* Semantic Colors */
    --ak-text-main: #111111;
    --ak-text-muted: #6B7280;
    --ak-border: #E5E7EB;
    
    /* Radius - Sharper corners for a more "Fashion" feel (less "App-like") */
    --radius-sm: 2px;
    --radius-md: 4px;
    --radius-lg: 0px; /* Sharp corners for cards look more premium in retail */

    /* Layout */
    --container-width: 1320px;
}

/* ============================================
   3. GLOBAL RESET & BASE
============================================ */
* {
  box-sizing: border-box;
   font-family: 'Inter', sans-serif !important;
}
body {
    font-family: 'Inter', sans-serif !important;
    color: var(--ak-text-main);
    background-color: var(--ak-white); /* Changed from cream/blue-gray to white */
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
    margin: 0;
}

.section-space {
    padding: 100px 0; /* High whitespace for premium feel */
}
.pb-6{padding-bottom: 10px;}
/* ============================================
   4. TYPOGRAPHY SYSTEM
============================================ */
h1, h2, h3, h4, .section-title {
    font-family: 'Inter', sans-serif !important;
    color: var(--ak-primary);
    font-weight: 600 !important;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* Hero Headings */
h1 { font-size: 64px; line-height: 1; }
h2 { font-size: 1.875rem; line-height: 1.1; }

/* Body text, Links, and Labels - Base font sizing */
p {
    font-size: 14px;
    line-height: 1.5;
    color: #333333;
}
a {
    font-size: 14px;
    line-height: 1.5;
    color: #4272e1;
}
header a{color: #0E1B2A;}
label {
    font-size: 14px !important;
}
.icon-uncheck{font-size: 24px !important;}


/* ============================================
   6. PRODUCT CARD & SHOP UI
============================================ */
.product-card {
    background: transparent; /* Clean transparent cards */
    border: none !important;
    padding: 0;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-image img {
    border-radius: var(--radius-sm);
    background: #F3F4F6; /* Light gray placeholder look */
    mix-blend-mode: multiply;
}

.price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--ak-primary);
    font-size: 16px;
}



/* ============================================
   8. BAGISTO FIXES
============================================ */
/* Remove the old cream background utility from Bagisto */
.bg-lightOrange { background-color: var(--ak-white) !important; }
.text-navyBlue { color: var(--ak-primary) !important; }

/* Sticky Header with Blur */
header.header-desktop {
    background: rgba(255,255,255,0.9) !important;
    backdrop-filter: saturate(180%) blur(20px);
}

/* ============================================
   END – AARKAY PREMIUM DESIGN SYSTEM v4.0
============================================ */



/* ========= PROFESSIONAL CAROUSEL & NEW ARRIVALS ========= */

/* 1. Section Header Refinement */
/* Targets the "New Arrivals" title and navigation arrows */
.sh-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.sh-section-header h2 {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #0E2A47 !important; /* Aarkay Navy */
    margin: 0 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 2. Product Card Professionalism */
/* Removes wrapper styling to match standard minimal cards */
.product-carousel .aarkay-product-card {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    transition: none !important;
    box-shadow: none !important;
}

.product-carousel .aarkay-product-card:hover {
    box-shadow: none !important;
    border-color: transparent !important;
    transform: none !important;
}

/* Customizing the Star Icon */
.minimal-star-rating {
    color: #FACC15 !important; /* Tailwind yellow-400 */
}

/* Customizing the Product Image Wrapper */
.minimal-product-image-container {
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    background-color: #f3f4f6;
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* Customizing the Add to Cart Button */
.minimal-add-to-cart-btn {
    background-color: #111827 !important; /* Slate 900 */
    color: #ffffff !important;
    border-radius: 10px !important;
    padding: 10px 16px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    transition: background-color 0.2s !important;
    width: 90% !important;
    margin: 0 auto !important;
}

.minimal-add-to-cart-btn:hover {
    background-color: #000000 !important; /* Pure black */
}

/* Customizing Carousel Arrows to avoid uncompiled Tailwind */
.product-carousel-arrow {
    transition: all 0.3s ease !important;
}
.product-carousel-arrow:hover {
    background-color: #111827 !important;
    border-color: #111827 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1) !important;
}

/* Customizing the injected Bagisto price HTML to match layout */
.minimal-card-price p {
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #111 !important;
    margin: 0 !important;
}
.minimal-card-price p.line-through,
.minimal-card-price span.line-through {
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #9ca3af !important;
    text-decoration: line-through !important;
}

/* 3. Image Consistency */
/* Ensures all stationery/apparel products look uniform */
.product-card .product-image-container {
    background: #f8fafc; /* Subtle grey background for images */
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 15px;
}

/* 4. Price & Button Styling */
.product-card .product-name {
    font-weight: 600 !important;
    color: #1a202c !important;
    font-size: 16px !important;
}

.product-card .price {
    color: #0E2A47 !important;
    font-weight: 700 !important;
}

/* View All Button - Centered and Bold */
.product-carousel-footer {
    text-align: center;
    margin-top: 40px;
}



/* Promotional Banners Starts */
.aarkay-split-banner {
    width: 100%;
    margin: 0;
}

.split-container {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 100px;
}

.split-item {
    flex: 1;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px;
    color: #1a1a1a;
}

.left-banner {
    background: url('../images/hero-model.jpg') center/cover no-repeat;
}

.right-banner {
    background: url('../images/model-female.jpg') center/cover no-repeat;
}

.banner-content {
    max-width: 400px;
}

.banner-tag {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.banner-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 25px;
    font-size: 18px;
}

.old-price {
    text-decoration: line-through;
    margin-right: 10px;
    opacity: 0.6;
}

.new-price {
    font-size: 22px;
    font-weight: 700;
    color: #e53935;
}



/* Responsive */
@media (max-width: 768px) {
    .split-container {
        flex-direction: column;
    }

    .split-item {
        min-height: 400px;
        padding: 40px;
    }

    .banner-content h2 {
        font-size: 28px;
    }
}
/* Promotional Banners Ends */

/* ================================
   WHY CHOOSE AARKAY
================================= */

.aarkay-why {
    background: #ffffff;
}

.why-header {
    text-align: center;
    margin-bottom: 70px;
}

.why-header span {
    font-size: 12px;
    letter-spacing: 3px;
    color: #999;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.why-header h2 {
    font-size: 34px;
    font-weight: 600;
}

.why-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.why-item {
    padding: 0 15px;
}

.why-icon {
    font-size: 28px;
    margin-bottom: 20px;
    opacity: 0.8;
    color: #747472;
}

.why-item h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.why-item p {
    font-size: 14px;
    color: #777;
}

/* Tablet */
@media (max-width: 992px) {
    .why-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .why-row {
        grid-template-columns: 1fr;
    }
}


/* ================================
   WHY CHOOSE AARKAY Ends
================================= */

/* ============================= 
SHOP THE COLLECTION SECTION   
============================= */
 .aarkay-collection-section {
    background: #f9f9f9;
}
.aarkay-btn-div{display: flex;}
/* Section Header */
 .aarkay-section-header {
    display: flex; width: 100%; flex-direction: column;
}
.aarkay-section-header h2 {
    margin-bottom: 15px !important;
}
.aarkay-section-header h6 {
    margin-bottom: 15px !important;
    text-transform: uppercase;
    font-weight: 500;
    color: #747472 !important;
    letter-spacing: 0.5px;
}

/* Grid Layout */
 .aarkay-collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
/* Card */
 .aarkay-collection-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
/* Hover Lift */
 .aarkay-collection-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}
/* Image */
 .aarkay-collection-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.aarkay-collection-card:hover img {
    transform: scale(1.06);
}
/* Overlay */
 .aarkay-overlay {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.05) 70%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}
/* Text Content */
 .aarkay-collection-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: #ffffff;
    z-index: 2;
    transition: transform 0.4s ease;
}
.aarkay-collection-card:hover .aarkay-collection-content {
    transform: translateY(-4px);
}
.aarkay-collection-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0px;
    letter-spacing: 0.5px;
    color:#ffffff !important;
}
.aarkay-collection-content span {
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.9;
}
/* Responsive */
 @media (max-width: 992px) {
    .aarkay-collection-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 576px) {
    .aarkay-collection-grid {
        grid-template-columns: 1fr;
    }
    .aarkay-collection-card img {
        height: 380px;
    }
    .aarkay-section-header h2 {
        font-size: 32px;
    }
}
/* ============================= 
 BUILT FOR CONFIDENCE SECTION 
 ============================= */
 .aarkay-confidence-section {
    padding: 100px 0;
    background: #ffffff;
}
.aarkay-confidence-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 100px;
    padding: 0 20px;
}
/* Image */
 .aarkay-confidence-image {
    flex: 1;
}
.aarkay-confidence-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}
/* Content */
 .aarkay-confidence-content {
    flex: 1;
}
.aarkay-confidence-label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    display: block;
    margin-bottom: 20px;
}


/* Button */

/* Responsive */
 @media (max-width: 992px) {
    .aarkay-confidence-container {
        flex-direction: column;
        gap: 50px;
    }
    .aarkay-confidence-content h2 {
        font-size: 34px;
    }
    .aarkay-confidence-section {
        padding: 100px 0;
    }
}


/* =========================
   BEST SELLERS SECTION
========================= */

.aarkay-best {
    padding: 100px 0;
    background: #f6f6f6;
}

/* Left Content */

.best-content {
    padding-right: 40px;
}

.best-label {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    color: #999;
    display: block;
    margin-bottom: 15px;
}

.best-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
}

.best-content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}



/* Grid Layout: 2 columns per row */
.best-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 24px; /* Spacious gap for modern feel */
}

/* Card Styling */
.best-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

/* Image Wrapper */
.best-img {
    position: relative;
    aspect-ratio: 1 / 1.1; /* Slightly taller than square for fashion */
    background-color: #f5f5f5;
    overflow: hidden;
}

.best-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale 0.5s ease;
}

.best-card:hover img {
    scale: 1.05;
}

/* Best Seller Badge */
.badge-best {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #111; /* Sleek black */
    color: #fff;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    z-index: 1;
}

/* Product Info */
.best-info {
    padding: 20px;
    text-align: left;
}

.best-info h5 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3436;
    font-family: 'Inter', sans-serif; /* Recommended modern font */
}

.price {
    display: block;
    font-size: 1rem;
    color: #636e72;
    font-weight: 500;
}

/* Responsive: 1 column on small mobile devices 
@media (max-width: 480px) {
    .best-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}*/
/* =========================
   BEST SELLERS SECTION Ends
========================= */

/* ==========================================
   AARKAY ABOUT PAGE – LUXURY EDITORIAL
========================================== */

.section {
    padding: 120px 0;
}


/* ============================================
   AARKAY HERO SECTION
============================================ */

.ak-hero {
    position: relative;
    min-height: 600px;
    background: url('../images/hero.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-top:50px;
}

/* Overlay */
.ak-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4) 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.85) 100%
    );
    z-index: 1;
}

/* Content */
.ak-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

/* Badge */
.ak-hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

/* Title */
.ak-hero-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff !important;
}

/* Subtitle */
.ak-hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 40px;
}

/* Buttons */
.ak-hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Outline Button */


/* Responsive */
@media (max-width: 992px) {

    .ak-hero-title {
        font-size: 48px;
    }

    .ak-hero-subtitle {
        font-size: 16px;
    }

    .ak-hero {
        min-height: 80vh;
        padding: 80px 0;
    }
}

@media (max-width: 576px) {

    .ak-hero-title {
        font-size: 38px;
    }

    .ak-hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
}
/* ========== GRID LAYOUT ========== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse .about-text {
    direction: ltr;
}

.about-image img {
    width: 100%;
    border-radius: 14px;
    transition: 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.04);
}

/* ========== FOUNDER SECTION ========== */

.about-founder {
    background: #f9f9f9;
}

.founder-signature {
    margin-top: 30px;
}

.founder-signature h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.founder-signature span {
    font-size: 14px;
    color: #888;
    letter-spacing: 1px;
}

/* ========== PHILOSOPHY SECTION ========== */

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.about-philosophy {
    background: #ffffff;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.philosophy-card {
    padding: 40px;
    border-radius: 16px;
    background: #f5f5f5;
    transition: 0.3s ease;
    text-align: left;
}

.philosophy-card span {
    font-size: 14px;
    font-weight: 600;
    color: #C6A85E;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.philosophy-card:hover {
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transform: translateY(-8px);
}
.philosophy-card p{margin-bottom: 0;}


/* AARKAY CTA SECTION – LUXURY */

.ak-cta-section {
    padding: 140px 20px;
    background: #f8f6f4; /* warm luxury neutral */
    text-align: center;
}

.ak-cta-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Title */
.ak-cta-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
    color: #0E2A47;
}

/* Subtitle */
.ak-cta-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 50px;
}

/* Buttons */
.ak-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Primary Button */




/* AARKAY SPLIT FEATURE SECTION */

.ak-feature-section {
    padding: 100px 20px;
}

.ak-feature-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* LEFT SIDE */
.ak-feature-content {
    background: #0F172A;
    color: #ffffff;
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ak-feature-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #ffffff !important;
}

.ak-feature-text {
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 30px;
}

/* Bullet List */
.ak-feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.ak-feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #e2e8f0;
}

.ak-feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ak-blue);
    font-weight: 600;
}

/* CTA Link */
.ak-feature-link {
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.ak-feature-link:hover {
    color: var(--ak-blue);
}

/* RIGHT IMAGE */
.ak-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/*  AARKAY VISION SECTION */

.ak-vision-luxury {
    padding: 80px 0;
    background: #f8fafc; 
    text-align: center;
}

.ak-vision-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 100px 80px;
    background: #ffffff;

    /* Luxury Border */
    border: 1px solid #e5e7eb;

    /* Luxury Shadow (soft & wide) */
    box-shadow: 
        0 20px 40px rgba(14, 42, 71, 0.06),
        0 8px 20px rgba(14, 42, 71, 0.04);

    border-radius: 14px;
}

/* Top Label */
.ak-vision-label {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #6b7280;
    display: inline-block;
    margin-bottom: 20px;
}

/* Main Title */
.ak-vision-title {
     font-family: "Barlow Condensed", sans-serif;
    font-size: 54px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 60px;
    color: #0E2A47;
}

/* Lead Paragraph */
.ak-vision-lead {
    font-size: 20px;
    font-weight: 500;
    color: #0F172A;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Body Paragraph */
.ak-vision-body p {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.9;
    margin-bottom: 30px;
}

/* Statement Block */
.ak-vision-statement {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid #e5e7eb;
}

.ak-vision-statement span {
    display: block;
    font-size: 18px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #6b7280;
}

.ak-vision-statement strong {
    display: block;
    font-size: 28px;
    letter-spacing: 3px;
    font-weight: 700;
    color: #0E2A47;
}



/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 992px) {

    section {
        padding: 80px 0;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 32px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

    .about-hero {
        padding: 120px 0;
    }
     .ak-feature-wrapper {
        grid-template-columns: 1fr;
    }

    .ak-feature-content {
        padding: 50px 40px;
    }

    .ak-feature-title {
        font-size: 32px;
    }
    .ak-vision-container {
        padding: 60px 30px;
    }

    .ak-vision-title {
        font-size: 36px;
    }

    .ak-vision-lead {
        font-size: 18px;
    }

    .ak-vision-statement strong {
        font-size: 22px;
    }
    .ak-cta-section {
        padding: 100px 20px;
    }

    .ak-cta-title {
        font-size: 36px;
    }

    .ak-cta-subtitle {
        font-size: 16px;
    }

    .ak-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

/* ============================================
   AARKAY PREMIUM FOOTER STYLING
============================================ */

.aarkay-main-footer {
    background-color: #0E1B2A !important; /* Midnight Navy Background */
    color: #94A3B8 !important; /* Muted Slate Text */
    padding: 80px 40px 20px 40px !important;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.aarkay-main-footer p{color:#99abc0;}
.footer-top-section {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1.2fr; /* Balanced 3-column layout */
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 60px;
}

/* Brand Column */
.footer-logo-img {
    height: 45px; /* Professional sizing */
    width: auto;
    margin-bottom: 25px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Forces logo to pure white */
}

.brand-description {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 300px;
}

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

.footer-socials a {
    color: #FFFFFF;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #1F6FEB; /* Aarkay Blue Accent */
}

/* Navigation Links Container */
.footer-links-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-nav-col h3 {
    color: #FFFFFF !important;
    
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px !important;
}

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

.footer-nav-col li {
    margin-bottom: 12px;
}

.footer-nav-col a {
    color: #94A3B8;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-nav-col a:hover {
    color: #FFFFFF;
    padding-left: 5px; /* Subtle interaction effect */
}

/* Newsletter Column */
.footer-newsletter-col h3 {
    color: #FFFFFF !important;
   letter-spacing: 1px;
    font-size: 14px !important;
    margin-bottom: 15px !important;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05); /* Modern translucent input */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 14px;
    color: #FFFFFF;
    border-radius: 4px !important;
    margin-bottom: 12px;
    font-size: 14px;
}

.newsletter-form button {
    width: 100%;
    background: #FFFFFF !important;
    color: #0E1B2A !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px !important;
    border: none !important;
    border-radius: 4px !important;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background: #1F6FEB !important;
    color: #FFFFFF !important;
}

/* Bottom Bar */
.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* ============================================
   RESPONSIVE SETTINGS
============================================ */

@media (max-width: 1024px) {
    .footer-top-section {
        grid-template-columns: 1fr; /* Stack columns on tablets */
        text-align: center;
        gap: 50px;
    }

    .footer-brand-col, .brand-description {
        margin: 0 auto;
    }

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

    .footer-links-container {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .aarkay-main-footer {
        padding: 60px 20px 20px 20px !important;
    }

    .footer-links-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-nav-col h3 {
        margin-bottom: 15px !important;
    }
    .footer-nav-col li{margin-bottom: 4px;}
    .container{padding: 0 15px !important;}
}

/* ===== CONTACT SECTION ===== */
.aarkay-contact {
    background: linear-gradient(180deg, #F8FAFC 0%, #EEF4FF 100%);
}

/* Layout */
.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-top: 20px;
}

/* FORM CARD */
.contact-form-card {
    background: var(--ak-white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--ak-border);
}

/* EMAIL CARD (Highlight this one) */
.contact-info-card {
    background: linear-gradient(135deg, #0E2A47, #1F6FEB);
    color: white;
    border-radius: var(--radius-lg);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: var(--shadow-hover);
}

/* Fix text color inside blue card */
.contact-info-card p {
    color: rgba(255,255,255,0.8);
}

.contact-info-card h4 {
    color: white !important;
}

/* Email Highlight */
.email-link {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-top: 15px;
    display: inline-block;
}

/* ===== FORM IMPROVEMENTS ===== */

.contact-form-card .form-group {
    margin-bottom: 22px; display: flex; flex-direction: column;
}
.contact-form-card label{font-size: 14px; margin-bottom: 5px; color: #666666;}
.form-group input,
.form-group textarea {
    padding: 16px;
    background: #F9FBFF;
    border: 1px solid var(--ak-border);
    transition: all 0.25s ease;
}

/* Focus Effect (Important) */
.form-group input:focus,
.form-group textarea:focus {
    background: white;
    border-color: var(--ak-blue);
    box-shadow: 0 0 0 4px rgba(31,111,235,0.1);
}



/* ===== HEADER IMPROVEMENT ===== */

.section-header h2 {
    font-size: 48px;
    letter-spacing: 2px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* --- Aarkay Typography --- */
.aarkay-section-title {
    font-family: "Barlow Condensed", sans-serif !important;
    font-weight: 800 !important;
    font-size: 2.25rem !important; /* 36px */
    letter-spacing: 0.04em;
    color: #0E1B2A; 
    text-transform: uppercase;
    margin: 0;
}

/* --- Navigation Arrows --- */
.aarkay-nav-arrow {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 50%;
    color: #0E1B2A;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.aarkay-nav-arrow:hover {
    background: #0E1B2A;
    color: #FFFFFF;
    border-color: #0E1B2A;
    transform: scale(1.05);
}

.aarkay-nav-arrow svg {
    width: 22px;
    height: 22px;
}

/* --- Product Cards --- */
.aarkay-product-card {
    transition: all 0.4s ease;
    border: 1px solid transparent;
    border-radius: 4px;
}

.aarkay-product-card:hover {
    transform: translateY(-6px);
    border-color: #F1F5F9;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* Hide scrollbar but keep functionality */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* --- View All Button (Desktop) --- */


/* --- View All Link (Mobile) --- */
.aarkay-view-all-link {
    font-weight: 700;
    color: #0E1B2A;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
}

.aarkay-view-all-link:hover {
    border-color: #0E1B2A;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .aarkay-section-title {
        font-size: 1.75rem !important;
    }
}
/* --- Global Brand Fonts --- */
.aarkay-header-title {
    font-family: "Barlow Condensed", sans-serif !important;
    font-weight: 800;
    font-size: 32px;
    color: #0E1B2A; /* Your Logo Navy */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- The Product Card Look & Feel --- */
.aarkay-card-wrapper {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Image Container Styling */
.aarkay-card-wrapper .relative.overflow-hidden {
    background-color: #F6F6F6 !important; /* Soft grey background like reference */
    border-radius: 4px;
    transition: transform 0.5s ease;
}

.aarkay-card-wrapper:hover .relative.overflow-hidden {
    transform: scale(1.02); /* Very subtle zoom */
}

/* Sale Badge - Match the reference image red */
.aarkay-card-wrapper .badge-sale, 
.aarkay-card-wrapper [class*="sale-label"] {
    background: #E31E24 !important;
    color: white !important;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    text-transform: uppercase;
    top: 15px;
    left: 15px;
}

/* Typography on Cards */
.aarkay-card-wrapper .product-name, 
.aarkay-card-wrapper a.text-lg {
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: #4A5568 !important; /* Muted grey/blue */
    margin-top: 12px;
    display: block;
    text-decoration: none;
}

.aarkay-card-wrapper .price, 
.aarkay-card-wrapper .flex.gap-2\.5 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    color: #1A202C !important;
    margin-top: 4px;
}

/* --- Premium Navigation Arrows --- */
.aarkay-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0E1B2A;
    transition: 0.3s ease;
}

.aarkay-arrow:hover {
    background: #0E1B2A;
    color: #fff;
    border-color: #0E1B2A;
}

.aarkay-arrow svg { width: 20px; height: 20px; }

/* --- The "View All" Button --- */


/* ================================
   AARKAY OUTLINE MARQUEE SECTION
================================ */

/* Common Marquee Style */
 .aarkay-marquee {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    padding: 40px 0;
}
.aarkay-marquee h2 {
    font-size: 72px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0;
    display: inline-block;
    white-space: nowrap;
}
/* Scrolling Animation */
 .marquee-track {
    display: inline-block;
    animation: scrollMarquee 25s linear infinite;
}
@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* ================================
   TOP SECTION STYLE
================================ */
 .aarkay-marquee-top {
    background: #747472;
    padding: 30px 0;
}
.aarkay-marquee-top h2 {
    font-size: 60px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    color: transparent !important;
    -webkit-text-stroke: 1px #ffffff;
    font-family: Lato !important;
}
/* ================================
   BOTTOM SECTION STYLE
================================ */
 .aarkay-marquee-bottom {
    background: #fff;
    border-top: 1px solid #eee;
}
.aarkay-marquee-bottom h2 {
    font-size: 60px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    color: transparent !important;
    -webkit-text-stroke: 2px #747472;
    font-family: Lato !important;
}
/* Hover Pause Effect */
 .aarkay-marquee:hover .marquee-track {
    animation-play-state: paused;
}
/* Responsive */
 @media (max-width: 768px) {
    .aarkay-marquee h2 {
        font-size: 32px;
    }
    .aarkay-marquee-top {
        padding:15px 0;
    }
    .aarkay-marquee-bottom {
        padding:15px 0;
    }
}

/* ============================================
   AARKAY STANDARDIZED BUTTON SYSTEM
============================================ */
/* ─── BASE RESET (shared across all buttons) ─── */
.primary-btn, .btn-primary, .primary-button, .ak-btn-primary,
.aarkay-btn, .banner-btn, .btn-best, .aarkay-view-all-btn,
.aarkay-btn-primary, .view-all-btn,
.secondary-btn, .btn-secondary, .secondary-button, .ak-btn-secondary,
.outline-btn, .ak-btn-outline, .btn-outline,
.tertiary-btn, .btn-tertiary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0px;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    line-height: 1;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
}

/* ─── DISABLED STATE (universal, highest specificity last) ─── */
.disabled-btn,
button:disabled,
.btn:disabled,
.primary-btn:disabled,
.secondary-btn:disabled,
.outline-btn:disabled {
    background-color: #E2E8F0 !important;
    color: #94A3B8 !important;
    border: 2px solid #E2E8F0 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    pointer-events: none;
}


/* ════════════════════════════════════════════════
   1. PRIMARY BUTTON
   Solid Navy → Ghost on hover
════════════════════════════════════════════════ */
.primary-btn, .btn-primary, .primary-button, .ak-btn-primary,
.aarkay-btn, .banner-btn, .btn-best, .aarkay-view-all-btn,
.aarkay-btn-primary, .view-all-btn {
    background-color: #0E1B2A;
    color: #FFFFFF;
    padding: 14px 36px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-color: #0E1B2A;
}

.primary-btn:hover, .btn-primary:hover, .primary-button:hover, .ak-btn-primary:hover,
.aarkay-btn:hover, .banner-btn:hover, .btn-best:hover, .aarkay-view-all-btn:hover,
.aarkay-btn-primary:hover, .view-all-btn:hover {
    background-color: transparent;
    color: #0E1B2A;
    border-color: #0E1B2A;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(14, 27, 42, 0.15);
}


/* ════════════════════════════════════════════════
   2. SECONDARY BUTTON
   Slate fill → Darker slate on hover
════════════════════════════════════════════════ */
.secondary-btn, .btn-secondary, .secondary-button, .ak-btn-secondary {
    background-color: #F1F5F9;
    color: #0E1B2A;
    padding: 14px 36px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    border-color: transparent;
    text-transform: uppercase;
}

.secondary-btn:hover, .btn-secondary:hover,
.secondary-button:hover, .ak-btn-secondary:hover {
    background-color: #E2E8F0;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}


/* ════════════════════════════════════════════════
   3. OUTLINE BUTTON
   Ghost → Solid Navy fill on hover
════════════════════════════════════════════════ */
.outline-btn, .ak-btn-outline, .btn-outline {
    background-color: transparent;
    color: #0E1B2A;
    padding: 14px 36px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    border-color: #0E1B2A;
}

.outline-btn:hover, .ak-btn-outline:hover, .btn-outline:hover {
    background-color: #0E1B2A;
    color: #FFFFFF;
    border-color: #0E1B2A;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(14, 27, 42, 0.15);
}


/* ════════════════════════════════════════════════
   4. TERTIARY BUTTON
   Underline text link — no background
════════════════════════════════════════════════ */
.tertiary-btn, .btn-tertiary {
    display: inline-flex;
    background-color: transparent;
    color: #64748B;
    padding: 10px 4px;
    font-family: 'Host Grotesk', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.01em;
    border: none;
    border-radius: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all 0.3s ease;
}

.tertiary-btn:hover, .btn-tertiary:hover {
    color: #0E1B2A;
    text-decoration-color: #0E1B2A;
}
/* ============================================
   AARKAY UTILITY CLASSES
============================================ */
.round-sm { border-radius: 10px !important; }
.round-md { border-radius: 20px !important; }
.round-lg { border-radius: 50px !important; }

/* ============================================
   AARKAY STANDARDIZED INPUT FIELDS
============================================ */
input[type="text"], input[type="email"], input[type="password"], input[type="number"], input[type="search"], input[type="tel"], input[type="url"], textarea, select, .form-control {
    width: 100%;
    padding: 12px 18px;
    background-color: #F8FAFC !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 8px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 15px !important;
    color: #1E293B !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box;
}

input:focus, textarea:focus, select:focus, .form-control:focus {
    background-color: #FFFFFF !important;
    border-color: #1F6FEB !important;
    box-shadow: 0 0 0 4px rgba(31, 111, 235, 0.1) !important;
    outline: none !important;
}

/* Custom Checkboxes and Radios */
input[type="checkbox"], input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: #0E1B2A;
    cursor: pointer;
    transition: all 0.2s ease;
}

input[type="checkbox"]:hover, input[type="radio"]:hover {
    transform: scale(1.1);
}


.icon-radio-unselect{font-size:20px !important;}
/* ============================================
   BUTTON UTILITIES
============================================ */
.button-sm {
    padding: 8px 16px !important;
    font-size: 13px !important;
}

.button-md {
    padding: 12px 24px !important;
    font-size: 15px !important;
}


/* ============================================
   MINI CART BUTTON FIXES
============================================ */
.mini-cart-btn {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 8px !important;
    padding: 14px 24px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
}

.mini-cart-btn-primary {
    background-color: var(--ak-primary) !important;
    color: #ffffff !important;
    border: 2px solid var(--ak-primary) !important;
}
.mini-cart-btn-primary:hover {
    background-color: #000000 !important;
    border-color: #000000 !important;
}

.mini-cart-btn-outline {
    background-color: transparent !important;
    color: var(--ak-primary) !important;
    border: 2px solid var(--ak-primary) !important;
}
.mini-cart-btn-outline:hover {
    background-color: #f3f4f6 !important;
}


/* ============================================
   FULL WIDTH BTN OVERRIDE
============================================ */
.full-width-btn {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    box-sizing: border-box !important;
}


/* Grand Total Box Fix */
.grand-total-box {
    background-color: #f3f4f6 !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    margin-top: 12px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
}

/* Accordion Header Light Backgrounds */
.checkout-accordion-header {
    background-color: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 20px 24px !important;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1) !important;
    margin-bottom: 10px !important;
    transition: all 0.2s ease-in-out !important;
}
.checkout-accordion-header:hover {
    background-color: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
}

/* ========== PREMIUM CHECKOUT OVERRIDES ========== */
/* Inputs */
.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form select {
    height: 48px !important;
    border-radius: 10px !important;
    border: 1px solid #d1d5db !important;
    padding: 0 16px !important;
    font-size: 15px !important;
    color: #1f2937 !important;
    transition: all 0.2s ease !important;
    background-color: #fafafa !important;
}
.checkout-form input:focus,
.checkout-form select:focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15) !important;
    background-color: #ffffff !important;
    outline: none !important;
}
/* Labels */
.checkout-form label {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #6b7280 !important;
    margin-bottom: 6px !important;
    display: block !important;
}
/* Active Section Highlight */
.checkout-active-section {
    border-left: 4px solid #0f172a !important;
    background-color: #fbfcff !important;
}

/* Premium Radio Cards */
.premium-card-radio {
    display: block;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    padding: 20px !important;
    cursor: pointer;
    transition: all 0.25s ease !important;
    background-color: #ffffff !important;
}
.premium-card-radio:hover {
    border-color: #94a3b8 !important;
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.05), 0 2px 6px -1px rgba(0, 0, 0, 0.03) !important;
    transform: translateY(-2px);
}
.radio-peer:checked + .premium-card-radio {
    border-color: #3b82f6 !important;
    background-color: #eff6ff !important;
    box-shadow: 0 0 0 1px #3b82f6 !important;
}
.radio-peer:checked + .premium-card-radio .radio-circle {
    border-color: #3b82f6 !important;
    border-width: 5px !important;
}

/* ========== PREMIUM CART OVERRIDES ========== */
.premium-cart-item {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 16px !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
    margin-bottom: 12px !important;
}
.premium-cart-item:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1) !important;
    transform: translateY(-2px) !important;
    border-color: #cbd5e1 !important;
}
.cart-qty-selector {
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    transition: all 0.2s ease !important;
}
.cart-qty-selector:hover {
    border-color: #94a3b8 !important;
}
.cart-remove-btn {
    color: #94a3b8 !important;
    transition: all 0.2s ease !important;
    padding: 6px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
}
.cart-remove-btn:hover {
    color: #ef4444 !important;
    background: #fef2f2 !important;
}
.cart-grand-total-row {
    background-color: #0f172a !important;
    color: #ffffff !important;
    padding: 20px 24px !important;
    border-radius: 12px !important;
    margin-top: 24px !important;
    box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.2) !important;
}
.cart-grand-total-row * {
    color: #ffffff !important;
}
.trust-badge-container {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
    margin-top: 24px !important;
    padding-top: 24px !important;
    border-top: 1px solid #e2e8f0 !important;
}
.trust-badge-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 8px !important;
}
.trust-badge-icon {
    font-size: 20px !important;
    color: #0f172a !important;
}
.trust-badge-text {
    font-size: 11px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    color: #64748b !important;
    letter-spacing: 0.5px !important;
}
.cart-coupon-form input {
    height: 48px !important;
    border-radius: 10px !important;
    border: 1px solid #d1d5db !important;
}
.cart-coupon-form button {
    height: 48px !important;
    border-radius: 10px !important;
}

/* ========== PREMIUM LOGIN OVERRIDES ========== */
.premium-login-card {
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.08) !important;
    background-color: #ffffff !important;
}
.premium-login-form input[type="email"],
.premium-login-form input[type="password"] {
    height: 48px !important;
    border-radius: 10px !important;
    border: 1px solid #d1d5db !important;
    padding: 0 16px !important;
    font-size: 15px !important;
    color: #1f2937 !important;
    transition: all 0.2s ease !important;
    background-color: #ffffff !important;
}
.premium-login-form input:focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15) !important;
    outline: none !important;
}
.premium-login-form label {
    font-size: 13px;
    font-weight: 400 !important;
    color: #444444 !important;
    margin-bottom: 6px ;
    display: block !important;
}
.required::after{color: red;}
.cursor-pointer{margin-bottom: 0 !important;}
/* ========== SPLIT LOGIN LAYOUT OVERRIDES ========== */

        .split-layout-root {
            display: flex;
            min-height: 100vh;
            width: 100%;
            background: #fff;
        }
        .split-left-col {
            position: relative;
            background: #111827;
            border-right: 1px solid #e5e7eb;
            display: none;
        }
        .split-right-col {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2rem;
            position: relative;
            flex-direction: column;
        }
        .login-form-wrapper {
            width: 100%;
            max-width: 420px;
        }
        @media (min-width: 1024px) {
            .split-left-col {
                display: flex;
                width: 50%;
            }
            .split-right-col {
                width: 50%;
                padding: 4rem;
            }
        }
        .split-image {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .split-grad {
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.8));
        }
        .split-text {
            position: absolute;
            bottom: 3rem;
            left: 3rem;
            color: white;
            padding: 1.5rem;
            z-index: 10;
            width: 100%;
            max-width: 32rem;
        }
    
/* ========== REFINED SPLIT LOGIN LAYOUT ========== */
.split-layout-root {
    display: flex;
    min-height: 100vh;
    width: 100%;
    background: #f8fafc; /* light background to show off the card */
}
.split-left-col {
    position: relative;
    background: #111827;
    display: none;
}
.split-right-col {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}
.login-inner-card {
    background: transparent;
    width: 100%;
    max-width: 500px;
    padding: 24px 0;
    border-radius: 0;
    box-shadow: none;
}
@media (max-width: 640px) {
    .login-inner-card { padding: 32px 24px; }
}
@media (min-width: 1024px) {
    .split-left-col {
        display: flex;
        width: 50%;
    }
    .split-right-col {
        width: 50%;
        padding: 4rem;
    }
}
.split-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.split-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.65));
}
.split-text {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: white;
    z-index: 10;
    width: 100%;
    max-width: 320px;
}
.form-social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 24px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-weight: 500;
    color: #374151;
    background: #ffffff;
    transition: all 0.3s ease;
    gap: 12px;
}
.form-social-btn:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
    transform: translateY(-1px);
}
.premium-login-form input[type="email"],
.premium-login-form input[type="password"] {
    background-color: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    height: 52px !important;
    border-radius: 12px !important;
    padding: 0 16px !important;
    font-size: 15px !important;
    color: #1f2937 !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
}
.premium-login-form input:focus {
    border-color: #1f6feb !important;
    box-shadow: 0 0 0 4px rgba(31, 111, 235, 0.15) !important;
    outline: none !important;
}

.login-submit-btn {
    background-color: #0e2a47 !important;
    color: #ffffff !important;
    width: 100% !important;
    height: 54px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    letter-spacing: 0.5px !important;
    box-shadow: 0 8px 20px rgba(14,42,71,0.2) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.login-submit-btn:hover {
    background-color: #1f6feb !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 25px rgba(31, 111, 235, 0.3) !important;
}


/* ========== FIXED SPLIT LOGIN LAYOUT OVERRIDES ========== */
@media (min-width: 1024px) {
    .split-layout-root {
        height: 100vh !important;
        overflow: hidden !important;
    }
    .split-left-col {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        height: 100vh !important;
        width: 70% !important; /* 65% for the image, positioned on the right */
        z-index: 10 !important;
        overflow: hidden !important;
    }
    .split-right-col {
        margin-left: 0 !important;
        margin-right: 70% !important; /* Leave space for the right image */
        width: 30% !important; /* 35% for the form */
        height: 100vh !important;
        background-color: #ffffff !important;
        overflow-y: auto !important;
        scroll-behavior: smooth !important;
        flex-direction: column !important;
        justify-content: flex-start !important; /* allow natural scrolling */
        padding: 40px !important;
        align-items: center !important;
    }
    .login-inner-card {
        padding: 20px !important;
        box-shadow: none !important;
        background: transparent !important;
    }

    
    /* Smooth Scrollbar for Right Column */
    .split-right-col::-webkit-scrollbar {
        width: 8px;
    }
    .split-right-col::-webkit-scrollbar-track {
        background: transparent;
    }
    .split-right-col::-webkit-scrollbar-thumb {
        background-color: #cbd5e1;
        border-radius: 10px;
        transition: background-color 0.2s ease;
    }
    .split-right-col::-webkit-scrollbar-thumb:hover {
        background-color: #94a3b8;
    }
}

/* ==========================================
   AARKAY PRODUCT DETAIL PAGE (SaaS + PREMIUM)
========================================== */
body {
    background-color: var(--ak-bg-light);
}

.ak-product-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #E5E7EB;
    padding: 30px;
}

.ak-product-title {
    font-family: 'Barlow Condensed', sans-serif !important;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--ak-primary);
    line-height: 1.1;
}

.ak-product-price-highlight {
    display: inline-flex;
    align-items: center;
    background-color: #F0F7FF;
    color: #1F6FEB;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 700;
    gap: 10px;
}

.ak-trust-badges {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #E5E7EB;
}

.ak-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #4B5563;
}
.ak-trust-badge i, .ak-trust-badge span[class^="icon-"] {
    font-size: 18px;
    color: #1F6FEB;
}

.ak-feature-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #E5E7EB;
}
.ak-feature-col {
    text-align: center;
}
.ak-feature-col i, .ak-feature-col span[class^="icon-"] {
    font-size: 24px;
    color: var(--ak-primary);
    margin-bottom: 8px;
    display: block;
}
.ak-feature-col span {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    display: block;
    line-height: 1.4;
}

.ak-product-tabs {
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
    position: sticky;
    top: 80px;
    background: var(--ak-bg-light);
    z-index: 9;
    padding-top: 15px;
}

.ak-tab-link {
    font-size: 16px;
    font-weight: 600;
    color: #6B7280;
    padding-bottom: 15px;
    position: relative;
    cursor: pointer;
    transition: color 0.3s;
    background: none;
    border: none;
    outline: none;
}

.ak-tab-link:hover, .ak-tab-link.active {
    color: var(--ak-primary);
}

.ak-tab-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--ak-primary);
    transition: width 0.3s ease;
}

.ak-tab-link.active::after {
    width: 100%;
}

.ak-product-gallery-container {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.ak-btn-primary {
    background: var(--ak-primary) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(14, 42, 71, 0.2) !important;
    transition: all 0.25s ease !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 58px !important;
}

.ak-btn-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(14, 42, 71, 0.3) !important;
}

.ak-lifestyle-section {
    position: relative;
    height: 400px;
    background-color: #f1f1f1; /* Fallback */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 60px 0;
    border-radius: 16px;
    overflow: hidden;
}
.ak-lifestyle-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
}
.ak-lifestyle-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}
.ak-lifestyle-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
    color: #fff;
}

/* Quantity + Button row alignment */
.ak-qty-row {
    display: flex;
    align-items: stretch;
    gap: 16px;
}

/* Force v-quantity-changer (Vue component root = div) to stretch */
v-quantity-changer,
[name="quantity"] ~ span,
.ak-qty-row > div,
.ak-qty-row > * {
    align-self: stretch;
}

/* Make the inner quantity changer template fill parent height */
#v-quantity-changer-template > div,
[id^="v-quantity-changer"] > div {
    height: 100%;
}

/* Product Card Price Styling */
.minimal-card-price {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    background: rgba(31, 111, 235, 0.07);
    border-radius: 8px;
    padding: 4px 10px;
    margin-top: 6px;
    width: fit-content;
}

.minimal-card-price span,
.minimal-card-price p {
    font-weight: 700 !important;
    font-size: 15px !important;
    color: #0E2A47 !important;
}

/* Sale / strikethrough price on card */
.minimal-card-price .line-through,
.minimal-card-price del,
.minimal-card-price s {
    font-weight: 400 !important;
    color: #9ca3af !important;
    font-size: 13px !important;
}

/* LEGAL PAGE SYSTEM */

.legal-page {
  background: var(--ak-bg);
  padding: 80px 0;
}

.legal-container {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.legal-header {
  margin-bottom: 40px;
}

.legal-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--ak-navy);
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.legal-updated {
  font-size: 14px;
  color: var(--ak-text-muted);
}

/* Card */
.legal-card {
  background: var(--ak-white);
  border: 1px solid var(--ak-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

/* Sections */
.legal-section {
  margin-bottom: 35px;
}

.legal-header h1{font-size:36px;}

.legal-section h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ak-navy);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Text */
.legal-section p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--ak-text-muted);
  margin-bottom: 15px;
}

/* Lists */
.legal-section ul {
  padding-left: 18px;
  margin-bottom: 15px;
}

.legal-section ul li {
  margin-bottom: 8px;
  color: var(--ak-text-main);
}

.legal-section ul li::marker {
  color: var(--ak-blue);
}

/* Highlight */
.legal-highlight {
  background: var(--ak-blue-soft);
  padding: 10px 15px;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .legal-title {
    font-size: 34px;
  }

  .legal-card {
    padding: 25px;
  }
}