/* ==========================================================================
   TAILOR BAZAR - ENTERPRISE STYLESHEET
   --------------------------------------------------------------------------
   Organization:
   1. Design Tokens & Root Variables
   2. Base Styles & Global Resets
   3. Sticky Navigation & Profile Widgets
   4. Hero Banner & Trust Badges
   5. Services Section & Core Offerings
   6. Price Catalog Grid & Selection
   7. Modals: Multi-Step Booking & Live Tracking
   8. Auth Screen Templates (Login & Register)
   9. Toast Notifications & Micro-Animations
   ========================================================================== */

/* ==========================================================================
   1. DESIGN TOKENS & ROOT VARIABLES
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

:root {
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    --primary: #0f172a;
    --primary-light: #1e293b;
    --emerald-500: #d71920;
    --emerald-600: #b81218;
    --emerald-50: #fef2f2;

    --indigo-500: #0062ac;
    --indigo-600: #004f8b;
    --indigo-50: #f0f7ff;

    --card-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.06);
    --hover-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    --font-headings: "Outfit", sans-serif;
    --font-body: "Inter", sans-serif;
}

/* ==========================================================================
   2. BASE STYLES & GLOBAL RESETS
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Hide scrollbar for Chrome, Safari and Opera */
::-webkit-scrollbar {
    display: none;
}

html {
    -webkit-text-size-adjust: 100%;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}


body {
    font-family: var(--font-body);
    background-color: var(--slate-50);
    color: var(--slate-800);
    line-height: 1.6;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--slate-900);
}

a {
    text-decoration: none;
    color: inherit;
}

li {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Base Button Styles */
.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    font-family: var(--font-headings);
    font-weight: 600;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--slate-900);
    color: white;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.btn-primary:hover {
    background-color: var(--slate-800);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.2);
    color: white;
}

.btn-secondary {
    background-color: white;
    color: var(--slate-900);
    border: 1px solid var(--slate-200);
}

.btn-secondary:hover {
    background-color: var(--slate-50);
    border-color: var(--slate-300);
    transform: translateY(-2px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--slate-100);
}
::-webkit-scrollbar-thumb {
    background: var(--slate-200);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #cbd5e1;
}

/* ==========================================================================
   3. STICKY NAVIGATION & PROFILE WIDGETS
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    transition: var(--transition-smooth);
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

.header.scrolled {
    padding: 0.25rem 0;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-headings);
    letter-spacing: -0.5px;
    color: var(--slate-900);
}

.logo span {
    color: var(--emerald-500);
}

.logo-icon {
    background: linear-gradient(135deg, var(--slate-900), var(--indigo-600));
    color: white;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 8px 16px -4px rgba(99, 102, 241, 0.3);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--emerald-500);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.btn-track {
    background: var(--slate-100);
    color: var(--slate-900);
    padding: 0.6rem 1.2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.btn-track:hover {
    background: var(--slate-200);
    transform: translateY(-2px);
}

.btn-cart {
    position: relative;
    background: transparent;
    color: var(--slate-800);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.35rem;
    transition: var(--transition-smooth);
}

.btn-cart:hover {
    color: var(--emerald-500);
    transform: translateY(-2px);
}

.btn-wishlist {
    position: relative;
    background: transparent;
    color: var(--slate-800);
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.35rem;
    transition: var(--transition-smooth);
}

.btn-wishlist:hover {
    color: #f43f5e;
    transform: translateY(-2px);
}

.cart-badge,
.wishlist-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--slate-900);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* Profile Dropdown Widget */
.profile-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--slate-100);
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(15, 23, 42, 0.02);
}

.profile-info:hover {
    background: var(--slate-200);
}

.profile-dropdown {
    position: absolute;
    right: 0;
    top: 115%;
    width: 210px;
    background: white;
    border-radius: 1rem;
    border: 1px solid var(--slate-200);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1001;
}

.profile-dropdown.active {
    display: flex;
}

.dropdown-item {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate-800);
    border: none;
    background: transparent;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    text-decoration: none;
}

.dropdown-item:hover {
    background: var(--slate-50);
    color: var(--slate-900);
}

.btn-auth {
    background: var(--slate-900);
    color: white;
    padding: 0.6rem 1.4rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -8px rgba(15, 23, 42, 0.35);
}

