/* ============================================
   SABALAND.IN - Complete CSS Clone
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --maroon: #7b1f1f;
    --maroon-dark: #5c1616;
    --maroon-light: #a32929;
    --gold: #c8960c;
    --gold-light: #e8b020;
    --gold-text: #c8960c;
    --black: #1a1a1a;
    --white: #ffffff;
    --gray: #6b7280;
    --light-gray: #f9fafb;
    --border: #e5e7eb;
    --red: #e53e3e;
    --font: 'Inter', sans-serif;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--black); background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
    background: #1a1a1a;
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.announcement-slides { flex: 1; text-align: center; }
.announcement-slide { display: none; }
.announcement-slide.active { display: block; }
.announcement-prev, .announcement-next {
    color: #fff;
    background: transparent;
    border: none;
    font-size: 14px;
    cursor: pointer;
    padding: 4px 8px;
    opacity: 0.7;
    transition: opacity 0.2s;
}
.announcement-prev:hover, .announcement-next:hover { opacity: 1; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 1px 0 var(--border);
}
.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.nav-logo a { display: flex; align-items: center; }
.logo-wrapper { display: flex; align-items: center; gap: 10px; }
.header-logo { height: 62px; width: auto; object-fit: contain; }

/* Nav Links */
.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    padding: 4px 0;
    position: relative;
    transition: color 0.2s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--black);
    transition: width 0.2s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { font-weight: 600; }

/* Nav Icons */
.nav-icons { display: flex; align-items: center; gap: 16px; }
.icon-btn {
    position: relative;
    color: var(--black);
    font-size: 18px;
    padding: 6px;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
}
.icon-btn:hover { opacity: 0.7; }
.cart-badge {
    position: absolute;
    top: -4px; right: -6px;
    background: var(--black);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 16px; height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.hamburger span {
    width: 22px; height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all 0.3s;
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 12px 20px;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0; }
.mobile-menu ul li a {
    display: block;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
    color: var(--black);
}

/* Search Bar */
.search-bar-wrapper {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 14px 40px;
}
.search-bar-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}
.search-input {
    flex: 1;
    padding: 10px 16px;
    border: 1.5px solid var(--border);
    border-radius: 30px;
    font-size: 14px;
    font-family: var(--font);
    outline: none;
    transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--black); }
.search-submit, .search-close {
    background: var(--black);
    color: #fff;
    border: none;
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}
.search-close { background: var(--gray); }

/* ============================================
   HERO SLIDER (exact from sabaland.in)
   ============================================ */
.hero-slider { margin: 20px 0; }
.slider-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    position: relative;
}
.slider-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.slide {
    min-width: 100%;
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    min-height: 480px;
    display: flex;
    align-items: center;
    padding: 60px 64px;
    border-radius: 20px;
    overflow: hidden;
}
.slide-overlay-gradient {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    border-radius: 20px;
    pointer-events: none;
}
.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 600px;
    text-align: left;
    box-sizing: border-box;
}
.slide-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
    border: none;
}
.slide-title {
    font-size: 25px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 15px;
}
.slide-subtitle {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 10px;
}
.slide-description {
    font-size: 12px;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 30px;
}
.slide-desc {
    font-size: 12px;
    opacity: 0.9;
    line-height: 1.5;
    margin-bottom: 30px;
}
.slide-btn {
    display: inline-block;
    background: white;
    color: #333;
    padding: 10px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    z-index: 3;
    letter-spacing: 1px;
}
.slide-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    width: 30px; height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 10px;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
    display: flex; align-items: center; justify-content: center;
}
.slider-arrow:hover {
    background: rgba(255,255,255,0.5);
    transform: translateY(-50%) scale(1.1);
}
.arrow-left { left: 10px; }
.arrow-right { right: 10px; }

