/* ==============================================
   EXShop - Luxury Accessories Catalog
   RTL Arabic Design - Vanilla PHP Version
   ============================================== */

/* Color Variables - Brown-Red Palette */
:root {
    --primary-50: #f9ecec;
    --primary-100: #f3d8d8;
    --primary-200: #e6b2b2;
    --primary-300: #da8b8b;
    --primary-400: #cd6565;
    --primary-500: #c13e3e;
    --primary-600: #9a3232;
    --primary-700: #742525;
    --primary-800: #4d1919;
    --primary-900: #270c0c;
    --bg-color: #fafafa;
    --text-dark: #2d2d2d;
    --text-light: #6b6b6b;
    --border-color: #e5e5e5;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Tajawal', 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    direction: rtl;
    text-align: right;
    background-color: var(--bg-color);
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    color: var(--primary-600);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-700);
}

img {
    max-width: 100%;
    height: auto;
}

/* Container & Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.nav-brand h2 {
    font-size: 1.8rem;
    color: var(--primary-600);
    margin: 0;
}

.nav-brand a {
    color: var(--primary-600);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--primary-50);
    color: var(--primary-600);
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-icon {
    font-size: 0.7rem;
    margin-right: 0.3rem;
    transition: transform 0.3s;
}

.nav-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 180px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.2s;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: var(--primary-50);
    color: var(--primary-600);
}

.dropdown-menu a i {
    width: 16px;
    text-align: center;
    color: var(--primary-400);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-600);
    cursor: pointer;
}

/* Flash Messages */
.flash-message {
    padding: 1rem;
    margin-bottom: 0;
    border-radius: 0;
    transition: opacity 0.3s;
}

.flash-success {
    background: #d4edda;
    color: #155724;
    border-bottom: 2px solid #28a745;
}

.flash-error {
    background: #f8d7da;
    color: #721c24;
    border-bottom: 2px solid #dc3545;
}

.flash-warning {
    background: #fff3cd;
    color: #856404;
    border-bottom: 2px solid #ffc107;
}

.flash-message .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flash-message button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: inherit;
    opacity: 0.7;
}

.flash-message button:hover {
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 1rem;
    line-height: 1.5;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--primary-600);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-700);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(193, 62, 62, 0.3);
    color: #fff;
}

.btn-secondary {
    background: var(--primary-100);
    color: var(--primary-700);
}

.btn-secondary:hover {
    background: var(--primary-200);
    color: var(--primary-700);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-600);
    color: var(--primary-600);
}

.btn-outline:hover {
    background: var(--primary-600);
    color: #fff;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #1ea952;
    color: #fff !important;
}

.btn i {
    margin: 0 4px;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.85em;
    font-weight: 600;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 6px;
}

.badge-primary {
    background-color: var(--primary-600);
}

/* Hero Section with Full-Width Banner Slider */
/* Hero Slider Section - Full Width Banner */
.hero-slider-section {
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-900) 100%);
    padding: 0;
    overflow: hidden;
    position: relative;
}

/* Hero Slider Full - Banner Style */
.hero-slider-full {
    width: 100%;
    height: 600px;
    position: relative;
}

.hero-slider-full .slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hero-slider-full .slider-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slider-full .slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slider-full .slider-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slider-full .slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.60) 50%,
        rgba(0,0,0,0.40) 100%
    );
    z-index: 1;
}

.hero-slider-full .slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-slider-full .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-slider-full .slider-content {
    max-width: 650px;
    color: #fff;
    padding: 40px 0;
}

.slider-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(255,165,0,0.6);
}

.slider-category {
    display: inline-block;
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.slider-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
    text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}

.slider-price {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 2.5rem;
    text-shadow: 0 3px 15px rgba(0,0,0,0.4);
}

.slider-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* Hero Text Only (Fallback when no featured products) */
.hero-text-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-900) 100%);
}

.hero-text-content {
    max-width: 800px;
    padding: 60px 20px;
}

.hero-text-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-text-content h1 {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-text-content p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.95);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 25px rgba(0,0,0,0.2);
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-600);
    transition: all 0.3s;
}

.slider-btn:hover {
    background: var(--primary-600);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    right: 30px;
}

.slider-next {
    left: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 20;
}

.slider-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: 2px solid rgba(255,255,255,0.8);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-dot:hover {
    background: rgba(255,255,255,0.6);
}

.slider-dot.active {
    background: var(--primary-600);
    border-color: #fff;
    transform: scale(1.3);
}