.btn-auth-outline {
    background: transparent;
    color: var(--slate-900);
    border: 1px solid var(--slate-200);
    padding: 0.6rem 1.4rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-auth-outline:hover {
    background: var(--slate-50);
}

/* ==========================================================================
   4. HERO BANNER & TRUST BADGES
   ========================================================================== */
.hero {
    padding: 9.5rem 0 6rem 0;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(99, 102, 241, 0.05),
            transparent 40%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(16, 185, 129, 0.04),
            transparent 45%
        );
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    background: var(--emerald-50);
    color: var(--emerald-600);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: linear-gradient(135deg, var(--indigo-500), var(--emerald-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 3rem;
    border-top: 1px solid var(--slate-200);
    padding-top: 2rem;
}

.stat-item h4 {
    font-size: 2rem;
    letter-spacing: -0.5px;
    color: var(--slate-900);
}

.stat-item p {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.hero-visuals {
    position: relative;
    display: flex;
    justify-content: center;
}

.main-hero-image {
    width: 100%;
    max-width: 450px;
    height: 520px;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: var(--card-shadow);
    transform: rotate(-2deg);
    border: 8px solid white;
    transition: var(--transition-smooth);
}

.main-hero-image:hover {
    transform: rotate(0deg) scale(1.02);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 1.25rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 20px 30px -10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.floating-card-2 {
    bottom: 15%;
    right: -5%;
    animation-delay: 3s;
}

.floating-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.75rem;
    background: var(--emerald-50);
    color: var(--emerald-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.floating-icon.indigo {
    background: var(--indigo-50);
    color: var(--indigo-500);
}

.floating-card-info h5 {
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.floating-card-info p {
    font-size: 0.75rem;
    color: #64748b;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* ==========================================================================
   5. SERVICES SECTION & CORE OFFERINGS
   ========================================================================== */
.section {
    padding: 3rem 0;
}

.section-header {
    max-width: 600px;
}

.section-subtitle {
    color: var(--emerald-500);
    font-weight: 700;
    font-size: 0.85rem;
    font-family: var(--font-headings);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.section-desc {
    color: #64748b;
    font-size: 1rem;
    margin-bottom:0px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card {
    background: white;
    border-radius: 1.75rem;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(15, 23, 42, 0.03);
    transition: var(--transition-smooth);
    cursor: pointer;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}

.service-img-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-card:hover .service-img {
    transform: scale(1.08);
}

.service-overlay-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-body {
    padding: 2rem;
}

.service-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    background: var(--slate-50);
    color: var(--slate-900);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    margin-top: -3.75rem;
    position: relative;
    z-index: 2;
    border: 4px solid white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon-box {
    background: var(--slate-900);
    color: white;
    transform: scale(1.05);
}

.service-card:nth-child(2) .service-icon-box {
    color: var(--indigo-500);
}
.service-card:nth-child(2):hover .service-icon-box {
    background: var(--indigo-500);
    color: white;
}

.service-card:nth-child(3) .service-icon-box {
    color: var(--emerald-500);
}
.service-card:nth-child(3):hover .service-icon-box {
    background: var(--emerald-500);
    color: white;
}

.service-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.service-text {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.service-link {
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-900);
}

.service-link i {
    transition: var(--transition-smooth);
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* ==========================================================================
   6. PRICE CATALOG GRID & SELECTION
   ========================================================================== */
.catalog-section {
    background-color: white;
    border-top: 1px solid var(--slate-100);
    border-bottom: 1px solid var(--slate-100);
}

.catalog-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.filter-btn {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    padding: 0.75rem 1.75rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}

.filter-btn:hover {
    border-color: var(--slate-300);
    color: var(--slate-900);
}

.filter-btn.active {
    background: var(--slate-900);
    border-color: var(--slate-900);
    color: white;
    box-shadow: 0 10px 20px -8px rgba(15, 23, 42, 0.3);
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.item-card {
    border: 1px solid var(--slate-200);
    border-radius: 1.25rem;
    padding: 1.25rem;
    background: white;
    transition: var(--transition-smooth);
    position: relative;
}

.item-card:hover {
    border-color: var(--slate-300);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.03);
    transform: translateY(-4px);
}

.item-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--slate-100);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 0.35rem;
}

.item-img-container {
    width: 100%;
    height: 140px;
    background: var(--slate-50);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #94a3b8;
    margin-bottom: 1.25rem;
}

.item-img-container .item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
    display: block;
}

.item-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--slate-100);
}

.item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--slate-900);
}

.item-price span {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.btn-add-item {
    background: var(--slate-900);
    color: white;
    border: none;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-add-item:hover {
    background: var(--emerald-500);
    transform: scale(1.05);
}

/* ==========================================================================
   7. MODALS: MULTI-STEP BOOKING & LIVE TRACKING
   ========================================================================== */
.modal,
.tracking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active,
.tracking-modal.active {
    display: flex;
}

.modal-container {
    width: 100%;
    max-width: 900px;
    background: white;
    border-radius: 2rem;
    box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.25),
                0 0 0 1px rgba(0, 98, 172, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    overflow: hidden;
    display: grid;
    grid-template-columns: 0.35fr 0.65fr;
    height: 620px;
    animation: modalPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalPop {
    from {
        transform: scale(0.95);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-left {
    background: var(--slate-900);
    color: white;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.step-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.step-indicator.active {
    opacity: 1;
}

.step-indicator.completed {
    opacity: 0.8;
}

.step-num {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    border: 2px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.step-indicator.completed .step-num {
    background: var(--emerald-500);
    border-color: var(--emerald-500);
    color: white;
}

.step-text h5 {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
}

.step-text p {
    font-size: 0.75rem;
    color: #94a3b8;
}

.modal-summary-box {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: #cbd5e1;
}

.modal-summary-row.total {
    margin-bottom: 0;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    font-size: 1.05rem;
    color: white;
}

.modal-right {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    position: relative;
}

.btn-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--slate-100);
    border: none;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--slate-800);
    transition: var(--transition-smooth);
}

.btn-modal-close:hover {
    background: var(--slate-200);
    transform: scale(1.05);
}

.booking-step-panel {
    display: none;
}

.booking-step-panel.active {
    display: block;
}

.panel-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.panel-subtitle {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.panel-cart-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.panel-cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--slate-50);
    border-radius: 0.75rem;
    border: 1px solid var(--slate-100);
}

.cart-item-details h5 {
    font-size: 0.95rem;
}

.cart-item-details p {
    font-size: 0.75rem;
    color: #64748b;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.qty-btn {
    background: white;
    border: 1px solid var(--slate-200);
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.8rem;
}

.qty-btn:hover {
    border-color: var(--slate-400);
}

.panel-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    border-top: 1px solid var(--slate-100);
    padding-top: 1.5rem;
}

.measurements-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.measurement-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.measurement-field label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-900);
}

.measurement-input-wrapper {
    position: relative;
}

.measurement-input-wrapper input {
    width: 100%;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    padding: 0.65rem 1rem;
    border-radius: 0.75rem;
    outline: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.measurement-input-wrapper input:focus {
    border-color: var(--indigo-500);
    background: white;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.measurement-input-wrapper span {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 600;
}

.slots-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.date-picker-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.date-picker-group label {
    font-size: 0.85rem;
    font-weight: 600;
}

.slot-input {
    width: 100%;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    outline: none;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.slot-input:focus {
    border-color: var(--emerald-500);
    background: white;
}

.success-panel {
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    width: 5rem;
    height: 5rem;
    background: var(--emerald-50);
    color: var(--emerald-500);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes bounceIn {
    0% {
        transform: scale(0.3);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    80% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.order-id-box {
    background: var(--slate-100);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-family: monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--slate-900);
    display: inline-block;
    margin: 1.5rem 0;
    border: 1px dashed var(--slate-300);
}

/* Tracking Modal Styles */
.tracking-container {
    width: 100%;
    max-width: 950px;
    background: white;
    border-radius: 2rem;
    box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.25), 
                0 0 0 1px rgba(0, 98, 172, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 3rem;
    height: 640px;
    overflow-y: auto;
    position: relative;
    animation: modalPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.tracker-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--slate-200);
    padding-bottom: 1.5rem;
}

.tracker-headline h2 {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.tracker-headline p {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.tracker-meta-status {
    background: var(--emerald-50);
    color: var(--emerald-600);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.85rem;
}

.tracker-content {
    display: grid;
    grid-template-columns: 0.65fr 0.35fr;
    gap: 3rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    position: relative;
    padding-left: 2.5rem;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0.5rem;
    left: 0.6rem;
    width: 2px;
    height: calc(100% - 1rem);
    background: var(--slate-200);
}

.timeline-item {
    position: relative;
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.timeline-item.active {
    opacity: 1;
}

.timeline-item.completed {
    opacity: 0.85;
}

.timeline-badge {
    position: absolute;
    left: -2.5rem;
    top: 0.15rem;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--slate-300);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.timeline-item.active .timeline-badge {
    border-color: var(--indigo-500);
    background: var(--indigo-500);
    box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.2);
}

.timeline-item.completed .timeline-badge {
    border-color: var(--emerald-500);
    background: var(--emerald-500);
}

.timeline-info h5 {
    font-size: 0.95rem;
    font-weight: 700;
}

.timeline-info p {
    font-size: 0.8rem;
    color: #64748b;
}

.tracker-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tracker-info-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 1.25rem;
    padding: 1.5rem;
}

.tracker-info-card h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--slate-200);
    padding-bottom: 0.5rem;
}

.delivery-partner-widget {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.partner-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    font-weight: 700;
}

.partner-details h5 {
    font-size: 0.95rem;
}

.partner-details p {
    font-size: 0.75rem;
    color: #64748b;
}

.otp-verification-widget {
    margin-top: 1rem;
    border-top: 1px dashed var(--slate-300);
    padding-top: 1rem;
    text-align: center;
}

.otp-title {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--slate-900);
}

.otp-badge {
    background: var(--indigo-50);
    color: var(--indigo-600);
    padding: 0.5rem 1.5rem;
    border-radius: 0.75rem;
    font-family: monospace;
    font-size: 1.35rem;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 2px;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.05);
}

.simulator-bar {
    background: var(--slate-900);
    color: white;
    padding: 1rem 2rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.simulator-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
}

.simulator-info span {
    color: var(--emerald-500);
    font-weight: 700;
}

.btn-simulate {
    background: var(--emerald-500);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-simulate:hover {
    background: var(--emerald-600);
}

/* ==========================================================================
   8. AUTH SCREEN TEMPLATES (LOGIN & REGISTER)
   ========================================================================== */
.auth-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10.375rem 0 4rem 0;
    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(99, 102, 241, 0.05),
            transparent 40%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(16, 185, 129, 0.04),
            transparent 45%
        );
}

.auth-card {
    width: 100%;
    max-width: 480px;
    background: white;
    border-radius: 2rem;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.04);
    padding: 3rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-header h2 {
    font-size: 2rem;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: #64748b;
    font-size: 0.95rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-900);
}

.input-wrapper {
    position: relative;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1rem;
}

.form-input {
    width: 100%;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    border-radius: 0.85rem;
    outline: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-input:focus {
    border-color: var(--emerald-500);
    background: white;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    font-size: 0.85rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #64748b;
}

.forgot-link {
    font-weight: 600;
    color: var(--indigo-500);
}

.btn-submit {
    width: 100%;
    background: var(--slate-900);
    color: white;
    padding: 0.85rem;
    border-radius: 0.85rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px -8px rgba(15, 23, 42, 0.35);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.45);
}

.validation-error {
    color: #ef4444;
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 0.25rem;
}

/* ==========================================================================
   9. TOAST NOTIFICATIONS & MICRO-ANIMATIONS
   ========================================================================== */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 11000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    background: white;
    border-left: 5px solid #10b981;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    transform: translateX(120%);
    animation: slideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slideIn {
    to {
        transform: translateX(0);
    }
}

@keyframes slideOut {
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .toast-container {
        bottom: 90px !important; /* Positioned clearly above the 60px bottom menu bar */
        left: 5% !important;
        right: 5% !important;
        transform: none !important;
        width: 90% !important;
        max-width: 450px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
    }

    .toast {
        transform: translateY(120%);
        white-space: normal !important;
        padding: 0.75rem 1rem !important;
        border-radius: 0.5rem !important; /* Rectangle style */
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0.75rem !important;
        border: 1px solid #10b981 !important;
        border-left: 5px solid #10b981 !important; /* Accent bar */
        background: #ffffff !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06) !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .toast div {
        white-space: normal !important;
        text-align: left !important;
        font-size: 0.82rem !important;
        line-height: 1.35 !important;
        color: var(--slate-800) !important;
        word-break: break-word !important;
    }

    @keyframes slideIn {
        from {
            transform: translateY(120%);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes slideOut {
        from {
            transform: translateY(0);
            opacity: 1;
        }
        to {
            transform: translateY(120%);
            opacity: 0;
        }
    }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-title {
        font-size: 2.75rem;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .modal-container {
        grid-template-columns: 1fr;
        height: 90%;
        max-width: 95%;
    }
    .modal-left {
        display: none;
    }
    .items-grid {
        grid-template-columns: 1fr;
    }
    .tracker-content {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 2.15rem !important;
        letter-spacing: -0.75px !important;
        margin-bottom: 1rem !important;
        line-height: 1.25 !important;
    }
    .hero-description {
        font-size: 0.95rem !important;
        margin-bottom: 1.75rem !important;
    }
    .section-title {
        font-size: 1.75rem !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.25 !important;
    }
    .section-desc {
        font-size: 0.9rem !important;
        /* margin-bottom: 2rem !important; */
    }
    .section-subtitle {
        font-size: 0.75rem !important;
        margin-bottom: 0.5rem !important;
        margin-left: 0.5rem;
    }
    .auth-section {
        padding: 7.875rem 1rem 4rem 1rem;
    }
    .auth-card {
        padding: 2.5rem 1.5rem;
        border-radius: 1.5rem;
    }
}

/* ==========================================================================
   10. FOOTER STYLES
   ========================================================================== */
.footer {
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(0, 98, 172, 0.04) 0%, transparent 50%), 
                radial-gradient(circle at 20% 80%, rgba(215, 25, 32, 0.04) 0%, transparent 50%), 
                radial-gradient(rgba(140, 135, 117, 0.07) 1px, transparent 1px),
                linear-gradient(180deg, #fdfcf9 0%, #f5f3e9 100%);
    background-size: 100% 100%, 100% 100%, 24px 24px, 100% 100%;
    color: #4a463b;
    padding: 6rem 0 3rem 0;
    margin-top: 5rem;
    border-top: 1px solid #e8e5d8;
    box-shadow: 0 -10px 40px -10px rgba(74, 70, 59, 0.04);
    overflow: hidden;
}

.footer .container {
    position: relative;
    z-index: 2;
}

/* Animated Floating Backdrop Shapes for Footer */
.footer-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
    opacity: 0.12;
    pointer-events: none;
    animation: floatShape 15s infinite ease-in-out;
}

.shape-1 {
    top: 5%;
    right: 10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--indigo-500) 0%, transparent 70%);
}

.shape-2 {
    bottom: 5%;
    left: 8%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--emerald-500) 0%, transparent 70%);
    animation-delay: -5s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-40px, 30px) scale(1.15);
    }
}

.footer-top-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--indigo-500) 25%, var(--emerald-500) 75%, transparent 100%);
    box-shadow: 0 1px 10px rgba(0, 98, 172, 0.15);
    opacity: 0.8;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1.2fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    color: #2a2821;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
    font-family: var(--font-headings);
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2.5px;
    background: linear-gradient(90deg, var(--indigo-500), var(--emerald-500));
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-col:hover h3::after {
    width: 70px;
}

.brand-desc {
    font-size: 0.95rem;
    /* line-height: 1.8; */
    color: #5c5847;
    margin-bottom: 1rem;
}

.logo.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2a2821;
    text-decoration: none;
    margin-bottom: 1.5rem;
    font-family: var(--font-headings);
}

.logo.footer-logo span {
    color: var(--emerald-500);
}