.slider-nav {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.nav-dot {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.nav-dot.active {
    background: white;
    width: 35px;
    border-radius: 6px;
}

/* ============================================
   SLOGAN BANNER
   ============================================ */
.slogan-banner {
    text-align: center;
    padding: 40px 20px;
    background: var(--light-gray);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.slogan-banner p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.slogan-banner h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--maroon);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section { padding: 60px 0; }
.section-title {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 8px;
    color: var(--black);
}
.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 40px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.product-card {
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.product-image-link { display: block; }
.product-image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--light-gray);
}
.product-image {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.product-card:hover .product-image { transform: scale(1.04); }
.sale-badge, .sold-out-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
}
.sold-out-badge { background: #6b7280; }

.product-info { padding: 16px; }
.product-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.4;
}
.product-name a:hover { text-decoration: underline; }
.product-price { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.regular-price {
    font-size: 13px;
    color: var(--gray);
    text-decoration: line-through;
}
.sale-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
}
.btn-add-cart {
    width: 100%;
    padding: 10px;
    background: var(--black);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--black);
    transition: all 0.2s;
}
.btn-add-cart:hover {
    background: transparent;
    color: var(--black);
}
.btn-sold-out {
    width: 100%;
    padding: 10px;
    background: var(--border);
    color: var(--gray);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: not-allowed;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}
.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}
.testimonials-wrapper {
    flex: 1;
    overflow: hidden;
}
.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-card {
    flex: 0 0 calc(25% - 18px);
    min-width: 240px;
    background: #fff;
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}
.testimonial-img {
    width: 80px; height: 80px;
    border-radius: 12px;
    object-fit: cover;
    margin: 0 auto 12px;
}
.stars {
    color: #d4a017;
    font-size: 18px;
    margin-bottom: 8px;
}
.testimonial-card strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}
.testimonial-card p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}
.testimonial-btn {
    background: #d4a017;
    color: #fff;
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: background 0.2s;
}
.testimonial-btn:hover { background: var(--gold); }

/* ============================================
   BESTSELLER SECTION (exact like sabaland.in)
   ============================================ */
.bestseller-section {
    background: #fff;
    padding: 0 0 40px 0;
}
.bestseller-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.bestseller-heading {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    letter-spacing: 0.5px;
    padding: 28px 0 16px 0;
    margin: 0;
    text-transform: uppercase;
    border-top: none;
}
.bestseller-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* Individual card */
.bs-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.bs-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}

/* Image */
.bs-img-link { display: block; }
.bs-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f6f6f6;
    border-radius: 4px;
}
.bs-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.bs-card:hover .bs-img {
    transform: scale(1.04);
}

