/* 
 * ZAPBOOTS - Premium Footwear Store
 * Main Stylesheet
 */

/* ===== VARIABLES ===== */
:root {
    /* Colors */
    --primary-color: #3a86ff;
    --primary-color-rgb: 58, 134, 255;
    --secondary-color: #ff006e;
    --secondary-color-rgb: 255, 0, 110;
    --accent-color: #ffbe0b;
    --accent-color-rgb: 255, 190, 11;
    --dark-color: #1a1a2e;
    --light-color: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
    
    /* Typography */
    --body-font: 'Poppins', sans-serif;
    --heading-font: 'Montserrat', sans-serif;
    --accent-font: 'Roboto', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Container Width */
    --container-width: 1200px;
    --container-padding: 1rem;
}

/* Dark Mode Variables Removed */

/* ===== TYPOGRAPHY ===== */
body {
    font-family: var(--body-font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--light-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--gray-900);
    letter-spacing: 0.02em;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.5rem;
}

/* Regular text elements */
p, li, a, button, input, select, textarea {
    font-family: var(--body-font);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

*::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--light-color);
    /* Keep overflow-x: hidden on body but ensure it doesn't affect dropdowns */
    overflow-x: hidden;
    transition: background-color var(--transition-normal);
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

/* Dark Mode Body Styles Removed */

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

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

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    box-sizing: border-box;
    /* Removed overflow-x: hidden to allow dropdowns to appear outside container */
    overflow-x: visible;
}

/* ===== USER PROFILE DROPDOWN ===== */
.user-profile-dropdown {
    position: relative;
    margin-left: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 35px;
    height: 35px;
    border-radius: var(--radius-full);
    background-color: var(--primary-color);
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.user-avatar:hover {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.dropdown-menu {
    position: absolute;
    top: 45px;
    right: 0;
    width: 200px;
    background-color: var(--light-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
    z-index: 1000; /* Increased z-index to ensure it appears above other elements */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    pointer-events: auto; /* Ensure clicks work when visible */
}

/* Add a visible class for JavaScript toggling */
.dropdown-menu.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Hover styles commented out to prioritize JavaScript toggle */
/*
.user-profile-dropdown:hover .dropdown-menu,
.user-avatar:focus + .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
*/

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

.dropdown-menu ul li {
    padding: 0;
}

.dropdown-menu ul li a,
.dropdown-menu ul li button {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--gray-800);
    text-decoration: none;
    transition: background-color var(--transition-fast);
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 0.9rem;
    font-family: var(--body-font);
    cursor: pointer;
}

.dropdown-menu ul li a:hover,
.dropdown-menu ul li button:hover {
    background-color: var(--gray-100);
    color: var(--primary-color);
}

.dropdown-menu ul li a i,
.dropdown-menu ul li button i {
    margin-right: 0.5rem;
    width: 20px;
    text-align: center;
}

.dropdown-menu ul li form {
    margin: 0;
}

.auth-links {
    margin-left: 1rem;
}

.auth-links .login-link {
    color: var(--gray-800);
    font-size: 1.2rem;
    transition: color var(--transition-fast);
}

.auth-links .login-link:hover {
    color: var(--primary-color);
}

/* Responsive styles for user dropdown */
@media (max-width: 767px) {
    .user-profile-dropdown {
        margin-left: 0.5rem;
    }
    
    .user-avatar {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .dropdown-menu {
        top: 40px;
        right: -10px;
        width: 180px;
    }
    
    .dropdown-menu::before {
        content: '';
        position: absolute;
        top: -5px;
        right: 15px;
        width: 10px;
        height: 10px;
        background-color: var(--light-color);
        transform: rotate(45deg);
        z-index: -1;
    }
    
    .dropdown-menu ul li a,
    .dropdown-menu ul li button {
        padding: 0.8rem 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .dropdown-menu {
        right: -15px;
        width: 200px;
    }
    
    .dropdown-menu::before {
        right: 20px;
    }
}
/* ===== ADVERTISEMENT SECTIONS ===== */
.shop-banner,
.special-offer,
.featured-product-section {
    margin: 3rem 0;
}

/* ===== ABOUT PAGE STYLES ===== */
.about-hero, .contact-hero {
    padding: 5rem 0;
    background-color: var(--gray-100);
    position: relative;
    overflow: hidden;
    background-image: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 240, 250, 0.8) 100%),
        radial-gradient(circle at 30% 40%, rgba(var(--primary-color-rgb), 0.18) 0%, transparent 300px),
        radial-gradient(circle at 70% 60%, rgba(var(--secondary-color-rgb), 0.15) 0%, transparent 300px);
    box-shadow: inset 0 0 80px rgba(var(--primary-color-rgb), 0.05);
}

.about-hero::before, .contact-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(ellipse at center, rgba(var(--accent-color-rgb), 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: gentle-rotate 30s infinite linear;
}

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

.about-hero .hero-content, .contact-hero .hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.about-hero h1 span, .contact-hero h1 span {
    color: var(--primary-color);
    position: relative;
    text-shadow: 0 2px 4px rgba(var(--primary-color-rgb), 0.2);
}

.contact-hero h1 span {
    color: var(--primary-color);
    position: relative;
}

.contact-hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent-color);
    z-index: -1;
    opacity: 0.3;
}

/* Simple hero image styling */
.contact-hero .hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.contact-hero .hero-image img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

@keyframes highlightPulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.contact-hero .hero-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.contact-hero .decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.contact-hero .circle-1 {
    top: 20%;
    left: 10%;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    animation: floatCircle 6s infinite alternate ease-in-out;
}

.contact-hero .circle-2 {
    bottom: 15%;
    right: 15%;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    animation: floatCircle 8s infinite alternate-reverse ease-in-out;
}

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

.about-section {
    padding: 5rem 0;
}

.about-section.bg-light {
    background-color: var(--gray-100);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-600);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.timeline {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 2rem 0;
    box-sizing: border-box;
    width: 100%;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 1rem 2rem;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    margin-bottom: 2rem;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 1.5rem;
    z-index: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}

.timeline-content {
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

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

.team-member {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-color);
}

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

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-200);
    border-radius: 50%;
    color: var(--dark-color);
    transition: all var(--transition-fast);
}

