/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366F1;
    --secondary-color: #8B5CF6;
    --accent-color: #7C3AED;
    --purple-gradient: #8B5CF6;
    --blue-gradient: #6366F1;
    --purple-dark: #7C3AED;
    --blue-dark: #4F46E5;
    --purple-light: #A78BFA;
    --blue-light: #818CF8;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --white: #ffffff;
    --shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
    --shadow-hover: 0 8px 25px rgba(99, 102, 241, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

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

/* Responsive Container Sizes */
@media (min-width: 640px) {
    .container {
        max-width: 640px;
        padding: 0 24px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
        padding: 0 32px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
        padding: 0 40px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
        padding: 0 48px;
    }
}

@media (min-width: 1440px) {
    .container {
        max-width: 1440px;
        padding: 0 56px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
        padding: 0 64px;
    }
}

/* Fluid container for header - Responsive */
.navbar .container {
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
}

@media (min-width: 640px) {
    .navbar .container {
        padding: 0 24px;
    }
}

@media (min-width: 768px) {
    .navbar .container {
        padding: 0 32px;
    }
}

@media (min-width: 1024px) {
    .navbar .container {
        padding: 0 40px;
    }
}

@media (min-width: 1280px) {
    .navbar .container {
        padding: 0 48px;
    }
}

@media (min-width: 1440px) {
    .navbar .container {
        padding: 0 56px;
    }
}

@media (min-width: 1920px) {
    .navbar .container {
        padding: 0 64px;
    }
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(99, 102, 241, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
}

/* Top Announcement Slider Bar */
.top-announcement-bar {
    background: #000;
    color: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    position: relative;
    z-index: 1100;
}

.top-announcement-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.announcement-text {
    flex: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.announcement-nav {
    background: none;
    border: none;
    color: #cccccc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem;
    font-size: 1rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.announcement-nav:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.announcement-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.announcement-social a {
    color: #cccccc;
    margin-left: 0.3rem;
    font-size: 1rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.announcement-social a:hover {
    color: #ffffff;
    transform: scale(1.1);
}

@media (max-width: 640px) {
    .top-announcement-bar {
        font-size: 0.8rem;
        padding: 0.35rem 0.75rem;
    }
    
    .announcement-text {
        white-space: normal;
    }
    
    .announcement-right {
        gap: 0.4rem;
    }

    .announcement-social a {
        font-size: 0.9rem;
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
}

/* Logo styling for wrapping */
.logo {
    flex-shrink: 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--purple-gradient) 0%, var(--blue-gradient) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.3));
}

.logo i {
    background: linear-gradient(135deg, var(--purple-gradient) 0%, var(--blue-gradient) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(99, 102, 241, 0.2));
}

.logo i {
    font-size: 1.8rem;
}

.logo img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: flex-start;
}

/* Responsive Navigation Menu Spacing */
@media (min-width: 1920px) {
    .nav-menu {
        gap: 2.5rem;
    }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .nav-menu {
        gap: 2.25rem;
    }
}

@media (min-width: 1280px) and (max-width: 1439px) {
    .nav-menu {
        gap: 2rem;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .nav-menu {
        gap: 1.75rem;
    }
}

@media (max-width: 1023px) and (min-width: 769px) {
    .nav-menu {
        gap: 1.5rem;
    }
}

/* When categories wrap to multiple rows */
.nav-menu > li {
    flex-shrink: 0;
}

/* Ensure cart icon stays on the same row when menu wraps */
.nav-menu .cart-icon {
    margin-left: auto;
    flex-shrink: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(99, 102, 241, 0.2);
}

/* Header Search Icon Button */
.nav-search-icon {
    position: relative;
}

.search-icon-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
}

.search-icon-btn:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    transform: scale(1.1);
}

.search-icon-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Search Modal */
.search-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.search-modal-overlay.active {
    display: flex;
    opacity: 1;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
}

.search-modal {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    overflow: hidden;
}

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

.search-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid var(--bg-light);
    background: linear-gradient(135deg, var(--purple-gradient) 0%, var(--blue-gradient) 100%);
    color: var(--white);
}

.search-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-modal-header h3 i {
    font-size: 1.3rem;
}

.search-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.search-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg) scale(1.1);
}

.search-modal-body {
    padding: 2rem;
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-input-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.search-modal-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid var(--bg-light);
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.search-modal-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.search-modal-search-btn {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--blue-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-modal-search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.search-results-container {
    min-height: 200px;
    max-height: 60vh;
    overflow-y: auto;
}

.search-placeholder {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-light);
}

.search-placeholder i {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 1rem;
}

.search-placeholder p {
    font-size: 1.1rem;
    margin: 0;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.search-result-item {
    background: var(--white);
    border: 2px solid var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.search-result-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

.search-result-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--purple-gradient) 0%, var(--blue-gradient) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    overflow: hidden;
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-info {
    padding: 1rem;
}

.search-result-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.search-result-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.search-result-old-price {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 400;
}

.search-result-category {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--bg-light);
}

.search-no-results {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--text-light);
}

.search-no-results i {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.search-no-results h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.search-loading {
    text-align: center;
    padding: 2rem;
    color: var(--primary-color);
}

.search-loading i {
    font-size: 2rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cart-icon {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Navigation Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown .dropdown-toggle i {
    font-size: 0.7rem;
    transition: var(--transition);
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: var(--white);
    box-shadow: var(--shadow-hover);
    border-radius: 8px;
    min-width: 250px;
    max-width: 300px;
    max-height: 80vh;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 1rem;
    padding: 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.category-dropdown-menu .dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.category-dropdown-menu .dropdown-products-list {
    padding: 0.5rem 0;
    width: 100%;
}

.category-dropdown-menu .dropdown-list-item {
    width: 100%;
    padding: 0.75rem 1.25rem;
}

.dropdown-section {
    display: flex;
    flex-direction: column;
}

.dropdown-header {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--secondary-color);
    padding: 1rem 1rem 0.75rem 1rem;
    margin-bottom: 0;
    background: transparent;
    color: var(--secondary-color);
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    text-decoration: none;
    border-bottom: 2px solid var(--bg-light);
}

.dropdown-header:hover {
    color: var(--primary-color);
}

.category-dropdown-menu .dropdown-header {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 1rem 1rem 0.75rem 1rem;
    border-bottom: 2px solid var(--bg-light);
    margin-bottom: 0;
}

.product-count {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

.dropdown-products {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
}

.category-dropdown-menu .dropdown-products {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
}

/* Simple List Format for Dropdown Products */
.dropdown-products-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dropdown-list-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--bg-light);
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 500;
}

.dropdown-list-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 1.25rem;
}

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

.dropdown-view-all-item {
    font-weight: 600;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-view-all-item:hover {
    background: linear-gradient(135deg, var(--purple-gradient) 0%, var(--blue-gradient) 50%, var(--blue-light) 100%);
    color: var(--white);
}

.dropdown-product-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 6px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
}

.dropdown-product-item:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.dropdown-product-image,
.dropdown-product-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #ddd;
}