/* Sale / Sold Out badge - bottom left like screenshot */
.bs-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 3px;
    color: #fff;
    letter-spacing: 0.3px;
}
.bs-badge-sale { background: #e53935; }
.bs-badge-soldout { background: #555; }

/* Info block */
.bs-info {
    padding: 10px 4px 8px 4px;
}
.bs-name {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #111;
    line-height: 1.4;
    margin-bottom: 6px;
    text-decoration: none;
}
.bs-name:hover { text-decoration: underline; }

/* Prices - exact like screenshot */
.bs-prices {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.bs-regular {
    font-size: 12px;
    color: #888;
    text-decoration: line-through;
}
.bs-sale {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

/* Desktop - 4 columns */
@media (min-width: 768px) {
    .bestseller-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    .bestseller-heading {
        font-size: 28px;
        padding: 36px 0 20px 0;
    }
    .bs-name { font-size: 14px; }
    .bs-regular { font-size: 13px; }
    .bs-sale { font-size: 15px; }
}

/* ============================================
   BRAND BANNER (sabaland.in downloaded)
   ============================================ */
.brand-banner-section {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    line-height: 0;
}
.brand-banner-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}
.brand-banner-container a {
    display: block;
    width: 100%;
}
.brand-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
    image-rendering: -webkit-optimize-contrast;
}
.brand-banner-img:hover {
    transform: scale(1.01);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--maroon);
    color: rgba(255,255,255,0.85);
    padding-top: 60px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}
.footer-logo-box {
    width: 62px;
    height: 62px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.footer-seal-img {
    width: 140px;
    height: 62px;
    object-fit: cover;
    object-position: 8px center;
    flex-shrink: 0;
}
.footer-brand-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.footer-brand-name {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: 0.5px;
}
.footer-brand-sub {
    font-size: 10px;
    color: var(--gold-light, #ffb400);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 700;
}
.footer-desc {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,0.65);
    margin-bottom: 20px;
}
.footer-contact { 
    margin-bottom: 20px; 
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    color: #fff;
    font-size: 12px;
    flex-shrink: 0;
}
.email-icon { background: #3b82f6; }
.whatsapp-icon { background: #22c55e; }
.contact-link {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 13.5px;
    transition: color 0.2s;
}
.contact-link:hover {
    color: #fff;
    text-decoration: underline;
}
.footer-social { 
    display: flex; 
    gap: 12px; 
    margin-top: 24px;
}
.social-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #c5a880; /* Beige/gold color */
    color: #3d1b13; /* Dark brown icon */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.25s ease;
}
.social-circle:hover {
    background: #ffffff;
    color: #3d1b13;
    transform: scale(1.08);
}

.footer-col h4 {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gold-light);
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }

.newsletter-form { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.newsletter-input {
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 13px;
    font-family: var(--font);
    outline: none;
    transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--gold-light); }
.newsletter-btn {
    padding: 10px 20px;
    background: var(--gold-light);
    color: var(--black);
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
    transition: background 0.2s;
}
.newsletter-btn:hover { background: var(--gold); }
.payment-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.payment-icons span {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    font-size: 10px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255,255,255,0.15);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   PRODUCT PAGE
   ============================================ */
.product-page { padding: 40px 0 80px; }
.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Product Gallery */
.product-gallery {}
.main-product-img {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--light-gray);
    aspect-ratio: 1;
}
.main-product-img img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.thumb-gallery {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}
.thumb {
    width: 72px; height: 72px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s;
}
.thumb.active { border-color: var(--black); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Product Info */
.product-details-info {}
.product-details-name {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--black);
}
.product-details-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.details-regular-price {
    font-size: 16px;
    color: var(--gray);
    text-decoration: line-through;
}
.details-sale-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
}
.badge-sale {
    background: var(--red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}
.shipping-note {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 16px;
}
.shipping-note a { color: var(--black); text-decoration: underline; }

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.rating-stars { color: #d4a017; font-size: 16px; }
.rating-count { font-size: 14px; color: var(--gray); }

.live-viewers {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--black);
    margin-bottom: 24px;
}
.live-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.product-form { margin-bottom: 20px; }
.btn-add-to-cart-full {
    display: block;
    width: 100%;
    padding: 16px;
    border: 2px solid var(--black);
    background: transparent;
    color: var(--black);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: var(--radius);
    margin-bottom: 12px;
    transition: all 0.2s;
    font-family: var(--font);
    cursor: pointer;
}
.btn-add-to-cart-full:hover { background: var(--black); color: #fff; }
.btn-buy-now {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--black);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: var(--radius);
    border: 2px solid var(--black);
    transition: all 0.2s;
    font-family: var(--font);
    cursor: pointer;
    text-align: center;
}
.btn-buy-now:hover { background: #333; }

.product-guarantee {
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 20px;
}
.guarantee-title {
    font-size: 13px;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.guarantee-subtitle {
    text-align: center;
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.payment-methods {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}
.pm-badge {
    background: var(--light-gray);
    border: 1px solid var(--border);
    color: var(--gray);
    font-size: 10px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 6px;
    letter-spacing: 0.3px;
}

.product-desc-section { 
    margin-top: 32px; 
    border-top: 1px solid var(--border); 
    padding-top: 24px; 
}
.desc-intro-text {
    font-size: 15px !important;
    color: #374151 !important;
    line-height: 1.7;
    margin-bottom: 24px;
}
.desc-sub-heading {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin: 24px 0 12px 0;
    border: none;
    text-transform: none;
    letter-spacing: 0px;
}
.consistency-note {
    color: #16a34a;
    font-weight: 600;
    font-size: 14px;
    margin-top: 8px;
}
.benefits-list, .problems-list, .simple-list {
    list-style: none;
    padding: 0 !important;
    margin-bottom: 20px;
}
.benefits-list li, .problems-list li, .simple-list li {
    font-size: 14px;
    color: #4b5563 !important;
    line-height: 1.6;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.problems-list li span {
    color: #ffb400;
    font-weight: bold;
}
.features-badge-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: #f9fafb;
    border: 1px dashed #e5e7eb;
    padding: 12px 16px;
    border-radius: 8px;
    margin: 16px 0;
    font-weight: 600;
    font-size: 13px;
    color: #1f2937;
}
.notice-time {
    font-style: italic;
    color: #6b7280;
    font-size: 13px;
    margin-top: 12px;
}
.final-tag {
    font-size: 15px;
    margin-top: 20px;
    color: #111827;
}

/* Trust Badges */
.product-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 40px 0;
    padding: 24px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}
.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.trust-badge-item i {
    font-size: 22px;
    color: #d4a017;
}
.trust-badge-item span {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
}

/* Related Products Section */
.related-products-section {
    margin-top: 60px;
}
.related-heading {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.related-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.2s;
}
.related-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f6f6f6;
    overflow: hidden;
    border-radius: 4px;
}
.related-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.related-sale-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: #e53935;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 3px;
}
.related-info {
    padding: 12px 4px;
}
.related-title {
    font-size: 13px;
    color: #111;
    font-weight: 400;
    text-decoration: none;
    line-height: 1.4;
    display: block;
    margin-bottom: 6px;
}
.related-title:hover {
    text-decoration: underline;
}
.related-prices {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.regular-strike {
    font-size: 12px;
    color: #888;
    text-decoration: line-through;
}
.sale-actual {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

/* Local Downloaded Video Reviews Box */
.product-local-videos-box {
    margin-top: 24px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
}
.local-videos-title {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}
.local-videos-flex {
    display: flex;
    gap: 12px;
}
.local-video-card-small {
    flex: 1;
    aspect-ratio: 9 / 16;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.local-video-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Reviews Section */
.product-reviews-section {
    margin-top: 60px;
    border-top: 1px solid #e5e7eb;
    padding-top: 40px;
}
.reviews-heading {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.reviews-summary-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}
.summary-stars {
    color: #ffb400;
    font-size: 20px;
}
.summary-text {
    font-size: 14px;
    color: #4b5563;
    font-weight: 600;
}
.product-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.review-item {
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 20px;
}
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.review-author {
    font-weight: 700;
    font-size: 14px;
    color: #111827;
}
.review-stars {
    color: #ffb400;
    font-size: 14px;
}
.review-comment {
    font-size: 13.5px;
    color: #4b5563;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

@media (min-width: 768px) {
    .related-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    .related-title { font-size: 14px; }
    .regular-strike { font-size: 13px; }
    .sale-actual { font-size: 15px; }
}

/* ============================================
   CART PAGE
   ============================================ */
.cart-page { padding: 40px 0 80px; }
.page-title { font-size: 28px; font-weight: 800; margin-bottom: 32px; }

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}
.cart-empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}
.cart-empty i { font-size: 48px; margin-bottom: 16px; color: var(--border); }
.cart-empty h3 { font-size: 20px; color: var(--black); margin-bottom: 8px; }
.cart-empty a {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: var(--black);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
}
.cart-items { display: flex; flex-direction: column; gap: 16px; }
.cart-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}
.cart-item-img {
    width: 100px; height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--light-gray);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.cart-item-price { font-size: 14px; color: var(--gray); margin-bottom: 12px; }
.qty-controls {
    display: flex;
    align-items: center;
    gap: 0;
    width: fit-content;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}
.qty-btn {
    width: 36px; height: 36px;
    background: var(--light-gray);
    border: none;
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}
.qty-btn:hover { background: var(--border); }
.qty-input {
    width: 48px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    font-size: 14px;
    font-family: var(--font);
    outline: none;
    padding: 8px 0;
}
.cart-item-remove {
    background: none;
    border: none;
    color: var(--gray);
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 8px;
    display: block;
    padding: 0;
}
.cart-item-total {
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
    align-self: center;
}

/* Order Summary */
.order-summary {
    background: var(--light-gray);
    border-radius: var(--radius);
    padding: 24px;
    position: sticky;
    top: 100px;
}
.order-summary h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--gray);
}
.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 4px;
}
.btn-checkout {
    display: block;
    width: 100%;
    padding: 16px;
    background: var(--black);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 20px;
    transition: background 0.2s;
}
.btn-checkout:hover { background: #333; }

/* Coupon */
.coupon-section { margin-top: 20px; }
.coupon-section p { font-size: 13px; color: var(--gray); margin-bottom: 8px; }
.coupon-form { display: flex; gap: 8px; }
.coupon-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 13px;
    font-family: var(--font);
    outline: none;
}
.coupon-btn {
    padding: 10px 16px;
    background: var(--black);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    font-family: var(--font);
    cursor: pointer;
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-page { padding: 40px 0 80px; }
.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.checkout-form-section { }
.checkout-form-section h2 { font-size: 18px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--black); }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    font-family: var(--font);
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--black); }