.member-social a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: var(--light-color);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    font-size: 4rem;
    position: absolute;
    left: -1.5rem;
    top: -2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ===== CONTACT PAGE STYLES ===== */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.info-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 50%;
    font-size: 1.2rem;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.social-connect {
    margin-top: 2rem;
}

.social-connect h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-200);
    border-radius: 50%;
    color: var(--dark-color);
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.contact-form-container {
    background-color: var(--light-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

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

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: var(--body-font);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-checkbox input {
    width: auto;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: normal;
}

.map-container {
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
}

.map-overlay p {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background-color: var(--light-color);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: var(--light-color);
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: var(--gray-100);
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-200);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.faq-item.active .faq-toggle {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-answer p {
    padding-bottom: 1.5rem;
}

.faq-more {
    text-align: center;
    margin-top: 2rem;
}

.hero-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transform: rotate(10deg);
}

.shop-banner img,
.special-offer img,
.featured-product-ad img,
.featured-product-section img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.shop-banner img:hover,
.special-offer img:hover,
.featured-product-ad img:hover,
.featured-product-section img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.featured-product-ad {
    grid-column: span 2;
    margin: 2rem 0;
}

/* ===== CONTAINER ===== */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    box-sizing: border-box;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    outline: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
}

.btn-light {
    background-color: white;
    color: var(--dark-color);
    box-shadow: var(--shadow-sm);
}

.btn-light:hover {
    background-color: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--dark-color);
}

.btn-outline {
    background-color: transparent;
    color: rgb(75, 189, 235);
    border: 2px solid rgb(75, 189, 235);
    opacity: 1;
    visibility: visible !important;
    display: inline-flex !important;
}

.btn-outline:hover {
    background-color: rgb(75, 189, 235);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* ===== DARK MODE TOGGLE REMOVED ===== */

/* ===== HEADER & NAVIGATION ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-sizing: border-box;
    max-width: 100%;
    overflow-x: clip;
}

/* Header spacer to prevent content from being hidden behind fixed header */
.header-spacer {
    height: 70px; /* Same as header height */
    width: 100%;
}

/* Dark Mode Header Styles Removed */

header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 70px;
      width: 100%;
      box-sizing: border-box;
  }

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5D2A0C;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Dark Mode Logo Styles Removed */