/* Legacy Hero (fallback) */
.hero {
    background: linear-gradient(135deg, var(--primary-50) 0%, #fff 100%);
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-700);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Section */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-700);
    margin-bottom: 0.5rem;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: var(--primary-50);
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    font-size: 0.85rem;
    color: var(--primary-600);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-600);
    margin-bottom: 1rem;
}

/* Products Page */
.products-page {
    padding: 40px 0;
    min-height: 60vh;
}

.page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-700);
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1rem;
    color: var(--text-light);
}

/* Filters */
.filters-section {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.filters-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.filter-group {
    flex: 1;
    min-width: 250px;
}

.filter-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.filter-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    background: var(--primary-50);
    color: var(--primary-700);
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-600);
    color: #fff;
}

.filter-select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: #fff;
    cursor: pointer;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-600);
}

/* No Products */
.no-products {
    text-align: center;
    padding: 4rem 2rem;
}

.no-products i {
    font-size: 4rem;
    color: var(--primary-300);
    margin-bottom: 1rem;
}

.no-products h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 3rem 0 2rem;
    flex-wrap: wrap;
}

.page-link {
    padding: 0.75rem 1.25rem;
    background: #fff;
    color: var(--text-dark);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-weight: 500;
    transition: all 0.3s;
}

.page-link:hover {
    background: var(--primary-50);
    color: var(--primary-700);
    border-color: var(--primary-200);
}

.page-link.active {
    background: var(--primary-600);
    color: #fff;
    border-color: var(--primary-600);
}

.page-dots {
    padding: 0.75rem 0.5rem;
    color: var(--text-light);
}

/* Page Content (About, Contact) */
.page-content {
    padding: 40px 0;
    min-height: 60vh;
}

