/* ========================================
   TABLE OF CONTENTS
   ========================================
   1. Reset and Base Styles
   2. CSS Variables
   3. Typography
   4. Layout
   5. Custom Scrollbar
   6. Animations
   7. Header
   8. Navigation
   9. Search
   10. User Actions
   11. Main Content
   12. Filters Sidebar
   13. Products Grid
   14. Product Cards
   15. Modal
   16. Footer
   17. Responsive Design
   18. Accessibility
   ======================================== */

/* ========================================
   1. RESET AND BASE STYLES
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--secondary-color);
    background: linear-gradient(135deg, #f5f7fa 0%, #f8f9fa 100%);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: all var(--transition-normal);
}

/* ========================================
   2. CSS VARIABLES
   ======================================== */
:root {
    /* Colors */
    --primary-color: #0e4977;
    --primary-dark: #103654;
    --secondary-color: #2d3436;
    --accent-color: #e74c3c;
    --light-accent: #ffeaa7;
    --light-gray: #f8f9fa;
    --medium-gray: #dfe6e9;
    --dark-gray: #636e72;
    --success-color: #00b894;
    --warning-color: #fdcb6e;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --border-radius: 8px;
    --border-radius-sm: 4px;
}

/* ========================================
   3. TYPOGRAPHY
   ======================================== */
.page-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* ========================================
   4. LAYOUT
   ======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.content-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.main-content {
    padding: 30px 15px;
    animation: fadeIn 0.5s ease-out;
}

.page-header {
    margin-bottom: 30px;
    position: relative;
}

/* ========================================
   5. CUSTOM SCROLLBAR
   ======================================== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ========================================
   6. ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes slideIn {
    from { transform: translateX(-20px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* ========================================
   7. HEADER
   ======================================== */
.header {
    background-color: #fff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    animation: slideIn 0.5s ease-out;
}

.header > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    position: relative;
    overflow: hidden;
}

.logo a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width var(--transition-normal);
}

.logo a:hover::after {
    width: 100%;
}

.logo i {
    color: var(--primary-color);
    margin-right: 3px;
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.logo span {
    color: var(--primary-color);
    font-weight: 800;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    padding: 8px;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-normal);
}

.mobile-menu-toggle:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}


/* ========================================
   BLOG SECTION
   ======================================== */
.blog-section {
    margin-top: 60px;
    padding: 40px 0;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.blog-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.blog-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-header h2 i {
    margin-right: 10px;
}

.blog-header p {
    color: var(--dark-gray);
    font-size: 1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 0 30px;
}

.blog-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 1px solid var(--medium-gray);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card-image {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 20px;
}

.blog-card-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.blog-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: var(--dark-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--dark-gray);
    padding-top: 15px;
    border-top: 1px solid var(--medium-gray);
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-date i {
    color: var(--primary-color);
}

.blog-card-read-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-read-time i {
    color: var(--accent-color);
}

.blog-cta {
    text-align: center;
    margin-top: 40px;
}

.blog-cta .btn-primary {
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.blog-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.blog-cta .btn-primary i {
    margin-left: 8px;
}

.blog-notification-excerpt {
    color: var(--dark-gray);
    font-style: italic;
    margin: 15px 0;
}

/* Blog Section Responsive */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .blog-header h2 {
        font-size: 1.6rem;
    }
    
    .blog-card-title {
        font-size: 1.1rem;
    }
}


/* ========================================
   8. NAVIGATION
   ======================================== */
.navbar {
    background: linear-gradient(135deg, var(--secondary-color), #1a1e1f);
    padding: 0;
    position: relative;
}

.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.nav-links {
    display: flex;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    display: block;
    padding: 15px 20px;
    color: white;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.nav-links a:hover::before {
    left: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    background-color: var(--primary-color);
    color: white;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

/* ========================================
   9. SEARCH
   ======================================== */
.search-box {
    display: flex;
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
    border: 2px solid var(--medium-gray);
    border-radius: 50px;
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.search-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(9, 132, 227, 0.1);
    transform: translateY(-2px);
}

.search-box input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    font-size: 0.95rem;
    background: transparent;
    outline: none;
}

.search-box button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0 25px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.search-box button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.search-box button:hover::before {
    left: 100%;
}

.search-box button:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

/* ========================================
   10. USER ACTIONS
   ======================================== */
.user-actions {
    display: flex;
    gap: 20px;
}

.action-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.85rem;
    position: relative;
    padding: 5px;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-normal);
}

.action-link:hover {
    color: var(--primary-color);
    background-color: rgba(9, 132, 227, 0.1);
    transform: translateY(-2px);
}

.action-link i {
    font-size: 1.2rem;
    margin-bottom: 3px;
    position: relative;
}

.action-link:hover i {
    animation: bounce 0.5s;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -5px;
    background: linear-gradient(135deg, var(--accent-color), #ff7675);
    color: white;
    font-size: 0.7rem;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    box-shadow: 0 2px 5px rgba(231, 76, 60, 0.3);
}

/* ========================================
   11. MAIN CONTENT - CONTROLS
   ======================================== */
.controls {
    background-color: white;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.filter-sort-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.filter-toggle {
    display: none;
    gap: 8px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: var(--border-radius);
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: var(--shadow-sm);
}

.filter-toggle:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.sort-control {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sort-control label {
    font-weight: 500;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.sort-control select {
    padding: 10px 35px 10px 15px;
    border: 2px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    color: var(--secondary-color);
    background-color: white;
    cursor: pointer;
    transition: all var(--transition-normal);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232d3436' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.sort-control select:hover,
.sort-control select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(9, 132, 227, 0.1);
    outline: none;
}

/* ========================================
   12. FILTERS SIDEBAR
   ======================================== */
.filters-sidebar {
    width: 280px;
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-gray);
}

.filters-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.clear-filters {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-normal);
}

.clear-filters:hover {
    background-color: rgba(231, 76, 60, 0.1);
    transform: translateX(-2px);
}

.filter-group {
    margin-bottom: 30px;
}

.filter-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-normal);
    position: relative;
}

.filter-option:hover {
    background-color: rgba(9, 132, 227, 0.05);
}

.filter-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--medium-gray);
    border-radius: 4px;
    margin-right: 12px;
    position: relative;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.filter-option:hover .checkmark {
    border-color: var(--primary-color);
}

