/* ===== Import Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;900&display=swap');

/* ===== CSS Variables ===== */
:root {
    --primary-color: #c9a961;
    --secondary-color: #a68645;
    --accent-color: #d4af37;
    --dark-color: #1a1a1a;
    --light-color: #faf8f5;
    --white: #ffffff;
    --gray: #6b6b6b;
    --light-gray: #e8e5e0;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --gradient: linear-gradient(135deg, #c9a961, #d4af37, #a68645);
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #c9a961 50%, #a68645 100%);
    --shadow: 0 4px 12px rgba(201, 169, 97, 0.15);
    --shadow-lg: 0 10px 30px rgba(201, 169, 97, 0.25);
    --shadow-dark: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
    padding-top: 40px; /* Space for announcement bar */
}

/* ===== Announcement Bar ===== */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--gold-gradient);
    color: var(--white);
    z-index: 1001;
    overflow: hidden;
    height: 40px;
}

.announcement-content {
    display: flex;
    animation: scroll-announcements 20s linear infinite;
    padding: 10px 0;
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 40px;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 600;
}

.announcement-item i {
    font-size: 16px;
}

@keyframes scroll-announcements {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

/* Mobile announcement */
@media (max-width: 768px) {
    .announcement-bar {
        height: 35px;
    }
    
    body {
        padding-top: 35px;
    }
    
    .announcement-content {
        padding: 7px 0;
    }
    
    .announcement-item {
        font-size: 11px;
        padding: 0 20px;
        gap: 6px;
    }
    
    .announcement-item i {
        font-size: 13px;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mobile First - Base container for small screens */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 97, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 3px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
}

.btn-block {
    width: 100%;
    display: block;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--secondary-color);
}

/* ===== Header & Navigation ===== */
header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(201, 169, 97, 0.1);
    position: sticky;
    top: 40px;
    z-index: 1000;
    border-bottom: 3px solid transparent;
    border-image: var(--gold-gradient) 1;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

header.scrolled {
    box-shadow: 0 4px 30px rgba(201, 169, 97, 0.2);
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Logo with Image */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    cursor: pointer;
}

.logo-image {
    width: 50px;
    height: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(201, 169, 97, 0.3));
}

.logo:hover .logo-image {
    transform: scale(1.1) rotate(5deg);
}

.logo-text h1 {
    font-size: 24px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0;
    font-weight: 900;
    letter-spacing: 2px;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(201, 169, 97, 0.2);
}

.logo-text .tagline {
    font-size: 10px;
    color: var(--accent-color);
    margin-top: 2px;
    font-weight: 600;
    text-align: center;
    line-height: 1;
    letter-spacing: 1px;
}

/* Mobile Logo Adjustments */
@media (max-width: 768px) {
    header {
        top: 35px;
        padding: 0;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo-image {
        width: 42px;
        filter: drop-shadow(0 1px 4px rgba(201, 169, 97, 0.3));
    }
    
    .logo-text h1 {
        font-size: 18px;
        letter-spacing: 1.5px;
    }
    
    .logo-text .tagline {
        font-size: 9px;
        margin-top: 0;
    }
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-color);
    font-weight: 700;
    padding: 10px 0;
    position: relative;
    font-size: 16px;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--gold-gradient);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.cart-link {
    position: relative;
    font-size: 22px;
    color: var(--accent-color);
}

.cart-count {
    position: absolute;
    top: -10px;
    left: -10px;
    background: var(--gold-gradient);
    color: var(--white);
    font-size: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
}

/* ===== Search Bar ===== */
.search-container {
    flex: 1;
    max-width: 350px;
    margin: 0 15px;
    position: relative;
}

.search-box {
    display: flex;
    align-items: center;
    background: var(--light-color);
    border-radius: 25px;
    padding: 6px 12px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--accent-color);
    background: var(--white);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.2);
}

.search-box input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 4px 8px;
    font-size: 13px;
    outline: none;
    font-family: 'Cairo', sans-serif;
}

.search-btn {
    background: var(--gold-gradient);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--white);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.search-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    max-height: 400px;
    overflow-y: auto;
    margin-top: 10px;
    z-index: 100;
    display: none;
}