.logo.footer-logo .logo-icon {
    background: linear-gradient(135deg, var(--indigo-500), var(--emerald-500));
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 98, 172, 0.2);
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid #e8e5d8;
    color: #5c5847;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(74, 70, 59, 0.04);
}

.social-btn:hover {
    color: white;
    background: linear-gradient(135deg, var(--indigo-500), var(--emerald-500));
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 98, 172, 0.2);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0;
    margin: 0;
}

.footer-link {
    font-size: 0.95rem;
    color: #4a463b;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link i {
    font-size: 0.75rem;
    transition: var(--transition-smooth);
    opacity: 0.5;
}

.footer-link:hover {
    color: var(--indigo-500);
    transform: translateX(4px);
}

.footer-link:hover i {
    opacity: 1;
    transform: translateX(2px);
    color: var(--emerald-500);
}

.newsletter-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a463b;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #dcd9cb;
    border-radius: 12px;
    padding: 0.35rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 6px -1px rgba(74, 70, 59, 0.04);
}

.newsletter-form:focus-within {
    border-color: var(--indigo-500);
    box-shadow: 0 8px 20px rgba(0, 98, 172, 0.08);
    background: #ffffff;
}

.newsletter-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding-left: 0.75rem;
}

.newsletter-input-wrapper i {
    color: #8c8775;
    font-size: 1rem;
    pointer-events: none;
}

.newsletter-input {
    background: transparent;
    border: none;
    padding: 0.5rem 0.75rem;
    outline: none;
    color: #2a2821;
    font-size: 0.95rem;
    width: 100%;
}

.newsletter-input::placeholder {
    color: #8c8775;
}

.newsletter-submit-btn {
    background: linear-gradient(135deg, var(--indigo-500), var(--emerald-500));
    color: white;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 98, 172, 0.25);
}

.newsletter-submit-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 98, 172, 0.35);
}

.newsletter-submit-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.newsletter-input:disabled {
    opacity: 0.85;
    cursor: not-allowed;
}

.newsletter-submit-btn i {
    font-size: 0.95rem;
}

.footer-middle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0.5rem 0;
    /* margin: 3.5rem 0 2rem 0; */
    border-top: 1px solid #e8e5d8;
    border-bottom: 1px solid #e8e5d8;
}

@media (min-width: 769px) {
    .footer-middle > .footer-contact-item:nth-child(4) {
        grid-column: 2;
    }
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #e8e5d8;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 6px -1px rgba(74, 70, 59, 0.02);
}

.footer-contact-item:hover {
    background: #ffffff;
    border-color: var(--indigo-500);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0, 98, 172, 0.12);
}

.footer-contact-item > i {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 98, 172, 0.08), rgba(215, 25, 32, 0.08));
    color: var(--indigo-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border: 1px solid rgba(0, 98, 172, 0.15);
    transition: var(--transition-smooth);
}

.footer-contact-item:hover > i {
    transform: scale(1.1) rotate(6deg);
    background: linear-gradient(135deg, var(--indigo-500), var(--emerald-500));
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 10px rgba(0, 98, 172, 0.2);
}

.footer-contact-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-contact-item span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #8c8775;
    font-weight: 600;
}

.footer-contact-item a, 
.footer-contact-item strong {
    font-size: 1.05rem;
    color: #2a2821;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.footer-contact-item a:hover {
    color: var(--indigo-500);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    font-size: 0.9rem;
    color: #5c5847;
}

.footer-bottom p {
    margin: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.footer-legal-links a {
    color: #5c5847;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-legal-links a:hover {
    color: var(--indigo-500);
}

.dot-separator {
    color: #dcd9cb;
    font-size: 0.8rem;
}

/* ==========================================================================
   10. NEW FLIPKART-INSPIRED E-COMMERCE DESIGN STYLES
   ========================================================================== */

/* Category Navigation Bar Styles */
.category-nav-bar {
    background: white;
    border-bottom: 1px solid var(--slate-200);
    padding: 1.25rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 99;
    margin-top: 6.875rem; /* Offsets sticky header */
}

.category-nav-wrapper {
    display: flex;
    justify-content: center;
    gap: 3rem;
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    padding: 0.25rem 0;
}

.category-nav-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.category-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    min-width: 80px;
    text-align: center;
}

.category-nav-item:hover {
    transform: translateY(-4px);
}

.category-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.category-nav-item:hover .category-circle {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: scale(1.08);
}

/* Diverse vivid gradient circles like Flipkart categories */
.category-circle.stitching {
    background: linear-gradient(135deg, #0062ac, #3b8cc4);
}

.category-circle.laundry {
    background: linear-gradient(135deg, #d71920, #e9575c);
}

.category-circle.iron {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.category-circle.special {
    background: linear-gradient(135deg, #ec4899, #f472b6);
}

.category-circle.repair {
    background: linear-gradient(135deg, #ef4444, #f87171);
}

.category-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--slate-800);
    letter-spacing: -0.2px;
    font-family: var(--font-headings);
}

.category-nav-item:hover .category-label {
    color: var(--indigo-600);
}

/* Homepage Search Bar Styles */
.search-bar-wrapper {
    max-width: 600px;
    margin: 1.25rem auto 0.25rem auto; /* Symmetrical top margin below category icons, and clean bottom margin */
    width: 100%;
    position: relative; /* Essential for suggestion dropdown positioning */
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8fafc; /* Sleek, very light gray background for modern feel */
    border: 2px solid #e2e8f0;
    border-radius: 2rem;
    padding: 0.65rem 1.25rem;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-input-group:focus-within {
    background: white;
    border-color: var(--indigo-600);
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.12);
}

.search-icon-left {
    color: #64748b;
    font-size: 1.1rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    transition: color 0.3s;
}

.search-input-group:focus-within .search-icon-left {
    color: var(--indigo-600);
}

.search-input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.95rem;
    color: var(--slate-900);
    background: transparent;
    padding: 0;
    font-family: var(--font-body);
}

.search-input::placeholder {
    color: #94a3b8;
    opacity: 0.95;
    transition: color 0.3s ease;
}

/* Recommendation Dropdown Styling */
.search-suggestions-dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 1rem;
    box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.15), 0 5px 15px -3px rgba(15, 23, 42, 0.05);
    z-index: 999;
    max-height: 280px;
    overflow-y: auto;
    padding: 0.5rem 0;
    animation: slideDownFade 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.suggestion-item:hover {
    background: #f8fafc;
}

.suggestion-item-img {
    width: 38px;
    height: 38px;
    border-radius: 0.5rem;
    object-fit: cover;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.suggestion-item-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.suggestion-item-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--slate-900);
}

.suggestion-item-cat {
    font-size: 0.72rem;
    color: var(--indigo-600);
    font-weight: 500;
}

.suggestion-item-arrow {
    color: #94a3b8;
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.suggestion-item:hover .suggestion-item-arrow {
    transform: translateX(3px);
    color: var(--indigo-600);
}

.suggestion-no-results {
    padding: 1.5rem 1.25rem;
    text-align: center;
    color: var(--slate-500);
    font-size: 0.85rem;
}
/* Shimmer Animation for Search Dropdown */
@keyframes skeleton-shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.suggestion-skeleton-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
}

.suggestion-skeleton-item .skeleton-avatar {
    width: 38px;
    height: 38px;
    border-radius: 0.5rem;
    background: #f1f5f9;
    background-image: linear-gradient(90deg, #f1f5f9 0px, #e2e8f0 40px, #f1f5f9 80px);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite linear;
}

.suggestion-skeleton-item .skeleton-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex-grow: 1;
}

.suggestion-skeleton-item .skeleton-line {
    height: 0.75rem;
    border-radius: 0.25rem;
    background: #f1f5f9;
    background-image: linear-gradient(90deg, #f1f5f9 0px, #e2e8f0 40px, #f1f5f9 80px);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite linear;
}

.suggestion-skeleton-item .skeleton-line.title {
    width: 60%;
    height: 0.85rem;
}

.suggestion-skeleton-item .skeleton-line.subtitle {
    width: 35%;
    height: 0.7rem;
}

.suggestion-skeleton-item .skeleton-arrow {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f1f5f9;
    background-image: linear-gradient(90deg, #f1f5f9 0px, #e2e8f0 40px, #f1f5f9 80px);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite linear;
}

/* Mobile responsive search bar styles */
@media (max-width: 768px) {
    .search-bar-wrapper {
        margin: 1rem auto 0 auto;
        padding: 0 1rem;
    }
    
    .search-input-group {
        padding: 0.5rem 1rem;
        background: #f8fafc;
    }
    
    .search-input {
        font-size: 0.88rem;
    }
    
    .search-suggestions-dropdown {
        left: 1rem;
        width: calc(100% - 2rem);
        max-height: 240px;
    }
}

/* Custom mobile overrides for deals of the day & wardrobe bundles */
@media (max-width: 768px) {
    .deals-section .container {
        padding: 0 !important;
        max-width: 100% !important;
    }
    .deals-section .section-header-row {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
        margin-bottom: 0rem !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
        border-bottom: none !important;
        padding-bottom: 0 !important;
    }
    .deals-section .section-header {
        text-align: left !important;
    }
    .deals-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        gap: 0.85rem !important;
        padding: 0.5rem 1.25rem 0rem 1.25rem !important;
        width: 100% !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
    }
    .deals-grid::-webkit-scrollbar {
        display: none !important;
    }
    .deal-card {
        flex-shrink: 0 !important;
        width: 170px !important;
        padding: 0.65rem !important;
        border-radius: 0.85rem !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.04) !important;
    }
    .deal-img-wrapper {
        margin-bottom: 0.5rem !important;
        border-radius: 0.6rem !important;
    }
    .deal-badge {
        font-size: 0.6rem !important;
        padding: 0.2rem 0.45rem !important;
        top: 0.5rem !important;
        left: 0.5rem !important;
        border-radius: 0.3rem !important;
    }
    .deal-category {
        font-size: 0.65rem !important;
        margin-bottom: 0.2rem !important;
    }
    .deal-title {
        font-size: 0.85rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.35rem !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    .deal-rating {
        gap: 0.3rem !important;
        margin-bottom: 0.5rem !important;
        flex-wrap: wrap !important;
    }
    .rating-stars {
        font-size: 0.65rem !important;
        padding: 0.1rem 0.3rem !important;
        gap: 0.15rem !important;
        border-radius: 0.2rem !important;
    }
    .rating-count {
        font-size: 0.65rem !important;
    }
    .deal-price-row {
        margin-bottom: 0.6rem !important;
        flex-wrap: wrap !important;
        gap: 0.25rem !important;
        align-items: baseline !important;
        margin-top: auto !important;
    }
    .deal-price {
        font-size: 0.95rem !important;
    }
    .deal-old-price {
        font-size: 0.75rem !important;
    }
    .deal-discount {
        font-size: 0.65rem !important;
    }
    .deal-btn {
        padding: 0.45rem !important;
        font-size: 0.75rem !important;
        border-radius: 0.5rem !important;
        gap: 0.3rem !important;
    }
}


/* E-commerce Hero Carousel Styles */
.hero-carousel-section {
    padding: 2rem 0;
    background: #f1f5f9;
}

.carousel-container {
    position: relative;
    background: #e2e8f0;
    border-radius: 2rem;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    aspect-ratio: 1200 / 600;
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.15);
}