/* Payment Methods */
.payment-method-options { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: border-color 0.2s;
}
.payment-option.selected { border-color: var(--black); }
.payment-option input[type="radio"] { accent-color: var(--black); width: 16px; height: 16px; }
.payment-option label { font-size: 14px; font-weight: 500; cursor: pointer; }
.payment-option img { height: 24px; }

/* Order Summary (Checkout) */
.checkout-summary {
    background: var(--light-gray);
    border-radius: var(--radius);
    padding: 24px;
    position: sticky;
    top: 100px;
}
.checkout-summary h3 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.checkout-items { margin-bottom: 20px; }
.checkout-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 16px;
}
.checkout-item-img {
    width: 64px; height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--border);
    position: relative;
    flex-shrink: 0;
}
.checkout-item-img img { width: 100%; height: 100%; object-fit: cover; }
.checkout-item-badge {
    position: absolute;
    top: -6px; right: -6px;
    width: 20px; height: 20px;
    background: var(--gray);
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
}
.checkout-item-name { font-size: 13px; font-weight: 600; flex: 1; }
.checkout-item-price { font-size: 13px; font-weight: 600; flex-shrink: 0; }

/* ============================================
   CATALOG PAGE
   ============================================ */
.catalog-page { padding: 40px 0 80px; }
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page { padding: 60px 0 80px; }
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info h2 { font-size: 28px; font-weight: 800; margin-bottom: 16px; }
.contact-info p { color: var(--gray); margin-bottom: 32px; line-height: 1.7; }
.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.contact-icon {
    width: 44px; height: 44px;
    background: var(--maroon);
    color: #fff;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-detail h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-detail p { font-size: 14px; color: var(--gray); margin: 0; }

.contact-form-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}
.contact-form-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 24px; }
.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--maroon);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    font-family: var(--font);
    transition: background 0.2s;
    margin-top: 8px;
}
.btn-submit:hover { background: var(--maroon-light); }

