

/* ===========================
   CSS VARIABLES - Change colors here
   =========================== */
   :root {
    --primary-color: #0D9488;
    --primary-dark: #E55D00;
    --primary-light: #FF8533;
    --secondary-color: #0078D4;
    --success-color: #4CAF50;
    --danger-color: #F44336;
    --warning-color: #FF9800;
    --info-color: #2196F3;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --bg-color: #ffffff;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
}


/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Hind Siliguri', cursive !important;
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.6;
    overflow-x: hidden;
}


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

button {
    cursor: pointer;
    border: none;
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===========================
   UTILITY CLASSES
   =========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

/* ===========================
   TOP BAR
   =========================== */
.top-bar {
    background-color: var(--primary-color);
}

/* ===========================
   HEADER & NAVIGATION
   =========================== */
header {
    background-color: white;
    box-shadow: var(--shadow);
}

.badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--danger-color);
    color: white;
    font-size: 10px;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    text-align: center;
}

/* Dropdown Menus */
.language-dropdown .dropdown-menu,
.currency-dropdown .dropdown-menu {
    display: none;
}

.language-dropdown .dropdown-menu.show,
.currency-dropdown .dropdown-menu.show {
    display: block;
}

.dropdown-menu a:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Mega Menu */
.mega-menu-item {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 30px;
    min-width: 700px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 100;
    margin-top: 10px;
}

.mega-menu-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mega-menu-column h4 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.mega-menu-column ul {
    list-style: none;
}

.mega-menu-column ul li {
    margin-bottom: 8px;
}

.mega-menu-column ul li a {
    color: var(--text-color);
    font-size: 14px;
    transition: all 0.3s;
    display: block;
    padding: 5px 0;
}

.mega-menu-column ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}


/* ===========================
   HERO SLIDER
   =========================== */
.hero-slider {
    height: 500px;
    position: relative;
}

.slider-container {
    height: 100%;
    position: relative;
}

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

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

.slider-content {
    max-width: 600px;
}


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

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

/* ===========================
   PRODUCT SECTIONS
   =========================== */
.section-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title h2 {
    font-size: 28px;
    font-weight: bold;
    color: var(--dark-color);
    display: inline-block;
    padding: 0 20px;
    position: relative;
}

.section-title h2::before,
.section-title h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 100px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color));
}

.section-title h2::before {
    right: 100%;
}

.section-title h2::after {
    left: 100%;
    background: linear-gradient(to left, transparent, var(--primary-color));
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* ===========================
   PRODUCT CARD
   =========================== */
.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

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

.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    background-color: var(--light-color);
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    z-index: 5;
    transition: all 0.3s;
}

.wishlist-btn:hover {
    background-color: var(--danger-color);
    color: white;
}

.badge-discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--danger-color);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 5;
}

.badge-new {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--success-color);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    z-index: 5;
}

