@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-blue: #0052A5; /* Logo Blue */
    --primary-green: #009B4E; /* Logo Green */
    --accent-gold: #D9A400; /* Logo Gold */
    --accent-red: #D6001C; /* Logo Red */
    --dark-navy: #0A0F24;
    --light-bg: #FFFFFF;
    --white: #FFFFFF;
    --text-dark: #0F172A;
    --text-muted: #71717A;
    --border-light: #F1F5F9;
    --card-shadow: 0 4px 20px rgba(0, 82, 165, 0.03);
    --card-shadow-hover: 0 20px 40px rgba(0, 82, 165, 0.08);
    --font-family: 'Plus Jakarta Sans', sans-serif;
    
    /* Logo Gradients */
    --logo-gradient: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    --logo-gradient-hover: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    --aurora-gradient: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
}

/* Global resets & scrollbar */
html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #F8FAFC;
}

::-webkit-scrollbar-thumb {
    background: #E2E8F0;
    border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
    background: #CBD5E1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

.section-eyebrow {
    color: #94A3B8;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.72rem;
    margin-bottom: 0.75rem;
}

/* Buttons - Premium Minimalist */
.btn {
    font-family: var(--font-family);
    font-weight: 600;
    border-radius: 8px;
    padding: 0.65rem 1.6rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
}

.btn-lg {
    border-radius: 10px;
    padding: 0.85rem 2.2rem;
}

.btn-sm {
    border-radius: 6px;
    padding: 0.45rem 1.2rem;
    font-size: 0.8rem;
}

/* Primary Button (Solid Logo Blue/Green Gradient) */
.accent-btn, .btn-success {
    background: var(--logo-gradient) !important;
    color: var(--white) !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(0, 82, 165, 0.15) !important;
}

.accent-btn:hover, .btn-success:hover {
    background: var(--logo-gradient-hover) !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 82, 165, 0.25) !important;
}

/* Secondary Button (Outline Logo Blue, Hovers to Gradient) */
.outline-accent-btn, .btn-outline-success, .btn-outline-dark {
    background: transparent !important;
    color: var(--primary-blue) !important;
    border: 1.5px solid var(--primary-blue) !important;
}

.outline-accent-btn:hover, .btn-outline-success:hover, .btn-outline-dark:hover {
    background: var(--logo-gradient) !important;
    color: var(--white) !important;
    border-color: transparent !important;
    transform: translateY(-1px);
}

.btn-outline-danger {
    border: 1.5px solid rgba(239, 68, 68, 0.3);
    color: var(--accent-red);
    background: transparent !important;
}

.btn-outline-danger:hover {
    background: var(--accent-red) !important;
    color: var(--white) !important;
    border-color: var(--accent-red) !important;
    transform: translateY(-1px);
}

/* Header & Navigation */
.site-header {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid var(--border-light) !important;
    box-shadow: none !important;
}

.brand-mark {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
}


.header-link {
    color: #52525B !important;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.92rem;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.header-link:hover, .header-link.active {
    color: var(--primary-blue) !important;
}

/* Minimal Search Bar */
.header-search {
    background: #F4F4F5 !important;
    border-radius: 8px !important;
    border: 1px solid #E4E4E7 !important;
    padding: 0.1rem 0.4rem;
}

.header-search:focus-within {
    background: var(--white) !important;
    border-color: var(--primary-blue) !important;
    box-shadow: 0 0 0 3px rgba(0, 82, 165, 0.1) !important;
}

.header-search .form-control {
    font-size: 0.85rem;
}

/* Minimal Notification Badge (Logo Gold) */
.badge.text-bg-warning {
    background: var(--accent-gold) !important;
    color: var(--white) !important;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25em 0.5em;
    border-radius: 99px;
    box-shadow: none;
}

/* Dropdowns */
.dropdown-menu {
    border-radius: 12px;
    border: 1px solid #E4E4E7;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 0.4rem;
}

.dropdown-item {
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 500;
}

.dropdown-item:hover {
    background: #F4F4F5;
    color: var(--primary-blue);
}

/* Hero Section & Full-Bleed Carousel */
.hero-section {
    background: var(--dark-navy) !important;
}

.carousel-item {
    min-height: 560px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.carousel-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.2) 100%) !important;
    z-index: 1;
}

.carousel-item .container {
    position: relative;
    z-index: 2;
}