.carousel-slide {
    display: none;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: scale(0.98);
}

.carousel-slide.active {
    display: block;
    opacity: 1;
    z-index: 2;
    transform: scale(1);
}

.carousel-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center !important;
    display: block;
}

.carousel-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: white;
}

.carousel-badge {
    padding: 0.45rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.carousel-badge.badge-tailor {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
}

.carousel-badge.badge-laundry {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
}

.carousel-badge.badge-iron {
    background: rgba(245, 158, 11, 0.2);
    color: #fde047;
}

.carousel-title {
    font-size: 2.8rem;
    color: white;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.carousel-title span {
    background: linear-gradient(135deg, #818cf8, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.carousel-description {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    max-width: 540px;
    line-height: 1.6;
}

.carousel-offer-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    color: #e2e8f0;
    margin-bottom: 1.25rem;
    display: inline-block;
}

.carousel-offer-tag strong {
    color: #d71920;
    font-weight: 700;
}

.carousel-buttons {
    display: flex;
    gap: 1rem;
}

.carousel-buttons .btn-primary {
    background: white;
    color: var(--slate-900);
}

.carousel-buttons .btn-primary:hover {
    background: #cbd5e1;
    transform: translateY(-2px);
}

.carousel-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.carousel-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.carousel-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.carousel-img {
    width: 320px;
    height: 360px;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.15);
}

.carousel-floating-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.carousel-floating-card.top-left {
    top: 12%;
    left: -15%;
}

.carousel-floating-card.bottom-right {
    bottom: 12%;
    right: -10%;
}

.carousel-floating-card i {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    background: rgba(99, 102, 241, 0.3);
    color: #818cf8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.carousel-floating-card.green i {
    background: rgba(16, 185, 129, 0.3);
    color: #34d399;
}

.carousel-floating-card.indigo i {
    background: rgba(239, 68, 68, 0.3);
    color: #f87171;
}

.carousel-floating-card h5 {
    font-size: 0.85rem;
    color: white;
}

.carousel-floating-card p {
    font-size: 0.7rem;
    color: #94a3b8;
}

/* Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: var(--transition-smooth);
    color: var(--slate-900);
    font-size: 1rem;
}

.carousel-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 1.5rem;
}

.carousel-arrow.next {
    right: 1.5rem;
}

/* Dots */
.carousel-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
    z-index: 10;
}

.carousel-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dots .dot.active {
    background: white;
    width: 24px;
    border-radius: 5px;
}


/* Deals of the Day CSS Section */
.deals-section {
    background: white;
    border-bottom: 1px solid var(--slate-200);
}

#deals {
    padding-bottom: 0 !important;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--slate-100);
    padding-bottom: 1.25rem;
}

.deals-countdown {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff7ed;
    border: 1px solid #ffedd5;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
}

.countdown-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ea580c;
}

.countdown-timer {
    font-family: var(--font-headings);
    font-size: 0.8rem;
    font-weight: 800;
    color: #ea580c;
    letter-spacing: 0.5px;
}

.deals-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    gap: 1.5rem;
    justify-content: flex-start;
    width: 100%;
    padding: 0.5rem 0.25rem 1.5rem 0.25rem;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar completely across all viewports */
.deals-grid::-webkit-scrollbar {
    display: none !important;
}

/* Scroll buttons positioning and styling */
.deals-scroll-wrapper {
    position: relative;
    width: 100%;
}

.deals-scroll-wrapper .scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--slate-200);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    color: var(--slate-800);
    transition: var(--transition-smooth);
}

.deals-scroll-wrapper .scroll-btn:hover {
    background: var(--slate-50);
    border-color: var(--slate-300);
    color: var(--indigo-600);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.deals-scroll-wrapper .scroll-btn.prev {
    left: -19px;
}

.deals-scroll-wrapper .scroll-btn.next {
    right: -19px;
}

@media (max-width: 768px) {
    .deals-scroll-wrapper .scroll-btn {
        display: none !important;
    }
}

.deal-card {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    padding: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
    width: 230px;
    flex-shrink: 0;
}

.deal-card:hover {
    box-shadow: var(--hover-shadow);
    border-color: var(--slate-300);
}

.deal-badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.5rem;
    border-radius: 0.35rem;
    z-index: 3;
    letter-spacing: 0.5px;
}

.deal-badge.red {
    background: #ef4444;
}

.deal-badge.green {
    background: #0062ac;
}

.deal-badge.orange {
    background: #f97316;
}

.deal-img-wrapper {
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    max-width: 1024px;
    max-height: 1024px;
    width: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
    background: var(--slate-50);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deal-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.deal-card:hover .deal-img {
    transform: scale(1.08);
}

.deal-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.deal-category {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--indigo-600);
    letter-spacing: 0.8px;
    margin-bottom: 0.35rem;
}

.deal-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.deal-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.rating-stars {
    background: #fef08a;
    color: #854d0e;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.rating-count {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

.deal-price-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1rem;
    margin-top: auto;
}

.deal-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--slate-900);
}

.deal-old-price {
    font-size: 0.85rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.deal-discount {
    font-size: 0.75rem;
    color: #d71920;
    font-weight: 700;
}

.deal-btn {
    width: 100%;
    background: var(--slate-900);
    color: white;
    border: none;
    padding: 0.6rem;
    border-radius: 0.6rem;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.deal-card:hover .deal-btn {
    background: var(--indigo-600);
}


/* Dynamic E-commerce Catalog Upgraded Styles */
.discount-badge-ribbon {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #d71920;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.5rem;
    border-radius: 0.35rem;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(215, 25, 32, 0.25);
}

.item-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
}

.rating-badge {
    background: #eef2ff;
    color: var(--indigo-600);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.15rem 0.4rem;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}

.reviews-count {
    font-size: 0.75rem;
    color: #64748b;
}

.item-pricing-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0.75rem 0;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.deal-price {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--slate-900);
}

.original-price {
    font-size: 0.85rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.discount-percent {
    font-size: 0.75rem;
    color: #d71920;
    font-weight: 700;
}

.item-action-row {
    margin-top: 1rem;
}

.btn-customize-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.65rem;
    border-radius: 0.75rem;
    background: var(--slate-100);
    color: var(--slate-900);
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition-smooth);
    border: 1px solid var(--slate-200);
}

.item-card:hover .btn-customize-book {
    background: var(--slate-900);
    color: white;
    border-color: var(--slate-900);
    box-shadow: 0 6px 12px rgba(15, 23, 42, 0.15);
}

@media (max-width: 991px) {
    .category-nav-wrapper {
        gap: 2rem;
    }


}

/* ==========================================================================
   11. CREATIVE CATALOG & BOOKING CONTROLS STYLING
   ========================================================================== */

.catalog-dashboard-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    background: white;
    border: 1px solid var(--slate-200);
    padding: 1rem 1.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.search-input-wrapper {
    position: relative;
    flex-grow: 1;
    max-width: 650px;
}

.search-icon {
    position: absolute;
    left: 1.15rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-400);
    font-size: 0.95rem;
    z-index: 2;
}

.search-input-wrapper input {
    width: 100%;
    background: #f8fafc;
    border: 1px solid var(--slate-200);
    border-radius: 0.85rem;
    padding: 0.8rem 1rem 0.8rem 2.85rem;
    outline: none;
    font-size: 0.9rem;
    color: var(--slate-900);
    font-weight: 500;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
}

.search-input-wrapper input:focus {
    background: white;
    border-color: var(--indigo-500);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.search-clear-btn {
    position: absolute;
    right: 1.15rem;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: var(--slate-400);
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-clear-btn:hover {
    color: var(--slate-900);
    transform: scale(1.1);
}

.sort-selector-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--slate-800);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.sort-selector-wrapper select {
    background: #f8fafc;
    border: 1px solid var(--slate-200);
    border-radius: 0.85rem;
    padding: 0.75rem 1.5rem 0.75rem 1rem;
    outline: none;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--slate-800);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
}

.sort-selector-wrapper select:focus {
    border-color: var(--indigo-500);
    background: white;
}


/* Live Status Info Banner */
.catalog-live-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
    font-size: 0.85rem;
    color: #64748b;
    font-family: var(--font-body);
}

.active-tab-indicator {
    background: #eef2ff;
    color: var(--indigo-600);
    padding: 0.2rem 0.6rem;
    border-radius: 0.35rem;
    font-weight: 800;
}

.status-right {
    font-weight: 600;
    color: var(--emerald-600);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}


/* Item Card Action Enhancements */
.card-wishlist-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    border: 1px solid rgba(15, 23, 42, 0.08);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 5;
    transition: var(--transition-smooth);
}

.card-wishlist-btn:hover {
    transform: scale(1.15);
    border-color: #f43f5e;
}

.card-wishlist-btn i {
    font-size: 0.95rem;
    color: #94a3b8;
    transition: var(--transition-smooth);
}

.card-wishlist-btn i.active {
    color: #e11d48 !important;
}

.quick-add-btn {
    background: var(--emerald-500);
    color: white;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
    transition: var(--transition-smooth);
    font-size: 1rem;
}

.quick-add-btn:hover {
    background: var(--emerald-600);
    transform: scale(1.08);
}


