html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-blue);
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-blue), #ff3366);
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* General Settings */
:root {
    --primary-blue: #138bbd;
    --dark-blue: #09729d;
    --orange: #f26f21;
    --yellow: #facc15;
    --yellow-dark: #f0b500;
    --text-dark: #333;
    --text-light: #fff;
    --border-color: #eee;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* DEFAULT (Desktop / Tablet) */
.product-slider {
    overflow: hidden;
}

.product-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.product-item {
    flex: 0 0 calc(25% - 15px);
    /* 4 cards desktop */
}

/* TABLET */
@media (max-width: 992px) {
    .product-item {
        flex: 0 0 calc(50% - 10px);
        /* 2 cards tablet */
    }
}

/* MOBILE */
@media (max-width: 576px) {
    .product-item {
        flex: 0 0 100%;
        /* 🔥 Only 1 card */
        max-width: 100%;
    }

    .product-track {
        gap: 10px;
    }
}

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

.section-padding {
    padding: 56px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: 16px;
    color: #777;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Base Utility */
.text-center {
    text-align: center;
}

.text-muted {
    color: #888;
}

.text-warning {
    color: var(--yellow-dark);
}

.text-primary {
    color: var(--primary-blue);
}

.mt-3 {
    margin-top: 15px;
}

.mt-4 {
    margin-top: 30px;
}

.mb-2 {
    margin-bottom: 5px;
}

.mb-3 {
    margin-bottom: 15px;
}

.pr-4 {
    padding-right: 30px;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

.align-items-start {
    align-items: flex-start;
}

.justify-content-between {
    justify-content: space-between;
}

.d-inline-block {
    display: inline-block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    border: none;
    font-family: var(--font-heading);
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    background-color: var(--dark-blue);
}

.btn-dark-rounded {
    background-color: #000;
    color: #fff;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
    font-size: 12px;
}

.btn-dark-rounded:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.btn-green-rounded {
    background-color: #4CAF50;
    color: #fff;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 1px;
}

.btn-green-rounded:hover {
    background-color: #43a047;
    transform: translateY(-2px);
}

/* Dots Nav */
.dots-nav .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.dots-nav .dot.active {
    background-color: var(--primary-blue);
}

/* TOP BAR */
/* TOP BAR MARQUEE */
.top-bar {
    background: #222;
    /* Darker bar */
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
}

.offer-badge {
    background: #ff3366;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 11px;
    margin-right: 15px;
    z-index: 2;
    box-shadow: 0 0 10px rgba(255, 51, 102, 0.5);
}

.top-bar-marquee {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

.marquee-text {
    display: inline;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* HEADER ACTION STYLES */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-link {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-link i {
    font-size: 18px;
}

.header-link .badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #ff3366;
    color: white;
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 50%;
    min-width: 15px;
    text-align: center;
}

.header-theme-btn {
    background: transparent;
    border: 1px solid #ddd;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.header-theme-btn:hover {
    background: #f4f4f4;
    border-color: #333;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    padding: 10px;
}

.main-nav.open {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-height: 80vh;
    overflow-y: auto;
}

.main-nav.open .nav-links {
    flex-direction: column;
    padding: 20px;
}

.main-nav.open .nav-links li {
    margin: 10px 0;
}

.main-nav.open .mega-menu {
    position: static;
    box-shadow: none;
    width: 100%;
    display: block; /* Show menu content on mobile */
    padding: 10px;
    background: #f9f9f9;
}
.main-nav.open .mega-col {
    width: 100%;
    margin-bottom: 15px;
}
.main-nav.open .mega-col img {
    display: none; /* Hide images on mobile nav to save space */
}



.lang-select {
    background: transparent;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    outline: none;
    transition: 0.3s;
}

.lang-select:hover {
    border-color: var(--primary-blue);
}

[data-theme="dark"] .lang-select {
    color: #fff;
    border-color: #444;
    background: #222;
}

.logo img {
    height: 61px;
    filter: drop-shadow(0 0 8px rgba(0, 198, 255, 0.6));
    transition: 0.3s;
    padding: 3px;
    width: 73px;
}

.logo img:hover {
    filter: drop-shadow(0 0 15px #00c6ff);
}

/* Responsive (mobile) */
@media (max-width: 768px) {
    .logo img {
        height: 45px;
    }

    .main-nav {
        display: none;
    }

    .header-content {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
    }

    .logo {
        order: 1;
        width: auto;
        flex-grow: 1;
        display: flex;
        justify-content: flex-start;
    }

    .hamburger {
        display: block;
        order: 2;
        width: auto;
        margin-left: 10px;
    }

    .search-bar {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }

    .header-actions {
        order: 4;
        width: 100%;
        display: flex;
        justify-content: space-around;
        margin-top: 15px;
        padding-top: 10px;
        border-top: 1px solid #eee;
    }

    .header-actions .header-link span[data-i18n="login"] {
        display: none;
    }
}

.search-bar {
    display: flex;
    align-items: center;
    width: 60%;
    height: 40px;
    border: none;
    border-radius: 4px;
    transition: 0.3s;
    position: relative;
}

.search-bar.focused {
    box-shadow: 0 0 0 2px var(--primary-blue), 0 0 0 3px rgba(19, 139, 189, 0.3);
    border-radius: 4px;
}

.search-select {
    padding: 0 10px;
    height: 100%;
    border: 1px solid #cdcdcd;
    border-right: none;
    border-radius: 4px 0 0 4px;
    background: #f8f9fa;
    color: #333;
    outline: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
}

.search-select:hover,
.search-select:focus {
    background: #e9ecef;
}

.search-select option:checked {
    background: #e9ecef;
    color: #333;
}

.search-input-wrapper {
    display: flex;
    flex: 1;
    height: 100%;
}

.search-input-wrapper input {
    width: 100%;
    height: 100%;
    padding: 10px 15px;
    border: 1px solid #cdcdcd;
    border-right: none;
    outline: none;
    font-size: 15px;
}

.search-btn {
    background: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    border-radius: 0 4px 4px 0;
    padding: 0 20px;
    height: 100%;
    cursor: pointer;
    color: #fff;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: #0f6e96;
}

.search-suggestions {
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: none;
    max-height: 250px;
    overflow-y: auto;
    text-align: left;
}

.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.2s;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: var(--primary-blue);
    color: #fff;
}

.suggestion-item:hover i {
    color: #fff !important;
}

.suggestion-match {
    font-weight: 800;
    color: var(--primary-blue);
}

/* MAIN NAV */
.main-nav {
    background: #272757;
    color: #efeaea;
    position: relative;
}

.nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links li a {
    display: block;
    padding: 15px 20px;
    color: white;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.nav-links li a i {
    font-size: 10px;
    margin-left: 5px;
}

.nav-links li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-promo a {
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* DROPDOWN MENU */
.nav-links li {
    position: relative;
}

/* Simple Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 2px solid var(--primary-blue);
}

.nav-links li:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    position: relative;
    border-bottom: 1px solid #f1f1f1;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
}

.dropdown-menu li>a:hover {
    color: var(--primary-blue);
    background: transparent;
}

.dropdown-menu li.active>a {
    color: var(--primary-blue);
}

/* Sub-Dropdown */
.sub-dropdown {
    position: absolute;
    top: 0;
    left: 100%;
    width: 220px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-left: 1px solid #eee;
}

.has-sub:hover>.sub-dropdown {
    opacity: 1;
    visibility: visible;
}

/* Mega Menu */
.nav-links li.has-mega {
    position: static;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    border-top: 3px solid var(--primary-blue);
}

.nav-links li.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-col {
    flex: 1;
    padding: 0 15px;
}

.mega-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.mega-col img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 15px;
}

.mega-links li {
    margin-bottom: 8px;
}

.mega-links li a {
    color: #555;
    font-size: 13px;
    font-weight: 500;
    padding: 0;
    text-transform: none;
    font-family: var(--font-body);
}

.mega-links li a:hover {
    color: var(--primary-blue);
    background: transparent;
}


/* HERO SECTION */
/* .hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
  font-family: sans-serif;
}

.slides {
  display: flex;
}

.slide {
  min-width: 100%;
  height: 90vh;
  background-size: cover;
  background-position: center;
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

.content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
}

.content h1 {
  font-size: 60px;
  font-weight: 800;
}

.content p {
  font-size: 20px;
  margin: 15px 0;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #ff7a18;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: #ff5200;
}

/* Dots */
.hero-slider {
    position: relative;
    height: 90vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 1s;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

/* FIX: image visible */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* overlay */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

/* text */
.content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 650px;
    z-index: 2;
}

.content h1,
.content p,
.content .hero-btn {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide.active .content h1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.slide.active .content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.slide.active .content .hero-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.content h1 {
    font-family: var(--font-heading);
    font-size: 68px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 3px 5px 15px rgba(0, 0, 0, 0.4);
    background: linear-gradient(90deg, #ffffff, #dcdcdc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.content p {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 40px;
    text-shadow: 2px 3px 8px rgba(0, 0, 0, 0.5);
    letter-spacing: 1.5px;
    color: #f1f1f1;
}

.hero-btn {
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff7a18, #e52d27) !important;
    color: #fff !important;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(229, 45, 39, 0.3);
    display: inline-block;
    border: none;
}

.slide.active .content .hero-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(229, 45, 39, 0.5);
    background: linear-gradient(135deg, #ff8c3a, #ff3c36) !important;
}

/* dots */
.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.dots span {
    height: 12px;
    width: 12px;
    margin: 5px;
    background: #fff;
    display: inline-block;
    border-radius: 50%;
    opacity: 0.5;
}

.dots .active {
    opacity: 1;
    background: orange;
}

/* TICKER */
.ticker {
    width: 100%;
    overflow: hidden;

    /* change if needed */
    color: #000;
    padding: 10px 0;
}

.ticker-track {
    display: inline-flex;
    gap: 60px;
    white-space: nowrap;
    animation: scrollTicker 20s linear infinite;
}

.ticker-track span {
    font-size: 16px;
    /* same rakha */
}

/* Smooth infinite scroll */
@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ticker-right i {
    animation: rotate 5s linear infinite;
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

.products.container {
    padding-left: 0;
    padding-right: 0;
}

/* HEADER FLEX */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* remove center align */
.products {
    text-align: left;
}

/* VIEW ALL BUTTON */
.view-all {
    font-size: 20px;
    color: #ff6a00;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.view-all:hover {
    color: #000;
    letter-spacing: 1px;
}

/* SLIDER */
.product-slider {
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 20px;
    /* thoda edge spacing */
}

.product-slider::-webkit-scrollbar {
    display: none;
}

/* TRACK */
.product-track {
    display: flex;
    gap: 20px;
}

/* 🔥 EXACT 4 CARDS FIT */
.card {
    flex: 0 0 calc(25% - 15px);
    /* 👈 4 cards */
    scroll-snap-align: start;
}

/* SNAP EFFECT */
.product-slider {
    scroll-snap-type: x mandatory;
}

/* IMAGE */
.card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
}

/* TEXT */
.card h4 {
    margin-top: 10px;
    font-size: 15px;
}

.card p {
    font-size: 13px;
    color: #777;
}

/* SLIDER BUTTONS */
.slider-wrapper {
    position: relative;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.prev-btn {
    left: -20px;
}

.next-btn {
    right: -20px;
}

/* BEST SELLERS GRID */
.cat-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.cat-product-grid.list-mode {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cat-product-grid.list-mode .related-card {
    display: flex;
    align-items: center;
    gap: 25px;
    text-align: left;
    padding: 20px !important;
}

.cat-product-grid.list-mode .product-img-box {
    width: 250px;
    height: 180px;
    flex-shrink: 0;
}

.cat-product-grid.list-mode .product-info-wrap {
    flex: 1;
}

.cat-product-grid.list-mode .product-list-desc {
    display: block !important;
    margin-top: 10px;
}

.cat-product-grid.grid-mode .product-list-desc {
    display: none;
}

/* Price Slider Track Stylings */
.price-slider-track {
    height: 6px;
    background: #eee;
    border-radius: 10px;
    position: relative;
    margin: 25px 0 15px;
    cursor: pointer;
}

.price-slider-fill {
    position: absolute;
    height: 100%;
    background: var(--primary-blue);
    border-radius: 10px;
    left: 0%;
    right: 0%;
}

.price-handle {
    width: 18px;
    height: 18px;
    background: #fff;
    border: 3px solid var(--primary-blue);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: grab;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.price-handle.grabbing {
    cursor: grabbing;
}

.product-item {
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: #fff;
    text-align: left;
    overflow: hidden;
}

.product-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #ccc;
}

.product-img-box {
    position: relative;
    aspect-ratio: 1/1;
    height: auto;
    width: 100%;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.product-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.products.container {
    padding-left: 0;
    padding-right: 0;
    margin-top: 98px;
}

.slider-wrapper {
    margin: 40px 0;
}

.product-slider {
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0;
    /* 🔥 remove inner gap */
}

.product-img-box {
    position: relative;
    height: 300px;
    overflow: hidden;
}

/* BOTH IMAGES */
.product-img-box img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    transition: 0.5s ease;
}

/* HOVER IMAGE CORE */
.main-img {
    opacity: 1;
    z-index: 1;
}

.hover-img {
    opacity: 0;
    transform: scale(1.1);
    z-index: 2;
}

.product-item:hover .main-img {
    opacity: 0;
    transform: scale(1.05);
}

.product-item:hover .hover-img {
    opacity: 1;
    transform: scale(1);
}

/* PRODUCT INFO REFINEMENT */
.product-info {
    padding: 12px 15px 20px;
}

.product-info h5 {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Open Sans', sans-serif;
}

.product-info .price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 5px;
}

.product-info .sale-price {
    font-size: 16px;
    font-weight: 800;
    color: #111;
}

.product-info .old-price {
    font-size: 13px;
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
}

/* BADGES & ACCESSORIES */
.card-badges {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 5;
}

.free-badge {
    background: #e62e2e;
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(230, 46, 46, 0.3);
    line-height: 1;
}

.free-badge span {
    font-size: 12px;
}

.acc-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #eee;
    border-radius: 50%;
    padding: 5px;
    background: #fff;
    object-fit: contain;
}

.img-overlay-text {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-blue);
    text-transform: uppercase;
    z-index: 4;
    letter-spacing: 0.5px;
}

.product-track {
    display: flex;
    gap: 25px;
    padding-left: 0;
    /* 🔥 ensure no start gap */
}

/* BIGGER CARD */
.cat-card {
    min-width: 320px;
    /* 🔥 width increase */
    flex: 0 0 auto;
}

/* 🔥 IMAGE HEIGHT INCREASED */
.cat-card .cat-img-wrapper {
    height: 300px;
    /* 👈 yaha se control karo (300-350 best) */
    border-radius: 12px;
    overflow: hidden;
    background: #f4f4f4;
}

/* image */
.cat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-free {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #e63946;
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 10px;
    z-index: 2;
}

.badge-feature {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    background: rgba(30, 144, 255, 0.8);
    color: white;
    font-size: 9px;
    padding: 5px;
    z-index: 2;
    text-transform: uppercase;
}

.product-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.price {
    font-size: 15px;
    font-weight: 700;
}

.sale-price {
    margin-right: 8px;
}

.old-price {
    color: #999;
    text-decoration: line-through;
    font-size: 12px;
    font-weight: 400;
}

/* RECENTLY PURCHASED NOTIFICATION */
.recently-purchased {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-width: 300px;
    border-left: 4px solid var(--primary-blue);
    transform: translateY(100px);
    opacity: 0;
    animation: slideUp 0.5s forwards 2s;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.recently-purchased img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.recent-info h6 {
    font-size: 12px;
    margin: 3px 0;
    color: #333;
}

.recent-info small {
    font-size: 10px;
}

/* SHOP BY CATEGORIES */
.category-blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cat-block {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
}

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

.cat-block:hover img {
    transform: scale(1.1);
}

.cat-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 8px 25px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* PRODUCT LISTS (SMALL COLUMNS - Premium Overhaul) */
.list-columns-wrap {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.list-column {
    flex: 1;
    min-width: 250px;
}

.list-column h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 25px;
    padding-bottom: 12px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a2e;
}

.list-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.list-column:hover h4::after {
    width: 70px;
}

/* Specific Accent Colors */
.col-sale h4::after {
    background: #ff2d4b;
}

.col-latest h4::after {
    background: #00c9b7;
}

.col-best h4::after {
    background: #7d2ae8;
}

.col-popular h4::after {
    background: #ff9f43;
}

.small-product {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
    padding: 10px;
    background: #fff;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid transparent;
    cursor: pointer;
    animation: listSlideUp 0.6s ease forwards;
    opacity: 0;
}

@keyframes listSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered Animation Delays */
.small-product:nth-child(2) {
    animation-delay: 0.1s;
}

.small-product:nth-child(3) {
    animation-delay: 0.2s;
}

.small-product:nth-child(4) {
    animation-delay: 0.3s;
}

.small-product:hover {
    transform: translateX(8px);
    background: #fdfdfd;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: #eee;
}

.small-product img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 8px;
    transition: transform 0.3s ease;
}

.small-product:hover img {
    transform: scale(1.1) rotate(-5deg);
}

.small-product-info h6 {
    font-size: 13px;
    color: #333;
    margin-bottom: 6px;
    line-height: 1.5;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.small-product-info p {
    margin: 0;
}

.small-product-info .sale-price {
    font-size: 14px;
    font-weight: 800;
    color: #1a1a2e;
}

.col-sale .sale-price {
    color: #ff2d4b;
}

.col-latest .sale-price {
    color: #00c9b7;
}

.col-best .sale-price {
    color: #7d2ae8;
}

.col-popular .sale-price {
    color: #ff9f43;
}

.small-product-info .old-price {
    font-size: 11px;
    margin-left: 5px;
}

.reviews {
    overflow: hidden;
}

/* MAIN BOX */
.review-box {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 30px;
    background: #fff;
}

/* LEFT */
.review-header {
    width: 30%;
}

.review-header h5 {
    font-size: 15px;
    margin: 10px 0;
}

.rating-overall .big {
    font-size: 26px;
    font-weight: bold;
    color: #e7711b;
}

.review-btn {
    margin-top: 10px;
    padding: 7px 14px;
    border-radius: 20px;
    background: #1a73e8;
    color: #fff;
    border: none;
}

/* RIGHT SLIDER */
.review-slider {
    width: 70%;
    position: relative;
    /* 🔥 IMPORTANT */
}

/* TRACK */
.review-cards-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
}

.review-cards-wrapper::-webkit-scrollbar {
    display: none;
}

/* CARD */
.review-card {
    min-width: 260px;
    background: #fafafa;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* BUTTONS FIX */
.review-nav-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.review-nav-btn.prev {
    left: -15px;
}

.review-nav-btn.next {
    right: -15px;
}

/* USER ROW */
.review-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

/* IMAGE AVATAR */
.avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* TEXT AVATAR */
.avatar-text {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #0f9d58;
    /* Google green */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    display: none;
    /* default hidden */
}

/* PROMO BANNER */
.promo-banner .promo-content {
    display: flex;
    background: var(--yellow);
    border-radius: 0;
    overflow: hidden;
    min-height: 350px;
}

.promo-images-box {
    width: 50%;
    position: relative;
    padding: 0;
}

.promo-img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 100%;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 16px;
    background: #1a73e8;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.review-btn:hover {
    background: #1557c0;
    transform: translateY(-2px);
}

.pr-img-wrap {
    position: relative;
    overflow: hidden;
}

.pr-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) sepia(0.5) hue-rotate(-30deg);
    /* Give it that yellowish vintage look */
}

.promo-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: white;
    font-weight: 700;
    font-size: 12px;
    text-shadow: 1px 1px 2px #000;
    z-index: 2;
}

.swagtron-logo-overlay {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: white;
    font-weight: 800;
    font-size: 18px;
    text-shadow: 1px 1px 2px #000;
    z-index: 2;
}

.promo-text-box {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.promo-text-box h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111;
}

.promo-text-box p {
    font-size: 14px;
    margin-bottom: 25px;
    color: #333;
}

/* FEATURES SECTION */
.features {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 30px 0;
}

.features-wrap {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item .icon-circle {
    color: var(--yellow-dark);
    font-size: 24px;
}

.feature-item h5 {
    font-size: 13px;
    font-weight: 700;
    color: #333;
}

.feature-item p {
    font-size: 11px;
    color: #777;
    margin: 0;
}

/* VIDEO STYLE */
/* GRID → 5 CARDS */
.story-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 🔥 5 in one row */
    gap: 15px;
}

/* CARD SIZE */
.story-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 420px;
    width: 220px;
    /* thoda adjust kiya for better fit */
}

/* VIDEO STYLE */
.story-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* HOVER EFFECT */
.story-card:hover video {
    transform: scale(1.05);
}

/* WHY CHOOSE */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.why-card {
    text-align: center;
    padding: 20px;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    transition: transform 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* BLOG SECTION */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.blog-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s;
}

.blog-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* FOOTER */
.footer {
    background-color: #2b2b2b;
    color: #eee;
    padding-top: 60px;
    font-size: 13px;
    position: relative;
    background-image: linear-gradient(rgba(43, 43, 43, 0.9), rgba(43, 43, 43, 0.9)), url('https://images.unsplash.com/photo-1555621644-88aa774219a1?auto=format&fit=crop&q=80&w=1200');
    /* abstract dark bg */
    background-size: cover;
    background-position: center;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-links {
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #bbb;
}

.footer-links li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
}

/* FLOATING WA BUTTON */
.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.wa-tooltip {
    background: white;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent white;
}

/* GO TO TOP */
.go-top-btn {
    position: fixed;
    bottom: 30px;
    right: 90px;
    background: #fff;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    font-size: 16px;
    z-index: 99;
    opacity: 0;
    transition: opacity 0.3s;
}

.go-top-btn.visible {
    opacity: 1;
}

.go-top-btn:hover {
    background: var(--primary-blue);
    color: white;
}

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

    .product-grid,
    .category-blocks,
    .story-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .list-columns-wrap {
        flex-wrap: wrap;
    }

    .list-column {
        min-width: 45%;
    }

    .promo-banner .promo-content {
        flex-direction: column;
    }

    .promo-images-box,
    .promo-text-box {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .product-grid,
    .category-blocks,
    .story-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        /* In real scenario, implement mobile menu */
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .search-bar {
        width: 100%;
    }

    .features-wrap {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .list-column {
        min-width: 100%;
    }

    .reviews .review-box {
        flex-direction: column;
    }

    .review-header,
    .review-cards-wrapper {
        width: 100%;
    }

    .hero-bg {
        height: auto;
        padding: 60px 0;
    }
}

/* ---- DARK THEME NEON OVERRIDES MOCKUP ---- */
[data-theme="dark"] {
    --primary-blue: #00f3ff;
    --dark-blue: #00c3cc;
    --orange: #ff0055;
    --yellow: #ff0055;
    --yellow-dark: #cc0044;
}

[data-theme="dark"] body {
    background-color: #060913;
    color: #ffffff;
    background-image:
        linear-gradient(335deg, rgba(255, 255, 255, 0.03) 23px, transparent 23px),
        linear-gradient(155deg, rgba(255, 255, 255, 0.03) 23px, transparent 23px),
        linear-gradient(335deg, rgba(255, 255, 255, 0.03) 23px, transparent 23px),
        linear-gradient(155deg, rgba(255, 255, 255, 0.03) 23px, transparent 23px);
    background-size: 58px 58px;
    background-position: 0px 2px, 4px 35px, 29px 31px, 34px 6px;
}

[data-theme="dark"] .header {
    background-color: #060913;
    border-bottom: 1px solid #1a2235;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

[data-theme="dark"] .search-bar {
    border-color: #00f3ff;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.3);
}

[data-theme="dark"] .search-select {
    background: #0a0e17;
    color: #00f3ff;
    border-right: 1px solid #00f3ff;
}

[data-theme="dark"] .search-input-wrapper input {
    background: #0a0e17;
    color: #fff;
}

[data-theme="dark"] .search-btn {
    background: #0a0e17;
    color: #00f3ff;
}

[data-theme="dark"] .section-title {
    color: #00f3ff;
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.8), 0 0 10px rgba(0, 243, 255, 0.4);
}

[data-theme="dark"] .section-subtitle,
[data-theme="dark"] .text-muted,
[data-theme="dark"] p {
    color: #C5C6C7;
}

[data-theme="dark"] .hero-bg,
[data-theme="dark"] .hero {
    background: transparent;
    border-bottom: 2px solid #ff0055;
}

[data-theme="dark"] .ticker {
    background: #0a0e17;
    border-bottom: 1px solid #00f3ff;
    color: #00f3ff;
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.8);
}

[data-theme="dark"] .product-item,
[data-theme="dark"] .why-card,
[data-theme="dark"] .review-card,
[data-theme="dark"] .reviews .review-box,
[data-theme="dark"] .blog-card {
    background: #0a0e17;
    border-color: #1a2235;
    color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .product-item:hover,
[data-theme="dark"] .why-card:hover,
[data-theme="dark"] .blog-card:hover {
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
    border-color: #00f3ff;
}

[data-theme="dark"] .product-info h5,
[data-theme="dark"] .small-product-info h6,
[data-theme="dark"] .feature-item h5,
[data-theme="dark"] .reviewer-details h6,
[data-theme="dark"] .story-title,
[data-theme="dark"] .promo-text-box h3 {
    color: #fff;
}

[data-theme="dark"] .product-item .product-img-box {
    background: #060913;
}

[data-theme="dark"] .cat-card .cat-img-wrapper {
    background: #0a0e17;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.1);
}

[data-theme="dark"] .cat-card h4 {
    color: #00f3ff;
    text-shadow: 0 0 5px rgba(0, 243, 255, 0.6);
}

[data-theme="dark"] .sale-price {
    color: #ff0055;
    text-shadow: 0 0 5px rgba(255, 0, 85, 0.6);
}

[data-theme="dark"] .recent-info h6 {
    color: #fff;
}

[data-theme="dark"] .recently-purchased {
    background: #0a0e17;
    border-left-color: #00f3ff;
}

[data-theme="dark"] .cat-label {
    background: #060913;
    color: #00f3ff;
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

[data-theme="dark"] .list-column h4 {
    color: #fff;
    border-bottom-color: #1a2235;
}

[data-theme="dark"] .list-column h4::after {
    background: #00f3ff;
    box-shadow: 0 0 5px #00f3ff;
}

[data-theme="dark"] .review-nav-btn {
    background: #0a0e17;
    border-color: #00f3ff;
    color: #00f3ff;
}

[data-theme="dark"] .blog-section {
    background: transparent !important;
}

[data-theme="dark"] .why-choose {
    background: transparent !important;
}

[data-theme="dark"] .real-rides {
    background: transparent !important;
}

[data-theme="dark"] .btn-dark-rounded {
    background: #00f3ff;
    color: #000;
    box-shadow: 0 0 10px #00f3ff;
}

[data-theme="dark"] .btn-green-rounded {
    background: #ff0055;
    color: #fff;
    box-shadow: 0 0 10px #ff0055;
}

[data-theme="dark"] .blog-card.bg-white {
    background-color: #0a0e17 !important;
}

/* Neon glow */
[data-theme="dark"] .logo-text span:first-child {
    color: #00f3ff !important;
    text-shadow: 0 0 10px #00f3ff, 0 0 20px #00f3ff !important;
}

[data-theme="dark"] .logo-text span:last-child {
    color: #ff0055 !important;
    text-shadow: 0 0 10px #ff0055, 0 0 20px #ff0055 !important;
}

[data-theme="dark"] .badge-feature {
    background: rgba(255, 0, 85, 0.9);
    box-shadow: 0 0 10px #ff0055;
    color: #fff;
}

[data-theme="dark"] .badge-free {
    background: #00f3ff;
    color: #000;
    box-shadow: 0 0 8px #00f3ff;
}

[data-theme="dark"] .hero-badge {
    background-color: #ff0055;
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.8), 0 0 40px rgba(255, 0, 85, 0.4);
}

[data-theme="dark"] .promo-banner .promo-content {
    background: #0a0e17;
    border: 2px solid #00f3ff;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.2);
}

[data-theme="dark"] .footer {
    background-color: #000;
    border-top: 2px solid #ff0055;
}

/* ==========================================================================
   PREMIUM 3D WHY CHOOSE SLIDER
   ========================================================================== */

.premium-why-choose {
    overflow: hidden;
    padding: 0px 0;
    position: relative;
    border-top: none;
}

.premium-title {
    font-size: 32px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #1e3a8a, #00c6ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: none !important;
    position: relative;
    display: inline-block;
}

.premium-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a, #00c6ff);
    border-radius: 3px;
}

/* Slider Container */
.why-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-slider-track {
    position: relative;
    width: 100%;
    height: 480px;
    transform-style: preserve-3d;
}

/* Slide Cards */
.why-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    transform: translateZ(-200px) scale(0.8) rotateY(10deg);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.why-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
    transform: translateZ(0) scale(1) rotateY(0);
}

.why-slide.prev-slide {
    transform: translateZ(-300px) translateX(-20%) scale(0.7) rotateY(-15deg);
    opacity: 0;
}

.why-slide.next-slide {
    transform: translateZ(-300px) translateX(20%) scale(0.7) rotateY(15deg);
    opacity: 0;
}

.why-card-premium {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
    max-width: 100%;
    width: calc(33.333% - 20px);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .why-slide {
        flex-direction: column;
        gap: 20px;
    }

    .why-card-premium {
        width: 90%;
        padding: 20px;
    }

    .why-slider-track {
        height: 1050px;
    }

    .icon-3d-wrap {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .icon-3d-face {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .icon-3d-face.front {
        transform: translateZ(35px);
    }

    .icon-3d-face.back {
        transform: rotateY(180deg) translateZ(35px);
    }

    .icon-3d-face.right {
        transform: rotateY(90deg) translateZ(35px);
    }

    .icon-3d-face.left {
        transform: rotateY(-90deg) translateZ(35px);
    }

    .icon-3d-face.top {
        transform: rotateX(90deg) translateZ(35px);
    }

    .icon-3d-face.bottom {
        transform: rotateX(-90deg) translateZ(35px);
    }
}

.why-card-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* 3D Icon Box */
.icon-3d-wrap {
    perspective: 800px;
    width: 100px;
    height: 100px;
    margin: 0 auto 30px auto;
    position: relative;
    z-index: 2;
}

.icon-3d-box {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1s;
    animation: rotate3d 20s infinite linear;
}

@keyframes rotate3d {
    0% {
        transform: rotateY(0) rotateX(10deg);
    }

    100% {
        transform: rotateY(360deg) rotateX(10deg);
    }
}

.icon-3d-face {
    position: absolute;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(30, 58, 138, 0.2);
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.2);
    font-size: 40px;
    color: #1e3a8a;
    backdrop-filter: blur(5px);
}

.icon-3d-face.front {
    transform: translateZ(50px);
}

.icon-3d-face.back {
    transform: rotateY(180deg) translateZ(50px);
}

.icon-3d-face.right {
    transform: rotateY(90deg) translateZ(50px);
}

.icon-3d-face.left {
    transform: rotateY(-90deg) translateZ(50px);
}

.icon-3d-face.top {
    transform: rotateX(90deg) translateZ(50px);
    background: rgba(0, 198, 255, 0.1);
}

.icon-3d-face.bottom {
    transform: rotateX(-90deg) translateZ(50px);
    box-shadow: none;
    border: none;
}

.hover-float {
    animation: float3d 3s ease-in-out infinite alternate;
}

@keyframes float3d {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}

.icon-shadow {
    width: 60px;
    height: 15px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    margin: 10px auto 0;
    border-radius: 50%;
    animation: shadowScale 3s ease-in-out infinite alternate;
}

@keyframes shadowScale {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(0.6);
        opacity: 0.3;
    }
}

/* Typography Inside Premium Card */
.premium-heading {
    color: #1e3a8a !important;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.premium-text {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Navigation Buttons */
.why-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #1e3a8a;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.why-nav-btn:hover {
    background: #1e3a8a;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

.why-nav-btn.prev {
    left: -20px;
}

.why-nav-btn.next {
    right: -20px;
}

/* Dots */
.why-dots-container {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.why-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.why-dot.active {
    width: 30px;
    border-radius: 10px;
    background: linear-gradient(90deg, #1e3a8a, #00c6ff);
}

/* Dark Mode Overrides */
[data-theme="dark"] .premium-why-choose {
    background: transparent !important;
}

[data-theme="dark"] .premium-title {
    background: linear-gradient(90deg, #00f3ff, #ff0055);
    -webkit-background-clip: text;
    background-clip: text;
}

[data-theme="dark"] .why-card-premium {
    background: rgba(10, 14, 23, 0.8);
    border: 1px solid rgba(0, 243, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(0, 243, 255, 0.1);
}

[data-theme="dark"] .icon-3d-face {
    background: rgba(10, 14, 23, 0.9);
    border: 2px solid #00f3ff;
    color: #00f3ff;
    box-shadow: 0 0 15px rgba(0, 243, 255, 0.4);
}

[data-theme="dark"] .premium-heading {
    color: #fff !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] .premium-text {
    color: #bbb;
}

[data-theme="dark"] .why-nav-btn {
    background: #0a0e17;
    color: #00f3ff;
    border: 1px solid #00f3ff;
}

[data-theme="dark"] .why-nav-btn:hover {
    background: #00f3ff;
    color: #000;
    box-shadow: 0 0 20px #00f3ff;
}

[data-theme="dark"] .why-dot {
    background: #444;
}

[data-theme="dark"] .why-dot.active {
    background: linear-gradient(90deg, #00f3ff, #ff0055);
    box-shadow: 0 0 10px #00f3ff;
}

/* ==========================================================================
   REAL RIDES VIDEO SLIDER
   ========================================================================== */

.stories-slider-wrapper {
    position: relative;
    width: 100%;
    margin-top: 30px;
    padding: 0 40px;
    /* space for arrows */
}

.stories-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.stories-track::-webkit-scrollbar {
    display: none;
}

.story-vid-card {
    flex: 0 0 calc(25% - 15px);
    /* Exactly 4 items visible */
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    aspect-ratio: 9/16;
    height: 480px;
    background: #111;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.story-vid-card:hover {
    transform: translateY(-5px);
}

.story-vid-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-vid-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
    padding: 30px 15px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.vid-user-avatar {
    flex-shrink: 0;
}

.vid-user-avatar img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    background: #fff;
}

.vid-info {
    text-align: left;
    overflow: hidden;
}

.vid-title {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--font-heading);
}

.vid-price {
    font-size: 12px;
    margin: 0;
}

.sale-price-red {
    color: #ff3366;
    font-weight: 700;
    margin-right: 5px;
}

.old-price-gray {
    color: #aaa;
    text-decoration: line-through;
    font-size: 11px;
}

.story-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s;
}

.story-nav-btn:hover {
    background: var(--primary-blue);
    color: #fff;
}

.story-nav-btn.prev {
    left: -10px;
}

.story-nav-btn.next {
    right: -10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .story-vid-card {
        flex: 0 0 calc(33.333% - 14px);
        /* 3 items */
    }
}

@media (max-width: 768px) {
    .story-vid-card {
        flex: 0 0 calc(50% - 10px);
        /* 2 items */
    }
}

@media (max-width: 480px) {
    .story-vid-card {
        flex: 0 0 calc(100%);
        /* 1 item */
    }
}

/* ==========================================================================
   LOGIN PAGE STYLES
   ========================================================================== */

.login-page {
    background: #f4f7f6;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .login-page {
    background: #0a0e17;
}

/* Add a premium glowing orb in background just for looks */
.login-page::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 198, 255, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

[data-theme="dark"] .login-page::before {
    background: radial-gradient(circle, rgba(0, 243, 255, 0.15) 0%, transparent 60%);
}

/* Transparent Background Elements (3 products) */
.login-page::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image:
        url('./assets/img/hoverboard.png'),
        url('./assets/img/scooter1.webp'),
        url('./assets/img/scooter2.jpg');
    background-position:
        left 5vw center,
        center center,
        right 5vw center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 30vh auto, 35vh auto, 30vh auto;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}

[data-theme="dark"] .login-page::after {
    opacity: 0.35;
    filter: drop-shadow(0 0 30px rgba(0, 243, 255, 0.2));
}

.login-wrapper {
    width: 100%;
    max-width: 450px;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.login-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a253a;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 20px;
    transition: 0.3s;
}

[data-theme="dark"] .login-back {
    color: #fff;
}

.login-back:hover {
    color: #ff7a18;
}

.login-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    /* Uses .premium-blog-card for box-shadow hover effects organically */
}

.login-logo {
    height: 40px;
    margin-bottom: 20px;
    box-shadow: none;
}

.login-header p {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
}

[data-theme="dark"] .login-header p {
    color: #ccc;
}

.login-step {
    transition: all 0.4s ease;
}

.hidden-step {
    display: none;
    opacity: 0;
}

.active-step {
    display: block;
    opacity: 1;
    animation: fadeIn 0.4s forwards;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.input-group {
    display: flex;
    align-items: center;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 5px 20px;
    margin-bottom: 25px;
    transition: 0.3s;
}

[data-theme="dark"] .input-group {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.input-group:focus-within {
    border-color: #00c6ff;
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.1);
}

.country-code {
    font-weight: 700;
    color: #333;
    padding-right: 15px;
    border-right: 1px solid #ddd;
    margin-right: 15px;
}

[data-theme="dark"] .country-code {
    color: #fff;
    border-color: #444;
}

.input-group input {
    border: none;
    background: transparent;
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    color: #333;
    outline: none;
    font-family: inherit;
    font-weight: 500;
}

[data-theme="dark"] .input-group input {
    color: #fff;
}

.submit-btn {
    width: 100%;
    cursor: pointer;
}

.otp-message {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

[data-theme="dark"] .otp-message {
    color: #aaa;
}

.otp-message b {
    color: #333;
}

[data-theme="dark"] .otp-message b {
    color: #fff;
}

.edit-link {
    color: #00c6ff;
    font-weight: 600;
    text-decoration: none;
    font-size: 12px;
    display: inline-block;
    margin-top: 5px;
}

.otp-inputs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.otp-digit {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 1px solid #ddd;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    background: #f9f9f9;
    outline: none;
    transition: 0.3s;
    font-family: inherit;
}

[data-theme="dark"] .otp-digit {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.otp-digit:focus {
    border-color: #00c6ff;
    box-shadow: 0 0 10px rgba(0, 198, 255, 0.2);
}

.resend-wrapper {
    margin-top: 20px;
    font-size: 13px;
    color: #666;
}

[data-theme="dark"] .resend-wrapper {
    color: #aaa;
}

.resend-wrapper a {
    color: #ff7a18;
    text-decoration: none;
    font-weight: 700;
    margin-left: 5px;
}

.login-theme-btn:hover {
    background: var(--primary-blue) !important;
    color: #fff !important;
    border-color: var(--primary-blue) !important;
}

/* ==========================================================================
   PREMIUM BLOG SECTION
   ========================================================================== */

.premium-blog {
    position: relative;
    z-index: 1;
}

.premium-title-dark {
    font-size: 32px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1e3a8a;
    position: relative;
    display: inline-block;
    margin-bottom: 20px !important;
}

.premium-title-dark::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a, #00c6ff);
    border-radius: 3px;
}

.premium-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

.premium-blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.premium-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.1);
}

.blog-img-box {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-blog-card:hover .blog-img-box img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ff7a18, #e52d27);
    color: #fff;
    padding: 8px 12px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(229, 45, 39, 0.3);
    z-index: 2;
}

.blog-date .day {
    display: block;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

.blog-date .month {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 30px 25px;
    background: #fff;
    position: relative;
    z-index: 2;
}

.blog-category {
    color: #00c6ff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

.blog-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.blog-title a {
    color: #1a253a;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: #00c6ff;
}

.blog-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    font-size: 13px;
    font-weight: 700;
    color: #1e3a8a;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.blog-read-more i {
    transition: transform 0.3s;
}

.blog-read-more:hover {
    color: #ff7a18;
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* Dark Mode Overrides */
[data-theme="dark"] .premium-blog {
    background: #0a0e17 !important;
}

[data-theme="dark"] .premium-title-dark {
    color: #fff;
}

[data-theme="dark"] .premium-blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 243, 255, 0.1);
}

[data-theme="dark"] .blog-content {
    background: transparent;
}

[data-theme="dark"] .blog-title a {
    color: #fff;
}

[data-theme="dark"] .blog-excerpt {
    color: #aaa;
}

[data-theme="dark"] .blog-read-more {
    color: #00f3ff;
}

[data-theme="dark"] .blog-read-more:hover {
    color: #ff0055;
}

@media (max-width: 992px) {
    .premium-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .premium-blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   LOGIN POPUP STYLES
   ========================================================================== */

.login-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.1);
    /* dark transparency */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}

.login-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-version {
    position: relative;
    max-width: 420px;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.login-popup-overlay.show .popup-version {
    transform: translateY(0);
}

.close-popup-btn {
    position: absolute;
    top: -45px;
    right: 0px;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 28px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.close-popup-btn:hover {
    color: #ff3366;
    transform: scale(1.1);
}

/* ==========================================================================
   EV TECHBOARD STUDIO STYLES
   ========================================================================== */

.ev-studio-section {
    position: relative;
    z-index: 2;
    background: #ffffff !important;
    padding: 80px 0;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border-top: 2px solid #00c6ff;
    border-bottom: 2px solid #ff3366;
    overflow: hidden;
}

.ev-studio-section .container {
    position: relative;
    z-index: 2;
}

.ev-studio-section .premium-title-dark {
    color: #1a253a !important;
    text-shadow: none;
}

.ev-studio-section .section-subtitle {
    color: #666 !important;
}

.studio-history-controls button {
    background: #f4f4f4;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 5px 15px;
    cursor: pointer;
    transition: 0.3s;
}

.studio-history-controls button:hover {
    background: #00c6ff;
    color: #fff;
    border-color: #00c6ff;
}

.studio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

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

/* Premium White Styling for Preview & Controls */
.studio-preview {
    background: #fdfdfd !important;
    border: 1px solid #eee !important;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

[data-theme="dark"] .studio-preview {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(0, 243, 255, 0.1) !important;
}

.preview-box {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.preview-box img {
    width: 100%;
    transition: filter 0.4s ease;
}

.board-pattern-layer {
    position: absolute;
    top: 5%;
    left: 10%;
    width: 80%;
    height: 90%;
    border-radius: 50% 50% 20% 20%;
    background: #ffffff;
    /* standard */
    z-index: 1;
    transition: 0.3s ease;
}

.draggable {
    cursor: grab;
    pointer-events: auto !important;
}

.draggable.dragging {
    cursor: grabbing;
}

.preview-sticker {
    position: absolute;
    width: 80px;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 5;
    user-select: none;
    touch-action: none;
}

.preview-name {
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 5;
    user-select: none;
    touch-action: none;
    white-space: nowrap;
}

.preview-handle {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    pointer-events: none;
    z-index: 4;
}

.preview-handle img {
    width: 100%;
    opacity: 0.8;
}

.studio-controls {
    background: #fff !important;
    border: 1px solid #eee !important;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    color: var(--text-color);
}

[data-theme="dark"] .studio-controls {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(0, 243, 255, 0.1) !important;
}

.studio-controls h5 {
    font-weight: 700;
    color: var(--heading-color) !important;
    margin-bottom: 15px;
    font-size: 16px;
}

.color-options {
    display: flex;
    gap: 15px;
}

.color-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.color-btn.active {
    border-color: #333;
    transform: scale(1.1);
}

[data-theme="dark"] .color-btn.active {
    border-color: #fff;
}

.pattern-btn {
    font-size: 10px;
    color: #fff;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    width: 60px;
}

.studio-input,
.studio-select {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    background: #f9f9f9;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
    color: #333;
}

[data-theme="dark"] .studio-input,
[data-theme="dark"] .studio-select {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.studio-input:focus,
.studio-select:focus {
    border-color: var(--primary-blue);
    background: #fff;
}

[data-theme="dark"] .studio-input:focus,
[data-theme="dark"] .studio-select:focus {
    background: rgba(0, 0, 0, 0.5);
}

.studio-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-color);
}

.studio-checkbox input {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.studio-price-box {
    background: #f4f7f6;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

[data-theme="dark"] .studio-price-box {
    background: rgba(0, 198, 255, 0.05);
    border: 1px solid rgba(0, 198, 255, 0.2);
}

.price-title {
    font-weight: 700;
    color: var(--heading-color);
}

.price-amount {
    font-size: 24px;
    font-weight: 800;
    color: #ff3366;
}

/* ========================================================
   PRODUCT DETAILS PAGE SCSS/CSS (product-details.html)
   ======================================================== */

.pdp-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.pdp-gallery {
    flex: 1 1 50%;
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {
    .pdp-gallery {
        flex-direction: column-reverse;
    }

    .pdp-thumbnails {
        width: 100% !important;
        flex-direction: row !important;
        overflow-x: auto;
    }

    .pdp-thumb {
        width: 80px !important;
    }
}

.pdp-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 80px;
}

.pdp-thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    background: #f8f9fa;
    padding: 2px;
}

.pdp-thumb:hover,
.pdp-thumb.active {
    border-color: #00c6ff;
}

.pdp-main-image-container {
    flex: 1;
    background: #f8f9fa;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pdp-main-image-container img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.pdp-info {
    flex: 1 1 40%;
}

.pdp-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
}

.pdp-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.review-count {
    font-size: 14px;
    color: #666;
}

.pdp-price {
    font-size: 26px;
    color: #ff3366;
    font-weight: 700;
    margin: 0;
}

.pdp-tax-info {
    font-size: 12px;
    color: #888;
}

.variant-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--heading-color);
}

.color-options-pdp {
    display: flex;
    gap: 15px;
}

.color-options-pdp .color-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.color-options-pdp .color-btn.active {
    border-color: #000;
    transform: scale(1.1);
}

[data-theme="dark"] .color-options-pdp .color-btn.active {
    border-color: #fff;
}

.pdp-accordion-wrap {
    border-top: 1px solid #eee;
}

.pdp-accordion-item {
    border-bottom: 1px solid #eee;
}

.pdp-accordion-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 15px 0;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--heading-color);
}

.pdp-accordion-content {
    padding: 0 0 15px 0;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
}

.pdp-accordion-content.hidden {
    display: none;
}

.qty-add-row {
    display: flex;
    gap: 15px;
}

.qty-selector {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 50px;
    overflow: hidden;
    background: #fff;
}

.qty-btn {
    background: transparent;
    border: none;
    width: 40px;
    height: 45px;
    font-size: 18px;
    cursor: pointer;
    color: #333;
}

.qty-input {
    width: 50px;
    height: 45px;
    border: none;
    text-align: center;
    font-weight: 600;
    color: #333;
}

.btn-buy-shop {
    background: #5a31f4;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-buy-shop:hover {
    background: #4626bf;
}

.btn-buy-shop .shopStyle {
    font-style: italic;
    font-weight: 800;
}

.more-payment-opts {
    display: block;
    text-align: center;
    font-size: 12px;
    color: var(--text-color);
    margin-top: 10px;
    text-decoration: underline;
}

.pdp-perks p {
    font-size: 13px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.pdp-perks p i {
    width: 25px;
    text-align: center;
    font-size: 15px;
}

.pdp-middle-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.stuck-question-box {
    flex: 1 1 30%;
}

.sq-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.sq-live-badge {
    background: #fcd535;
    color: #222;
    font-weight: 800;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 12px;
    line-height: 1.1;
    flex-shrink: 0;
}

.sq-link {
    display: inline-block;
    color: var(--heading-color);
    font-weight: 700;
    text-decoration: underline;
    margin: 8px 0;
}

.sq-link i {
    margin-right: 5px;
}

.sq-time {
    display: block;
    font-size: 12px;
    color: #888;
}

.app-connectivity-banner {
    flex: 1 1 60%;
}

.ac-image-wrap {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
}

.ac-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.ac-overlay-text {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
}

.reviews-container {
    max-width: 1000px;
    margin: 0 auto;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.rating-bars {
    flex: 1;
    max-width: 300px;
    min-width: 250px;
}

.r-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    margin-bottom: 5px;
    color: #555;
}

.r-bar-track {
    flex: 1;
    height: 6px;
    background: #eee;
    border-radius: 3px;
    overflow: hidden;
}

.r-bar-fill {
    height: 100%;
    background: #888;
}

.write-review-box {
    text-align: right;
}

.reviews-filter-bar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.reviews-tabs {
    display: flex;
    gap: 10px;
}

.review-tab {
    background: transparent;
    border: 1px solid #ddd;
    padding: 8px 15px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    border-radius: 4px;
}

.review-tab.active {
    border-color: #000;
    color: #000;
}

[data-theme="dark"] .review-tab.active {
    border-color: #fff;
    color: #fff;
}

.pdp-sort-select {
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 13px;
}

.review-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.review-avatar {
    flex-shrink: 0;
}

.shorts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.short-card {
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.short-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.short-thumb {
    display: flex;
    align-items: center;
    gap: 10px;
}

.short-thumb img {
    width: 40px;
    height: 40px;
    border-radius: 5px;
    object-fit: contain;
    background: #fff;
    padding: 2px;
}

.short-thumb-info h6 {
    color: #fff;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
}

.short-thumb-info span {
    color: #e5e5e5;
    font-size: 12px;
}

.short-add-btn {
    background: #fcd535;
    color: #000;
    border: none;
    width: 100%;
    padding: 8px;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ========================================================
   RELATED PRODUCTS SECTION
   ======================================================== */
.related-products-section {
    padding-top: 40px;
    padding-bottom: 60px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
}

.related-card {
    text-align: center;
    position: relative;
    padding: 10px;
    background: transparent;
    transition: 0.3s;
}

.related-card .sale-tag {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #0088cc;
    color: #fff;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
}

.related-main-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 10px;
    background: transparent;
    transition: 0.3s;
}

.related-card:hover .related-main-img {
    transform: scale(1.05);
}

.related-extras {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
    min-height: 40px;
}

.extra-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    object-fit: contain;
    padding: 5px;
    background: #fff;
}

.related-card h6 {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 14px;
    margin-bottom: 5px;
}

.related-price {
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.related-price .old-price {
    color: #888;
    text-decoration: line-through;
}

.related-price .new-price {
    color: #0088cc;
    font-weight: 700;
}

.related-price .discount-badge {
    background: #0088cc;
    color: #fff;
    font-size: 11px;
    padding: 2px 5px;
    border-radius: 3px;
    line-height: 1;
}

/* ========================================================
   SHORTS ADD EXTRAS DROPDOWN
   ======================================================== */
.short-cart-actions {
    position: relative;
    display: flex;
    align-items: stretch;
    width: 100%;
}

.short-add-btn {
    border-radius: 4px 0 0 4px;
    flex-grow: 1;
    justify-content: center;
}

.short-options-dropdown {
    position: relative;
    background: #e6be22;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    border-left: 1px solid #ccaa11;
}

.dropdown-menu-custom {
    display: none;
    position: absolute;
    bottom: 110%;
    right: 0;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    min-width: 220px;
    z-index: 100;
    text-align: left;
    color: #333;
}

.dropdown-menu-custom.show {
    display: block;
}

.dropdown-menu-custom .opt-group {
    font-size: 12px;
    color: #555;
    margin-bottom: 8px;
}

.dropdown-menu-custom .opt-color {
    width: 100%;
    padding: 5px;
    margin-top: 3px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.cart-qty-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
}

.cart-qty-btn {
    background: transparent;
    border: none;
    padding: 5px 15px;
    cursor: pointer;
    font-weight: bold;
    color: #333;
}

.cart-qty-val {
    padding: 5px 10px;
    font-weight: bold;
    color: #333;
    background: #f8f8f8;
}

/* ========================================================
   GLOBAL SLIDING CART DRAWER
   ======================================================== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

[data-theme="dark"] .cart-drawer {
    background: #1a1a2e;
    color: #fff;
}

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

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

[data-theme="dark"] .cart-drawer-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-drawer-close {
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--heading-color);
}

.cart-drawer-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

[data-theme="dark"] .cart-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #f8f8f8;
    border-radius: 5px;
}

.cart-item-details h6 {
    font-size: 13px;
    font-weight: 600;
    margin: 0 0 5px;
    color: var(--heading-color);
}

/* BEST SELLERS SECTION */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 30px;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

.cart-item-meta {
    font-size: 11px;
    color: #888;
    margin-bottom: 5px;
}

.cart-item-price {
    font-weight: 700;
    color: #ff3366;
    font-size: 14px;
}

.cart-drawer-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background: #fdfdfd;
}

[data-theme="dark"] .cart-drawer-footer {
    background: #141424;
    border-top-color: rgba(255, 255, 255, 0.1);
}

.cart-drawer-footer .total-row {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.cart-count-badge {
    background: #ff3366;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: 800;
    position: absolute;
    top: -8px;
    right: -10px;
}

/* ========================================================
   CATEGORY PAGE SCSS/CSS (category.html)
   ======================================================== */
.cat-container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Sidebar Filter Customization */
.cat-sidebar {
    flex: 0 0 280px;
    padding-right: 15px;
}

.cat-filter-widget {
    padding: 25px 0;
    border-bottom: 1px solid #f0f0f0;
}

.filter-title {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

[data-theme="dark"] .cat-filter-widget {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.filter-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--heading-color);
    cursor: pointer;
}

.filter-label {
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-color);
    cursor: pointer;
}

.cat-checkbox {
    margin-right: 8px;
}

.filter-count {
    color: #888;
    float: right;
}

/* Price Slider Track */
.price-slider-track {
    position: relative;
    height: 4px;
    background: #e0e0e0;
    margin: 20px 0 10px;
    border-radius: 2px;
}

.price-slider-fill {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    background: #000;
}

[data-theme="dark"] .price-slider-fill {
    background: #fff;
}

.price-handle {
    position: absolute;
    top: 50%;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 3px solid #000;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

[data-theme="dark"] .price-handle {
    border-color: #fff;
    background: #000;
}

.price-handle.left {
    left: 3% !important;
}

.price-handle.right {
    left: 3% !important;
}

.price-range-text {
    font-size: 12px;
    color: var(--text-color);
    margin-top: 10px;
}

/* Featured Widget */
.cat-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.cat-feat-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    background: #f4f4f4;
    border-radius: 5px;
}

[data-theme="dark"] .cat-feat-item img {
    background: #fff;
}

.cat-feat-info h6 {
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 5px;
    color: var(--heading-color);
}

.feat-price {
    font-size: 12px;
    font-weight: 700;
    color: #a8324a;
}

.feat-old-price {
    font-size: 10px;
    color: #888;
    text-decoration: line-through;
    margin-left: 5px;
}

.cat-hero-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.cat-filter-widget.collapsible .filter-options {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    opacity: 0;
}

.cat-filter-widget.collapsible.active .filter-options {
    max-height: 1000px;
    opacity: 1;
    padding-top: 10px;
}

.cat-filter-widget .icon-toggle {
    transition: transform 0.3s ease;
}

.cat-filter-widget.active .icon-toggle {
    transform: rotate(0deg);
}

.cat-filter-widget:not(.active) .icon-toggle {
    transform: rotate(-180deg);
}

.btn-lifestyle-dark:hover {
    background: var(--primary-blue) !important;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 198, 255, 0.2);
}

.btn-shop-accent:hover {
    background: #4620d4 !important;
    transform: scale(1.05) translateY(-5px);
}

.cat-main {
    flex: 1;
}

/* Toolbar */
.cat-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.results-count {
    font-size: 13px;
    color: var(--text-color);
}

.cat-tools {
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.cat-sort-select {
    border: none;
    font-weight: 600;
    margin-right: 20px;
    color: var(--heading-color);
    background: transparent;
}

.view-icons i {
    font-size: 18px;
    margin-left: 10px;
    cursor: pointer;
    color: #ccc;
    transition: 0.3s;
}

.view-icons i.active,
.view-icons i:hover {
    color: var(--primary-color);
}

/* Product Grid Refinement */
.cat-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.cat-grid-item {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    text-align: left !important;
}

.cat-grid-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: #ccc;
    transform: translateY(-5px);
}

[data-theme="dark"] .cat-grid-item {
    background: #1a1a2e !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Quick Categories Boxes */
.cat-quick-links {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.cat-quick-box {
    flex: 1;
    height: 160px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    animation: fadeInScale 0.6s ease forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.cat-quick-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cat-quick-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cat-quick-box:hover img {
    transform: scale(1.15) rotate(2deg);
}

.cat-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(43, 43, 43, 0.85);
    color: #fff;
    padding: 12px;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    backdrop-filter: blur(5px);
}

/* Professional Headers */
.professional-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--heading-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), #ff3366);
    border-radius: 2px;
    margin-bottom: 15px;
}

.professional-subtitle {
    color: #888;
    font-size: 16px;
    font-weight: 400;
}

/* FAQ STYLES */
.faq-container {
    padding: 60px 0;
    border-top: 1px solid #eee;
}

.faq-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--heading-color);
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