/* ============================================
   ACCOUNT PAGE
   ============================================ */
.account-page { padding: 60px 0 80px; }
.account-card {
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}
.account-card h2 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.account-card p { color: var(--gray); font-size: 14px; margin-bottom: 28px; }
.btn-login {
    width: 100%;
    padding: 14px;
    background: var(--black);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-family: var(--font);
}
.or-divider {
    text-align: center;
    color: var(--gray);
    font-size: 13px;
    margin: 20px 0;
    position: relative;
}
.or-divider::before, .or-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 20px);
    height: 1px;
    background: var(--border);
}
.or-divider::before { left: 0; }
.or-divider::after { right: 0; }
.link-create { text-align: center; font-size: 14px; margin-top: 16px; }
.link-create a { color: var(--black); font-weight: 600; text-decoration: underline; }

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-page { padding: 60px 0 80px; }
.policy-content {
    max-width: 800px;
    margin: 0 auto;
}
.policy-content h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.policy-content .updated { color: var(--gray); font-size: 13px; margin-bottom: 40px; }
.policy-content h2 { font-size: 20px; font-weight: 700; margin: 32px 0 12px; }
.policy-content p, .policy-content li { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 12px; }
.policy-content ul { padding-left: 20px; }
.policy-content ul li { list-style: disc; }

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1a1a1a;
    color: #fff;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideUp 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.toast.success { background: #16a34a; }
.toast.error { background: #dc2626; }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    padding: 16px 0;
    font-size: 13px;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 6px;
}
.breadcrumb a { color: var(--gray); }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb span { opacity: 0.5; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .footer-container { grid-template-columns: 1fr 1fr; }
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
    .checkout-layout { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
    .product-layout { gap: 40px; }
}

/* ============================================
   FLIPKART STYLE PROFESSIONAL CHECKOUT
   ============================================ */
.fk-checkout-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    margin: 30px auto 60px;
    max-width: 1200px;
}

.fk-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-bottom: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.fk-card-header {
    background: var(--maroon);
    color: #ffffff;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.fk-card-header.inactive {
    background: #ffffff;
    color: #64748b;
    border-bottom: 1px solid #f1f5f9;
}

.fk-step-num {
    background: #ffffff;
    color: var(--maroon);
    width: 26px;
    height: 26px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
}

.fk-card-header.inactive .fk-step-num {
    background: #f1f5f9;
    color: #64748b;
}

.fk-card-header h3 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
    flex: 1;
}

.fk-btn-change {
    background: #ffffff;
    color: var(--maroon);
    border: 1px solid #cbd5e1;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
}

.fk-card-body {
    padding: 24px;
}

/* Order Items inside summary card */
.fk-item-row {
    display: flex;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
    align-items: center;
}
.fk-item-row:last-child {
    border-bottom: none;
}