.product-info {
    padding: 15px;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.price-current {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
}

.price-original {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.btn-add-cart {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-add-cart:hover {
    background-color: var(--primary-dark);
    transform: scale(1.02);
}

/* ===========================
   VIEW MORE BUTTON
   =========================== */
.view-more-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.view-more-btn:hover {
    background-color: var(--primary-dark);
    transform: scale(1.05);
}

/* ===========================
   REVIEW GRID
   =========================== */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.review-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.review-card img {
    width: 100%;
    height: auto;
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background-color: var(--primary-color);
    color: white;
}

footer a {
    transition: all 0.3s;
}

footer a:hover {
    color: var(--light-color);
}

/* ===========================
   MOBILE BOTTOM NAVIGATION
   =========================== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    padding: 8px 0;
    z-index: 1000;
}

.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    color: var(--text-light);
    font-size: 12px;
    position: relative;
    transition: all 0.3s;
}

.mobile-bottom-nav .nav-item i {
    font-size: 20px;
}

.mobile-bottom-nav .nav-item.active {
    color: var(--primary-color);
}

.mobile-bottom-nav .nav-item:active {
    transform: scale(0.95);
}

.mobile-bottom-nav .nav-item .badge {
    top: -5px;
    right: 0;
    font-size: 9px;
    padding: 2px 5px;
}

/* ===========================
   CART SIDEBAR
   =========================== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

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

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

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

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

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

.cart-item-details h4 {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.qty-controls button {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background-color: var(--light-color);
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.3s;
}

.qty-controls button:hover {
    background-color: var(--primary-color);
    color: white;
}

.qty-controls span {
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.delete-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--light-color);
    color: var(--danger-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.delete-btn:hover {
    background-color: var(--danger-color);
    color: white;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.checkout-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

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

.view-cart-btn {
    width: 100%;
    background-color: transparent;
    color: var(--primary-color);
    padding: 12px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.view-cart-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s;
}

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

/* ===========================
   MOBILE MENU SIDEBAR (Left - Legacy)
   =========================== */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.mobile-sidebar-body {
    padding: 20px;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    color: var(--text-color);
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-menu-item:hover,
.mobile-menu-item:active {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.mobile-menu-item i {
    font-size: 18px;
    width: 24px;
}

/* ===========================
   MOBILE RIGHT SIDEBAR MENU
   =========================== */
.mobile-right-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: white;
    box-shadow: -2px 0 15px rgba(0, 0, 0, 0.15);
    z-index: 1002;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

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

.mobile-right-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color) 100%);
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-right-sidebar-header h3 {
    color: white;
}

.mobile-right-sidebar-header button {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mobile-right-sidebar-header button:hover {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

.mobile-right-sidebar-body {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
}

.mobile-category-item {
    margin-bottom: 4px;
}

.mobile-category-item > a {
    border-radius: 10px;
}

.mobile-subcategory {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out, margin-top 0.3s ease-out;
    opacity: 0;
    margin-top: 0;
}

.mobile-subcategory:not(.hidden) {
    max-height: 1000px;
    opacity: 1;
    margin-top: 8px;
    display: block;
}

.mobile-subcategory.hidden {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
}

.mobile-sub-subcategory {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out, margin-top 0.3s ease-out;
    opacity: 0;
    margin-top: 0;
}

.mobile-sub-subcategory:not(.hidden) {
    max-height: 500px;
    opacity: 1;
    margin-top: 4px;
    display: block;
}

.mobile-sub-subcategory.hidden {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
}

.category-arrow,
.subcategory-arrow {
    transition: transform 0.3s ease;
}

.category-arrow.rotate-90,
.subcategory-arrow.rotate-90 {
    transform: rotate(90deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* scrollbar hide */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}


/* ===========================
   FLASH SALE SECTION
   =========================== */
.flash-sale-section {
    margin-bottom: 40px;
}

.flash-sale-container {
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 24px rgba(17, 17, 17, 0.3);
}

.flash-sale-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 12px;
}

.flash-sale-title {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.flash-sale-title i {
    font-size: 20px;
    animation: flashBolt 1.5s infinite;
}

.flash-sale-title h2 {
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 2px;
}

@keyframes flashBolt {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.flash-sale-timer {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.timer-label {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.timer-boxes {
    display: flex;
    align-items: center;
    gap: 8px;
}

.timer-box {
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}

.timer-box span {
    display: block;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.timer-box small {
    display: block;
    font-size: 10px;
    color: var(--text-light);
    margin-top: 4px;
}

.timer-separator {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.view-all-flash {
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.view-all-flash:hover {
    background: white;
    color: var(--primary-color);
}

.flash-sale-slider {
    position: relative;
    padding: 0 50px;
}

.flash-sale-items {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 5px;
}

.flash-sale-items::-webkit-scrollbar {
    display: none;
}

.flash-sale-item {
    background: white;
    border-radius: 12px;
    padding: 15px;
    min-width: 200px;
    max-width: 200px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
}

.flash-sale-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.flash-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--danger-color);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    z-index: 5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.flash-item-image {
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--light-color);
}

.flash-item-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}

.flash-sale-item:hover .flash-item-image img {
    transform: scale(1.1);
}

.flash-item-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.flash-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.flash-current {
    font-size: 20px;
    font-weight: bold;
    color: var(--danger-color);
}

.flash-original {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.flash-progress {
    margin-top: 10px;
}

.progress-bar {
    height: 8px;
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 10px;
    transition: width 0.3s;
}

.progress-text {
    font-size: 12px;
    color: var(--text-light);
}

.flash-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s;
}

.flash-slider-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.flash-prev {
    left: 0;
}

.flash-next {
    right: 0;
}

/* ===========================
   RESPONSIVE STYLES
   =========================== */
@media (max-width: 768px) {
    .hero-slider {
        height: 300px;
    }

    .slider-title {
        font-size: 2rem;
    }

    .slider-subtitle {
        font-size: 1.2rem;
    }

    .btn-shop-now {
        padding: 10px 24px;
        font-size: 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .flash-sale-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .flash-sale-title h2 {
        font-size: 22px;
    }

    .flash-sale-title i {
        font-size: 24px;
    }

    .timer-box {
        min-width: 50px;
        padding: 6px 10px;
    }

    .timer-box span {
        font-size: 20px;
    }

    .flash-sale-slider {
        padding: 0 35px;
    }

    .flash-slider-btn {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .mega-menu {
        display: none !important;
    }

    .section-title h2 {
        font-size: 22px;
    }

    .section-title h2::before,
    .section-title h2::after {
        width: 50px;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

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

    body {
        padding-bottom: 60px;
    }

    .cart-sidebar {
        max-width: 93%;
    }

    .mobile-right-sidebar {
        max-width: 85%;
    }

    /* .top-bar {
        display: none;
    } */
}

@media (max-width: 480px) {
    .hero-slider {
        height: 250px;
    }

    .slider-title {
        font-size: 1.5rem;
    }

    .slider-subtitle {
        font-size: 1rem;
    }

    .btn-shop-now {
        padding: 8px 20px;
        font-size: 0.9rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .flash-sale-container {
        padding: 15px;
    }

    .flash-sale-title h2 {
        font-size: 18px;
    }

    .timer-box {
        min-width: 45px;
        padding: 5px 8px;
    }

    .timer-box span {
        font-size: 18px;
    }

    .flash-sale-slider {
        padding: 0 30px;
    }

    .product-card {
        border-radius: 8px;
    }

    .product-info {
        padding: 10px;
    }

    .product-title {
        font-size: 13px;
        min-height: 36px;
    }

    .price-current {
        font-size: 16px;
    }

    .btn-add-cart {
        padding: 8px;
        font-size: 12px;
    }
}

/* ===========================
   SCROLLBAR STYLING
   =========================== */
::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

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

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

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeIn 0.5s ease-in-out;
}