.dropdown-product-placeholder {
    background: linear-gradient(135deg, var(--purple-gradient) 0%, var(--blue-gradient) 50%, var(--blue-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.dropdown-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.dropdown-product-name {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dropdown-product-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1rem;
}

.dropdown-product-old-price {
    font-size: 0.8rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 0.5rem;
    font-weight: 400;
}

.dropdown-view-all {
    padding: 0.75rem 1rem;
    margin-top: 0.5rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    padding: 0.5rem;
    transition: var(--transition);
    z-index: 1001;
    position: relative;
    border-radius: 4px;
}

.mobile-menu-toggle:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
    transform: scale(1.1);
}

.mobile-menu-toggle:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* Page Header */
.page-header {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 600px;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-slider .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    position: relative;
    z-index: 1;
    display: flex;
}

/* Responsive Hero Slider Container */
@media (min-width: 640px) {
    .hero-slider .container {
        padding: 0 24px;
    }
}

@media (min-width: 768px) {
    .hero-slider .container {
        padding: 0 32px;
    }
}

@media (min-width: 1024px) {
    .hero-slider .container {
        padding: 0 40px;
        max-width: 1200px;
    }
}

@media (min-width: 1280px) {
    .hero-slider .container {
        padding: 0 48px;
        max-width: 1280px;
    }
}

@media (min-width: 1440px) {
    .hero-slider .container {
        padding: 0 56px;
        max-width: 1440px;
    }
}

@media (min-width: 1920px) {
    .hero-slider .container {
        padding: 0 64px;
        max-width: 1600px;
    }
}
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-slider .slide .container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.slide-content {
    text-align: center;
    animation: fadeInUp 1s ease;
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0 auto;
}

.slide-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.slide-text {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.slide-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    animation: fadeInUp 1s ease 0.4s both;
}

/* Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--white);
}

.dot.active,
.dot:hover {
    background: var(--white);
    border-color: var(--white);
    transform: scale(1.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--blue-dark) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.btn::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:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--purple-dark) 100%);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-secondary:hover {
    background: var(--purple-dark);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.btn-danger {
    background: var(--accent-color);
}

.btn-danger:hover {
    background: #ff5252;
}

/* Section Styles */
/* Hero Slider Section - Prevent Overflow */
section.hero-slider {
    box-sizing: border-box;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    max-width: 100vw;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--purple-gradient) 0%, var(--blue-gradient) 100%);
    margin: 1rem auto;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.25);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--purple-gradient) 0%, var(--blue-gradient) 50%, var(--blue-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    overflow: hidden;
    position: relative;
}

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

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.old-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.discount-badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
    flex: 1;
}

/* Product Detail */
.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
}

.product-detail-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--purple-gradient) 0%, var(--blue-gradient) 50%, var(--blue-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 5rem;
}

.product-detail-info h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.product-detail-info .price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin: 1rem 0;
}

.product-detail-info .description {
    color: var(--text-light);
    line-height: 1.8;
    margin: 2rem 0;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.quantity-selector input {
    width: 80px;
    padding: 10px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

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

/* Cart */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Cart Layout */
@media (min-width: 1920px) {
    .cart-layout {
        grid-template-columns: 1fr 400px;
        gap: 3rem;
        max-width: 1600px;
    }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .cart-layout {
        grid-template-columns: 1fr 380px;
        gap: 2.5rem;
        max-width: 1440px;
    }
}

@media (min-width: 1280px) and (max-width: 1439px) {
    .cart-layout {
        grid-template-columns: 1fr 360px;
        gap: 2.25rem;
        max-width: 1280px;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .cart-layout {
        grid-template-columns: 1fr 350px;
        gap: 2rem;
        max-width: 1024px;
    }
}

@media (max-width: 1023px) {
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cart-sidebar {
        position: static;
        order: -1;
    }
}

.cart-main {
    min-width: 0;
}

.cart-container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Cart Page Section - Constrained Container */
.section.cart-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.cart-item {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
    align-items: center;
}

.cart-item-image {
    width: 150px;
    height: 150px;
    min-width: 150px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--purple-gradient) 0%, var(--blue-gradient) 50%, var(--blue-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 8px;
}

.cart-item-image img {
    width: auto;
    height: auto;
    max-width: calc(100% - 16px);
    max-height: calc(100% - 16px);
    object-fit: contain;
    object-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 8px;
    display: block;
}

.cart-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    z-index: 0;
}

.cart-item-info h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.cart-item-info p {
    color: var(--text-light);
}

.cart-item-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.cart-summary {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.cart-summary-row.total {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    padding-top: 1rem;
    border-top: 2px solid #ddd;
}

/* Cart Sidebar - Related Items */
.cart-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    margin-top: 2rem;
}

.cart-main {
    min-width: 0;
}

.cart-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.related-items-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.related-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.related-item-card {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--bg-light);
}

.related-item-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--purple-gradient) 0%, var(--blue-gradient) 50%, var(--blue-light) 100%);
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.related-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 8px;
}

.related-item-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    position: absolute;
    top: 0;
    left: 0;
}

.related-item-info {
    flex: 1;
    min-width: 0;
}

.related-item-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.related-item-info h4 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.related-item-info h4 a:hover {
    color: var(--primary-color);
}

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