.fk-item-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.fk-item-details {
    flex: 1;
}

.fk-item-title {
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 4px;
}

.fk-item-qty {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 4px;
}

.fk-item-price {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.fk-regular-price {
    font-size: 13px;
    color: #94a3b8;
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 400;
}

.fk-btn-primary {
    background: #fb641b; /* Flipkart Action Orange */
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(251, 100, 27, 0.25);
    display: inline-block;
    margin-top: 16px;
    transition: background 0.2s, transform 0.1s;
}
.fk-btn-primary:hover {
    background: #e5560f;
    transform: translateY(-1px);
}

/* Sidebar Price Details */
.fk-price-title {
    font-size: 14px;
    font-weight: 700;
    color: #64748b;
    padding: 16px 24px;
    border-bottom: 1px solid #f1f5f9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fk-price-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 24px;
    font-size: 14px;
    color: #1e293b;
}

.fk-price-divider {
    border-top: 1px dashed #e2e8f0;
    margin: 8px 24px;
}

.fk-total-row {
    font-weight: 800;
    font-size: 17px;
    padding-top: 12px;
    padding-bottom: 16px;
    color: #0f172a;
}

.fk-free {
    color: #16a34a;
    font-weight: 700;
}

.fk-savings-tag {
    background: #f0fdf4;
    color: #15803d;
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 600;
    border-top: 1px solid #dcfce7;
}

.fk-trust-card {
    padding: 18px 20px;
    background: #f8fafc;
}
.fk-trust-item {
    font-size: 13px;
    color: #334155;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}
.fk-trust-item:last-child {
    margin-bottom: 0;
}
.fk-trust-item i {
    color: var(--maroon);
    font-size: 16px;
}

@media (max-width: 991px) {
    .fk-checkout-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-bar { padding: 12px 20px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .catalog-grid { grid-template-columns: repeat(2, 1fr); }
    .product-layout { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; padding: 0 20px; gap: 32px; padding-bottom: 32px; }
}

/* ============================================
   SHOPIFY STYLE CHECKOUT (1:1 CLONE OF USER SCREENSHOTS)
   ============================================ */
.sp-checkout-wrapper {
    background: #ffffff;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333333;
    padding-bottom: 60px;
}

.sp-header {
    text-align: center;
    padding: 18px 16px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #111111;
    border-bottom: 1px solid #e6e6e6;
    text-transform: uppercase;
}

/* Accordion Order Summary Bar at Top */
.sp-summary-toggle {
    background: #fafafa;
    border-bottom: 1px solid #e6e6e6;
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.sp-toggle-title {
    color: #005bd3;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sp-toggle-price {
    font-weight: 700;
    font-size: 16px;
    color: #111111;
}

.sp-summary-drawer {
    background: #fafafa;
    border-bottom: 1px solid #e6e6e6;
    padding: 20px;
    display: none;
}

.sp-drawer-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.sp-drawer-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    object-fit: cover;
}

.sp-drawer-name {
    font-size: 14px;
    font-weight: 600;
    flex: 1;
}

.sp-drawer-qty {
    font-size: 12px;
    color: #707070;
}

.sp-drawer-price {
    font-weight: 600;
    font-size: 14px;
}

.sp-drawer-divider {
    border-top: 1px solid #e6e6e6;
    margin: 14px 0;
}

.sp-drawer-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
}

.sp-drawer-row.total {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-top: 12px;
}

/* Main Form Area */
.sp-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 24px 20px;
}

.sp-section {
    margin-bottom: 28px;
}

.sp-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.sp-section-title {
    font-size: 17px;
    font-weight: 700;
    color: #111111;
    margin: 0;
}

.sp-signin-link {
    font-size: 13px;
    color: #005bd3;
    text-decoration: underline;
}

/* Inputs & Selects */
.sp-field {
    margin-bottom: 12px;
}

.sp-input, .sp-select {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: #ffffff;
    color: #333333;
    font-family: inherit;
}

.sp-input:focus, .sp-select:focus {
    border-color: #005bd3;
    box-shadow: 0 0 0 1px #005bd3;
}

.sp-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 480px) {
    .sp-grid-2 {
        grid-template-columns: 1fr;
    }
}

.sp-checkbox-field {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    font-size: 13px;
    color: #555555;
    cursor: pointer;
}

.sp-checkbox-field input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #005bd3;
}