.content-box {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.content-box h2 {
    color: var(--primary-700);
    margin-bottom: 1.5rem;
}

.content-box h3 {
    color: var(--primary-600);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-box p {
    line-height: 2;
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 0.75rem 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.values-list i {
    color: var(--primary-600);
    font-size: 1.2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: var(--primary-50);
    border-radius: 12px;
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-600);
    margin-bottom: 1rem;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
}

.feature-item p {
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-info h2 {
    color: var(--primary-700);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-50);
    color: var(--primary-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.contact-details a {
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-details p {
    margin: 0;
    font-size: 0.95rem;
}

.social-links-contact {
    margin-top: 2rem;
}

.social-links-contact h4 {
    margin-bottom: 1rem;
}

.contact-cta {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cta-box {
    background: var(--primary-50);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.cta-box i {
    font-size: 4rem;
    color: #25D366;
    margin-bottom: 1rem;
}

.cta-box h3 {
    color: var(--primary-700);
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 2rem;
}

.working-hours {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.working-hours h4 {
    margin-bottom: 1rem;
    color: var(--primary-700);
}

.working-hours p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Related Products */
.related-products {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-900) 100%);
    color: #fff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-400);
    border-radius: 2px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-400);
    border-radius: 2px;
}

.footer-col p {
    color: rgba(255,255,255,0.85);
    line-height: 1.9;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.85rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.85);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-right: 8px;
}

.footer-col ul li a::before {
    content: '←';
    opacity: 0;
    transition: opacity 0.3s;
}

.footer-col ul li a:hover::before {
    opacity: 1;
}

.footer-col a {
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #fff;
}

.footer .contact-info {
    list-style: none;
    padding: 0;
}

.footer .contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.85);
}

.footer .contact-info li i {
    color: var(--primary-300);
    font-size: 1.1rem;
    margin-top: 0.25rem;
    width: 20px;
    text-align: center;
}

.footer .contact-info li a {
    color: rgba(255,255,255,0.85);
}

.footer .contact-info li a:hover {
    color: #fff;
}

/* Payment Badge in Footer */
.payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    color: #fff;
    font-size: 0.9rem;
}

.payment-badge i {
    color: var(--primary-300);
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.social-links a,
.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover,
.social-link:hover {
    background: var(--primary-500);
    transform: translateY(-3px);
    border-color: var(--primary-400);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.7);
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Hero Banner Responsive */
    .hero-slider-section {
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .hero-text {
        padding: 40px 30px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-slider {
        min-height: 500px;
    }
    
    .slider-track {
        min-height: 500px;
    }
    
    .featured-product-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .featured-product-image {
        min-height: 350px;
        height: 350px;
    }
    
    .featured-product-info {
        padding: 30px;
    }
    
    .featured-product-info h3 {
        font-size: 1.8rem;
    }
    
    .featured-price {
        font-size: 2rem;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .slider-prev {
        right: 15px;
    }
    
    .slider-next {
        left: 15px;
    }
    
    .products-layout {
        grid-template-columns: 1fr;
    }
    
    .filters-sidebar {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: #fff;
        z-index: 1001;
        overflow-y: auto;
        padding: 1rem;
        transition: right 0.3s;
        box-shadow: -5px 0 30px rgba(0,0,0,0.2);
    }
    
    .filters-sidebar.show {
        right: 0;
    }
    
    .mobile-filter-btn {
        display: flex;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 1rem 0;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
    }

    /* Mobile dropdown */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        background: var(--primary-50);
        border-radius: 0;
        padding: 0;
    }
    
    .nav-dropdown.open .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 2.5rem;
        font-size: 0.95rem;
    }
    
    /* Hero Slider Mobile */
    .hero-slider-full {
        height: 500px;
    }
    
    .hero-slider-full .slider-content {
        max-width: 100%;
        padding: 30px 0;
    }
    
    .slider-title {
        font-size: 2.2rem;
    }
    
    .slider-category {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .slider-price {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .slider-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }
    
    .slider-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .slider-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-text-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-text-content p {
        font-size: 1.1rem;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .slider-prev {
        right: 15px;
    }
    
    .slider-next {
        left: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .section {
        padding: 40px 0;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .contact-grid,
    .filters-row {
        grid-template-columns: 1fr;
    }

    .content-box {
        padding: 2rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 1.75rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .category-card {
        padding: 1rem 0.5rem;
    }
    
    .category-icon i {
        font-size: 1.5rem;
    }
    
    .category-name {
        font-size: 0.85rem;
    }
    
    /* Hero Slider - Extra Small Screens */
    .hero-slider-full {
        height: 450px;
    }
    
    .slider-title {
        font-size: 1.8rem;
    }
    
    .slider-category {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
    
    .slider-price {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .slider-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .slider-actions .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-text-content h1 {
        font-size: 2rem;
    }
    
    .hero-text-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-prev { right: 10px; }
    .slider-next { left: 10px; }
    
    .slider-dots {
        bottom: 15px;
        gap: 0.5rem;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-box {
        padding: 1.5rem 1rem;
    }
    
    .category-tabs {
        flex-wrap: wrap;
    }
    
    .category-tab {
        flex: 1;
        min-width: 100px;
        font-size: 0.9rem;
    }

    .pagination {
        gap: 0.25rem;
    }
    
    .showcase-card {
        min-height: 300px;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .section-title p {
        font-size: 0.9rem;
    }

    .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* ==============================================
   NEW HOMEPAGE STYLES
   ============================================== */

/* Categories Section */
.categories-section {
    padding: 3rem 0;
    background: #fff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1rem;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--primary-50);
    border-radius: 12px;
    transition: all 0.3s;
    text-align: center;
}

.category-card:hover {
    background: var(--primary-100);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(193, 62, 62, 0.15);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-600);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.category-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-100);
    color: var(--primary-700);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.badge-men {
    background: #e3f2fd;
    color: #1976d2;
}

.badge-women {
    background: #fce4ec;
    color: #c2185b;
}

/* Products Slider Wrapper */
.products-slider-wrapper {
    overflow: hidden;
}

.products-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.products-slider::-webkit-scrollbar {
    height: 6px;
}

.products-slider::-webkit-scrollbar-track {
    background: var(--primary-50);
    border-radius: 3px;
}

.products-slider::-webkit-scrollbar-thumb {
    background: var(--primary-300);
    border-radius: 3px;
}

.products-slider .product-card {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

/* Product Card Enhanced */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.badge-new {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: #fff;
}

.badge-featured {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
}

.product-category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 5;
}

.product-category-badge.men {
    background: #e3f2fd;
    color: #1976d2;
}

.product-category-badge.women {
    background: #fce4ec;
    color: #c2185b;
}

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s;
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.overlay-btn {
    width: 45px;
    height: 45px;
    background: #fff;
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.overlay-btn:hover {
    background: var(--primary-600);
    color: #fff;
    transform: scale(1.1);
}

.overlay-btn.whatsapp {
    background: #25D366;
    color: #fff;
}

.overlay-btn.whatsapp:hover {
    background: #1ea952;
}

.product-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--primary-600);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-excerpt {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.product-footer .product-price {
    margin: 0;
    font-size: 1.25rem;
}

/* Category Showcase */
.category-showcase {
    padding: 4rem 0;
    background: var(--primary-50);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.showcase-card {
    position: relative;
    background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
    border-radius: 20px;
    padding: 3rem;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-card.men {
    background: linear-gradient(135deg, #1976d2, #0d47a1);
}

.showcase-card.women {
    background: linear-gradient(135deg, #c2185b, #880e4f);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.showcase-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.showcase-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.showcase-content h3 {
    color: #fff;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.showcase-content p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
}

.btn-light {
    background: #fff;
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
}

.btn-light:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

.showcase-products {
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    display: flex;
    gap: 0.5rem;
}

.mini-product {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.3);
}

.mini-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-box {
    text-align: center;
    padding: 2rem;
    background: var(--primary-50);
    border-radius: 16px;
    transition: all 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(193, 62, 62, 0.15);
}

.feature-box .feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-600);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
}

.feature-box h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-box p {
    font-size: 0.9rem;
    margin: 0;
}

/* ==============================================
   PRODUCTS PAGE STYLES
   ============================================== */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-800));
    padding: 3rem 0;
    color: #fff;
    text-align: center;
}

.page-hero.category-men {
    background: linear-gradient(135deg, #1976d2, #0d47a1);
}

.page-hero.category-women {
    background: linear-gradient(135deg, #c2185b, #880e4f);
}

.page-hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb .separator {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
}

.breadcrumb .current {
    color: #fff;
    font-weight: 600;
}

.page-hero-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.page-hero h1 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
}

.page-hero p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.5rem;
}

.products-count {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.count-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.count-text {
    font-size: 0.9rem;
}

/* Category Tabs */
.category-tabs-section {
    background: #fff;
    padding: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 70px;
    z-index: 100;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.category-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-50);
    color: var(--primary-700);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary-600);
    color: #fff;
}

.category-tab.men:hover,
.category-tab.men.active {
    background: #1976d2;
}

.category-tab.women:hover,
.category-tab.women.active {
    background: #c2185b;
}

/* Products Listing */
.products-listing-section {
    padding: 3rem 0;
    background: var(--bg-color);
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
}

/* Sidebar */
.filters-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-card h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-card h4 i {
    color: var(--primary-600);
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li {
    margin-bottom: 0.5rem;
}

.filter-list a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--text-dark);
    border-radius: 8px;
    transition: all 0.2s;
}

.filter-list a:hover,
.filter-list a.active {
    background: var(--primary-50);
    color: var(--primary-700);
}

.filter-list a.active {
    font-weight: 600;
}

.filter-list a i {
    width: 20px;
    text-align: center;
    color: var(--primary-500);
}

.filter-count {
    margin-right: auto;
    background: var(--primary-100);
    color: var(--primary-700);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    text-align: center;
}

.cta-card .cta-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-card h4 {
    color: #fff;
    border: none;
    padding: 0;
    margin-bottom: 0.5rem;
}

.cta-card p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

.btn-block {
    width: 100%;
}

/* Products Content */
.products-content {
    display: flex;
    flex-direction: column;
}

/* Toolbar */
.products-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.toolbar-info {
    color: var(--text-light);
    font-size: 0.95rem;
}

.toolbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sort-dropdown label {
    color: var(--text-dark);
    font-weight: 500;
    white-space: nowrap;
}

.sort-select {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9rem;
    cursor: pointer;
    background: #fff;
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary-500);
}

.view-toggle {
    display: flex;
    gap: 0.25rem;
    background: var(--primary-50);
    padding: 0.25rem;
    border-radius: 8px;
}

.view-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--text-light);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.view-btn:hover,
.view-btn.active {
    background: var(--primary-600);
    color: #fff;
}

/* Active Filters */
.active-filters {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--primary-50);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.filter-label {
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: var(--primary-700);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.filter-tag:hover {
    background: var(--primary-600);
    color: #fff;
}

.filter-tag i {
    font-size: 0.75rem;
}

.clear-all {
    margin-right: auto;
    color: var(--primary-600);
    font-weight: 600;
    font-size: 0.9rem;
}

.clear-all:hover {
    text-decoration: underline;
}

/* List View */
.products-grid.list-view {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.products-grid.list-view .product-card {
    display: grid;
    grid-template-columns: 200px 1fr;
}

.products-grid.list-view .product-image-wrapper {
    height: 200px;
}

.products-grid.list-view .product-image {
    height: 100%;
}

.products-grid.list-view .product-info {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.products-grid.list-view .product-name {
    font-size: 1.25rem;
}

.products-grid.list-view .product-footer {
    margin-top: auto;
}

/* Pagination */
.pagination-wrapper {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.pagination-info {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* No Products Enhanced */
.no-products {
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 12px;
}

.no-products-icon {
    width: 100px;
    height: 100px;
    background: var(--primary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.no-products-icon i {
    font-size: 3rem;
    color: var(--primary-400);
}

.no-products h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.no-products p {
    margin-bottom: 2rem;
}

.no-products-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Filter Button */
.mobile-filter-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--primary-600);
    color: #fff;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(193, 62, 62, 0.4);
    align-items: center;
    gap: 0.5rem;
}

.mobile-filter-btn:hover {
    background: var(--primary-700);
}

body.filters-open {
    overflow: hidden;
}

body.filters-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
}

/* ==============================================
   ENHANCED MOBILE RESPONSIVENESS
   ============================================== */

/* Tablet Devices (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        max-width: 960px;
        padding: 0 30px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Large (769px - 991px) */
@media (max-width: 991px) {
    .hero-slider-full {
        height: 550px;
    }
    
    .slider-content {
        max-width: 90%;
    }
    
    .categories-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.75rem;
    }
}

/* Existing media queries for smaller devices continue... */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #fff;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        padding: 1rem 0;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
    }

    /* Mobile dropdown */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
        background: var(--primary-50);
        border-radius: 0;
        padding: 0;
    }
    
    .nav-dropdown.open .dropdown-menu {
        max-height: 500px;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu a {
        padding: 0.75rem 2.5rem;
        font-size: 0.95rem;
    }
    
    /* Hero Slider Mobile */
    .hero-slider-full {
        height: 500px;
    }
    
    .hero-slider-full .slider-content {
        max-width: 100%;
        padding: 30px 0;
    }
    
    .slider-title {
        font-size: 2.2rem;
    }
    
    .slider-category {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .slider-price {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .slider-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }
    
    .slider-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .slider-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-text-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-text-content p {
        font-size: 1.1rem;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .slider-prev {
        right: 15px;
    }
    
    .slider-next {
        left: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .section-header {
        flex-direction: column;
        gap: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .section {
        padding: 40px 0;
    }

    .section-title h2 {
        font-size: 1.75rem;
    }

    .contact-grid,
    .filters-row {
        grid-template-columns: 1fr;
    }

    .content-box {
        padding: 2rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero h1 {
        font-size: 1.75rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    
    .category-card {
        padding: 1rem 0.5rem;
    }
    
    .category-icon i {
        font-size: 1.5rem;
    }
    
    .category-name {
        font-size: 0.85rem;
    }
    
    /* Hero Slider - Extra Small Screens */
    .hero-slider-full {
        height: 450px;
    }
    
    .slider-title {
        font-size: 1.8rem;
    }
    
    .slider-category {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }
    
    .slider-price {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .slider-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .slider-actions .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-text-content h1 {
        font-size: 2rem;
    }
    
    .hero-text-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slider-prev { right: 10px; }
    .slider-next { left: 10px; }
    
    .slider-dots {
        bottom: 15px;
        gap: 0.5rem;
    }
    
    .slider-dot {
        width: 8px;
        height: 8px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .feature-box {
        padding: 1.5rem 1rem;
    }
    
    .category-tabs {
        flex-wrap: wrap;
    }
    
    .category-tab {
        flex: 1;
        min-width: 100px;
        font-size: 0.9rem;
    }

    .pagination {
        gap: 0.25rem;
    }
    
    .showcase-card {
        min-height: 300px;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .section-title p {
        font-size: 0.9rem;
    }

    .page-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* ==============================================
   NEW HOMEPAGE STYLES
   ============================================== */

/* Categories Section */
.categories-section {
    padding: 3rem 0;
    background: #fff;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1rem;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 1rem;
    background: var(--primary-50);
    border-radius: 12px;
    transition: all 0.3s;
    text-align: center;
}

.category-card:hover {
    background: var(--primary-100);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(193, 62, 62, 0.15);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-600);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.category-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-100);
    color: var(--primary-700);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.badge-men {
    background: #e3f2fd;
    color: #1976d2;
}

.badge-women {
    background: #fce4ec;
    color: #c2185b;
}

/* Products Slider Wrapper */
.products-slider-wrapper {
    overflow: hidden;
}

.products-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.products-slider::-webkit-scrollbar {
    height: 6px;
}

.products-slider::-webkit-scrollbar-track {
    background: var(--primary-50);
    border-radius: 3px;
}

.products-slider::-webkit-scrollbar-thumb {
    background: var(--primary-300);
    border-radius: 3px;
}

.products-slider .product-card {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

/* Product Card Enhanced */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 