.related-item-price .current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.related-item-price .old-price {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.related-item-info .btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* 404 Error Page */
.error-404-content {
    padding: 3rem;
}

.error-404-icon {
    font-size: 5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

.error-404-title {
    font-size: 8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple-gradient) 0%, var(--blue-gradient) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
}

.error-404-subtitle {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 1rem 0;
    font-weight: 700;
}

.error-404-message {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 1.5rem 0 2.5rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.error-404-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-404-suggestions {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bg-light);
}

.error-404-suggestions h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.error-404-suggestions ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.error-404-suggestions ul li a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.error-404-suggestions ul li a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

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

/* Checkout Form */
.checkout-form {
    max-width: 100%;
    width: 100%;
    margin: 3rem auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group input[type="file"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input[type="file"] {
    padding: 10px;
    background: var(--white);
    cursor: pointer;
}

.form-group input[type="file"]:hover {
    border-color: var(--primary-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Footer */
.footer {
    background: var(--purple-gradient);
    color: var(--white);
    padding: 3rem 0 1rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}


.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--blue-light);
    font-weight: 600;
}

.footer-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
}

.footer-section h3 i {
    color: var(--blue-light);
    font-size: 1.8rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section p {
    color: var(--white);
    line-height: 1.6;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li i {
    color: var(--blue-light);
    width: 20px;
    text-align: center;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--blue-light);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--blue-light);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--blue-light);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid var(--white);
}

.footer-bottom p {
    color: var(--white);
    margin: 0;
}

/* Admin Panel */
.admin-container {
    display: flex;
    min-height: 100vh;
    background: var(--bg-light);
}

.admin-sidebar {
    width: 280px;
    background: linear-gradient(180deg, var(--purple-gradient) 0%, var(--blue-gradient) 50%, var(--blue-light) 100%);
    color: var(--white);
    padding: 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(99, 102, 241, 0.2);
    z-index: 1000;
}

.admin-sidebar::-webkit-scrollbar {
    width: 6px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.admin-mobile-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}

.admin-mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.admin-header .admin-mobile-toggle {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--blue-dark) 100%);
    color: var(--white);
    border: 2px solid var(--primary-color);
    padding: 0.5rem 1rem;
}

.admin-logo {
    padding: 2rem 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.admin-logo i {
    font-size: 2rem;
    color: var(--white);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    transition: var(--transition);
}

.admin-logo:hover i {
    transform: rotate(15deg) scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
}

.admin-logo img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.admin-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-menu li {
    margin: 0.25rem 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.admin-menu li.menu-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 1rem 1.5rem;
    border: none;
}

.admin-menu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition);
    border-radius: 8px;
    font-weight: 500;
    position: relative;
}

.admin-menu a i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    transition: var(--transition);
}

.admin-menu a span {
    flex: 1;
}

.admin-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--primary-color);
    border-radius: 0 3px 3px 0;
    transition: var(--transition);
}

.admin-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding-left: 1.5rem;
    transform: translateX(5px);
}

.admin-menu a:hover::before {
    height: 60%;
}

.admin-menu a:hover i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.admin-menu a.active {
    background: rgba(255, 255, 255, 0.25);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.admin-menu a.active::before {
    height: 80%;
    width: 4px;
    background: var(--white);
}

.admin-menu a.active i {
    color: var(--white);
    transform: scale(1.15);
}

.admin-menu .logout-link {
    color: rgba(255, 107, 107, 0.9);
}

.admin-menu .logout-link:hover {
    background: rgba(255, 107, 107, 0.2);
    color: #ff6b6b;
}

.admin-menu .logout-link:hover i {
    color: #ff6b6b;
}

.admin-content {
    margin-left: 280px;
    flex: 1;
    padding: 2rem;
    background: #f5f6fa;
    min-height: 100vh;
    position: relative;
}

.admin-header {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    padding: 1.75rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-left: 4px solid var(--primary-color);
}

.admin-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-header h1::before {
    content: '';
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, var(--purple-gradient) 0%, var(--blue-gradient) 50%, var(--blue-light) 100%);
    border-radius: 2px;
}

.admin-header h1 i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.5rem;
}

.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.admin-user-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.admin-user-info i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.admin-user-info strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.admin-mobile-toggle {
    display: none;
    background: var(--bg-light);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.25rem;
    transition: var(--transition);
}

.admin-mobile-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
}

.admin-table {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.admin-table table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 1.25rem 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.admin-table th {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a2e 100%);
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    position: sticky;
    top: 0;
    z-index: 10;
}

.admin-table th:first-child {
    border-top-left-radius: 12px;
}

.admin-table th:last-child {
    border-top-right-radius: 12px;
}

.admin-table tbody tr {
    transition: var(--transition);
}

.admin-table tbody tr {
    position: relative;
}

.admin-table tbody tr::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    background: var(--primary-color);
    transition: var(--transition);
}

.admin-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.08);
    transform: translateX(3px);
    box-shadow: -3px 0 0 0 var(--primary-color);
}

.admin-table tbody tr:hover::after {
    height: 100%;
}

.admin-table tbody tr:last-child td {
    border-bottom: none;
}

.admin-table td {
    color: var(--text-dark);
    font-size: 0.95rem;
}

.admin-table td img {
    border: 2px solid var(--bg-light);
    transition: var(--transition);
}

.admin-table tbody tr:hover td img {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.admin-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.admin-form h2 {
    color: var(--secondary-color);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    width: 100%;
}

/* Admin Panel Buttons Enhancement */
.admin-content .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.admin-content .btn i {
    font-size: 0.9rem;
}

.admin-content .btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-content .btn-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.admin-content .btn-small i {
    font-size: 0.8rem;
}

.admin-table td:last-child {
    white-space: nowrap;
}

.admin-table td .btn-small {
    margin-right: 0.5rem;
    margin-bottom: 0.25rem;
}

.admin-table td .btn-small:last-child {
    margin-right: 0;
}

/* Admin Form Enhancements */
.admin-form .form-group {
    margin-bottom: 1.5rem;
}

.admin-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.admin-form .form-group input,
.admin-form .form-group textarea,
.admin-form .form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-dark);
}

.admin-form .form-group input:focus,
.admin-form .form-group textarea:focus,
.admin-form .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.admin-form .form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.admin-form .form-row {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.admin-form .alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid;
    font-weight: 500;
}

.admin-form .alert-success {
    background: #d4edda;
    color: #155724;
    border-left-color: #28a745;
}

.admin-form .alert-error {
    background: #f8d7da;
    color: #721c24;
    border-left-color: #dc3545;
}