.search-results.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid var(--light-gray);
    cursor: pointer;
    transition: var(--transition);
}

.search-result-item:hover {
    background: var(--light-color);
}

.search-result-item img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    margin-left: 12px;
}

.search-result-info h4 {
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.search-result-info p {
    font-size: 12px;
    color: var(--gray);
}

.search-result-price {
    margin-right: auto;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-color);
}

/* ===== Categories Dropdown ===== */
.categories-dropdown {
    position: relative;
}

.category-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(201, 169, 97, 0.3);
    white-space: nowrap;
}

.category-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.5);
}

.categories-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    min-width: 250px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}

.categories-dropdown:hover .categories-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--dark-color);
    transition: var(--transition);
    border-bottom: 1px solid var(--light-gray);
}

.category-item:last-child {
    border-bottom: none;
}

.category-item:hover {
    background: var(--light-color);
    color: var(--accent-color);
    padding-right: 25px;
}

.category-item i {
    font-size: 18px;
    color: var(--accent-color);
    width: 20px;
}

/* ===== Header Icons ===== */
.header-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.icon-link {
    position: relative;
    color: var(--dark-color);
    font-size: 20px;
    transition: var(--transition);
    cursor: pointer;
}

.icon-link:hover {
    color: var(--accent-color);
    transform: scale(1.1);
}

.icon-count {
    position: absolute;
    top: -6px;
    left: -6px;
    background: var(--gold-gradient);
    color: var(--white);
    font-size: 10px;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(201, 169, 97, 0.4);
    padding: 0 4px;
}

/* Mobile Header */
@media (max-width: 968px) {
    .navbar {
        padding: 6px 0;
    }
    
    .search-container {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin: 0;
        padding: 8px 15px;
        background: var(--white);
        border-top: 1px solid var(--light-gray);
        max-width: 100%;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .header-icons {
        gap: 8px;
    }
    
    .categories-dropdown {
        display: none;
    }
    
    .icon-link {
        font-size: 18px;
    }
    
    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    header {
        top: 35px;
    }
    
    .navbar {
        padding: 5px 0;
    }
    
    .navbar .container {
        gap: 8px;
    }
    
    .logo {
        gap: 6px;
    }
    
    .logo-image {
        width: 35px;
    }
    
    .logo-text h1 {
        font-size: 15px;
    }
    
    .logo-text .tagline {
        font-size: 7px;
    }
    
    .search-container {
        padding: 6px 12px;
    }
    
    .search-box {
        padding: 5px 10px;
    }
    
    .search-box input {
        font-size: 12px;
        padding: 3px 6px;
    }
    
    .search-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .header-icons {
        gap: 6px;
    }
    
    .icon-link {
        font-size: 16px;
    }
    
    .icon-count {
        font-size: 8px;
        min-width: 14px;
        height: 14px;
        top: -4px;
        left: -4px;
    }
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: var(--dark-color);
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.7), rgba(201, 169, 97, 0.3));
}

.slide-content {
    position: relative;
    z-index: 3;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 600px;
}

.slide-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideInRight 1s ease;
}

.slide-subtitle {
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 35px;
    animation: slideInRight 1s ease 0.2s backwards;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 169, 97, 0.8);
    color: var(--white);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    z-index: 10;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
    right: 15px;
}

.slider-btn.next {
    left: 15px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--accent-color);
    transform: scale(1.3);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== Features Section ===== */
.features-section {
    padding: 80px 0;
    background: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 50px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--gray);
}

/* ===== Categories Section ===== */
.categories {
    padding: 80px 0;
    background: var(--light-color);
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    position: relative;
    font-weight: 800;
    color: var(--dark-color);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

/* Mobile: Smaller categories */
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .category-card {
        padding: 20px 12px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .category-card h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    
    .category-card p {
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .btn-link {
        font-size: 12px;
    }
}

.category-card {
    background: var(--white);
    padding: 50px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    font-size: 70px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
}

.category-card h3 {
    font-size: 26px;
    margin-bottom: 12px;
    font-weight: 800;
    color: var(--dark-color);
}

.category-card p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 15px;
}

/* ===== Products Grid ===== */
.featured-products {
    padding: 80px 0;
    background: var(--white);
}

/* New Featured Products Section */
.featured-products-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.featured-products-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* Mobile Optimizations for Featured Products */
@media (max-width: 768px) {
    .featured-products-section {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .featured-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
}

/* Mobile: 2 columns for products */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--light-gray);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.product-badge.local {
    background: var(--success-color);
}

.product-image {
    width: 100%;
    height: 320px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
}

.product-card:hover .quick-view-btn {
    transform: translateY(0);
}

.quick-view-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.6);
}