/* Creative Card Glow borders */
.creative-glow {
    position: relative;
    border: 1px solid var(--slate-200);
    overflow: hidden;
}

.creative-glow:hover {
    border-color: transparent;
}

.creative-glow::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.25rem;
    padding: 1.5px;
    background: linear-gradient(135deg, var(--indigo-500), var(--emerald-500));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-smooth);
    pointer-events: none;
}

.creative-glow:hover::after {
    opacity: 1;
}

/* Creative Corner Badges */
.creative-corner-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.25rem 0.5rem;
    border-radius: 0.35rem;
    z-index: 4;
    letter-spacing: 0.4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-family: var(--font-body);
}

.creative-corner-tag.bestseller {
    background: linear-gradient(135deg, #ea580c, #f97316);
}

.creative-corner-tag.hot {
    background: linear-gradient(135deg, #0062ac, #06b6d4);
}

/* Overrides standard ribbon position when custom badge is present */
.creative-corner-tag + .discount-badge-ribbon {
    top: 2.75rem;
}


/* Skeletal Loading CSS placeholder */
.skeletal-loader-card {
    height: 340px;
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: skeletal-pulse 1.4s infinite linear;
    border-radius: 1.25rem;
    border: 1px solid var(--slate-200);
}

@keyframes skeletal-pulse {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

@media (max-width: 768px) {
    .catalog-dashboard-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .sort-selector-wrapper {
        justify-content: space-between;
    }
    .catalog-live-status-bar {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

/* ==========================================================================
   12. THREE PREMIUM MODERN VISUAL SECTIONS (WORKFLOW, BENEFITS, TESTIMONIALS)
   ========================================================================== */

/* Step Interactive Workflow Section Styles */
.workflow-section {
    background: #f8fafc;
    border-bottom: 1px solid var(--slate-200);
}

.workflow-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.workflow-card {
    position: relative;
    background: white;
    border: 1px solid var(--slate-200);
    padding: 3rem 2rem 2.25rem 2rem;
    border-radius: 1.75rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.workflow-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: var(--slate-300);
}

.workflow-index {
    position: absolute;
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--slate-900);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.15rem;
    font-family: var(--font-headings);
    box-shadow: 0 6px 15px rgba(15, 23, 42, 0.2);
    border: 3px solid white;
}

.workflow-card:hover .workflow-index {
    background: var(--indigo-600);
}

.workflow-icon-box {
    width: 68px;
    height: 68px;
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.workflow-card:hover .workflow-icon-box {
    transform: scale(1.1) rotate(4deg);
}

.workflow-icon-box.blue {
    background: #eef2ff;
    color: var(--indigo-500);
}

.workflow-icon-box.green {
    background: #ecfdf5;
    color: var(--emerald-500);
}

.workflow-icon-box.orange {
    background: #fff7ed;
    color: #ea580c;
}

.workflow-title {
    font-family: var(--font-headings);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.workflow-text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.workflow-status-badge {
    background: #f1f5f9;
    color: #475569;
    padding: 0.35rem 0.85rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: auto;
    font-family: var(--font-headings);
}

.workflow-card:hover .workflow-status-badge {
    background: var(--slate-900);
    color: white;
}


/* Premium Trust Benefits Grid Styles */
.benefits-section {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: white;
    border: 1px solid var(--slate-200);
    padding: 2.25rem 2rem;
    border-radius: 1.75rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.04);
    border-color: var(--slate-300);
}

.benefit-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.benefit-card:hover .benefit-icon-wrapper {
    transform: scale(1.08);
}

.benefit-icon-wrapper.red {
    background: #fef2f2;
    color: #ef4444;
}

.benefit-icon-wrapper.green {
    background: #f0f7ff;
    color: #0062ac;
}

.benefit-icon-wrapper.orange {
    background: #fff7ed;
    color: #ea580c;
}

.benefit-icon-wrapper.blue {
    background: #f5f3ff;
    color: #8b5cf6;
}

.benefit-title {
    font-family: var(--font-headings);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.benefit-text {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
    font-family: var(--font-body);
}


/* Glassmorphic Testimonials Section Styles */
.testimonials-section {
    background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.03), transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(244, 63, 94, 0.02), transparent 40%),
                #fafafb;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.testimonials-scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.testimonials-scroll-wrapper .scroll-btn {
    position: absolute;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--slate-200);
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--slate-800);
}

.testimonials-scroll-wrapper .scroll-btn:hover {
    background: var(--slate-900);
    color: white;
    border-color: var(--slate-900);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.2);
}

.testimonials-scroll-wrapper .scroll-btn.prev {
    left: -1.75rem;
}

.testimonials-scroll-wrapper .scroll-btn.next {
    right: -1.75rem;
}

.testimonials-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden;
    gap: 2.25rem;
    padding: 1.5rem 0.5rem 2.5rem 0.5rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;  /* Firefox */
    width: 100%;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.5rem);
    min-width: 330px;
    scroll-snap-align: start;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 2rem;
    padding: 2.5rem;
    box-shadow: 0 15px 45px rgba(15, 23, 42, 0.03),
                0 4px 12px rgba(15, 23, 42, 0.01);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--indigo-500), var(--rose-500));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
    background: white;
    border-color: rgba(99, 102, 241, 0.1);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-quote-icon {
    font-size: 4rem;
    color: rgba(99, 102, 241, 0.05);
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    line-height: 1;
    pointer-events: none;
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-quote-icon {
    color: rgba(99, 102, 241, 0.1);
    transform: scale(1.1) rotate(-5deg);
}

.testimonial-rating-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    z-index: 1;
}

.rating-stars-gold {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    color: #f59e0b; /* amber 500 */
    font-size: 0.85rem;
}

.rating-stars-gold .rating-number {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-left: 0.35rem;
}

.testimonial-date {
    font-size: 0.78rem;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.testimonial-quote {
    color: #334155; /* slate 700 */
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: normal;
    font-weight: 450;
    margin-bottom: 2rem;
    flex-grow: 1;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1;
}

.author-avatar-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
}

.author-avatar-gradient {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--indigo-500), var(--rose-500));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    font-weight: 700;
    font-family: var(--font-headings);
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.author-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
    display: block;
}

.verified-avatar-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.verified-avatar-badge i {
    font-size: 11px;
    color: var(--emerald-500);
}

.author-info h4 {
    font-family: var(--font-headings);
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.15rem;
}

.author-info p {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 600;
}

@media (max-width: 991px) {
    .testimonials-scroll-wrapper .scroll-btn {
        display: none;
    }
    .testimonials-grid {
        overflow-x: auto !important;
    }
    .testimonial-card {
        flex: 0 0 calc(50% - 1.125rem);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    .testimonials-grid {
        gap: 1.25rem;
        padding-bottom: 1.5rem;
    }
    .testimonial-card {
        flex: 0 0 88%;
        min-width: 280px;
        padding: 1.75rem;
        border-radius: 1.5rem;
    }
    .testimonial-quote {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    .testimonial-quote-icon {
        font-size: 3rem;
        top: 1rem;
        right: 1.5rem;
    }
}


/* Responsive styles for new sections */
@media (max-width: 991px) {
    .workflow-steps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 767px) {
    .testimonials-grid {
        gap: 1.5rem;
        padding-bottom: 1.5rem;
    }
    .testimonial-card {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
}

@media (max-width: 575px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   13. DEDICATED ALL SERVICES CATALOG HUB STYLING
   ========================================================================== */

.services-page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 1rem;
}

.sidebar-filter-panel {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 6.5rem; /* Sits cleanly beneath sticky main header */
    height: fit-content;
    z-index: 10;
}

.filter-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--slate-200);
    padding-bottom: 0.85rem;
    margin-bottom: 1.25rem;
}

.filter-group-header h3 {
    font-family: var(--font-headings);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--slate-900);
}

.clear-all-filters-btn {
    background: transparent;
    border: none;
    color: var(--indigo-600);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
}

.clear-all-filters-btn:hover {
    color: var(--indigo-500);
    text-decoration: underline;
}

.filter-box {
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
}

.filter-box-title {
    font-family: var(--font-headings);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.85rem;
}

.filter-checkbox-list,
.filter-radio-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.filter-checkbox-label,
.filter-radio-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-family: var(--font-body);
}

.filter-checkbox-label:hover,
.filter-radio-label:hover {
    color: var(--slate-900);
}

.filter-checkbox-label input[type="checkbox"],
.filter-radio-label input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--indigo-600);
    cursor: pointer;
}

/* Budget range slider visual customizations */
.price-slider-container input[type="range"] {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    outline: none;
    accent-color: var(--indigo-600);
    cursor: pointer;
    -webkit-appearance: none;
}

.price-slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--indigo-600);
    border: 2px solid white;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.35);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.price-slider-container input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.25);
}

.services-content-panel {
    display: flex;
    flex-direction: column;
}


/* All Services Storefront Mobile Responsive adaptations */
@media (max-width: 991px) {
    .services-page-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .sidebar-filter-panel {
        position: relative;
        top: 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .filter-group-header {
        grid-column: 1 / -1;
        margin-bottom: 0.5rem;
    }
    .filter-box {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .sidebar-filter-panel {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .services-content-panel .items-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 575px) {
    .services-content-panel .items-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Mobile Drawer Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--slate-800);
    cursor: pointer;
    padding: 0.5rem;
    outline: none;
    transition: var(--transition-smooth);
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 10000;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-drawer.active {
    right: 0;
}

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

.mobile-drawer-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--slate-400);
    cursor: pointer;
    outline: none;
    transition: var(--transition-smooth);
}

.mobile-drawer-close:hover {
    color: var(--slate-900);
}

.mobile-drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-drawer-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--slate-700);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: var(--transition-smooth);
}

.mobile-drawer-link:hover {
    background: var(--slate-50);
    color: var(--slate-900);
}

.mobile-drawer-btn-track {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--slate-100);
    border: 1px solid rgba(0,0,0,0.02);
    color: var(--slate-800);
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: var(--transition-smooth);
}

.mobile-drawer-btn-track:hover {
    background: var(--slate-200);
    color: var(--slate-900);
}