.filter-option input[type="checkbox"]:checked ~ .checkmark {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-color: var(--primary-color);
}

.filter-option input[type="checkbox"]:checked ~ .checkmark::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.filter-option span:not(.checkmark):not(.item-count) {
    flex: 1;
    font-size: 0.95rem;
    color: var(--secondary-color);
}

.item-count {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: auto;
}

/* Price Filter */
.price-filter {
    padding: 5px 0;
}

.price-range-display {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

.range-slider {
    position: relative;
    height: 35px;
    margin-bottom: 10px;
}

.slider {
    position: absolute;
    width: 100%;
    height: 5px;
    border-radius: 5px;
    background: var(--light-gray);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(9, 132, 227, 0.3);
    transition: all var(--transition-normal);
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 3px 12px rgba(9, 132, 227, 0.5);
}

.slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(9, 132, 227, 0.3);
    transition: all var(--transition-normal);
}

.slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 3px 12px rgba(9, 132, 227, 0.5);
}

.price-limits {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--dark-gray);
}

/* ========================================
   13. PRODUCTS SECTION
   ======================================== */
.products-section {
    flex: 1;
}

.products-info {
    margin-bottom: 20px;
}

.products-info p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    animation: fadeIn 0.5s ease-out;
}

/* ========================================
   14. PRODUCT CARDS
   ======================================== */
.product-card {
    background-color: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
    animation: fadeIn 0.5s ease-out;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background-color: var(--light-gray);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}


/* Color Options Styling - Add this to your CSS file */

.color-options {
    display: flex;
    gap: 8px;
    margin: 12px 0;
    padding: 8px 0;
    border-top: 1px solid var(--light-gray);
}

.color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--medium-gray);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
}

.color-swatch:hover {
    transform: scale(1.15);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.color-swatch.active {
    border: 3px solid var(--primary-color);
    box-shadow: 0 0 0 2px rgba(9, 132, 227, 0.2);
    transform: scale(1.1);
}

.color-swatch.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-shadow: 0 0 3px rgba(0,0,0,0.5);
}

/* Modal Color Options */
.modal-color-section {
    margin: 15px 0;
    padding: 15px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f7 100%);
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
    border-left: 5px solid var(--primary-color);
}

.modal-color-section h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.modal-color-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.color-swatch-large {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px solid var(--medium-gray);
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.color-swatch-large:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 12px rgba(0,0,0,0.25);
}

.color-swatch-large.active {
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 0 3px rgba(9, 132, 227, 0.2);
    transform: scale(1.1);
}