/* Shipping Method Box */
.sp-box-note {
    background: #f4f4f4;
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    padding: 14px 16px;
    font-size: 13px;
    color: #555555;
}

/* Payment Box */
.sp-payment-sub {
    font-size: 13px;
    color: #707070;
    margin-bottom: 12px;
}

.sp-option-card {
    border: 1px solid #005bd3;
    background: #f4f8fd;
    border-radius: 6px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #111111;
}

.sp-option-card input[type="radio"] {
    accent-color: #005bd3;
    width: 18px;
    height: 18px;
}

/* Billing Address Box */
.sp-billing-options {
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    overflow: hidden;
}

.sp-billing-row {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #333333;
    border-bottom: 1px solid #e6e6e6;
    cursor: pointer;
}

.sp-billing-row:last-child {
    border-bottom: none;
}

.sp-billing-row.selected {
    background: #f4f8fd;
    font-weight: 500;
}

/* Bottom Action Bar */
.sp-bottom-bar {
    margin-top: 32px;
}

.sp-total-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.sp-complete-btn {
    width: 100%;
    background: #005bd3;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.sp-complete-btn:hover {
    background: #004bb5;
}

/* Footer Policy Links */
.sp-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #e6e6e6;
}

.sp-footer-links a {
    font-size: 12px;
    color: #005bd3;
    text-decoration: underline;
}

    .contact-layout { grid-template-columns: 1fr; }
    .testimonial-card { flex: 0 0 calc(100% - 0px); }
    .form-grid { grid-template-columns: 1fr; }
    .slogan-banner h2 { font-size: 18px; }

    /* Slider - exact from sabaland.in */
    .slider-container {
        margin: 10px auto;
        padding: 0 10px;
    }
    .slider-wrapper {
        border-radius: 12px;
        max-height: 40vh;
    }
    .slide {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        min-height: 40vh;
        max-height: 40vh;
        justify-content: center;
    }
    .slide-content {
        max-width: 100%;
        text-align: left;
    }
    .slide-badge {
        padding: 2px 10px;
        font-size: 8px;
        margin-top: 0px;
        margin-bottom: 10px;
    }
    .slide-title {
        font-size: 14px;
        margin-bottom: 2px;
        line-height: 1.1;
    }
    .slide-subtitle {
        font-size: 12px;
        font-weight: bold;
        margin-bottom: 4px;
    }
    .slide-description, .slide-desc {
        font-size: 9px;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    .slide-btn {
        padding: 6px 16px;
        font-size: 8px;
        margin-top: 18vh;
    }
    .arrow-left, .arrow-right { display: none !important; }
    .slider-nav { bottom: 10px; gap: 6px; }
    .nav-dot { width: 6px; height: 6px; }
    .nav-dot.active { width: 20px; }
}

@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .catalog-grid { grid-template-columns: 1fr; }
    .container { padding: 0 16px; }
}

/* ============================================
   AI REVIEWS CAROUSEL SECTION
   ============================================ */
.ai-reviews-section {
    background: #fafafa;
    padding: 60px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}