.logo-img {
    height: 40px;
    width: auto;
}

/* Removed .logo span styling */

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: var(--gray-700);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    padding: 0.4rem 0;
}

/* Dark Mode Nav Links Styles Removed */

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-icons i {
    font-size: 1rem;
    color: var(--gray-700);
    cursor: pointer;
    transition: color var(--transition-fast);
}

/* Dark Mode Nav Icons Styles Removed */

.nav-icons i:hover {
    color: var(--primary-color);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle {
    display: none;
}

@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 140px 0 80px;
    background-color: var(--gray-100);
    position: relative;
    overflow: hidden;
    background-image: 
        linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 240, 250, 0.85) 100%),
        radial-gradient(circle at 20% 30%, rgba(var(--primary-color-rgb), 0.18) 0%, transparent 300px),
        radial-gradient(circle at 80% 70%, rgba(var(--accent-color-rgb), 0.15) 0%, transparent 300px),
        radial-gradient(circle at 40% 90%, rgba(var(--secondary-color-rgb), 0.1) 0%, transparent 200px);
    box-shadow: inset 0 0 100px rgba(var(--primary-color-rgb), 0.05);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/pattern-bg.svg');
    background-size: 200px;
    background-repeat: repeat;
    opacity: 0.07;
    z-index: 1;
    animation: subtle-float 30s infinite alternate ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(var(--primary-color-rgb), 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: gentle-pulse 20s infinite alternate ease-in-out;
}

@keyframes subtle-float {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-15px) translateY(-15px); }
}

@keyframes gentle-pulse {
    0% { transform: scale(1); opacity: 0.08; }
    100% { transform: scale(1.1); opacity: 0.12; }
}


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/pattern-bg.svg');
    background-repeat: repeat;
    opacity: 0.15;
    z-index: 1;
    animation: subtle-float 15s infinite alternate ease-in-out;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(var(--primary-color-rgb), 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

@keyframes subtle-float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-10px) scale(1.05); }
}

[data-theme="dark"] .hero {
    background-color: var(--gray-900);
    background-image: 
        linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(20, 20, 40, 0.8) 100%),
        radial-gradient(circle at 20% 30%, rgba(var(--primary-color-rgb), 0.2) 0%, transparent 250px),
        radial-gradient(circle at 80% 70%, rgba(var(--accent-color-rgb), 0.2) 0%, transparent 250px),
        radial-gradient(circle at 40% 90%, rgba(var(--secondary-color-rgb), 0.15) 0%, transparent 200px);
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    letter-spacing: 0.02em;
}

/* Dark Mode Hero Content H1 Styles Removed */

.hero-content span{
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(var(--primary-color-rgb), 0.2);
    font-size: 8rem;
    font-weight: 700;
}

.hero-content span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--accent-color);
    z-index: -1;
    opacity: 0.5;
    border-radius: 4px;
    animation: highlight-pulse 3s infinite alternate ease-in-out;
}
.hero-content h2{
    color: var(--primary-color);
}

@keyframes highlight-pulse {
    0% { opacity: 0.4; width: 90%; left: 5%; }
    100% { opacity: 0.6; width: 100%; left: 0; }
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-family: var(--body-font);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Dark Mode Hero Content P Styles Removed */

.hero-buttons {
    display: flex;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.hero-buttons .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hero-buttons .btn:hover::before {
    opacity: 1;
    transform: scale(1);
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(var(--primary-color-rgb), 0.85) 100%);
}

.hero-buttons .btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(var(--secondary-color-rgb), 0.85) 100%);
}

.hero-buttons .btn-outline {
    background: transparent;
    color: rgb(78, 172, 209);
    border: 2px solid rgb(78, 172, 209);
}

.hero-buttons .btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, rgba(var(--primary-color-rgb), 0.85) 100%);
    color: white;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    transform: rotate(-10deg);
    transition: all var(--transition-slow);
    animation: pulse 6s ease-in-out infinite;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
}