.product-info {
    padding: 25px;
}

.product-category {
    color: var(--accent-color);
    font-size: 13px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.product-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-color);
    line-height: 1.3;
}

.product-description {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-price {
    font-size: 26px;
    color: var(--accent-color);
    font-weight: 900;
    margin-bottom: 20px;
    font-family: 'Cairo', sans-serif;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.add-to-cart {
    flex: 1;
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.add-to-cart:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
}

.quick-view {
    background: var(--light-color);
    color: var(--dark-color);
    border: 2px solid var(--accent-color);
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
    width: 55px;
}

.quick-view:hover {
    background: var(--accent-color);
    color: var(--white);
}

/* Mobile Product Cards Optimization */
@media (max-width: 768px) {
    .product-card {
        border-radius: 12px;
    }
    
    .product-image {
        height: 160px;
    }
    
    .product-badge {
        top: 8px;
        right: 8px;
        padding: 4px 10px;
        font-size: 9px;
    }
    
    .wishlist-btn,
    .compare-btn {
        width: 32px;
        height: 32px;
        top: 10px;
    }
    
    .wishlist-btn {
        right: 10px;
    }
    
    .compare-btn {
        top: 48px;
        right: 10px;
    }
    
    .wishlist-btn i,
    .compare-btn i {
        font-size: 14px;
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-category {
        font-size: 10px;
        margin-bottom: 5px;
    }
    
    .product-name {
        font-size: 14px;
        margin-bottom: 6px;
        line-height: 1.2;
    }
    
    .product-description {
        font-size: 11px;
        margin-bottom: 8px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .product-rating {
        margin: 6px 0;
    }
    
    .stars i {
        font-size: 11px;
    }
    
    .rating-count {
        font-size: 10px;
    }
    
    .product-price {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .add-to-cart {
        padding: 10px;
        font-size: 12px;
    }
    
    .wishlist-btn {
        width: 32px;
        height: 32px;
        top: 8px;
        right: 8px;
    }
    
    .wishlist-btn i {
        font-size: 14px;
    }
    
    /* Hide overlay on mobile, show button directly */
    .product-overlay {
        display: none;
    }
    
    .quick-view-btn {
        display: none;
    }
}

/* ===== About Preview ===== */
.about-preview {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--light-color);
    border-radius: 10px;
}

.stat-item h3 {
    font-size: 36px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--gray);
}

/* ===== Footer ===== */
footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 70px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-gradient);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3 {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 800;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section p {
    color: var(--light-gray);
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 15px;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--light-gray);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent-color);
    padding-right: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.social-links a:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--white);
}

.contact-info li i {
    color: var(--accent-color);
}