[data-theme="dark"] .faq-card {
    background: #1a1a2e;
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--heading-color);
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f8f8;
}

[data-theme="dark"] .faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question i {
    font-size: 14px;
    transition: transform 0.3s ease;
    color: #ff3366;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0, 1, 0, 1);
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.8;
}

.faq-card.active .faq-answer {
    max-height: 1000px;
    padding: 0 25px 25px;
}

.faq-card.active .faq-question i {
    transform: rotate(45deg);
}

.faq-card.active {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-blue);
}

/* Lifestyle Blocks */
.lifestyle-blocks {
    background: #fff;
}

[data-theme="dark"] .lifestyle-blocks {
    background: #0b0f19;
}

.lifestyle-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.lifestyle-row.reverse {
    flex-direction: row-reverse;
}

.lf-img-col {
    flex: 1;
}

.lf-img-col img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.lf-text-col {
    flex: 1;
}

.lf-text-col h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.text-right-align {
    text-align: right;
}

.text-right-align p {
    margin-left: auto;
}

.lf-text-col p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 450px;
}

@media (max-width: 768px) {
    .cat-container {
        flex-direction: column;
    }

    .cat-sidebar {
        width: 100%;
    }

    .lifestyle-row,
    .lifestyle-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .text-right-align,
    .lf-text-col p {
        text-align: center;
        margin: 0 auto 30px;
    }

    .cat-quick-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cat-quick-box {
        flex: 0 0 calc(50% - 20px);
        min-width: 140px;
        height: 140px;
    }
}