.hero-image:hover img {
    transform: rotate(-5deg) translateY(-10px);
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.2)) brightness(1.05);
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, rgba(var(--primary-color-rgb), 0.2) 0%, rgba(var(--accent-color-rgb), 0.2) 100%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    top: 10%;
    left: 10%;
    animation: glow-pulse 6s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
    0% { opacity: 0.5; transform: scale(0.95); }
    100% { opacity: 0.8; transform: scale(1.05); }
}

@keyframes pulse {
    0%, 100% {
        filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    }
    50% {
        filter: drop-shadow(0 25px 35px rgba(var(--primary-color-rgb, 58, 134, 255), 0.3));
    }
}

.hero-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent-color) 0%, rgba(var(--accent-color-rgb), 0.8) 100%);
    color: var(--dark-color);
    font-weight: 700;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    transform: rotate(15deg);
    box-shadow: 0 5px 15px rgba(var(--accent-color-rgb), 0.3);
    animation: float 3s ease-in-out infinite;
    border: 2px solid rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    z-index: 3;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@keyframes float {
    0%, 100% {
        transform: rotate(15deg) translateY(0);
    }
    50% {
        transform: rotate(15deg) translateY(-10px);
    }
}

/* ===== CATEGORIES SECTION ===== */
.categories {
    padding: 80px 0;
    background-color: var(--light-color);
}

/* Dark Mode Categories Styles Removed */

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-top: 2%;
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    letter-spacing: 0.02em;
}

/* Dark Mode Section Header H2 Styles Removed */

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    font-family: var(--body-font);
}

/* Dark Mode Section Header P Styles Removed */

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.category-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Dark Mode Category Card Styles Removed */

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-card:active {
    transform: scale(0.98);
    animation: pulseEffect 0.3s ease-out;
}

.category-img {
    height: 250px;
    overflow: hidden;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.category-card:hover .category-img img {
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 1.5rem 0 0.5rem;
}

/* Dark Mode Category Card H3 Styles Removed */

.category-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
}

.category-content {
    padding: 20px;
    text-align: center;
}

.category-content p {
    color: #666;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px;
}

.category-link::after {
    content: '→';
    margin-left: 5px;
    transition: transform var(--transition-fast);
    display: inline-block;
}

.category-link:hover::after {
    transform: translateX(5px);
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: 80px 0;
    background-color: var(--gray-100);
    position: relative;
}

/* Product Slider Styles */
.product-slider {
    position: relative;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    gap: 1.5rem;
    padding: 1rem 0;
}

.product-slider::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.slider-prev,
.slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--light-color);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--primary-color);
    color: white;
}