/* ===== Page Header ===== */
.page-header {
    position: relative;
    background: var(--dark-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0.1;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 52px;
    margin-bottom: 15px;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 20px;
    color: var(--accent-color);
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    color: var(--light-gray);
    font-size: 15px;
}

.footer-bottom p {
    margin: 8px 0;
}

.developer-credit {
    margin-top: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.developer-credit strong {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ===== Page Header ===== */
.page-header {
    background: var(--gradient);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===== Products Page ===== */
.products-section {
    padding: 60px 0;
}

.products-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.filters-sidebar {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}

.filter-option input {
    cursor: pointer;
}

#search-input {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.results-info {
    font-weight: 600;
    color: var(--gray);
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options select {
    padding: 8px 15px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}

.no-results i {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.3;
}

/* ===== Cart Page ===== */
.cart-section {
    padding: 60px 0;
    min-height: 60vh;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

/* ===== Cart Item ===== */
.cart-item-image {
    width: 120px;
    height: 120px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.cart-item-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.cart-item-info p {
    color: var(--gray);
    font-size: 14px;
}

.cart-item-price {
    font-size: 20px;
    color: var(--primary-color);
    font-weight: 700;
    margin: 10px 0;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.quantity-controls button {
    width: 30px;
    height: 30px;
    border: 1px solid var(--light-gray);
    background: var(--white);
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.quantity-controls button:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.quantity-controls span {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
}

.remove-item {
    background: none;
    border: none;
    color: var(--error-color);
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
}

.remove-item:hover {
    transform: scale(1.2);
}

/* ===== Cart Summary Enhanced ===== */
.cart-summary {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 2px solid var(--accent-color);
}

.cart-summary h3 {
    font-size: 26px;
    margin-bottom: 25px;
    font-weight: 900;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    color: var(--gray);
    font-size: 16px;
}

.summary-divider {
    height: 2px;
    background: var(--gold-gradient);
    margin: 25px 0;
    border-radius: 2px;
}

.total-row {
    font-size: 22px;
    font-weight: 900;
    color: var(--dark-color);
}

.total-row span:last-child {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.discount-amount {
    color: var(--success-color);
}

.promo-code {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.promo-code input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
}

.payment-methods {
    margin-top: 20px;
    text-align: center;
}

.payment-methods p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 24px;
    color: var(--gray);
}

.empty-cart-message {
    text-align: center;
    padding: 60px 20px;
}

.empty-cart-message i {
    font-size: 100px;
    color: var(--light-gray);
    margin-bottom: 20px;
}

.empty-cart-message h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.empty-cart-message p {
    color: var(--gray);
    margin-bottom: 30px;
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 50px auto;
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    position: relative;
}

.close-modal {
    color: var(--gray);
    float: left;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--error-color);
}

.modal-content h2 {
    margin-bottom: 30px;
    font-size: 28px;
}

/* ===== Forms ===== */
.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover {
    border-color: var(--primary-color);
}

.payment-option input:checked + span {
    color: var(--primary-color);
    font-weight: 600;
}

.payment-option i {
    font-size: 20px;
    color: var(--primary-color);
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #e8f5e9;
    color: var(--success-color);
    display: block;
}

.form-message.error {
    background: #ffebee;
    color: var(--error-color);
    display: block;
}

/* ===== About Page ===== */
.about-story {
    padding: 60px 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.story-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 18px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* ===== About Page Enhancements ===== */
.value-icon {
    font-size: 60px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.value-card p {
    color: var(--gray);
    line-height: 1.7;
}

.stat-box {
    text-align: center;
    padding: 50px 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.stat-box i {
    font-size: 56px;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.stat-box h3 {
    font-size: 48px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    font-weight: 900;
}

.stat-box p {
    color: var(--gray);
    font-size: 17px;
    font-weight: 600;
}

.reason-item {
    display: flex;
    gap: 18px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.reason-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.reason-item i {
    font-size: 32px;
    color: var(--accent-color);
    flex-shrink: 0;
}

.reason-item h4 {
    font-size: 19px;
    margin-bottom: 8px;
    font-weight: 800;
    color: var(--dark-color);
}

.reason-item p {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.6;
}

.what-we-offer {
    padding: 60px 0;
    background: var(--light-color);
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.offer-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-icon {
    font-size: 48px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.offer-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.offer-card p {
    color: var(--gray);
    line-height: 1.8;
}

.statistics {
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-box {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.stat-box i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-box h3 {
    font-size: 42px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-box p {
    color: var(--gray);
    font-size: 16px;
}

.why-choose {
    padding: 60px 0;
    background: var(--light-color);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.reason-item {
    display: flex;
    gap: 15px;
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.reason-item i {
    font-size: 28px;
    color: var(--success-color);
    flex-shrink: 0;
}

.reason-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.reason-item p {
    color: var(--gray);
    font-size: 14px;
}

/* ===== Contact Page ===== */
.contact-section {
    padding: 60px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}
/* ===== Contact Page Enhancements ===== */
.contact-method {
    display: flex;
    gap: 22px;
    margin-bottom: 35px;
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateX(5px);
}

.method-icon {
    width: 60px;
    height: 60px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.method-details h4 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 800;
    color: var(--dark-color);
}

.method-details p {
    color: var(--gray);
    margin-bottom: 6px;
    font-size: 15px;
}

.method-details a {
    color: var(--accent-color);
    font-weight: 600;
}

.method-details h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.method-details p {
    color: var(--gray);
    margin-bottom: 5px;
}

.method-details a {
    color: var(--primary-color);
}

.method-details a:hover {
    text-decoration: underline;
}

.social-section {
    margin-top: 40px;
}

.social-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.social-links-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 10px;
    transition: var(--transition);
    font-weight: 600;
    color: var(--white);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link.whatsapp {
    background: #25d366;
}

.social-link.tiktok {
    background: #000000;
}

.social-link:hover {
    transform: scale(1.05);
}

.social-link i {
    font-size: 24px;
}

.contact-form-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.map-section {
    padding: 60px 0;
    background: var(--light-color);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-section {
    padding: 60px 0;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question h4 {
    font-size: 18px;
}

.faq-question i {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--gray);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ===== Responsive Design ===== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        right: -100%;
        top: calc(35px + 60px);
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.4s;
        box-shadow: var(--shadow-lg);
        padding: 15px 0;
        border-top: 2px solid var(--accent-color);
        gap: 5px;
        z-index: 999;
    }
    
    .nav-menu a {
        padding: 12px 20px;
        width: 100%;
        font-size: 15px;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-slider {
        height: 280px;
    }

    .slide-content {
        height: 280px;
    }

    .slide-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .slide-subtitle {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .slider-btn.prev {
        right: 10px;
    }

    .slider-btn.next {
        left: 10px;
    }
    
    .slider-dots {
        bottom: 15px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-between;
    }

    .products-layout {
        grid-template-columns: 1fr;
    }

    .filters-sidebar {
        position: static;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .social-links-large {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }

    .page-header h1 {
        font-size: 38px;
    }
}

@media (max-width: 576px) {
    .logo-image {
        width: 32px;
    }
    
    .logo-text h1 {
        font-size: 13px;
    }
    
    .logo-text .tagline {
        font-size: 6px;
    }

    .hero-slider {
        height: 240px;
    }

    .slide-content {
        height: 240px;
        padding: 0 15px;
    }

    .slide-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .slide-subtitle {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: 22px;
    }

    .cart-item {
        grid-template-columns: 1fr;
    }

    .cart-item-actions {
        flex-direction: row;
        justify-content: space-between;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .btn {
        padding: 12px 30px;
        font-size: 15px;
    }
}

/* ===== Enhanced Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease;
}

/* ===== Loading Skeleton ===== */
.skeleton {
    background: linear-gradient(
        90deg,
        var(--light-gray) 25%,
        var(--white) 50%,
        var(--light-gray) 75%
    );
    background-size: 2000px 100%;
    animation: shimmer 2s infinite;
}

/* ===== Scroll to Top Button ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.5);
}

/* ===== Product Wishlist Button ===== */
.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.wishlist-btn i {
    color: var(--primary-gold);
    font-size: 18px;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    transform: scale(1.1);
}

.wishlist-btn.active i {
    color: var(--accent-gold);
    font-weight: 900;
}

/* ===== Product Rating Stars ===== */
.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 10px 0;
}

.stars {
    display: flex;
    gap: 3px;
}

.stars i {
    color: var(--primary-gold);
    font-size: 14px;
}

.stars i.far {
    color: var(--light-gray);
}

.rating-count {
    color: var(--text-color);
    font-size: 13px;
    margin-right: 5px;
}

/* ===== Newsletter Section Enhancement ===== */
.newsletter-section {
    background: var(--gold-gradient);
    padding: 60px 20px;
    text-align: center;
    margin: 80px 0;
    border-radius: 15px;
}

.newsletter-section h3 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid var(--white);
    border-radius: 50px;
    font-size: 15px;
    background: var(--white);
}

.newsletter-form button {
    padding: 15px 40px;
    background: var(--dark-gray);
    color: var(--white);
    border: 2px solid var(--dark-gray);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--white);
    color: var(--primary-gold);
}

/* ===== Trust Badges ===== */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 60px 0;
    margin: 40px 0;
}

.trust-badge {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.2);
}

.trust-badge i {
    font-size: 48px;
    color: var(--primary-gold);
    margin-bottom: 15px;
    display: inline-block;
}

.trust-badge h4 {
    color: var(--dark-gray);
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.trust-badge p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== Product Quick View Modal ===== */
.quick-view-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.quick-view-modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 40px;
}

.modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    color: var(--dark-gray);
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: rotate(90deg);
}

.quick-view-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.quick-view-image {
    position: relative;
}

.quick-view-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
}

.quick-view-badges {
    position: absolute;
    top: 15px;
    right: 15px;
}

.quick-view-info h2 {
    font-size: 32px;
    color: var(--dark-gray);
    margin-bottom: 10px;
    font-weight: 700;
}

.quick-view-price {
    font-size: 36px;
    color: var(--primary-gold);
    font-weight: 700;
    margin: 20px 0;
}

.quick-view-description {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 16px;
}

.quick-view-features {
    background: var(--light-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-color);
    font-size: 15px;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.feature-item i {
    color: var(--primary-gold);
    font-size: 18px;
}

.quick-view-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.quick-view-actions .btn {
    flex: 1;
    min-width: 150px;
}

@media (max-width: 768px) {
    .quick-view-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .quick-view-image img {
        height: 350px;
    }
    
    .quick-view-info h2 {
        font-size: 24px;
    }
    
    .quick-view-price {
        font-size: 28px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .quick-view-actions {
        flex-direction: column;
    }
    
    .quick-view-actions .btn {
        width: 100%;
    }
}

/* ===== Enhanced Product Filters ===== */
.filter-section {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.1);
    margin-bottom: 30px;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    color: var(--dark-gray);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-group h4 i {
    color: var(--primary-gold);
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-option {
    padding: 8px 20px;
    background: var(--light-gray);
    border: 2px solid transparent;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    color: var(--dark-gray);
}

.filter-option:hover,
.filter-option.active {
    background: var(--gold-gradient);
    color: var(--white);
    border-color: var(--primary-gold);
}

/* ===== Price Range Slider ===== */
.price-range {
    padding: 20px 0;
}

.price-values {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--dark-gray);
    font-weight: 600;
}

.price-slider {
    width: 100%;
    height: 6px;
    background: var(--light-gray);
    border-radius: 5px;
    position: relative;
    cursor: pointer;
}

.price-progress {
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 5px;
    position: absolute;
}

/* ===== لنظام الإشعارات ===== */
.notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: var(--white);
    padding: 18px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10000;
    animation: slideInRight 0.4s ease, fadeOut 0.4s ease 2.6s;
    min-width: 300px;
}

.notification.success {
    border-right: 4px solid #10b981;
}

.notification.success i {
    color: #10b981;
}

.notification.error {
    border-right: 4px solid #ef4444;
}

.notification.error i {
    color: #ef4444;
}

.notification.warning {
    border-right: 4px solid #f59e0b;
}

.notification.warning i {
    color: #f59e0b;
}

.notification.info {
    border-right: 4px solid #3b82f6;
}

.notification.info i {
    color: #3b82f6;
}

.notification i {
    font-size: 24px;
}

.notification-message {
    color: var(--dark-gray);
    font-size: 15px;
    font-weight: 500;
}

@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(400px);
    }
}

/* ===== Compare Button on Product ===== */
.compare-btn {
    position: absolute;
    top: 60px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.compare-btn i {
    color: var(--primary-gold);
    font-size: 16px;
    transition: all 0.3s ease;
}

.compare-btn:hover {
    transform: scale(1.1);
}

.compare-btn.active {
    background: var(--gold-gradient);
}

.compare-btn.active i {
    color: var(--white);
}

/* ===== Wishlist Page ===== */
.wishlist-section {
    padding: 80px 0;
    min-height: 60vh;
}

.wishlist-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.wishlist-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.wishlist-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(201, 169, 97, 0.2);
}

.remove-wishlist-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
    background: rgba(239, 68, 68, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.remove-wishlist-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.wishlist-item-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.wishlist-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wishlist-item:hover .wishlist-item-image img {
    transform: scale(1.1);
}

.wishlist-item-info {
    padding: 25px;
}

.wishlist-item-info h3 {
    color: var(--dark-gray);
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.wishlist-item-category {
    color: var(--primary-gold);
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.wishlist-item-price {
    color: var(--dark-gray);
    font-size: 24px;
    font-weight: 700;
    margin: 15px 0;
}

.wishlist-item-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.wishlist-item-actions .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 14px;
}

.empty-wishlist {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.empty-wishlist i {
    font-size: 80px;
    color: var(--light-gray);
    margin-bottom: 20px;
}

.empty-wishlist h2 {
    color: var(--dark-gray);
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.empty-wishlist p {
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 30px;
}

/* Active header icon */
.icon-link.active {
    background: var(--gold-gradient);
    color: var(--white);
}

.icon-link.active .icon-count {
    background: var(--white);
    color: var(--primary-gold);
}

@media (max-width: 768px) {
    .wishlist-container {
        grid-template-columns: 1fr;
    }
    
    .wishlist-item-actions {
        flex-direction: column;
    }
}

/* ===== Compare Page ===== */
.compare-section {
    padding: 80px 0;
    min-height: 60vh;
}

.compare-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.compare-info {
    color: var(--text-color);
    font-size: 16px;
}

.compare-table-wrapper {
    overflow-x: auto;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(201, 169, 97, 0.1);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.compare-table thead {
    background: var(--gold-gradient);
}

.compare-th-label {
    padding: 30px 20px;
    text-align: right;
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    width: 200px;
}

.compare-th-product {
    padding: 20px;
    text-align: center;
    color: var(--white);
    position: relative;
    min-width: 250px;
}

.compare-th-product img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 4px solid var(--white);
}

.compare-th-product h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.remove-compare-btn {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    background: rgba(239, 68, 68, 0.9);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.remove-compare-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.compare-label {
    padding: 20px;
    font-weight: 700;
    color: var(--dark-gray);
    background: var(--light-color);
    border-bottom: 1px solid var(--light-gray);
}

.compare-value {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
    color: var(--text-color);
}

.compare-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-gold);
}

.compare-value .btn {
    margin: 5px 0;
    width: 100%;
}

.badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.badge-local {
    background: linear-gradient(135deg, #10b981, #059669);
    color: var(--white);
}

.badge-imported {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: var(--white);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.empty-compare {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.empty-compare i {
    font-size: 80px;
    color: var(--light-gray);
    margin-bottom: 20px;
}

.empty-compare h2 {
    color: var(--dark-gray);
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.empty-compare p {
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 30px;
}

@media (max-width: 968px) {
    .compare-header {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .compare-table {
        font-size: 14px;
    }
    
    .compare-th-product {
        min-width: 200px;
    }
    
    .compare-th-product img {
        width: 100px;
        height: 100px;
    }
}

/* ===== Mobile Bottom Navigation ===== */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
    border-top: 2px solid transparent;
    border-image: var(--gold-gradient) 1;
}

.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 12px;
    text-decoration: none;
    color: var(--gray);
    transition: var(--transition);
    position: relative;
    flex: 1;
    min-width: 60px;
}

.bottom-nav-item i {
    font-size: 20px;
    transition: var(--transition);
}

.bottom-nav-item span {
    font-size: 11px;
    font-weight: 600;
    transition: var(--transition);
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
    color: var(--accent-color);
}

.bottom-nav-item.active i,
.bottom-nav-item:hover i {
    transform: scale(1.15);
}

.bottom-nav-item .nav-badge {
    position: absolute;
    top: 4px;
    right: 8px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.4);
}

/* Show on mobile */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
    }
    
    body {
        padding-bottom: 70px;
    }
    
    .bottom-nav-item i {
        font-size: 18px;
    }
    
    .bottom-nav-item span {
        font-size: 10px;
    }
}