/* Empty State Enhancement */
.admin-content .empty-state {
    background: var(--white);
    padding: 4rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.admin-content .empty-state i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.admin-content .empty-state p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.admin-content .empty-state a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.admin-content .empty-state a:hover {
    text-decoration: underline;
}

.login-container {
    max-width: 400px;
    margin: 100px auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
}

.login-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

/* Tablet and Desktop - Handle wrapping categories */
@media (min-width: 769px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    /* Adjust dropdown positioning when categories wrap */
    .nav-dropdown .dropdown-menu {
        left: 0;
        transform: translateX(0) translateY(-10px);
    }
    
    .nav-dropdown:nth-child(n+7) .dropdown-menu {
        left: auto;
        right: 0;
        transform: translateX(0) translateY(-10px);
    }
    
    /* Better spacing for wrapped rows */
    .nav-menu > li {
        margin-bottom: 0.5rem;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE BREAKPOINTS
   ============================================ */

/* Extra Large Desktops (1920px and above) */
@media (min-width: 1920px) {
    .hero-slider {
        height: 700px;
        max-width: 100vw;
        overflow: hidden;
    }
    
    .slider-container,
    .slider-wrapper,
    .slide {
        max-width: 100vw;
        overflow: hidden;
    }
    
    .slide-title {
        font-size: 4.5rem;
    }
    
    .slide-text {
        font-size: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }
    
    .products-page-layout {
        grid-template-columns: 280px 1fr;
        gap: 3rem;
    }
    
    .product-detail-layout {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .combo-deals-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
    }
    
    .bracelets-women-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2.5rem;
    }
    
    .purpose-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }
}

/* Large Desktops (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .hero-slider {
        max-width: 100vw;
        overflow: hidden;
    }
    
    .slider-container,
    .slider-wrapper,
    .slide {
        max-width: 100vw;
        overflow: hidden;
    }
    .hero-slider {
        height: 650px;
    }
    
    .slide-title {
        font-size: 4rem;
    }
    
    .slide-text {
        font-size: 1.35rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }
    
    .products-page-layout {
        grid-template-columns: 260px 1fr;
        gap: 2.5rem;
    }
    
    .product-detail-layout {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .combo-deals-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .bracelets-women-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .purpose-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }
}

/* Standard Desktops (1280px - 1439px) */
@media (min-width: 1280px) and (max-width: 1439px) {
    .hero-slider {
        max-width: 100vw;
        overflow: hidden;
    }
    
    .slider-container,
    .slider-wrapper,
    .slide {
        max-width: 100vw;
        overflow: hidden;
    }
    .hero-slider {
        height: 600px;
    }
    
    .slide-title {
        font-size: 3.5rem;
    }
    
    .slide-text {
        font-size: 1.25rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    
    .products-page-layout {
        grid-template-columns: 250px 1fr;
        gap: 2rem;
    }
    
    .product-detail-layout {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .combo-deals-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
    
    .bracelets-women-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }
    
    .purpose-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* Medium Laptops (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
    .hero-slider {
        height: 550px;
    }
    
    .slide-title {
        font-size: 3rem;
    }
    
    .slide-text {
        font-size: 1.2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .products-page-layout {
        grid-template-columns: 240px 1fr;
        gap: 1.75rem;
    }
    
    .product-detail-layout {
        grid-template-columns: 1fr 1fr;
        gap: 1.75rem;
    }
    
    .combo-deals-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .bracelets-women-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .purpose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Tablet Styles */
    .nav-dropdown .dropdown-menu {
        min-width: 250px;
        max-width: 300px;
        left: 50% !important;
        transform: translateX(-50%) translateY(-10px);
    }
    
    .nav-dropdown:hover .dropdown-menu {
        transform: translateX(-50%) translateY(0);
    }
    
    .dropdown-products,
    .dropdown-products-list {
        flex-direction: column;
        gap: 0;
    }
}

/* Tablets (768px - 1023px) */
@media (max-width: 1024px) and (min-width: 768px) {
    /* Tablet Styles */
    .hero-slider {
        height: 500px;
    }
    
    .slide-title {
        font-size: 2.75rem;
    }
    
    .slide-text {
        font-size: 1.15rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .products-page-layout {
        grid-template-columns: 220px 1fr;
        gap: 1.5rem;
    }
    
    .products-sidebar {
        position: static;
        height: auto;
    }
    
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cart-sidebar {
        position: static;
        order: -1;
    }
    
    .product-detail-layout {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .product-image-section {
        position: sticky;
        top: 100px;
    }
    
    .admin-content {
        padding: 1.75rem;
    }
    
    .admin-table {
        overflow-x: auto;
    }
    
    .admin-table table {
        min-width: 900px;
    }
    
    .combo-deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .bracelets-women-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .purpose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

/* Mobile Overlay for Navigation */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Small Tablets (640px - 767px) */
@media (max-width: 767px) and (min-width: 640px) {
    .hero-slider {
        height: 450px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-text {
        font-size: 1.1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .products-page-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-sidebar {
        position: static;
        height: auto;
    }
    
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-image-section {
        position: static;
    }
    
    .combo-deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .bracelets-women-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .purpose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .nav-menu {
        gap: 0.75rem;
    }
}

/* Mobile and Small Tablets (768px and below) */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-overlay {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 280px;
        max-width: 85vw;
        box-shadow: var(--shadow-hover);
        padding: 1.5rem;
        transition: var(--transition);
        z-index: 1000;
        height: calc(100vh - 70px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        margin: 0;
        padding: 0.25rem 0;
    }
    
    .nav-menu a {
        padding: 0.875rem 1rem;
        border-radius: 6px;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.95rem;
    }
    
    .nav-search-icon {
        order: -1;
        width: 100%;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--bg-light);
    }
    
    .search-icon-btn {
        width: 100%;
        justify-content: center;
    }
    
    .search-modal {
        max-height: 95vh;
        margin-top: 1rem;
    }
    
    .search-modal-header {
        padding: 1.25rem 1.5rem;
    }
    
    .search-modal-header h3 {
        font-size: 1.25rem;
    }
    
    .search-modal-body {
        padding: 1.5rem;
    }
    
    .search-results-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .cart-icon {
        margin-left: 0;
        order: 1;
    }
    
    .nav-dropdown .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }
    
    /* Navigation Dropdown Responsive */
    .nav-dropdown .dropdown-menu {
        position: static;
        min-width: 100%;
        max-width: 100%;
        margin-top: 0.5rem;
        padding: 1rem;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        box-shadow: none;
        background: var(--bg-light);
        border-radius: 6px;
        max-height: none;
        left: auto !important;
    }
    
    .dropdown-content {
        flex-direction: column;
        gap: 0;
    }
    
    .dropdown-products,
    .dropdown-products-list {
        flex-direction: column;
        gap: 0;
    }
    
    .dropdown-list-item {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .dropdown-header {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .dropdown-header {
        font-size: 1rem;
        padding: 0.6rem 0.8rem;
    }
    
    .dropdown-product-item {
        padding: 0.6rem;
    }
    
    .dropdown-product-image,
    .dropdown-product-placeholder {
        width: 50px;
        height: 50px;
    }
    
    .dropdown-product-name {
        font-size: 0.85rem;
    }
    
    .dropdown-product-price {
        font-size: 0.9rem;
    }
    
    /* Hero Slider Responsive */
    .hero-slider {
        height: 450px;
    }
    
    .hero-slider .container {
        padding: 0 15px;
    }
    
    .slide-content {
        text-align: center;
        padding: 2rem 1rem;
        max-width: 90%;
    }
    
    .slide-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .slide-text {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .slide-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        min-width: 140px;
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-nav.prev {
        left: 15px;
    }
    
    .slider-nav.next {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 0.5rem;
    }
    
    .slider-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    /* Page Header Responsive */
    .page-header h1 {
        font-size: 2.5rem !important;
    }
    
    .page-header p {
        font-size: 1rem !important;
    }
    
    /* Contact Page Responsive */
    .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    /* Products Page Responsive */
    .products-page-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .products-sidebar {
        position: static;
        order: 2;
    }
    
    .products-main {
        order: 1;
    }
    
    .results-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .sort-container {
        width: 100%;
        justify-content: space-between;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-image-section {
        position: static;
    }
    
    .product-image-placeholder-large {
        font-size: 5rem;
    }
    
    .product-detail-title {
        font-size: 2rem;
    }
    
    .current-price-large {
        font-size: 2rem;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
    
    .additional-info {
        grid-template-columns: 1fr;
    }
    
    .product-detail-container {
        grid-template-columns: 1fr;
    }
    
    .product-detail-image {
        height: 300px;
    }
    
    .cart-item {
        grid-template-columns: 100px 1fr;
        gap: 1rem;
    }
    
    .cart-item-image {
        width: 100px;
        height: 100px;
        min-width: 100px;
        grid-column: 1;
        grid-row: 1 / 3;
        padding: 6px;
    }
    
    .cart-item-image img {
        width: auto;
        height: auto;
        max-width: calc(100% - 12px);
        max-height: calc(100% - 12px);
    }
    
    .cart-item-info {
        grid-column: 2;
    }
    
    .cart-item-price {
        grid-column: 2;
        grid-row: 2;
    }
    
    .admin-sidebar {
        width: 280px;
        transform: translateX(-100%);
        transition: var(--transition);
        z-index: 10000;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
    }
    
    .admin-sidebar.active {
        transform: translateX(0);
    }
    
    .admin-content {
        margin-left: 0;
        padding: 1.5rem 1rem;
    }
    
    .admin-header {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .admin-header h1 {
        font-size: 1.5rem;
        width: 100%;
    }
    
    .admin-header h1 i {
        font-size: 1.25rem;
    }
    
    .admin-header-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .admin-user-info {
        font-size: 0.9rem;
    }
    
    .admin-mobile-toggle {
        display: flex !important;
        width: auto;
        padding: 0.5rem 0.75rem;
        border-radius: 6px;
        align-items: center;
        justify-content: center;
        min-width: 44px;
        min-height: 44px;
    }
    
    .admin-header .admin-mobile-toggle {
        display: flex !important;
        width: auto;
        padding: 0.5rem 1rem;
    }
    
    .admin-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        height: 100vh;
    }
    
    .admin-sidebar .admin-mobile-toggle {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: auto;
        background: rgba(255, 255, 255, 0.2);
        color: var(--white);
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 0.5rem;
        border-radius: 4px;
        display: flex;
        z-index: 10001;
    }
    
    .admin-form {
        padding: 1.5rem;
    }
    
    .admin-form h2 {
        font-size: 1.5rem;
    }
    
    .admin-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -1rem;
        padding: 0 1rem;
    }
    
    .admin-table table {
        min-width: 800px;
        font-size: 0.9rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.75rem 0.5rem;
        white-space: nowrap;
    }
    
    .admin-table td:last-child {
        white-space: normal;
        min-width: 120px;
    }
    
    .admin-table .btn-small {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        margin: 0.25rem 0;
        display: inline-block;
        width: auto;
    }
    
    .admin-menu a {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
        gap: 0;
    }
    
    .admin-form .form-group {
        margin-bottom: 1.25rem;
    }
    
    .login-container {
        margin: 50px auto;
        padding: 2rem 1.5rem;
        max-width: 90%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    body.menu-open {
        overflow: hidden;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 0.75rem 0;
    }
    
    .nav-wrapper {
        padding: 0.5rem 0;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    .mobile-menu-toggle {
        font-size: 1.25rem;
        padding: 0.4rem;
        min-width: 44px; /* Touch-friendly */
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-menu {
        width: 260px;
        max-width: 85vw;
        padding: 1rem;
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .nav-overlay.active {
        display: block;
        top: 60px;
        height: calc(100vh - 60px);
    }
    
    .search-icon-btn {
        font-size: 1.1rem;
        width: 36px;
        height: 36px;
        min-width: 36px;
        min-height: 36px;
    }
    
    .search-modal-overlay.active {
        padding: 0;
        align-items: stretch;
    }
    
    .search-modal {
        max-height: 100vh;
        margin-top: 0;
        border-radius: 0;
        height: 100vh;
    }
    
    .search-modal-header {
        padding: 1rem 1.25rem;
    }
    
    .search-modal-header h3 {
        font-size: 1.1rem;
    }
    
    .search-modal-close {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .search-modal-body {
        padding: 1.25rem;
        max-height: calc(100vh - 80px);
    }
    
    .search-input-wrapper {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .search-modal-input {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .search-modal-search-btn {
        padding: 0.875rem 1.25rem;
        width: 100%;
        min-height: 44px;
    }
    
    .search-results-container {
        max-height: calc(100vh - 250px);
    }
    
    .search-results-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .search-result-item {
        border-radius: 10px;
    }
    
    .search-result-image {
        font-size: 1.5rem;
    }
    
    .search-result-info {
        padding: 0.875rem;
    }
    
    .search-result-name {
        font-size: 0.95rem;
    }
    
    .search-result-price {
        font-size: 1rem;
    }
    
    .search-placeholder i {
        font-size: 2.5rem;
    }
    
    .search-placeholder p {
        font-size: 1rem;
    }
    
    .cart-badge {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }
    
    .hero-slider {
        height: 400px;
    }
    
    .slide-content {
        padding: 1.5rem 1rem;
    }
    
    .slide-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .slide-text {
        font-size: 0.875rem;
        margin-bottom: 1.25rem;
    }
    
    .slide-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
        min-width: 120px;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .products-page-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .products-sidebar {
        order: 1;
    }
    
    .products-main {
        order: 2;
    }
    
    .filter-card {
        padding: 1.25rem;
    }
    
    .filter-section {
        margin-bottom: 1.25rem;
    }
    
    .product-card {
        padding: 0.75rem;
    }
    
    .product-card-title {
        font-size: 0.95rem;
    }
    
    .product-price {
        font-size: 1rem;
    }
    
    .product-detail-title {
        font-size: 1.5rem;
    }
    
    .product-detail-image {
        height: 250px;
    }
    
    .current-price-large {
        font-size: 1.75rem;
    }
    
    .cart-layout {
        gap: 1.5rem;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
        min-width: auto;
        grid-column: 1;
        grid-row: 1;
        padding: 10px;
    }
    
    .cart-item-image img {
        width: auto;
        height: auto;
        max-width: calc(100% - 20px);
        max-height: calc(100% - 20px);
    }
    
    .cart-item-info {
        grid-column: 1;
        grid-row: 2;
    }
    
    .cart-item-price {
        grid-column: 1;
        grid-row: 3;
        text-align: left;
    }
    
    .quantity-selector {
        justify-content: flex-start;
    }
    
    .cart-summary {
        padding: 1.25rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        min-height: 44px; /* Touch-friendly */
    }
    
    .btn-small {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        min-height: 38px;
    }
    
    /* Admin Panel Mobile */
    .admin-content {
        padding: 1rem;
    }
    
    .admin-header {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .admin-header h1 {
        font-size: 1.25rem;
    }
    
    .admin-header h1 i {
        font-size: 1.1rem;
    }
    
    .admin-table table {
        min-width: 700px;
        font-size: 0.85rem;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 0.5rem 0.35rem;
    }
    
    .admin-form {
        padding: 1rem;
    }
    
    .admin-form h2 {
        font-size: 1.25rem;
    }
    
    .admin-form .form-group input,
    .admin-form .form-group textarea,
    .admin-form .form-group select {
        padding: 0.75rem;
        font-size: 0.9rem;
        min-height: 44px; /* Touch-friendly */
    }
    
    .login-container {
        margin: 30px auto;
        padding: 1.5rem 1rem;
    }
    
    .login-container h2 {
        font-size: 1.5rem;
    }
    
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .page-header p {
        font-size: 0.9rem;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
        min-width: auto;
        padding: 10px;
    }
    
    .cart-item-image img {
        width: auto;
        height: auto;
        max-width: calc(100% - 20px);
        max-height: calc(100% - 20px);
    }
    
    .cart-item-info {
        text-align: center;
    }
    
    .cart-item-price {
        text-align: center;
        font-size: 1.3rem;
    }
    
    .related-item-card {
        flex-direction: column;
        text-align: center;
    }
    
    .related-item-image {
        width: 100%;
        height: 200px;
        margin: 0 auto;
    }
    
    .cart-sidebar {
        padding: 1.5rem;
    }
    
    /* Hero Slider Mobile */
    .hero-slider {
        height: 400px;
    }
    
    .slide-title {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-text {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        line-height: 1.5;
    }
    
    .slide-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .slider-nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .slider-nav.prev {
        left: 10px;
    }
    
    .slider-nav.next {
        right: 10px;
    }
    
    .slider-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    /* Page Header Mobile */
    .page-header {
        padding: 60px 0 !important;
    }
    
    .page-header h1 {
        font-size: 2rem !important;
    }
    
    .page-header p {
        font-size: 0.95rem !important;
    }
    
    /* About Page Mobile Styles */
    .section h2 {
        font-size: 1.8rem !important;
    }
    
    .section h3 {
        font-size: 1.3rem !important;
    }
    
    .section p {
        font-size: 0.95rem !important;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    /* Reviews Responsive Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-form-container {
        padding: 2rem 1.5rem;
    }
    
    .rating-label {
        font-size: 1.5rem;
    }
    
    .review-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Products Page Mobile */
    .product-detail-title {
        font-size: 1.5rem !important;
    }
    
    .current-price-large {
        font-size: 1.75rem !important;
    }
    
    .product-image-placeholder-large {
        font-size: 4rem !important;
    }
    
    .rating-stars {
        font-size: 1rem;
    }
    
    .results-header {
        padding: 1rem;
    }
    
    .filter-card {
        padding: 1rem;
    }
    
    /* Contact Page Mobile */
    .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        margin-top: 2rem !important;
    }
    
    .checkout-form {
        padding: 1.5rem;
    }
}

/* Enhanced Products Page Layout */
.products-page-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.products-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.filter-title {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-section {
    margin-bottom: 2rem;
}

.filter-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.filter-form {
    display: flex;
    gap: 0.5rem;
}

.filter-input {
    flex: 1;
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
}

.filter-btn {
    padding: 10px 15px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover {
    background: var(--blue-dark);
    box-shadow: var(--shadow-hover);
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.category-item {
    padding: 0.75rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 2px solid transparent;
}

.category-item:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
}

.category-item.active {
    background: linear-gradient(135deg, var(--purple-gradient) 0%, var(--blue-gradient) 50%, var(--blue-light) 100%);
    color: var(--white);
    font-weight: 600;
    border-color: var(--primary-color);
}

.category-count {
    font-size: 0.85rem;
    opacity: 0.8;
}

.products-main {
    min-width: 0;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    flex-wrap: wrap;
    gap: 1rem;
}

.sort-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sort-select {
    padding: 10px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 0.95rem;
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Enhanced Product Cards */
.product-card-enhanced {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.25);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.product-image-enhanced {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--purple-gradient) 0%, var(--blue-gradient) 50%, var(--blue-light) 100%);
}

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

.product-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    transition: var(--transition);
}

.product-card-enhanced:hover .product-image-placeholder {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 0.75rem;
    border-radius: 5px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.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: var(--transition);
}

.product-image-enhanced:hover .product-overlay {
    opacity: 1;
}

.product-info-enhanced {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-category-tag {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.product-name-enhanced {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    line-height: 1.4;
    min-height: 2.8rem;
}

.product-name-enhanced a:hover {
    color: var(--primary-color);
}

.product-description-enhanced {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-stock-info {
    margin-bottom: 1rem;
}

.stock-in {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 500;
}

.stock-out {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.product-price-enhanced {
    margin-bottom: 1rem;
}

.current-price-enhanced {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-right: 0.75rem;
}

.old-price-enhanced {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-actions-enhanced {
    margin-top: auto;
}

.btn-primary-full {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Empty State Enhanced */
.empty-state-enhanced {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.empty-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.empty-state-enhanced h3 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.empty-state-enhanced p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Product Detail Page Enhanced */
.product-detail-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    margin-top: 2rem;
}

.product-image-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.product-main-image {
    position: relative;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--purple-gradient) 0%, var(--blue-gradient) 50%, var(--blue-light) 100%);
    box-shadow: var(--shadow-hover);
}

.product-image-placeholder-large {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 8rem;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.product-detail-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    z-index: 2;
}

.product-detail-featured {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    z-index: 2;
}

.product-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-header-info {
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-light);
}

.product-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--purple-gradient) 0%, var(--blue-gradient) 50%, var(--blue-light) 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-detail-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-rating-review {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.review-count {
    color: var(--text-light);
    font-size: 0.95rem;
}

.product-pricing-section {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    flex-wrap: wrap;
}

.current-price-large {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.old-price-large {
    font-size: 1.5rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.savings-badge {
    background: #28a745;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.95rem;
}

.product-description-section,
.product-features {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.section-heading {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-description-full {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    color: #28a745;
    font-size: 0.9rem;
}

.stock-section {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.stock-available,
.stock-unavailable {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stock-available i {
    font-size: 2rem;
    color: #28a745;
}

.stock-unavailable i {
    font-size: 2rem;
    color: var(--accent-color);
}

.add-to-cart-form {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
}

.quantity-section {
    margin-bottom: 1.5rem;
}

.quantity-label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.qty-btn {
    width: 45px;
    height: 45px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: var(--white);
}

.qty-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.qty-input {
    width: 100px;
    height: 45px;
    padding: 0 15px;
    text-align: center;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
}

.qty-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.stock-indicator {
    font-size: 0.85rem;
    color: var(--text-light);
}

.action-buttons {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1rem;
}

.btn-add-cart {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-wishlist {
    width: 100%;
    padding: 15px;
    background: var(--white);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
}

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

.additional-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.info-item strong {
    display: block;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.info-item p {
    margin: 0.25rem 0 0 0;
    color: var(--text-light);
    font-size: 0.85rem;
}

.breadcrumb {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.related-products-section {
    margin-top: 4rem;
}

/* Reviews Section */
#reviews .container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-gradient) 0%, var(--blue-gradient) 50%, var(--blue-light) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 0.25rem 0;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
}

.review-rating .fa-star {
    color: #ffc107;
    font-size: 1rem;
}

.review-rating .fa-star:not(.active) {
    color: #ddd;
}

.review-content {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 0.95rem;
}

.reviews-empty {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.reviews-empty i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.reviews-empty p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.review-form-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.review-form {
    margin-top: 2rem;
}

.rating-input {
    display: flex;
    gap: 0.5rem;
    flex-direction: row-reverse;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-label {
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.rating-label:hover,
.rating-label:hover ~ .rating-label {
    color: #ffc107;
}

.rating-input input[type="radio"]:checked ~ .rating-label,
.rating-input input[type="radio"]:checked ~ .rating-label ~ .rating-label {
    color: #ffc107;
}

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

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Video Testimonials Section */
.video-testimonials-section {
    padding: 4rem 0;
}

.video-testimonials-wrapper {
    position: relative;
    margin-top: 3rem;
}

.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    transition: transform 0.4s ease-in-out;
}

.video-testimonial-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-testimonial-link {
    text-decoration: none;
    display: block;
    width: 100%;
}

.video-testimonial-container {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16; /* Vertical/portrait video ratio */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, var(--purple-gradient) 0%, var(--blue-gradient) 50%, var(--blue-light) 100%);
    cursor: pointer;
}

.video-player-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.video-player-wrapper.show {
    opacity: 1;
}

.video-player-wrapper iframe,
.video-player-wrapper video {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.video-player-wrapper video {
    object-fit: cover;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 1;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.video-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.video-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.9);
    z-index: 2;
    position: relative;
}

.video-overlay-text {
    position: absolute;
    bottom: 1rem;
    left: 0.5rem;
    right: 0.5rem;
    background: rgba(255, 215, 0, 0.95);
    color: #000;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    z-index: 3;
    margin: 0;
    text-shadow: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.testimonial-product-link {
    text-decoration: none;
    display: block;
    width: 100%;
    color: inherit;
}


.testimonial-product-card {
    background: var(--white);
    border-radius: 10px;
    padding: 1rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

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

.testimonial-product-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-product-image i {
    font-size: 2rem;
    color: var(--primary-color);
}

.testimonial-product-info {
    flex: 1;
    min-width: 0;
}

.testimonial-product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.testimonial-current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.testimonial-old-price {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.testimonial-discount-badge {
    background: linear-gradient(135deg, var(--purple-gradient) 0%, var(--blue-gradient) 50%, var(--blue-light) 100%);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Responsive Design for Video Testimonials */
@media (max-width: 1024px) {
    .video-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .video-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .video-placeholder i {
        font-size: 3rem;
    }
    
    .video-overlay-text {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
    
    .testimonial-product-card {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .testimonial-product-image {
        width: 70px;
        height: 70px;
    }
    
    .testimonial-product-name {
        font-size: 0.85rem;
    }
    
    .testimonial-current-price {
        font-size: 1rem;
    }
}

/* Video Testimonials Slider for Mobile */
.video-slider-controls {
    display: none;
}

.video-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.video-slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.video-slider-nav.prev {
    left: 10px;
}

.video-slider-nav.next {
    right: 10px;
}

.video-slider-nav i {
    font-size: 1.2rem;
}

.video-slider-dots {
    display: none;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

.video-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.video-slider-dot:hover {
    background: rgba(99, 102, 241, 0.6);
    transform: scale(1.2);
}

.video-slider-dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
    border-color: var(--primary-color);
}

@media (max-width: 480px) {
    .video-testimonials-wrapper {
        overflow: hidden;
        position: relative;
        padding: 0 0 3rem 0;
        margin-top: 2rem;
    }
    
    .video-testimonials-grid {
        display: flex;
        grid-template-columns: none;
        gap: 0;
        transform: translateX(0);
        will-change: transform;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        padding: 0 50px; /* Space for navigation buttons */
    }
    
    .video-testimonial-item {
        min-width: 100%;
        width: 100%;
        flex-shrink: 0;
        padding: 0 10px;
        box-sizing: border-box;
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }
    
    .video-testimonial-item.active {
        opacity: 1;
    }
    
    .video-testimonials-wrapper {
        position: relative;
    }
    
    .video-slider-controls {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        pointer-events: none;
        z-index: 50;
    }
    
    .video-slider-nav {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
        pointer-events: all;
    }
    
    .video-slider-nav.prev {
        left: 5px;
    }
    
    .video-slider-nav.next {
        right: 5px;
    }
    
    .video-slider-dots {
        display: flex;
        justify-content: center;
        gap: 0.75rem;
        position: absolute;
        bottom: -2.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        padding: 0.5rem 1rem;
        pointer-events: all;
        z-index: 100;
    }
    
    .testimonial-product-card {
        flex-direction: row;
        align-items: center;
    }
    
    .testimonial-product-image {
        width: 60px;
        height: 60px;
    }
    
    .error-404-title {
        font-size: 4rem;
    }
}

/* Shop by Purpose Section */
.shop-by-purpose-section {
    padding: 4rem 0;
}

.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.purpose-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.purpose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.purpose-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.purpose-icon {
    font-size: 3.5rem;
    z-index: 2;
    position: relative;
    transition: transform 0.3s ease;
}

.purpose-card:hover .purpose-icon {
    transform: scale(1.1);
}

.purpose-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Purpose-specific colors and patterns */
.money-icon {
    color: #ffd700;
}

.money-pattern {
    background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255, 215, 0, 0.2) 0%, transparent 50%);
}

.love-icon {
    color: #ff69b4;
}

.love-pattern {
    background: radial-gradient(circle at 30% 30%, rgba(255, 105, 180, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(255, 105, 180, 0.2) 0%, transparent 50%);
}

.protection-icon {
    color: #2c3e50;
}

.protection-pattern {
    background: repeating-linear-gradient(45deg, rgba(44, 62, 80, 0.1) 0px, rgba(44, 62, 80, 0.1) 2px, transparent 2px, transparent 8px);
}

.career-icon {
    color: #27ae60;
}

.career-pattern {
    background: radial-gradient(circle at 30% 30%, rgba(39, 174, 96, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(39, 174, 96, 0.2) 0%, transparent 50%);
}

.evil-eye-icon {
    color: #3498db;
}

.evil-eye-pattern {
    background: radial-gradient(circle at center, rgba(52, 152, 219, 0.2) 0%, transparent 70%);
}

.gifting-icon {
    color: #e67e22;
}

.gifting-pattern {
    background: radial-gradient(circle at 30% 30%, rgba(230, 126, 34, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(230, 126, 34, 0.2) 0%, transparent 50%);
}

.purpose-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    transition: color 0.3s ease;
}

.purpose-card:hover .purpose-name {
    color: var(--primary-color);
}

/* Responsive Design for Purpose Cards - Enhanced */
@media (min-width: 1920px) {
    .purpose-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1440px) and (max-width: 1919px) {
    .purpose-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }
}

@media (min-width: 1280px) and (max-width: 1439px) {
    .purpose-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .purpose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .purpose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 767px) and (min-width: 640px) {
    .purpose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .purpose-image {
        width: 100px;
        height: 100px;
    }
    
    .purpose-icon {
        font-size: 2.5rem;
    }
    
    .purpose-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 639px) {
    .purpose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .purpose-image {
        width: 90px;
        height: 90px;
    }
    
    .purpose-icon {
        font-size: 2.25rem;
    }
    
    .purpose-card {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .purpose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .purpose-image {
        width: 80px;
        height: 80px;
    }
    
    .purpose-icon {
        font-size: 2rem;
    }
    
    .purpose-name {
        font-size: 0.95rem;
    }
}

/* Combo Deals Section */
.combo-deals-section {
    padding: 4rem 0;
    background: var(--white);
}

.combo-deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.combo-deal-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 350px;
}

.combo-deal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.combo-deal-image {
    width: 100%;
    height: 250px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.combo-deal-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 1rem;
}

.combo-deal-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 4rem;
}

.combo-deal-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.combo-deal-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.4;
    min-height: 2.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.combo-deal-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.combo-stars {
    display: flex;
    gap: 0.2rem;
    color: #ffc107;
    font-size: 0.9rem;
}

.combo-reviews {
    font-size: 0.85rem;
    color: var(--text-light);
}

.combo-deal-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.combo-current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.combo-old-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.combo-add-form {
    margin-top: 0.5rem;
}

.combo-add-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #000;
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.combo-add-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.combo-add-btn:active {
    transform: translateY(0);
}

/* Responsive Design for Combo Deals - Enhanced */
@media (min-width: 1440px) {
    .combo-deals-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1280px) and (max-width: 1439px) {
    .combo-deals-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .combo-deals-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .combo-deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .combo-deal-card {
        max-width: 100%;
    }
}

@media (max-width: 767px) and (min-width: 640px) {
    .combo-deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .combo-deal-image {
        height: 200px;
    }
    
    .combo-deal-info {
        padding: 1.25rem;
    }
    
    .combo-deal-title {
        font-size: 1rem;
    }
    
    .combo-current-price {
        font-size: 1.3rem;
    }
}

@media (max-width: 639px) {
    .combo-deals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .combo-deal-image {
        height: 200px;
    }
    
    .combo-deal-info {
        padding: 1.25rem;
    }
    
    .combo-deal-title {
        font-size: 1rem;
    }
    
    .combo-current-price {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .combo-deals-grid {
        grid-template-columns: 1fr;
    }
    
    .combo-deal-card {
        max-width: 100%;
    }
    
    .combo-deal-image {
        height: 220px;
    }
}

/* Bracelets For Women Section */
.bracelets-women-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.bracelets-women-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

.bracelet-women-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 350px;
}

.bracelet-women-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bracelet-women-image {
    width: 100%;
    height: 250px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bracelet-women-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 1rem;
}

.bracelet-women-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 4rem;
}

.bracelet-women-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.bracelet-women-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 0;
    line-height: 1.4;
    min-height: 2.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bracelet-women-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.bracelet-stars {
    display: flex;
    gap: 0.2rem;
    color: #ffc107;
    font-size: 0.9rem;
}

.bracelet-reviews {
    font-size: 0.85rem;
    color: var(--text-light);
}

.bracelet-women-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: auto;
}

.bracelet-current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.bracelet-old-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.bracelet-add-form {
    margin-top: 0.5rem;
}

.bracelet-add-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: #000;
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.bracelet-add-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.bracelet-add-btn:active {
    transform: translateY(0);
}

.bracelet-add-btn i {
    font-size: 0.9rem;
}

/* Responsive Design for Bracelets For Women - Enhanced */
@media (min-width: 1440px) {
    .bracelets-women-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1280px) and (max-width: 1439px) {
    .bracelets-women-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    .bracelets-women-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .bracelets-women-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .bracelet-women-card {
        max-width: 100%;
    }
}

@media (max-width: 767px) and (min-width: 640px) {
    .bracelets-women-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .bracelet-women-image {
        height: 200px;
    }
    
    .bracelet-women-info {
        padding: 1.25rem;
    }
    
    .bracelet-women-title {
        font-size: 1rem;
    }
    
    .bracelet-current-price {
        font-size: 1.3rem;
    }
}

@media (max-width: 639px) {
    .bracelets-women-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .bracelet-women-image {
        height: 200px;
    }
    
    .bracelet-women-info {
        padding: 1.25rem;
    }
    
    .bracelet-women-title {
        font-size: 1rem;
    }
    
    .bracelet-current-price {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .bracelets-women-grid {
        grid-template-columns: 1fr;
    }
    
    .bracelet-women-card {
        max-width: 100%;
    }
    
    .bracelet-women-image {
        height: 220px;
    }
}
    
    .error-404-icon {
        font-size: 3.5rem;
    }
}