@media (min-width: 769px) {
    .product-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .product-slider {
        display: flex;
        grid-template-columns: unset;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .product-slider .product-card {
        width: calc(25% - 1.5rem);
        flex: 0 0 auto;
        margin-right: 1.5rem;
    }
}

/* Dark Mode Products Styles Removed */

.product-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1.5rem;
    padding: 1rem 0;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.product-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.product-card {
    min-width: 250px;
    width: 250px;
    background-color: var(--light-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    position: relative;
    height: auto; /* Reduced height */
    margin-right: 10px;
    flex: 0 0 auto;
}

/* Dark Mode Product Card Styles Removed */

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

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

.product-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    z-index: 1;
}

.product-badge.new {
    background-color: var(--primary-color);
}

.product-img {
    height: 180px; /* Reduced height */
    overflow: hidden;
    position: relative;
    background-color: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
    margin: 0 auto;
    display: block;
}

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

.product-actions {
    display: none; /* Hide product actions */
}

.product-card:hover .product-actions {
    display: none; /* Hide product actions on hover too */
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: white;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.action-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.action-btn.add-to-cart {
    width: auto;
    padding: 0 1rem;
}

.action-btn.add-to-cart i {
    margin-right: 5px;
}

.product-info {
    padding: 0.75rem; /* Reduced padding */
    display: flex;
    flex-direction: column;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Dark Mode Product Name Styles Removed */

.product-category {
    display: none; /* Hide category */
}

/* Dark Mode Product Category Styles Removed */

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

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

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

.product-rating {
    display: none; /* Hide rating */
}

.product-rating i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.product-rating span {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

/* Dark Mode Product Rating Span Styles Removed */

.view-more {
    text-align: center;
    margin-top: 3rem;
}

/* ===== SPECIAL OFFER SECTION ===== */
.special-offer {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.offer-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.offer-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.offer-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.offer-content strong {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-color);
}

/* Dark Mode Testimonials Styles Removed */

.testimonial-slider {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    overflow-x: hidden;
}

.testimonial-card {
    background-color: var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: calc(33.333% - 1.33rem);
    transition: all var(--transition-normal);
}

/* Dark Mode Testimonial Card Styles Removed */

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: var(--accent-color);
    font-size: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Dark Mode Testimonial Text Styles Removed */

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.author-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

/* Dark Mode Author Info H4 Styles Removed */

.author-info p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Dark Mode Author Info P Styles Removed */

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: var(--gray-300);
    cursor: pointer;
    transition: all var(--transition-fast);
}

/* Dark Mode Dot Styles Removed */

.dot.active {
    background-color: var(--primary-color);
    width: 30px;
}

/* ===== TRUSTED BRANDS SECTION ===== */
.trusted-brands {
    padding: 60px 0;
    background-color: var(--gray-100);
}

/* Dark Mode Trusted Brands Styles Removed */

.brands-slider {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.brand-logo {
    flex: 1;
    min-width: 120px;
    max-width: 180px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all var(--transition-normal);
}

.brand-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 80px 0;
    background-color: var(--light-color);
}

/* Dark Mode About Styles Removed */

.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-text .section-header {
    text-align: left;
}

.about-text .section-header h2::after {
    left: 0;
    transform: none;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--gray-700);
    line-height: 1.8;
}

/* Dark Mode About Text P Styles Removed */

.about-image {
    flex: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

/* ===== NEWSLETTER SECTION ===== */
.newsletter {
    padding: 80px 0;
    background-color: var(--gray-100);
}

/* Dark Mode Newsletter Styles Removed */

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: var(--body-font);
    font-size: 1rem;
    outline: none;
    transition: border-color var(--transition-fast);
    background-color: var(--light-color);
    color: var(--gray-800);
}

/* Dark Mode Newsletter Form Input Styles Removed */

.newsletter-form input:focus {
    border-color: var(--primary-color);
}

/* ===== FLASH MESSAGES & NOTIFICATIONS ===== */
.flash-message {
    padding: 15px 0;
    margin-bottom: 20px;
    position: relative;
    animation: slideDown 0.3s ease-out forwards;
    z-index: 99; /* Below header but above other content */
}

.flash-message .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flash-message p, .flash-message ul {
    margin: 0;
    padding: 0;
}

.flash-message ul.error-list {
    list-style-position: inside;
}

.flash-message.success {
    background-color: #d4edda;
    color: #155724;
    border-top: 1px solid #c3e6cb;
    border-bottom: 1px solid #c3e6cb;
}

.flash-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border-top: 1px solid #f5c6cb;
    border-bottom: 1px solid #f5c6cb;
}

.close-flash {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 1rem;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.close-flash:hover {
    opacity: 1;
}

.notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    background-color: white;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-color);
    color: var(--gray-300);
    padding: 80px 0 0;
}

/* Dark Mode Footer Styles Removed */

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

.footer-logo a {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-column p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-column h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-methods {
    display: flex;
    gap: 1rem;
}

.payment-methods i {
    font-size: 1.5rem;
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.payment-methods i:hover {
    color: white;
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    z-index: 99;
    cursor: pointer;
}

.back-to-top.visible,
.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===== ANIMATIONS ===== */
/* Ensure all elements are visible by default */
.hero-content h1, .hero-content p, .hero-buttons .btn, 
.hero-image img, .hero-badge, .category-card, .product-card,
.offer-content > *, .testimonial-card, .brand-logo, 
.about-text .section-header, .about-text p, .about-text .btn, 
.about-image, .newsletter .section-header, .newsletter-form, 
.footer-column, .section-header, .view-more, .back-to-top, 
.product-actions, .social-icon, .footer-links li, .payment-methods i {
    opacity: 1 !important;
    visibility: visible !important;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(50px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

.fadeIn { animation: fadeIn 1s ease forwards; }
.slideInLeft { animation: slideInLeft 1s ease forwards; }
.slideInRight { animation: slideInRight 1s ease forwards; }
.pulse { animation: pulse 2s infinite ease-in-out; }