/* PRODUCT HOVER ACTIONS */
.product-img-box {
    position: relative !important;
    overflow: hidden !important;
}

.product-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    display: flex;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
}

.product-item {
    cursor: pointer;
}

.product-item:hover .product-actions {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translate(-50%, -50%) scale(1) !important;
}

.action-btn {
    width: 35px;
    height: 35px;
    background: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #ff3366;
    color: #ffffff;
    transform: translateY(-5px);
}

.badge.bump {
    transform: scale(1.4);
}

/* WISHLIST PAGE STYLES */
.wishlist-section {
    padding: 80px 0;
    background: #fff;
    min-height: 500px;
}

.wishlist-product img {
    width: 60px;
}

.qv-btn {
    padding: 8px 15px;
    border: 1px solid #138bbd;
    background: #fff;
    color: #138bbd;
    font-weight: 600;
}

.atc-btn {
    padding: 8px 20px;
    background: #138bbd;
    color: #fff;
    border: none;
    font-weight: 600;
}

/* CART DRAWER & UI OVERLAYS */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    z-index: 1100;
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

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

.cart-drawer-header {
    padding: 25px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fafafa;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 25px;
}

.cart-drawer-footer {
    padding: 25px;
    border-top: 1px solid #f0f0f0;
    background: #fff;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

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

/* QUICK VIEW MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-m-content {
    background: #fff;
    width: 90%;
    max-width: 850px;
    border-radius: 15px;
    position: relative;
    padding: 40px;
    display: flex;
    gap: 40px;
    transform: translateY(20px);
    transition: 0.4s;
}

.modal-overlay.active .modal-m-content {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 26px;
    cursor: pointer;
    color: #333;
    transition: 0.3s;
}

.modal-close:hover {
    color: #ff3366;
    transform: rotate(90deg);
}

.m-left {
    flex: 1;
}

.m-right {
    flex: 1.2;
}

.m-img {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #eee;
}

.m-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.m-price {
    font-size: 22px;
    color: #ff3366;
    font-weight: 700;
    margin-bottom: 20px;
}

.m-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* TOAST */
.toast-container {
    position: fixed;
    bottom: 40px;
    left: 40px;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: #1a1a2e;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: toastIn 0.4s ease forwards;
    border-left: 4px solid #00c6ff;
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes toastIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* CART & ACTIONS REFINEMENT */
.product-actions {
    display: flex !important;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.cart-item-info {
    flex: 1;
}

.cart-qty-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #f0f0f0;
}

/* PREMIUM QTY SELECTOR (For Popups) */
.premium-qty-row {
    display: flex;
    align-items: center;
    background: #f4f4f4;
    border-radius: 50px;
    width: fit-content;
    padding: 5px;
    gap: 0;
}

.premium-qty-row .qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-weight: 800;
}

.premium-qty-row .qty-btn:hover {
    background: var(--primary-blue);
    color: #fff;
}

.premium-qty-row span {
    font-weight: 800;
    padding: 0 20px;
    font-size: 14px;
    min-width: 50px;
    text-align: center;
}

[data-theme="dark"] .premium-qty-row {
    background: #0a0e17;
}

[data-theme="dark"] .premium-qty-row .qty-btn {
    background: #1a2235;
    color: #fff;
}

[data-theme="dark"] .premium-qty-row .qty-btn:hover {
    background: var(--primary-blue);
}

.subtotal-row {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.cart-checkout-btn {
    background: #138bbd;
    color: #fff;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.cart-checkout-btn:hover {
    background: #0e6d92;
    letter-spacing: 1px;
}

/* ========================================================
   CHECKOUT OVERLAY (Razorpay Style)
   ======================================================== */
.checkout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.checkout-overlay.active {
    display: flex;
}

.checkout-box {
    background: #f8f9fb;
    width: 100%;
    max-width: 1000px;
    height: 90vh;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.checkout-left {
    flex: 1;
    padding: 30px;
    background: #fff;
    overflow-y: auto;
    border-right: 1px solid #edf1f7;
}

.checkout-right {
    flex: 1.2;
    padding: 30px;
    background: #fff;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.checkout-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    z-index: 10;
}

.chk-section-card {
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.chk-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    cursor: pointer;
}

.chk-item {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 15px;
}

.chk-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}

.chk-item-info {
    flex: 1;
}

.chk-item-info h6 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.chk-item-info p {
    margin: 2px 0;
    font-size: 12px;
    color: #888;
}

.chk-total-row {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 16px;
    padding: 15px 0;
    border-top: 1px dashed #eee;
    margin-top: 10px;
}

.chk-breadcrumbs {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #777;
    margin-bottom: 30px;
}

.chk-breadcrumb.active {
    color: #1a1a2e;
}

.chk-form-group {
    margin-bottom: 20px;
}

.chk-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #777;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.chk-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #edf1f7;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.chk-input:focus {
    border-color: #ff3366;
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
}

.chk-phone-wrap {
    display: flex;
    align-items: center;
    border: 1px solid #edf1f7;
    border-radius: 8px;
    overflow: hidden;
}

.chk-phone-prefix {
    background: #f8f9fb;
    padding: 12px 15px;
    font-weight: 700;
    border-right: 1px solid #edf1f7;
    color: #333;
}

.chk-phone-input {
    flex: 1;
    border: none;
    padding: 12px;
    outline: none;
}

.btn-continue {
    background: #ff2d4b;
    color: #fff;
    border: none;
    padding: 15px;
    width: 100%;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    margin-top: auto;
    transition: 0.3s;
}

.btn-continue:hover {
    background: #e0253f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 45, 75, 0.3);
}

.qr-container {
    text-align: center;
    padding: 30px;
}

.qr-img {
    width: 220px;
    height: 220px;
    margin: 0 auto 20px;
    display: block;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .checkout-box {
        flex-direction: column;
        height: auto;
        max-height: 95vh;
    }

    .checkout-left {
        display: none;
    }
}

/* ========================================================
   AUTH & PROFILE DROPDOWN
   ======================================================== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-container {
    position: relative;
    display: flex;
    align-items: center;
}

.profile-link {
    cursor: pointer;
    font-weight: 600;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 220px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    z-index: 5000;
}

.profile-container:hover .profile-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

[data-theme="dark"] .profile-dropdown {
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-item {
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: 0.2s;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.dropdown-item i {
    width: 16px;
    color: #ff3366;
}

.dropdown-item:hover {
    background: rgba(255, 51, 102, 0.05);
    color: #ff3366;
}

[data-theme="dark"] .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 5px 0;
}

[data-theme="dark"] .dropdown-divider {
    background: rgba(255, 255, 255, 0.1);
}

/* LOGIN POPUP UNIQUE STYLING */
.auth-standard-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(15px) !important;
    z-index: 10000 !important;
    /* Extremely high to be on top of everything */
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
}