.color-swatch-large.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 0 4px rgba(0,0,0,0.7);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.btn-quick-view {
    background: white;
    color: var(--primary-color);
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
}

.btn-quick-view:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--accent-color), #ff7675);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.product-info {
    padding: 20px;
}

.product-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
   
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.product-rating i {
    color: var(--warning-color);
    font-size: 0.85rem;
}

.rating-value {
    color: var(--dark-gray);
    font-size: 0.85rem;
    font-weight: 500;
}

.product-category {
    color: var(--dark-gray);
    font-size: 0.85rem;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
}

.product-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.btn-add-cart {
    background: linear-gradient(135deg, var(--success-color), #00cec9);
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, #00cec9, var(--success-color));
    transform: scale(1.1) rotate(15deg);
    box-shadow: var(--shadow-md);
}

/* ========================================
   15. MODAL
   ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: fadeIn 0.3s ease-out;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-gray);
    color: var(--secondary-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all var(--transition-normal);
}

.modal-close:hover {
    background-color: var(--accent-color);
    color: white;
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
}

.modal-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.modal-product-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--light-gray);
    aspect-ratio: 1 / 1;
    position: sticky;
    top: 0;
}

.modal-product-details {
    display: flex;
    flex-direction: column;
    max-height: calc(90vh - 60px);
    overflow-y: auto;
    padding-right: 10px;
}

.modal-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-product-details h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.modal-product-price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 12px 0;
}

.modal-product-description {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.modal-product-meta {
    margin-bottom: 15px;
    padding: 15px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

.modal-product-meta p {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.modal-product-meta p:last-child {
    margin-bottom: 0;
}

.modal-product-meta strong {
    color: var(--primary-color);
    font-weight: 600;
}

.modal-actions {
    display: flex;
    gap: 15px;
}

.btn-primary,
.btn-secondary {
    flex: 1;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--success-color), #00cec9);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00cec9, var(--success-color));
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: white;
    color: var(--secondary-color);
    border: 2px solid var(--medium-gray);
}

.btn-secondary:hover {
    background-color: var(--light-gray);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Custom scrollbar for modal details */
.modal-product-details::-webkit-scrollbar {
    width: 6px;
}

.modal-product-details::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

.modal-product-details::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.modal-product-details::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}


/* ========================================
   16. FOOTER - IMPROVED VISIBILITY
   ======================================== */
.footer {
    background: linear-gradient(135deg, #1a1e1f, #2d3436);
    color: #f0f0f0; /* Much lighter base color */
    padding: 60px 0 20px;
    margin-top: 80px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
}


/* ========================================
   16. FOOTER - PREMIUM VERSION
   ======================================== */
.footer-col ul li {
    margin-bottom: 14px;
    position: relative;
}

.footer-col ul li a {
    display: inline-flex;
    align-items: center;
    padding: 8px 0;
    position: relative;
    transition: all var(--transition-normal);
    color: #f0f9ff; /* Light blue tint */
    font-weight: 500;
    gap: 10px;
    width: 100%;
    border-radius: 6px;
    padding-left: 8px;
}


.footer-col ul li a:hover {
    color: #ffffff;
    background: linear-gradient(90deg, 
        rgba(14, 73, 119, 0.2) 0%,
        rgba(14, 73, 119, 0.1) 100%);
    transform: translateX(8px);
    padding-left: 20px;
    box-shadow: 0 4px 15px rgba(14, 73, 119, 0.2);
}

.footer-col ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Contact info with glow effect */
.contact-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: #e6f7ff;
    padding: 12px 15px;
    border-radius: 10px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%);
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info li:hover {
    background: linear-gradient(135deg, 
        rgba(14, 73, 119, 0.2) 0%,
        rgba(14, 73, 119, 0.1) 100%);
    transform: translateY(-3px);
    border-color: rgba(14, 73, 119, 0.3);
    box-shadow: 0 5px 20px rgba(14, 73, 119, 0.15);
}

.contact-info i {
    color: white;
    font-size: 1.2rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(14, 73, 119, 0.3);
    transition: all var(--transition-normal);
}

.contact-info li:hover i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 18px rgba(14, 73, 119, 0.4);
}

.contact-info span {
    color: #ffffff;
    font-weight: 500;
    line-height: 1.5;
}

/* Company info section with glass effect */
.company-info {
    position: relative;
    overflow: hidden;
}

.company-info p {
    color: #f0f9ff;
    margin-bottom: 12px;
    line-height: 1.7;
    padding: 8px 0;
    position: relative;
}