.mobile-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    .btn-track, .btn-cart {
        display: none !important;
    }
    .profile-container {
        display: none !important;
    }
    .nav-actions {
        gap: 0.75rem;
    }
    .nav-actions .btn-auth,
    .nav-actions .btn-auth-outline {
        display: none !important;
    }
    .logo img {
        height: 2.2rem !important;
    }
    .profile-container span {
        display: none !important;
    }
    .logo-text {
        display: none;
    }
}

/* ── Mobile Responsive Bug Fixes ────────────────────────────────────── */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
}



@media (max-width: 768px) {
    /* Category Nav Circles bigger and horizontally scrollable with decreased spacing */
    .category-nav-bar .container {
        padding: 0 !important;
    }
    .category-nav-wrapper {
        justify-content: flex-start !important;
        gap: 0.4rem !important;
        padding: 0.5rem 1rem !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    .category-nav-item {
        min-width: 64px !important;
        gap: 0.4rem !important;
    }
    .category-circle {
        width: 54px !important;
        height: 54px !important;
        font-size: 1.15rem !important;
    }
    .category-label {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
    }

    /* Catalog tabs filter horizontal and scrollable */
    .catalog-filter {
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        padding-bottom: 0.5rem !important;
        gap: 0.75rem !important;
        -webkit-overflow-scrolling: touch;
        width: 100% !important;
        margin-bottom: 2rem !important;
    }
    .filter-btn {
        flex-shrink: 0 !important;
        padding: 0.6rem 1.15rem !important;
        font-size: 0.85rem !important;
    }

    /* Section header row wrapping (countdown timer) */
    .section-header-row {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 1rem !important;
    }

    /* Footer grid responsive columns & bottom bar */
    .footer {
        padding: 1.5rem 0 2rem 0 !important;
        margin-top: 1rem !important;
    }
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
        margin-bottom: 2rem !important;
    }
    .footer-middle {
        grid-template-columns: 1fr !important;
        gap: 0.5rem !important;
        margin-top: 0rem !important;
    }
    .footer-contact-item {
        padding: 1rem 1.25rem !important;
        gap: 1rem !important;
    }
    .footer-contact-item > i {
        width: 40px !important;
        height: 40px !important;
        font-size: 1.1rem !important;
    }
    .footer-bottom {
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
    }
    .footer-legal-links {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.5rem 1.25rem !important;
    }
    .footer-legal-links a {
        white-space: nowrap !important;
    }
    .footer-legal-links .dot-separator {
        display: none !important;
    }
}

@media (max-width: 575px) {
    .container {
        padding: 0 1rem !important;
    }
}

/* ==========================================================================
   12. LOOKBOOK & STYLE INSPIRATION STYLING
   ========================================================================== */
.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.lookbook-card {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    height: 420px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    border: 1px solid var(--slate-100);
}

.lookbook-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hover-shadow);
}

.lookbook-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.lookbook-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.lookbook-card:hover .lookbook-img {
    transform: scale(1.06);
}

.lookbook-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.7) 50%, rgba(15, 23, 42, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    height: 100%;
    z-index: 2;
}

.lookbook-badge {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 0.3rem 0.6rem;
    border-radius: 0.35rem;
    color: white;
    margin-bottom: 0.75rem;
}

.lookbook-badge.red {
    background: #ef4444;
}

.lookbook-badge.blue {
    background: #3b82f6;
}

.lookbook-badge.orange {
    background: #f97316;
}

.lookbook-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    font-family: var(--font-headings);
}

.lookbook-card-desc {
    font-size: 0.85rem;
    color: #cbd5e1;
    line-height: 1.45;
    margin-bottom: 1.25rem;
}

.lookbook-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    border-bottom: 1.5px solid transparent;
}

.lookbook-link i {
    transition: var(--transition-smooth);
}

.lookbook-link:hover {
    color: #a5b4fc;
    border-color: #a5b4fc;
}

.lookbook-link:hover i {
    transform: translateX(4px);
}


/* ==========================================================================
   13. PREMIUM WARDROBE PACKAGES STYLING
   ========================================================================== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.package-card {
    background: white;
    border: 1px solid var(--slate-200);
    border-radius: 1.75rem;
    padding: 2.25rem 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: var(--slate-300);
}

.package-card.special-card {
    background: linear-gradient(145deg, #ffffff 0%, #f5f3ff 100%);
    border: 2px solid #818cf8;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.08);
}

.package-card.special-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1.75rem;
    padding: 2px;
    background: linear-gradient(135deg, #0062ac, #d71920);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.package-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    padding: 0.3rem 0.65rem;
    border-radius: 1rem;
    background: var(--slate-100);
    color: var(--slate-700);
}

.package-badge.purple {
    background: #f0f7ff;
    color: #0062ac;
}

.package-icon-box {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.package-icon-box.blue {
    background: #eff6ff;
    color: #2563eb;
}

.package-icon-box.purple {
    background: #f0f7ff;
    color: #0062ac;
}

.package-icon-box.green {
    background: #ecfdf5;
    color: #059669;
}

.package-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
    font-family: var(--font-headings);
}

.package-price {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--slate-900);
    font-family: var(--font-headings);
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
}

.package-price span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #64748b;
    margin-left: 0.25rem;
}

.package-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.package-features li {
    font-size: 0.88rem;
    color: var(--slate-800);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.package-features li i {
    font-size: 0.8rem;
    color: #d71920;
}

.package-btn {
    width: 100%;
    padding: 0.85rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.package-btn.btn-blue {
    background: var(--slate-900);
    color: white;
}

.package-btn.btn-blue:hover {
    background: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.package-btn.btn-purple {
    background: linear-gradient(135deg, #0062ac, #004f8b);
    color: white;
}

.package-btn.btn-purple:hover {
    opacity: 0.95;
    box-shadow: 0 4px 15px rgba(0, 98, 172, 0.25);
}

.package-btn.btn-green {
    background: var(--slate-900);
    color: white;
}

.package-btn.btn-green:hover {
    background: #b81218;
    box-shadow: 0 4px 12px rgba(184, 18, 24, 0.25);
}


/* ==========================================================================
   14. LOOKBOOK & PACKAGES MOBILE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 991px) {
    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 767px) {
    .lookbook-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .lookbook-card {
        height: 240px;
    }
    .lookbook-img {
        object-position: top;
    }
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .package-card {
        padding: 1.75rem 1.5rem;
    }
}
/* Password toggle button styles */
.password-toggle-wrapper {
    position: relative;
}

.password-toggle-wrapper .form-input {
    padding-right: 3rem !important;
}

/* Hide native browser password reveal/clear buttons */
.password-toggle-wrapper .form-input::-ms-reveal,
.password-toggle-wrapper .form-input::-ms-clear {
    display: none;
}

.btn-toggle-password {
    position: absolute;
    right: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
    outline: none;
    z-index: 10;
}

.btn-toggle-password:hover {
    color: var(--slate-900);
}

/* Custom mobile overrides for promotional carousel */
@media (max-width: 768px) {
    .hero-carousel-section {
        padding: 0 !important;
    }
    .hero-carousel-section .container {
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .carousel-container {
        border-radius: 0 !important;
        aspect-ratio: 1200 / 600 !important;
    }
    .carousel-dots {
        bottom: 0.75rem;
    }
}

/* Product Icons Homepage Section */
.product-icons-section {
    display: none !important;
}

.product-icons-wrapper {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    gap: 3.5rem;
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    padding: 0.5rem 0;
    width: 100%;
}

.product-icons-wrapper::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.product-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    min-width: 90px;
    text-align: center;
}

.product-icon-item:hover {
    transform: translateY(-4px);
}

.product-icon-circle {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    border: 2px solid var(--slate-200);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.product-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-icon-item:hover .product-icon-circle {
    border-color: var(--indigo-600);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    transform: scale(1.08);
}

.product-icon-item:hover .product-icon-circle img {
    transform: scale(1.1);
}

.product-icon-label {
    font-family: var(--font-headings);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--slate-800);
    transition: var(--transition-smooth);
}

.product-icon-item:hover .product-icon-label {
    color: var(--indigo-600);
}

@media (max-width: 768px) {
    .product-icons-section {
        display: block !important;
        padding: 1rem 0 !important;
    }
    .product-icons-section .container {
        padding: 0 !important;
    }
    .product-icons-wrapper {
        justify-content: flex-start !important;
        gap: 0.4rem !important;
        padding: 0.5rem 1rem !important;
    }
    .product-icon-item {
        min-width: 64px !important;
        gap: 0.4rem !important;
    }
    .product-icon-circle {
        width: 54px !important;
        height: 54px !important;
        border-width: 1.5px !important;
    }
    .product-icon-label {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
    }
}

/* Middle Carousel (Banner Images 2) Scoped Styles */
.middle-carousel-section {
    display: none !important; /* Hide on laptop & desktop viewports */
}

@media (max-width: 1024px) {
    .middle-carousel-section {
        display: block !important; /* Show on tablet & phone viewports */
        padding: 2rem 0;
        background: #f8fafc;
        border-bottom: 1px solid var(--slate-200);
    }

    .middle-carousel-section .carousel-container {
        aspect-ratio: 2 / 1 !important;
        max-width: 100%;
        margin: 0 auto;
        border-radius: 1rem;
        box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1);
    }
}