.ai-reviews-carousel-container-az0dhlzzxzhdwl1ewdaigenblockbb515d8cavdaw {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}
.ai-reviews-carousel-header-az0dhlzzxzhdwl1ewdaigenblockbb515d8cavdaw {
    text-align: center;
    margin-bottom: 40px;
}
.ai-reviews-carousel-title-az0dhlzzxzhdwl1ewdaigenblockbb515d8cavdaw {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.ai-reviews-carousel-title-az0dhlzzxzhdwl1ewdaigenblockbb515d8cavdaw::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #d4a017; /* Gold accent */
}
.ai-reviews-carousel-wrapper-az0dhlzzxzhdwl1ewdaigenblockbb515d8cavdaw {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}
.ai-reviews-carousel-track-container {
    overflow: hidden;
    width: 100%;
    margin: 0 15px;
    padding: 10px 0;
}
.ai-reviews-carousel-track-az0dhlzzxzhdwl1ewdaigenblockbb515d8cavdaw {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}
.ai-reviews-carousel-card-az0dhlzzxzhdwl1ewdaigenblockbb515d8cavdaw {
    flex: 0 0 calc(33.333% - 16px);
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    text-align: center;
    border: 1px solid #ebebeb;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ai-reviews-carousel-card-az0dhlzzxzhdwl1ewdaigenblockbb515d8cavdaw:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.ai-reviews-carousel-image-wrapper-az0dhlzzxzhdwl1ewdaigenblockbb515d8cavdaw {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid #ffb400;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}
.ai-reviews-carousel-image-wrapper-az0dhlzzxzhdwl1ewdaigenblockbb515d8cavdaw img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ai-reviews-carousel-stars-az0dhlzzxzhdwl1ewdaigenblockbb515d8cavdaw {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 14px;
}
.ai-reviews-carousel-reviewer-az0dhlzzxzhdwl1ewdaigenblockbb515d8cavdaw {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
}
.ai-reviews-carousel-text-az0dhlzzxzhdwl1ewdaigenblockbb515d8cavdaw {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}
.ai-reviews-carousel-nav-az0dhlzzxzhdwl1ewdaigenblockbb515d8cavdaw {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #1a1a1a;
    transition: all 0.25s ease;
    z-index: 5;
    flex-shrink: 0;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}
.ai-reviews-carousel-nav-az0dhlzzxzhdwl1ewdaigenblockbb515d8cavdaw:hover {
    background: #1a1a1a;
    color: #ffffff;
    border-color: #1a1a1a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.ai-reviews-carousel-nav-az0dhlzzxzhdwl1ewdaigenblockbb515d8cavdaw svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@media (max-width: 991px) {
    .ai-reviews-carousel-card-az0dhlzzxzhdwl1ewdaigenblockbb515d8cavdaw {
        flex: 0 0 calc(50% - 12px);
    }
}
@media (max-width: 650px) {
    .ai-reviews-carousel-card-az0dhlzzxzhdwl1ewdaigenblockbb515d8cavdaw {
        flex: 0 0 100%;
    }
    .ai-reviews-carousel-nav-az0dhlzzxzhdwl1ewdaigenblockbb515d8cavdaw {
        width: 38px;
        height: 38px;
    }
}

/* ============================================
   MOBILE RESPONSIVENESS (HERO SLIDER & CART)
   ============================================ */
@media (max-width: 768px) {
    /* Hero Slider Mobile */
    .slider-container {
        padding: 0 10px;
        margin: 10px auto;
    }
    .slide {
        min-height: 280px !important;
        padding: 20px 24px !important;
        border-radius: 12px;
    }
    .slide-overlay-gradient {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0) 100%) !important;
        border-radius: 12px;
    }
    .slide-content {
        max-width: 70% !important;
        text-align: left !important;
    }
    .slide-badge {
        font-size: 8px !important;
        padding: 3px 10px !important;
        margin-bottom: 8px !important;
    }
    .slide-title {
        font-size: 14px !important;
        margin-bottom: 6px !important;
        line-height: 1.25 !important;
    }
    .slide-subtitle {
        font-size: 11px !important;
        margin-bottom: 4px !important;
    }
    .slide-description {
        font-size: 9.5px !important;
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
    }
    .slide-btn {
        padding: 6px 16px !important;
        font-size: 11px !important;
    }

    /* Cart Page Mobile Responsiveness */
    .cart-page {
        padding: 20px 0 60px;
    }
    .page-title {
        font-size: 22px;
        margin-bottom: 20px;
        text-align: center;
    }
    .cart-layout {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }
    .cart-item {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        padding: 14px;
        position: relative;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 12px;
    }
    .cart-item-img {
        width: 80px;
        height: 80px;
        border-radius: 8px;
        background: #f8fafc;
        padding: 4px;
    }
    .cart-item-img img {
        object-fit: contain;
    }
    .cart-item-details {
        flex: 1;
        min-width: 0;
    }
    .cart-item-name a {
        font-size: 14px;
        font-weight: 600;
        line-height: 1.35;
        color: #1e293b;
    }
    .cart-item-price {
        font-size: 13px;
        font-weight: 700;
        color: #2874f0;
        margin: 4px 0 10px 0;
    }
    .cart-item-total {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px dashed #e2e8f0;
        font-size: 14px;
        font-weight: 800;
        color: #0f172a;
    }
    .cart-item-total::before {
        content: 'Item Total:';
        font-size: 13px;
        font-weight: 600;
        color: #64748b;
    }
    .order-summary {
        position: static;
        padding: 20px;
        border-radius: 12px;
        background: #f8fafc;
        border: 1px solid #e2e8f0;
    }
    .btn-checkout {
        font-size: 15px;
        font-weight: 700;
        padding: 14px;
        text-align: center;
        border-radius: 8px;
    }
}