.company-info p::before {
    content: '•';
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Decathlon Nepal - Premium styling */
/* Decathlon Nepal - MAXIMUM VISIBILITY & PREMIUM STYLING */
.decathlon-nepal {
    color: #FFFFFF !important;
    font-weight: 900;
    font-size: 1.6rem;
    margin: 25px 0;
    padding: 20px 30px;
    background: linear-gradient(135deg, 
        rgba(14, 73, 119, 0.95) 0%,
        rgba(231, 76, 60, 0.85) 100%);
    border-radius: 12px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(14, 73, 119, 0.4),
        0 0 0 3px rgba(255, 255, 255, 0.2),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(255, 255, 255, 0.2);
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Shine effect background */
.decathlon-nepal::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        rgba(255, 255, 255, 0.6),
        rgba(255, 255, 255, 0.4),
        transparent);
    transition: left 1s;
    z-index: 1;
}

/* Gradient text for extra pop */
.decathlon-nepal span {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, 
        #FFFFFF 0%,
        #FFD700 25%,
        #FFFFFF 50%,
        #FFD700 75%,
        #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: textShimmer 3s infinite linear;
}

/* Badge indicator */
.decathlon-nepal::after {
    content: 'OFFICIAL';
    position: absolute;
    top: -10px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000000;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 3;
    text-transform: uppercase;
}

/* Hover effects */
.decathlon-nepal:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 
        0 15px 40px rgba(231, 76, 60, 0.5),
        0 0 0 4px rgba(255, 255, 255, 0.3),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, 
        rgba(14, 73, 119, 1) 0%,
        rgba(231, 76, 60, 0.9) 100%);
}

.decathlon-nepal:hover::before {
    left: 100%;
}

.decathlon-nepal:hover span {
    animation-duration: 2s;
}

/* Pulsing glow animation */
@keyframes pulseGlow {
    0%, 100% { 
        box-shadow: 
            0 10px 30px rgba(14, 73, 119, 0.4),
            0 0 0 3px rgba(255, 255, 255, 0.2);
    }
    50% { 
        box-shadow: 
            0 10px 40px rgba(231, 76, 60, 0.6),
            0 0 0 4px rgba(255, 255, 255, 0.3);
    }
}

@keyframes textShimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* Add subtle pulsing effect */
.decathlon-nepal {
    animation: pulseGlow 3s infinite;
}

/* Make it responsive */
@media (max-width: 768px) {
    .decathlon-nepal {
        font-size: 1.3rem;
        padding: 15px 20px;
        margin: 20px 0;
        letter-spacing: 1.5px;
    }
    
    .decathlon-nepal::after {
        font-size: 0.6rem;
        padding: 3px 8px;
        right: 10px;
        top: -8px;
    }
}

@media (max-width: 576px) {
    .decathlon-nepal {
        font-size: 1.1rem;
        padding: 12px 15px;
        margin: 15px 0;
        letter-spacing: 1px;
    }
    
    .decathlon-nepal::after {
        display: none; /* Hide badge on very small screens */
    }
}

/* Note text - Premium design */
.note-text {
    color: #ffffff !important;
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, 
        rgba(231, 76, 60, 0.1) 0%,
        rgba(231, 76, 60, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(231, 76, 60, 0.2);
    position: relative;
    border-left: 5px solid var(--accent-color);
    box-shadow: inset 0 0 20px rgba(231, 76, 60, 0.1);
}

.note-text::before {
    content: '⚠️';
    position: absolute;
    top: -12px;
    left: 20px;
    font-size: 1.5rem;
    background: var(--accent-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.note-text p {
    margin: 0;
    color: #ffffff !important;
}

/* Footer bottom - Enhanced design */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    color: #ffffff;
    position: relative;
    margin-top: 40px;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-color), 
        var(--accent-color), 
        transparent);
}

.footer-bottom p {
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.footer-bottom a {
    color: #a3d5ff;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    padding: 0 5px;
    transition: all var(--transition-normal);
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width var(--transition-normal);
}

.footer-bottom a:hover {
    color: #ffffff;
}

.footer-bottom a:hover::after {
    width: 100%;
}

/* Copyright text with subtle animation */
.copyright {
    color: #cce7ff;
    font-size: 0.9rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.copyright::before {
    content: '©';
    font-size: 1rem;
    color: var(--accent-color);
    opacity: 0.8;
}

.copyright strong {
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 0 5px;
}

/* Additional effect for list items */
.footer-col ul li::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        transparent);
    transition: width var(--transition-normal);
}