@media (max-width: 768px) {
    .middle-carousel-section {
        padding: 0 !important;
    }
    .middle-carousel-section .container {
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .middle-carousel-section .carousel-container {
        border-radius: 0 !important;
        aspect-ratio: 2 / 1 !important;
        max-height: none !important;
    }
}

/* Filtered Explore Products Section */
.filtered-products-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.filter-pills-bar {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    padding: 0.5rem 0 1.5rem 0;
    margin-bottom: 2rem;
    align-items: center;
}

.filter-pills-bar::-webkit-scrollbar {
    display: none; /* Safari/Chrome */
}

/* Base filter pill styling */
.filter-pill {
    padding: 0.65rem 1.35rem;
    border-radius: 2rem;
    background: white;
    border: 1px solid var(--slate-200);
    color: var(--slate-700);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.filter-pill:hover {
    border-color: var(--slate-300);
    background: var(--slate-50);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Icon style in pills */
.filter-pill .filter-icon {
    font-size: 0.85rem;
    color: #f97316; /* Warm light orange */
    transition: color 0.25s ease;
}

.filter-pill:hover .filter-icon {
    color: #ea580c; /* Darker orange on hover */
}

/* Budget Filters Active (Soft Green) */
.filter-pill[data-filter-type="price"].active {
    border-color: var(--emerald-500) !important;
    background: rgba(16, 185, 129, 0.06) !important;
    color: #047857 !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.12) !important;
}
.filter-pill[data-filter-type="price"].active .filter-icon {
    color: #047857 !important;
}

/* Men Filter Active (Soft Blue) */
.filter-pill[data-filter-val="men"].active {
    border-color: var(--indigo-500) !important;
    background: rgba(99, 102, 241, 0.06) !important;
    color: var(--indigo-700) !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.12) !important;
}
.filter-pill[data-filter-val="men"].active .filter-icon {
    color: var(--indigo-700) !important;
}

/* Women Filter Active (Soft Rose/Pink) */
.filter-pill[data-filter-val="women"].active {
    border-color: #ec4899 !important;
    background: rgba(236, 72, 153, 0.06) !important;
    color: #be185d !important;
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.12) !important;
}
.filter-pill[data-filter-val="women"].active .filter-icon {
    color: #be185d !important;
}

/* Kids Filter Active (Soft Amber/Orange) */
.filter-pill[data-filter-val="kids"].active {
    border-color: #f59e0b !important;
    background: rgba(245, 158, 11, 0.06) !important;
    color: #b45309 !important;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.12) !important;
}
.filter-pill[data-filter-val="kids"].active .filter-icon {
    color: #b45309 !important;
}

/* Offers Filter Active (Soft Red) */
.filter-pill[data-filter-type="offers"].active {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.06) !important;
    color: #b91c1c !important;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.12) !important;
}
.filter-pill[data-filter-type="offers"].active .percent-icon {
    color: #b91c1c !important;
}

/* Dropdown Pill Styling */
.filter-dropdown-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.dropdown-icon-left {
    position: absolute;
    left: 1.15rem;
    font-size: 0.85rem;
    color: #f97316; /* Warm light orange */
    pointer-events: none;
    z-index: 5;
    transition: color 0.25s ease;
}

.filter-dropdown-wrapper:hover .dropdown-icon-left {
    color: #ea580c; /* Darker orange on hover */
}

.dropdown-pill {
    appearance: none;
    -webkit-appearance: none;
    padding-left: 2.35rem !important; /* Extra padding for left icon */
    padding-right: 2.25rem !important; /* Space for select-chevron */
    cursor: pointer;
}

.dropdown-arrow {
    position: absolute;
    right: 1rem;
    font-size: 0.75rem;
    color: var(--slate-500);
    pointer-events: none;
}

.filter-pill.active + .dropdown-arrow {
    color: var(--indigo-600);
}

/* Product Feed Grid */
.product-feed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    width: 100%;
}

/* Initial load state (before JS takes over) - hide extra cards */
.product-feed-grid:not(.js-active) .product-feed-card:nth-child(n+9) {
    display: none;
}

/* Card design */
.product-feed-card {
    background: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -10px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--slate-100);
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-feed-card:hover {
    box-shadow: 0 20px 35px -10px rgba(15, 23, 42, 0.15);
}

.card-img-wrapper {
    position: relative;
    height: 200px;
    width: 100%;
    overflow: hidden;
    background: var(--slate-100);
}

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

.product-feed-card:hover .card-img {
    transform: scale(1.06);
}

/* Overlays on Image */
.favorite-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--slate-600);
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    z-index: 5;
}

.favorite-btn:hover {
    transform: scale(1.1);
    background: white;
}

.favorite-btn.active {
    color: #ef4444;
}

.discount-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.25);
    z-index: 5;
}

.rating-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: white;
    padding: 0.4rem 0.75rem;
    border-radius: 0.75rem;
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 5;
}

.rating-badge i {
    color: #eab308; /* Star color */
}

/* Card Body */
.card-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.card-category {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--indigo-600);
    letter-spacing: 0.5px;
}

.card-gender-tag {
    font-size: 0.68rem;
    font-weight: 700;
    background: var(--slate-100);
    color: var(--slate-600);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.card-desc {
    font-size: 0.85rem;
    color: var(--slate-500);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.card-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--slate-100);
}

.card-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--slate-900);
}

.card-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    background: var(--slate-900);
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.2s ease;
}

.product-feed-card:hover .card-btn {
    background: var(--indigo-600);
    padding-left: 1.25rem;
}

/* Empty State Styling */
.empty-state-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 1.5rem;
    border: 1px solid var(--slate-100);
    max-width: 500px;
    margin: 0 auto;
}

.empty-icon {
    font-size: 3rem;
    color: var(--slate-300);
    margin-bottom: 1.5rem;
}

.empty-state-container h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 0.5rem;
}

.empty-state-container p {
    font-size: 0.9rem;
    color: var(--slate-500);
    margin-bottom: 1.5rem;
}