.carousel-content-box h1 {
    font-size: clamp(2.2rem, 4vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: #FFFFFF !important;
}

.carousel-content-box .section-eyebrow {
    color: #F59E0B !important;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

.carousel-content-box .lead {
    font-size: 1.05rem;
    color: #D4D4D8 !important;
    font-weight: 400;
    line-height: 1.65;
}

.carousel-content-box .btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: var(--white) !important;
}

.carousel-content-box .btn-outline-dark:hover {
    background: var(--white) !important;
    color: var(--primary-blue) !important;
    border-color: var(--white) !important;
}

/* Translucent Glass Card on Slide */
.carousel-floating-card {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 16px !important;
}

.carousel-floating-card .text-muted {
    color: #A1A1AA !important;
}

/* Carousel controls */
.carousel-indicators [data-bs-target] {
    width: 6px;
    height: 6px;
}

.carousel-indicators .active {
    width: 18px;
}

.carousel-control-prev, .carousel-control-next {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Discover Cards (Minimalist Row) */
.discover-card {
    border: none;
    box-shadow: none;
    padding: 1.5rem 1rem;
}

.discover-icon {
    font-size: 1.8rem;
    color: #18181B;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Category Slider */
.category-scroll {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.category-scroll::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.category-scroll {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.category-card {
    border: none;
    box-shadow: none;
    background: transparent;
    padding: 0;
    text-decoration: none !important;
    flex: 0 0 auto;
    width: 180px;
    text-align: center;
    transition: transform 0.2s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: none;
}

.category-image-wrap {
    width: 180px;
    height: 180px;
    border-radius: 50% !important;
    background: #F4F4F5;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.category-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card:hover .category-image-wrap {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 82, 165, 0.08);
    background: #E4E4E7;
}

.category-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 0.85rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Custom Scroll Buttons */
.scroll-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #E4E4E7;
    background: #FFFFFF;
    color: #18181B;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}

.scroll-arrow-btn:hover {
    background: #F4F4F5;
    border-color: #D4D4D8;
    color: var(--primary-blue);
}

/* Premium Product Cards - Zara/Apple Aesthetic */
.product-card {
    border: none !important;
    border-radius: 12px !important;
    box-shadow: none !important;
    background: transparent !important;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-image-wrap {
    background: #F4F4F5 !important;
    border-radius: 12px !important;
    border: none !important;
    aspect-ratio: 1 / 1;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.product-card:hover .product-image-wrap {
    background: #E4E4E7 !important;
}

.product-image-wrap img {
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    max-height: 100%;
    width: auto;
    object-fit: contain;
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.03);
}

.wishlist-dot-form {
    position: absolute !important;
    top: 12px;
    right: 12px;
    z-index: 10;
}

.wishlist-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    cursor: pointer;
}

.wishlist-dot:hover {
    background: var(--white);
    color: var(--accent-red);
    transform: scale(1.08);
}

.wishlist-dot.is-active {
    background: var(--white);
    color: var(--accent-red);
}

.product-card .card-body {
    padding: 1rem 0 0 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-category {
    font-size: 0.72rem;
    font-weight: 500;
    color: #71717A;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.product-card-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #18181B;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-card-title a {
    color: #18181B;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-card-title a:hover {
    color: var(--primary-blue);
}

.product-price-wrapper {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.product-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.product-mrp {
    font-size: 0.85rem;
    color: #A1A1AA;
    text-decoration: line-through;
}

/* Clean Stock Status Dot */
.stock-status-dot {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.stock-status-dot.in-stock {
    color: #10B981;
}

.stock-status-dot.out-of-stock {
    color: #EF4444;
}

.stock-status-dot::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: currentColor;
}

/* Minimalist Quick Add Button */
.product-card .btn-add-cart {
    background: var(--logo-gradient);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
    padding: 0.6rem;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    border: none;
}

.product-card:hover .btn-add-cart {
    background: var(--logo-gradient-hover);
    box-shadow: 0 4px 12px rgba(0, 82, 165, 0.15);
}

/* Form Controls */
.form-control, .form-select {
    background-color: #F4F4F5;
    border: 1px solid #E4E4E7;
    border-radius: 6px;
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
}

.form-control:focus, .form-select:focus {
    background-color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 82, 165, 0.1);
}

/* Product Detail Page */
.product-detail-image-card {
    background: #F4F4F5;
    border: none;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: none;
}

.product-detail-info-card {
    background: var(--white);
    border: none;
    padding: 0;
    box-shadow: none;
}

/* Cart Page */
.cart-item-card {
    border: none;
    border-bottom: 1px solid #E4E4E7;
    border-radius: 0;
    padding: 1.5rem 0;
    margin-bottom: 0;
    box-shadow: none;
}

.cart-item-card:hover {
    box-shadow: none;
    border-color: #D4D4D8;
}

.summary-card {
    background: #F4F4F5;
    border: none;
    border-radius: 12px;
    box-shadow: none;
}

/* Home About section */
.home-about-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #F7FBFF 0%, #FFFFFF 100%);
}

.home-about-card.single-image-about {
    background: #FFFFFF;
    border: 1px solid #DCE8F8;
    border-radius: 22px;
    padding: 42px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 42px;
    align-items: center;
}

.home-about-image-side img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border: 1px solid #DCE8F8;
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
    display: block;
}

.home-about-content-side {
    width: 100%;
}

.home-about-section .section-kicker {
    display: inline-block;
    color: #00A86B;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.home-about-content-side h2 {
    color: #0B2344;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 14px;
}

.home-about-content-side h3 {
    color: #0B2344;
    font-size: 22px;
    font-weight: 800;
    margin-top: 24px;
    margin-bottom: 10px;
}

.home-about-content-side p {
    color: #475569;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 14px;
}

.home-about-points {
    margin-top: 16px;
}

.home-about-point {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #0B2344;
    font-weight: 600;
}

.home-about-point i {
    color: #00A86B;
    margin-top: 3px;
    flex-shrink: 0;
}

.home-about-mini-block {
    margin-top: 20px;
}

@media (max-width: 991.98px) {
    .home-about-card.single-image-about {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-about-image-side img {
        height: 360px;
    }
}

@media (max-width: 575.98px) {
    .home-about-section {
        padding: 45px 0;
    }

    .home-about-card.single-image-about {
        padding: 24px;
        border-radius: 16px;
    }

    .home-about-image-side img {
        height: 260px;
    }

    .home-about-content-side h2 {
        font-size: 26px;
    }
}

/* Legal policy pages */
.policy-page-section {
    padding: 56px 0;
    background: #F5F9FF;
}

.policy-page-section .container {
    max-width: 1180px;
    margin: 0 auto;
}

.policy-content-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid #DCE8F8;
    border-radius: 18px;
    padding: 42px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.policy-content {
    width: 100%;
}

.policy-content-card h1 {
    max-width: 100%;
    color: #0B2344;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 18px;
}

.policy-meta-list {
    display: grid;
    gap: 6px;
    padding: 16px 18px;
    margin-bottom: 26px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
}

.policy-meta-list p {
    margin: 0;
    color: #475569;
    font-size: 14px;
    line-height: 1.5;
}

.policy-content h2 {
    color: #0B2344;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.35;
    margin-top: 28px;
    margin-bottom: 12px;
}

.policy-content h3 {
    color: #0B2344;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 22px;
    margin-bottom: 10px;
}

.policy-content p,
.policy-content li {
    max-width: 100%;
    color: #334155;
    font-size: 15px;
    line-height: 1.8;
}

.policy-content p {
    margin-bottom: 16px;
}

.policy-content ul,
.policy-content ol {
    padding-left: 22px;
    margin-bottom: 18px;
}

.policy-content li {
    margin-bottom: 8px;
}

.policy-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

.policy-content table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    background: #FFFFFF;
}

.policy-content table th,
.policy-content table td {
    border: 1px solid #DCE8F8;
    padding: 10px 12px;
    color: #334155;
    font-size: 14px;
    line-height: 1.55;
    text-align: left;
    vertical-align: top;
}

.policy-content table th {
    background: #F8FAFC;
    color: #0B2344;
    font-weight: 700;
}

@media (max-width: 991.98px) {
    .policy-content-card {
        padding: 32px;
    }
}

@media (max-width: 575.98px) {
    .policy-page-section {
        padding: 32px 0;
    }

    .policy-content-card {
        padding: 22px;
        border-radius: 14px;
    }

    .policy-content-card h1 {
        font-size: 24px;
    }
}