.footer-col ul li:hover::after {
    width: 40px;
}

/* Gradient text for headings */
.footer-col h4 {
    background: linear-gradient(135deg, #ffffff, #a3d5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   17. UTILITY CLASSES
   ======================================== */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    animation: fadeIn 0.5s ease-out;
}

/* ========================================
   18. RESPONSIVE DESIGN
   ======================================== */

/* Tablets and smaller */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .filters-sidebar {
        width: 100%;
        position: static;
        display: none;
        animation: slideIn 0.3s ease-out;
    }
    
    .filters-sidebar.active {
        display: block;
    }
    
    .filter-toggle {
        display: flex;
        align-items: center;
    }
    
    .modal-product {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .header > .container {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .search-box {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin: 10px 0 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links {
        flex-direction: column;
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color);
        box-shadow: var(--shadow-md);
        animation: slideIn 0.3s ease-out;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .user-actions {
        gap: 15px;
    }
    
    .action-link span {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-product {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modal-product-image {
        position: relative;
        max-height: 350px;
    }
    
    .modal-product-details {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
}

/* Small mobile devices */
@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .modal-content {
        border-radius: 10px;
    }
    
    .modal-body {
        padding: 15px;
    }
    
    .modal-product {
        gap: 15px;
    }
    
    .modal-product-image {
        max-height: 300px;
    }
    
    .modal-product-details h2 {
        font-size: 1.3rem;
    }
    
    .modal-product-price {
        font-size: 1.4rem;
    }
    
    .modal-color-section {
        margin: 10px 0;
        padding: 12px;
    }
    
    .filter-sort-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-toggle {
        width: 100%;
        justify-content: center;
    }
    
    .sort-control {
        justify-content: space-between;
    }
}

/* ========================================
   19. ACCESSIBILITY
   ======================================== */

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .product-card,
    .filters-sidebar,
    .modal-content {
        border: 2px solid var(--secondary-color);
    }
    
    button,
    .btn-add-cart,
    .btn-primary,
    .btn-secondary {
        border: 2px solid currentColor;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
/* ========================================
   WELCOME MODAL STYLES
   ======================================== */
.welcome-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.welcome-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.welcome-modal-content {
    background: white;
    border-radius: 20px;
    max-width: 550px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.5s ease-out;
    scroll-behavior: smooth;
}

/* Custom scrollbar for welcome modal */
.welcome-modal-content::-webkit-scrollbar {
    width: 6px;
}

.welcome-modal-content::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 10px;
}

.welcome-modal-content::-webkit-scrollbar-thumb {
    background: #0e4977;
    border-radius: 10px;
}

.welcome-modal-content::-webkit-scrollbar-thumb:hover {
    background: #103654;
}

.welcome-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f8f9fa;
    color: #2d3436;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 10;
}

.welcome-modal-close:hover {
    background: #e74c3c;
    color: white;
    transform: rotate(90deg);
}

.welcome-modal-body {
    padding: 40px 30px 30px;
    text-align: center;
}

.welcome-icon {
    font-size: 3rem;
    color: #0e4977;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.welcome-modal-body h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    color: #2d3436;
    margin-bottom: 15px;
    line-height: 1.3;
    background: linear-gradient(135deg, #0e4977, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-message {
    margin: 15px 0;
    line-height: 1.6;
}

.welcome-message p {
    color: #636e72;
    font-size: 1rem;
    margin-bottom: 12px;
}

.disclaimer-text {
    color: #e74c3c !important;
    font-weight: 600;
    font-size: 0.95rem !important;
    padding: 8px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
}

.contact-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
    border-left: 4px solid #0e4977;
}

.contact-box p {
    margin: 8px 0;
    color: #2d3436;
}

.email-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem !important;
    margin-top: 8px !important;
}

.email-contact i {
    color: #0e4977;
}

.email-contact a {
    color: #0e4977;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.email-contact a:hover {
    color: #e74c3c;
    text-decoration: underline;
}

.btn-welcome-close {
    background: linear-gradient(135deg, #0e4977, #103654);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-welcome-close:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.fan-page-notice {
    margin-top: 15px;
    padding: 10px;
    background: rgba(9, 132, 227, 0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.fan-page-notice a {
    color: #0e4977;
    font-weight: 600;
    text-decoration: none;
}

.fan-page-notice a:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .welcome-modal-body {
        padding: 30px 20px 25px;
    }
    
    .welcome-modal-body h2 {
        font-size: 1.3rem;
    }
    
    .welcome-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .welcome-message p {
        font-size: 0.9rem;
    }
    
    .contact-box {
        padding: 12px;
        margin: 12px 0;
    }
    
    .btn-welcome-close {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}  
/* ========================================
   DISCLAIMER NOTIFICATION (ADD TO CART)
   ======================================== */
.disclaimer-notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.disclaimer-notification-overlay.active {
    opacity: 1;
    visibility: visible;
}

.disclaimer-notification-box {
    background: white;
    border-radius: 20px;
    max-width: 550px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.5s ease-out;
    padding: 40px 30px 30px;
    text-align: center;
    scroll-behavior: smooth;
}

/* Custom scrollbar for disclaimer notification */
.disclaimer-notification-box::-webkit-scrollbar {
    width: 6px;
}

.disclaimer-notification-box::-webkit-scrollbar-track {
    background: #f8f9fa;
    border-radius: 10px;
}

.disclaimer-notification-box::-webkit-scrollbar-thumb {
    background: #0e4977;
    border-radius: 10px;
}

.disclaimer-notification-box::-webkit-scrollbar-thumb:hover {
    background: #103654;
}

.disclaimer-icon {
    font-size: 3rem;
    color: #0e4977;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.disclaimer-notification-box h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    color: #2d3436;
    margin-bottom: 15px;
    line-height: 1.3;
    background: linear-gradient(135deg, #0e4977, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.disclaimer-message {
    margin: 15px 0;
    line-height: 1.6;
}

.disclaimer-message p {
    color: #636e72;
    font-size: 1rem;
    margin-bottom: 12px;
}

.disclaimer-warning {
    color: #e74c3c !important;
    font-weight: 600;
    font-size: 0.95rem !important;
    padding: 8px;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 8px;
}

.product-interest-message {
    color: #0e4977 !important;
    font-weight: 600;
    font-size: 0.95rem !important;
    padding: 10px 12px;
    background: linear-gradient(135deg, rgba(14, 73, 119, 0.08), rgba(14, 73, 119, 0.12));
    border-radius: 8px;
    border-left: 4px solid #0e4977;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0 !important;
}

.product-interest-message i {
    font-size: 1.1rem;
    color: #0e4977;
    flex-shrink: 0;
}

.disclaimer-contact-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    margin: 15px 0;
    border-left: 4px solid #0e4977;
}

.disclaimer-contact-box p {
    margin: 8px 0;
    color: #2d3436;
}

.disclaimer-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1rem !important;
    margin-top: 8px !important;
    color: #0e4977 !important;
    font-weight: 600;
}

.disclaimer-email i {
    color: #0e4977;
}

.btn-disclaimer-close {
    background: linear-gradient(135deg, #0e4977, #103654);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-disclaimer-close:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 576px) {
    .disclaimer-notification-box {
        padding: 30px 20px 25px;
    }
    
    .disclaimer-notification-box h2 {
        font-size: 1.3rem;
    }
    
    .disclaimer-icon {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }
    
    .disclaimer-message p {
        font-size: 0.9rem;
    }
    
    .disclaimer-contact-box {
        padding: 12px;
        margin: 12px 0;
    }
    
    .btn-disclaimer-close {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}
.contact-info a {
    color: #ffffff;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0;
    padding: 0;
}

.contact-info a:hover {
    color: #4fc3f7;
    text-decoration: underline;
}

/* Footer About Section */
.footer-about {
    padding-right: 20px;
}

.footer-description {
    color: #f0f9ff;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Business Hours */
.business-hours {
    margin-top: 25px;
    padding: 20px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%,
        rgba(255, 255, 255, 0.02) 100%);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.business-hours h5 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.business-hours h5 i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.business-hours p {
    color: #e6f7ff;
    margin: 5px 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Social Links Enhancement */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(14, 73, 119, 0.3);
    border-color: transparent;
}

.social-links a i {
    transition: transform var(--transition-normal);
}

.social-links a:hover i {
    transform: rotate(360deg);
}

/* Fan Page Notice Enhancement */
.fan-page-notice {
    background: rgba(231, 76, 60, 0.1);
    padding: 12px 15px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin: 20px 0;
    font-size: 0.9rem;
}

.fan-page-notice a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.fan-page-notice a:hover {
    color: #4fc3f7;
    text-decoration: underline;
}

/* Responsive Footer Adjustments */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        padding-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .business-hours {
        margin-top: 20px;
    }
    
    .social-links {
        justify-content: center;
    }
}