.btn-clear-filters {
    padding: 0.6rem 1.5rem;
    background: var(--indigo-600);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-clear-filters:hover {
    background: var(--indigo-700);
}

/* Mobile adjustments (Swiggy / Zomato card lists) */
@media (max-width: 768px) {
    .filtered-products-section {
        padding: 2.5rem 0;
    }
    
    .filter-pills-bar {
        padding-left: 1rem;
        padding-right: 1rem;
        margin-left: -1rem;
        margin-right: -1rem;
        margin-bottom: 0rem;
    }

    .product-feed-grid {
        grid-template-columns: 1fr !important; /* Stack vertically */
        gap: 1rem !important;
    }

    .product-feed-grid:not(.js-active) .product-feed-card:nth-child(n+5) {
        display: none;
    }

    .product-feed-card {
        flex-direction: row !important;
        align-items: stretch !important;
        height: 130px !important;
        border-radius: 1rem !important;
        box-shadow: 0 4px 15px rgba(15, 23, 42, 0.05) !important;
        background: white !important;
        overflow: hidden !important;
    }

    .card-img-wrapper {
        width: 125px !important;
        height: 100% !important;
        flex-shrink: 0 !important;
        border-radius: 0 !important;
    }

    .card-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .card-info {
        flex-grow: 1 !important;
        padding: 0.65rem 0.85rem !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        overflow: hidden !important;
    }

    .card-header-row {
        margin-bottom: 0.15rem !important;
        display: flex !important;
        gap: 0.35rem !important;
    }

    .card-category, .card-gender-tag {
        font-size: 0.6rem !important;
        padding: 0.15rem 0.35rem !important;
        letter-spacing: 0 !important;
    }

    .card-title {
        font-size: 0.9rem !important;
        font-weight: 700 !important;
        color: var(--slate-900) !important;
        line-height: 1.25 !important;
        margin-bottom: 0 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .card-desc {
        display: none !important;
    }

    .card-footer-row {
        margin-top: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .card-price {
        font-size: 1.05rem !important;
        font-weight: 700 !important;
        color: var(--emerald-600) !important;
    }

    .card-btn {
        padding: 0.35rem 0.65rem !important;
        font-size: 0.7rem !important;
        border-radius: 0.4rem !important;
        background: var(--indigo-600) !important;
        color: white !important;
    }

    .favorite-btn {
        top: 0.4rem !important;
        left: 0.4rem !important;
        right: auto !important;
        width: 1.65rem !important;
        height: 1.65rem !important;
        font-size: 0.7rem !important;
    }

    .rating-badge {
        top: 0.4rem !important;
        right: 0.4rem !important;
        bottom: auto !important;
        font-size: 0.6rem !important;
        padding: 0.15rem 0.3rem !important;
        border-radius: 0.4rem !important;
        gap: 0.2rem !important;
    }

    .discount-badge {
        bottom: 0.4rem !important;
        left: 0.4rem !important;
        font-size: 0.55rem !important;
        padding: 0.15rem 0.3rem !important;
        border-radius: 0.4rem !important;
        gap: 0.2rem !important;
    }
}

/* Load More Button Styling */
.load-more-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    width: 100%;
}

.btn-load-more {
    padding: 0.85rem 2.5rem;
    border-radius: 2rem;
    background: white;
    color: var(--slate-900);
    border: 1px solid var(--slate-300);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-load-more:hover {
    background: var(--slate-900);
    color: white;
    border-color: var(--slate-900);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-load-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.btn-load-more:hover i {
    transform: translateY(2px);
}

/* Sticky Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--slate-100);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
    z-index: 9999;
    justify-content: space-around;
    align-items: center;
    padding: 0.25rem 0;
}

.mobile-bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--slate-500);
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 500;
    width: 25%;
    position: relative;
    transition: all 0.2s ease;
    gap: 0.25rem;
}

.mobile-bottom-nav-item i {
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.mobile-bottom-nav-item span {
    font-family: var(--font-body);
}

.mobile-bottom-nav-item:hover,
.mobile-bottom-nav-item.active {
    color: var(--indigo-600);
}

.mobile-bottom-nav-item.active {
    font-weight: 700;
}

.mobile-bottom-nav-item.active i {
    transform: translateY(-2px);
    color: var(--indigo-600);
}

.mobile-cart-badge {
    position: absolute;
    top: -4px;
    right: 20%;
    background: #ef4444;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.1rem 0.35rem;
    border-radius: 1rem;
    min-width: 1rem;
    text-align: center;
    line-height: 1;
    border: 2px solid white;
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    body {
        padding-bottom: 60px;
    }
}

body.drawer-active .mobile-bottom-nav {
    display: none !important;
}

@media (max-width: 768px) {
    /* Ensure all content sections on the home page have equal padding on mobile screens */
    .deals-section,
    .product-icons-section,
    .filtered-products-section,
    .lookbook-section,
    .testimonials-section {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }
}

/* Remove colorful gradient border and click highlights on mobile screens */
@media (max-width: 991px) {
    .creative-glow::after,
    .creative-glow:hover::after,
    .creative-glow:focus::after,
    .creative-glow:active::after,
    .product-feed-card::after,
    .product-feed-card:hover::after,
    .product-feed-card:focus::after,
    .product-feed-card:active::after,
    .deal-card::after,
    .deal-card:hover::after {
        display: none !important;
        opacity: 0 !important;
        content: none !important;
        width: 0 !important;
        height: 0 !important;
    }

    .creative-glow,
    .creative-glow:hover,
    .creative-glow:focus,
    .creative-glow:active,
    .product-feed-card,
    .product-feed-card:hover,
    .product-feed-card:focus,
    .product-feed-card:active,
    .deal-card,
    .deal-card:hover {
        border-color: var(--slate-100) !important;
        outline: none !important;
        -webkit-tap-highlight-color: transparent !important;
    }
}

/* Extracted layout styling classes from booking-modal.blade.php */
.booking-free-label {
    color: var(--emerald-500);
    font-weight: 600;
}
.booking-slots-container {
    margin-bottom: 2rem;
}
.btn-guest-login {
    background: var(--indigo-500) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 3rem !important;
    text-decoration: none !important;
}
.margin-left-half {
    margin-left: 0.5rem;
}
.success-actions-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

/* Extracted layout styling classes from footer.blade.php */
.footer-logo-img {
    height: 3.5rem;
    width: auto;
    object-fit: contain;
}
.footer-media-container {
    border-radius: 0.75rem;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    margin-top: 0.75rem;
}
.footer-iframe-map {
    border: 0;
    display: block;
}
.footer-video-box {
    height: 130px;
    background: #0f172a;
    position: relative;
}
.footer-iframe-video {
    border: 0;
    display: block;
    width: 100%;
    height: 100%;
}
.footer-whatsapp-icon {
    color: #25d366;
}
.footer-designer-link {
    color: var(--indigo-500);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

/* Extracted layout styling classes from header.blade.php */
.header-logo-img {
    height: 3rem;
    width: auto;
    object-fit: contain;
}
.profile-info-user-name {
    font-weight: 600;
    font-size: 0.9rem;
}
.profile-info-chevron {
    font-size: 0.75rem;
    color: #64748b;
}
.profile-dropdown-separator {
    border: 0;
    border-top: 1px solid #f1f5f9;
}
.dropdown-item-signout {
    color: #ef4444;
}
.btn-auth-outline-no-border {
    border: none !important;
}
.mobile-drawer-signout-form {
    padding: 0 1rem;
    margin-top: 1rem;
}
.btn-mobile-signout {
    width: 100%;
    border-radius: 0.5rem;
    justify-content: center;
    background: #ef4444 !important;
    border: none;
    height: 2.5rem;
    color: white;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.wishlist-red-heart {
    color: #ef4444;
}

/* Extracted layout styling classes from tracking-modal.blade.php */
.otp-warning-text {
    font-size: 0.7rem;
    color: #64748b;
    margin-top: 0.5rem;
}
.tracker-billing-list {
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.tracker-billing-row {
    display: flex;
    justify-content: space-between;
}
.tracker-billing-row-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    border-top: 1px solid #e2e8f0;
    padding-top: 0.5rem;
}

/* Extracted layout styling classes from auth blades */
.auth-error-wrapper {
    background: #fef2f2;
    border: 1px solid #fee2e2;
    color: #ef4444;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.auth-secure-portal-label {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}
.auth-footer-prompt {
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 2rem;
}
.auth-footer-link {
    color: var(--indigo-500);
    font-weight: 600;
    text-decoration: none;
}
.auth-invite-alert-wrapper {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.25);
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    color: #4f46e5;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.05);
}
.auth-invite-icon {
    font-size: 1.1rem;
    color: #a855f7;
}
.auth-referrer-strong {
    color: #4f46e5;
}
.auth-confirm-password-group {
    margin-bottom: 2.5rem;
}

main {
    flex: 1 0 auto;
}

/* Custom Design Enquiry Bar */
.custom-enquiry-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--slate-200);
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    z-index: 9998;
    padding: 0.75rem 1rem;
    display: none; /* Controlled by JS */
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .custom-enquiry-bar {
        bottom: 75px; /* Above the mobile bottom nav */
        width: 92%;
    }
}

.custom-enquiry-bar-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid var(--slate-100);
    background: var(--slate-50);
}

.custom-enquiry-bar-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
}

.custom-enquiry-bar-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--slate-800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.custom-enquiry-bar-status {
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.status-checking { color: #f59e0b; }
.status-estimated { color: #10b981; }

.custom-enquiry-bar-btn {
    background: var(--indigo-500);
    color: white;
    border: none;
    border-radius: 0.5rem;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.custom-enquiry-bar-btn:hover {
    background: var(--indigo-600);
}

/* Modal button customizations */
.swal2-confirm-custom {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
}
.swal2-deny-custom {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
}
.swal2-cancel-custom {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
}

/* Premium SweetAlert2 Custom Styling */
.premium-swal-popup-custom,
.swal2-popup {
    padding: 1rem 0 0 0 !important;
    border-radius: 2rem !important; /* Matches native modal-container */
    overflow: hidden !important;
    box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.25) !important; /* Matches native modal-container */
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    font-family: var(--font-body), sans-serif !important;
}

.premium-swal-popup-custom .swal2-title,
.swal2-popup .swal2-title {
    font-family: var(--font-headings), sans-serif !important;
    font-weight: 800 !important;
    color: var(--slate-900) !important;
    font-size: 1.5rem !important;
    padding-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.premium-swal-popup-custom .swal2-html-container,
.swal2-popup .swal2-html-container {
    margin: 0 1.25rem 1.25rem 1.25rem !important;
    padding: 0 !important;
    max-height: 80vh;
    overflow-y: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    color: #64748b !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    font-family: var(--font-body), sans-serif !important;
}

@media (max-width: 480px) {
    .premium-swal-popup-custom .swal2-html-container,
    .swal2-popup .swal2-html-container {
        margin: 0 0.6rem 0.85rem 0.6rem !important;
    }
}

/* Replicate native website button styling on SweetAlert2 buttons */
.premium-swal-popup-custom .swal2-actions,
.swal2-popup .swal2-actions {
    margin-top: 0.5rem !important;
    margin-bottom: 2rem !important;
    gap: 0.75rem !important;
}

.premium-swal-popup-custom .swal2-actions button,
.swal2-popup .swal2-actions button {
    font-family: var(--font-headings), sans-serif !important;
    font-weight: 700 !important;
    text-transform: none !important;
    border-radius: 0.75rem !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 0.9rem !important;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: none !important;
    outline: none !important;
}

.premium-swal-popup-custom .swal2-actions button:hover,
.swal2-popup .swal2-actions button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
}

.premium-swal-popup-custom .swal2-actions button:active,
.swal2-popup .swal2-actions button:active {
    transform: translateY(0) !important;
}

.premium-swal-popup-custom .swal2-confirm,
.swal2-popup .swal2-confirm {
    background: linear-gradient(135deg, var(--indigo-500) 0%, var(--indigo-600) 100%) !important;
    color: white !important;
    box-shadow: 0 6px 20px -5px rgba(0, 98, 172, 0.4) !important;
}

.premium-swal-popup-custom .swal2-cancel,
.swal2-popup .swal2-cancel {
    background: var(--slate-100) !important;
    color: var(--slate-800) !important;
}

.premium-swal-popup-custom .swal2-deny,
.swal2-popup .swal2-deny {
    background: var(--slate-800) !important;
    color: white !important;
}

.premium-swal-popup-custom .swal2-icon,
.swal2-popup .swal2-icon {
    margin: 1.5rem auto 0.5rem auto !important;
    border-width: 3px !important;
    scale: 0.95;
    transition: transform 0.3s ease;
}

.premium-swal-popup-custom .swal2-icon:hover,
.swal2-popup .swal2-icon:hover {
    transform: scale(1.05);
}

.premium-swal-popup-custom .swal2-icon.swal2-success,
.swal2-popup .swal2-icon.swal2-success {
    border-color: #10b981 !important;
    color: #10b981 !important;
}

.premium-swal-popup-custom .swal2-icon.swal2-success [class^='swal2-success-line'],
.swal2-popup .swal2-icon.swal2-success [class^='swal2-success-line'] {
    background-color: #10b981 !important;
}

.premium-swal-popup-custom .swal2-icon.swal2-success .swal2-success-ring,
.swal2-popup .swal2-icon.swal2-success .swal2-success-ring {
    border: 3px solid rgba(16, 185, 129, 0.3) !important;
}

/* Custom styles for error/warning/info/question icons */
.premium-swal-popup-custom .swal2-icon.swal2-error,
.swal2-popup .swal2-icon.swal2-error {
    border-color: #ef4444 !important;
    color: #ef4444 !important;
}
.premium-swal-popup-custom .swal2-icon.swal2-error [class^='swal2-x-mark-line'],
.swal2-popup .swal2-icon.swal2-error [class^='swal2-x-mark-line'] {
    background-color: #ef4444 !important;
}

.premium-swal-popup-custom .swal2-icon.swal2-warning,
.swal2-popup .swal2-icon.swal2-warning {
    border-color: #f59e0b !important;
    color: #f59e0b !important;
}

.premium-swal-popup-custom .swal2-icon.swal2-info,
.swal2-popup .swal2-icon.swal2-info {
    border-color: #3b82f6 !important;
    color: #3b82f6 !important;
}

.premium-swal-popup-custom .swal2-icon.swal2-question,
.swal2-popup .swal2-icon.swal2-question {
    border-color: #6366f1 !important;
    color: #6366f1 !important;
}

.hover-zoom-img {
    transition: transform 0.3s ease;
}
.hover-zoom-img:hover {
    transform: scale(1.05);
}

@keyframes pulse-green {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}
.pricing-card-pulse {
    animation: pulse-green 3s infinite ease-in-out;
}

/* Bulletproof background scroll locking */
html.swal2-shown,
body.swal2-shown {
    overflow: hidden !important;
    height: 100% !important;
}

.swal2-container {
    background: rgba(15, 23, 42, 0.45) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    z-index: 999999 !important; /* Ensure SweetAlert2 is always on top of all modals */
}

/* Custom modal buttons styling */
.btn-action-custom {
    white-space: nowrap !important;
    word-break: keep-all !important;
    letter-spacing: -0.01em;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.btn-action-custom:hover {
    transform: translateY(-2px) !important;
    filter: brightness(1.06) !important;
}
.btn-action-custom:active {
    transform: translateY(0) scale(0.98) !important;
}