.auth-standard-popup.active {
    display: flex !important;
}

.trend-item {
    position: relative;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
}

/* Video */
.trend-item iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.77%;
    /* 16:9 ratio cover trick */
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    /* click disable */
}

/* Dark gradient overlay */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    z-index: 2;
}

/* Text content */
.content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 3;
}

.content h4 {
    font-size: 24px;
    font-weight: 800;
}

.content p {
    font-size: 13px;
    opacity: 0.9;
}

.login-wrapper.popup-version {
    width: 100%;
    max-width: 450px;
    padding: 20px;
    transform-origin: top center;
    animation: slideDownFade 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes slideDownFade {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close-popup-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    z-index: 10;
}

/* ========================================================
   WORLD-CLASS RESPONSIVENESS SYSTEM
   ======================================================== */

/* 🌌 TABLETS (max-width: 1024px) */
@media (max-width: 1024px) {
    .container {
        width: 95%;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .category-blocks {
        grid-template-columns: repeat(2, 1fr);
    }

    .list-columns-wrap {
        gap: 20px;
    }

    .list-column {
        min-width: 45%;
    }
}

/* 📱 LARGE MOBILE (max-width: 768px) */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        order: 1;
        flex: 1;
        display: flex;
        justify-content: flex-start;
    }

    .logo img {
        height: 40px !important;
    }

    .hamburger {
        order: 2;
        display: block;
    }

    .header-actions {
        order: 3;
        width: 100%;
        justify-content: center;
        display: flex;
        gap: 20px;
        margin-top: 5px;
    }

    .header-actions .header-link span[data-i18n="login"] {
        display: none;
    }

    /* Hide login text to make it cleaner */
    .search-bar {
        order: 4;
        width: 100%;
        margin: 15px 0 5px 0;
    }

    .nav-links {
        display: none;
    }

    .hero-slider .content h1,
    .cat-hero-title {
        font-size: 32px !important;
    }

    .hero-slider .content p {
        font-size: 14px !important;
    }

    /* Force 1 column for everything the user asked for */
    .product-grid,
    .categories-grid-premium,
    .trending-grid,
    .video-gallery-grid,
    .cat-product-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .category-blocks {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
    }

    .cat-block,
    .cat-quick-box {
        width: 100% !important;
        max-width: 350px !important;
        margin-bottom: 15px;
    }

    .cat-quick-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        gap: 15px;
    }

    .lifestyle-row,
    .lifestyle-row.reverse,
    .row.align-items-center {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .lf-text-col h2 {
        font-size: 28px !important;
    }

    .card,
    .product-item,
    .cat-grid-item {
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .product-track {
        gap: 15px;
    }

    .footer-grid {
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col-main {
        padding-right: 0 !important;
    }

    .modal-m-content {
        width: 95% !important;
        height: auto !important;
        max-height: 90vh;
        overflow-y: auto;
        flex-direction: column !important;
        padding: 20px;
    }

    .m-left,
    .m-right {
        flex: none !important;
        width: 100% !important;
        padding: 0 !important;
    }

    .m-right {
        margin-top: 20px;
    }

    .m-title {
        font-size: 24px;
    }

    .checkout-box {
        flex-direction: column;
        height: auto;
        max-height: 95vh;
    }

    .checkout-left {
        display: none;
    }

    .slider-btn {
        display: none !important;
    }
}

/* 📲 SMALL MOBILE (max-width: 480px) */
@media (max-width: 480px) {
    .top-bar-marquee p {
        font-size: 10px !important;
    }

    /* Make video cards clear and slightly shorter */
    .trend-item,
    .video-item-cat,
    .cat-showcase-card {
        height: 300px !important;
    }

    .section-title {
        font-size: 24px !important;
    }

    .premium-qty-row {
        transform: scale(0.9);
        margin: 0 auto;
    }
}

/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Go to Top Button */
.go-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.go-top-btn.active {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
}

.go-top-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-5px);
}

/* Auth Popup Styles */
.auth-standard-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10001;
    backdrop-filter: blur(5px);
    transition: 0.3s;
}

.auth-standard-popup.active {
    display: flex;
}

.login-wrapper.popup-version {
    width: 100%;
    max-width: 450px;
    position: relative;
    animation: popupFadeUp 0.4s ease-out;
}

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

.close-popup-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f0f2f5;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.close-popup-btn:hover {
    background: #e4e6eb;
    color: #ff3366;
}

.chk-phone-wrap {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
}

.chk-phone-wrap:focus-within {
    border-color: #ff3366;
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
}

.btn-continue {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    margin-top: 10px;
    transition: 0.3s;
}

.btn-continue:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

#otpInput:focus {
    border-color: #ff3366;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
}

/* WhatsApp Floating Icon */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1) rotate(10deg);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #333;
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    pointer-events: none;
}

.whatsapp-tooltip::before {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 70px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 30px;
        bottom: 85px;
        right: 20px;
    }
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on mobile */
    }
}