/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --beige: #f5f1eb;
    --soft-gray: #e8e5e0;
    --white: #ffffff;
    --muted-blue: #93c5fd;
    --dark-gray: #4a4a4a;
    --text-dark: #2c2c2c;
    --text-light: #6b6b6b;
    --primary: #1E40AF;
    --primary-dark: #1e3a8a;
    --secondary: #fef08a;
    --secondary-dark: #facc15;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 0.75rem 0;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.phone-link {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.phone-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.phone-link i {
    font-size: 0.85rem;
}

.shipping-text {
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    padding: 0.75rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.99);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.logo {
    flex-shrink: 0;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.logo a:hover h1 {
    transform: translateY(-2px);
}

.logo a:hover h1::after {
    width: 100%;
}

.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.875rem 1.25rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-list a:hover {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.08) 0%, rgba(59, 130, 246, 0.05) 100%);
    color: var(--primary);
    transform: translateY(-2px);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    position: relative;
}

.dropdown-toggle i {
    font-size: 0.7rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.dropdown:hover .dropdown-toggle,
.dropdown.active .dropdown-toggle {
    color: var(--primary);
}

.dropdown:hover .dropdown-toggle i,
.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    min-width: 220px;
    list-style: none;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 0.875rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
    font-weight: 500;
    gap: 0.75rem;
    margin: 0.25rem 0.5rem;
    border-radius: 8px;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.08) 0%, rgba(59, 130, 246, 0.04) 100%);
    color: var(--primary);
    transform: translateX(-3px);
    font-weight: 600;
}

.nav-list a::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary);
    font-weight: 700;
}

.nav-list a:hover::before,
.nav-list a.active::before {
    width: calc(100% - 2rem);
}

.nav-list a.active {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.lang-toggle {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.25);
    position: relative;
    overflow: hidden;
}

.lang-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.lang-toggle:hover::before {
    width: 300px;
    height: 300px;
}

.lang-toggle:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.35);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.lang-toggle:active {
    transform: translateY(-1px);
}

.icon-btn {
    background: var(--beige);
    border: none;
    font-size: 1.1rem;
    color: var(--text-dark);
    cursor: pointer;
    position: relative;
    padding: 0.875rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    overflow: hidden;
}

.cart-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.icon-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(30, 64, 175, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.icon-btn:hover::before {
    width: 100px;
    height: 100px;
}

.icon-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(30, 64, 175, 0.3);
}

.icon-btn:active {
    transform: translateY(-1px) scale(1);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--white);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
    border: 2px solid var(--white);
    animation: pulse 2s infinite;
    z-index: 10;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.15);
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: var(--beige);
    border: none;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle:hover {
    background: var(--primary);
    transform: scale(1.05);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.mobile-menu-toggle:hover span {
    background: var(--white);
}

.mobile-menu-toggle.active {
    background: var(--primary);
}

.mobile-menu-toggle.active span {
    background: var(--white);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav.active {
    display: block;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav.active .nav-list {
    flex-direction: column;
    gap: 0;
}

.nav.active .nav-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--soft-gray);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.slide-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.slide-btn {
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    box-shadow: var(--shadow-soft);
}

.slide-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: var(--secondary);
    color: var(--white);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    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 {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

.slider-prev,
.slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.slider-prev {
    left: 30px;
}

.slider-next {
    right: 30px;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Categories Section */
.categories {
    padding: 5rem 0;
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.category-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.category-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 1.5rem;
    text-align: center;
}

.category-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.category-content p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Featured Products Section */
.featured-products {
    padding: 5rem 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
}

.product-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(100% - 120px);
    z-index: 1;
    cursor: pointer;
}

.product-link:hover ~ .product-image img {
    transform: scale(1.05);
}

.product-link:hover ~ .product-info .product-name {
    color: var(--primary);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 3;
}

.product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--soft-gray);
    position: relative;
    z-index: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
    position: relative;
    z-index: 0;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-short-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3.2em;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.price-old {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 0.95rem;
}

.price-new {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.product-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.add-to-cart-btn {
    flex: 1;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.875rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.add-to-cart-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.buy-now-btn {
    flex: 1;
    background: var(--secondary);
    color: var(--white);
    border: none;
    padding: 0.875rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    text-align: center;
    position: relative;
    z-index: 2;
}

.buy-now-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
    color: var(--white);
}

/* Trust Section */
.trust-section {
    padding: 4rem 0;
    background: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 2rem;
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.trust-item:hover .trust-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-hover);
}

.trust-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.trust-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: var(--white);
}

.reviews-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 300px;
}

.review-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.review-card.active {
    opacity: 1;
    position: relative;
}

.review-stars {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-author strong {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.review-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--muted-blue);
    cursor: pointer;
    transition: var(--transition);
}

.review-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 4rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-form input {
    padding: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form button {
    padding: 0.875rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* زر واتساب ثابت - Fixed WhatsApp button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}
html[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 24px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RTL Support */
html[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 'Arial', sans-serif;
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .container {
    direction: rtl;
}

html[dir="rtl"] .header {
    direction: rtl;
}

html[dir="rtl"] .header-content {
    flex-direction: row-reverse;
    direction: rtl;
}

html[dir="rtl"] .logo {
    order: 3;
}

html[dir="rtl"] .nav {
    order: 2;
    justify-content: flex-start;
}

html[dir="rtl"] .header-actions {
    order: 1;
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-list {
    flex-direction: row;
    direction: rtl;
    justify-content: flex-start;
}

html[dir="rtl"] .nav-list li {
    direction: rtl;
}

html[dir="rtl"] .top-bar-content {
    flex-direction: row-reverse;
}

html[dir="rtl"] .top-bar-left {
    order: 2;
}

html[dir="rtl"] .top-bar-right {
    order: 1;
}

html[dir="rtl"] .slider-prev {
    left: auto;
    right: 30px;
}

html[dir="rtl"] .slider-next {
    right: auto;
    left: 30px;
}

html[dir="rtl"] .product-badge {
    right: auto;
    left: 15px;
}

html[dir="rtl"] .nav-list a::after {
    left: auto;
    right: 0;
}

html[dir="rtl"] .footer-column ul li a:hover {
    padding-left: 0;
    padding-right: 5px;
}

html[dir="rtl"] .slider-dots {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

html[dir="rtl"] .product-buttons {
    flex-direction: row-reverse;
}

html[dir="rtl"] .section-header {
    text-align: center;
}

html[dir="rtl"] .category-content {
    text-align: center;
}

html[dir="rtl"] .product-info {
    text-align: right;
}

html[dir="rtl"] .product-price {
    flex-direction: row-reverse;
}

html[dir="rtl"] .price-old {
    margin-left: 1rem;
    margin-right: 0;
}

html[dir="rtl"] .trust-item {
    text-align: center;
}

html[dir="rtl"] .review-card {
    text-align: center;
}

html[dir="rtl"] .breadcrumb {
    flex-direction: row-reverse;
}

html[dir="rtl"] .product-details-grid {
    direction: rtl;
}

html[dir="rtl"] .product-info-details {
    text-align: right;
}

html[dir="rtl"] .product-features ul li {
    padding-right: 1.5rem;
    padding-left: 0;
}

html[dir="rtl"] .product-features ul li::before {
    right: 0;
    left: auto;
}

html[dir="rtl"] .quantity-controls {
    flex-direction: row-reverse;
}

html[dir="rtl"] .action-buttons {
    flex-direction: row-reverse;
}

html[dir="rtl"] .products-page-content {
    direction: rtl;
}

html[dir="rtl"] .products-sidebar {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .filter-option {
    flex-direction: row-reverse;
}

html[dir="rtl"] .filter-option input[type="checkbox"] {
    order: 2;
}

html[dir="rtl"] .pagination {
    flex-direction: row-reverse;
}

html[dir="rtl"] .cart-count {
    left: 0;
    right: auto;
}

html[dir="rtl"] .product-link {
    direction: rtl;
}

html[dir="rtl"] .nav.active {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .nav.active .nav-list {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .cart-count {
    left: 0;
    right: auto;
}

html[dir="rtl"] .dropdown-menu {
    right: auto;
    left: 0;
}

html[dir="rtl"] .dropdown-menu a:hover {
    padding-right: 1.5rem;
    padding-left: 1.75rem;
}

html[dir="rtl"] .dropdown-toggle {
    flex-direction: row-reverse;
}

html[dir="rtl"] .about-story-content {
    direction: rtl;
}

html[dir="rtl"] .about-story-text {
    text-align: right;
}

html[dir="rtl"] .mission-card,
html[dir="rtl"] .vision-card {
    text-align: center;
}

html[dir="rtl"] .value-card,
html[dir="rtl"] .team-member,
html[dir="rtl"] .why-item {
    text-align: center;
}

/* Products Page */
.products-page-header {
    background: linear-gradient(135deg, #1E40AF 0%, #3b82f6 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

.products-page {
    padding: 3rem 0;
    background: var(--white);
}

.products-page-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
}

/* Sidebar */
.products-sidebar {
    background: var(--beige);
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.filter-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.filter-group {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--soft-gray);
}

.filter-group:last-child {
    border-bottom: none;
}

.filter-group h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.price-range {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-range input[type="range"] {
    width: 100%;
    accent-color: var(--primary);
}

.price-display {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    color: var(--text-dark);
}

.sort-select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--soft-gray);
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
}

.apply-filters-btn,
.clear-filters-btn {
    width: 100%;
    padding: 0.875rem;
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    margin-top: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.apply-filters-btn {
    background: var(--primary);
}

.apply-filters-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.clear-filters-btn {
    background: #6b7280;
}

.clear-filters-btn:hover {
    background: #4b5563;
    transform: translateY(-2px);
}

/* Products Main */
.products-main {
    flex: 1;
}

.products-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--soft-gray);
}

.products-count {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.products-count span:first-child {
    margin-right: 0.5rem;
}

.products-count #productsCount {
    font-weight: 700;
    color: var(--primary);
    margin: 0 0.5rem;
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--beige);
    border: 1px solid var(--soft-gray);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
}

.view-btn:hover,
.view-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* Products List View */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.products-list .product-card {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    padding: 1.5rem;
}

.products-list .product-image {
    height: 200px;
}

.products-list .product-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.products-list .product-short-description {
    -webkit-line-clamp: 3;
    line-clamp: 3;
    min-height: auto;
}

.products-list .product-buttons {
    margin-top: 1rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--soft-gray);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
    font-weight: 500;
}

.pagination-btn:hover:not(:disabled):not(.active) {
    background: var(--beige);
    border-color: var(--primary);
}

.pagination-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-dots {
    padding: 0 0.5rem;
    color: var(--text-light);
}

/* No Products */
.no-products {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.no-products i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-products p {
    font-size: 1.25rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-page-content {
        grid-template-columns: 1fr;
    }

    .products-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 14px;
    }

    .header {
        padding: 0.75rem 0;
    }

    .header-content {
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .logo h1 {
        font-size: 1.45rem;
    }

    .header-actions {
        gap: 0.4rem;
    }

    .lang-toggle {
        padding: 0.55rem 0.85rem;
        border-radius: 10px;
        font-size: 0.82rem;
    }

    .icon-btn,
    .cart-btn,
    .mobile-menu-toggle {
        width: 40px;
        height: 40px;
        padding: 0.55rem;
    }

    .icon-btn i,
    .cart-btn i {
        font-size: 1rem;
    }

    .cart-count {
        width: 20px;
        height: 20px;
        font-size: 0.68rem;
        top: -4px;
        right: -4px;
    }

    .top-bar {
        padding: 0.45rem 0;
    }

    .phone-link {
        font-size: 0.8rem;
    }

    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-top: 0;
        margin-right: 1rem;
    }

    .dropdown-menu a {
        padding: 0.5rem 0;
        padding-right: 1rem;
    }

    .dropdown-toggle i {
        transform: rotate(0deg) !important;
    }

    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg) !important;
    }
    
    .hero-slider {
        height: 430px;
    }

    .slide-content {
        max-width: 100%;
        padding: 0 12px;
    }
    
    .slide-title {
        font-size: 1.8rem;
        line-height: 1.25;
        margin-bottom: 0.6rem;
    }
    
    .slide-subtitle {
        font-size: 1.05rem;
        margin-bottom: 0.55rem;
    }
    
    .slide-description {
        font-size: 0.92rem;
        margin-bottom: 1rem;
    }

    .slide-btn {
        padding: 0.72rem 1.25rem;
        font-size: 0.9rem;
        border-radius: 12px;
    }
    
    .slider-prev,
    .slider-next {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }
    
    .slider-prev {
        left: 15px;
    }
    
    .slider-next {
        right: 15px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .section-title {
        font-size: 1.45rem;
        line-height: 1.35;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .categories,
    .featured-products,
    .trust-section,
    .reviews-section,
    .footer {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .category-image,
    .product-image {
        height: 220px;
    }

    .category-content,
    .product-info {
        padding: 1rem;
    }

    .product-name {
        font-size: 1.05rem;
        margin-bottom: 0.7rem;
    }

    .price-new {
        font-size: 1.2rem;
    }

    .product-buttons {
        flex-direction: column;
        gap: 0.55rem;
    }

    .product-buttons .add-to-cart-btn,
    .product-buttons .buy-now-btn {
        width: 100%;
        min-height: 42px;
        padding: 0.7rem 0.8rem;
        font-size: 0.9rem;
    }

    .review-card {
        padding: 1.35rem 1rem;
    }

    .review-text {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .products-list .product-card {
        grid-template-columns: 1fr;
    }

    .products-list .product-image {
        height: 250px;
    }

    .products-header-bar {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* Product Details Page */
.product-details-section {
    padding: 3rem 0;
    background: var(--white);
}

.product-details-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.product-details-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.breadcrumb {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-light);
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.product-images {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.product-main-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--soft-gray);
    position: relative;
}

.product-main-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.product-thumbnails {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.75rem;
}

.thumbnail-item {
    border: 2px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.thumbnail-item img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    display: block;
}

.thumbnail-item.active,
.thumbnail-item:hover {
    border-color: var(--primary);
}

.main-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--soft-gray);
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-info-details {
    position: relative;
}

.product-detail-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    z-index: 2;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stars {
    color: var(--secondary);
    font-size: 1.25rem;
}

.rating-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

.product-price-detail {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--soft-gray);
    border-bottom: 1px solid var(--soft-gray);
}

.product-price-detail .price-old {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 1.25rem;
}

.product-price-detail .price-new {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
}

.product-description {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.product-specs-summary,
.product-tabs {
    background: var(--white);
    border: 1px solid var(--soft-gray);
    border-radius: 16px;
    padding: 1.25rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.product-specs-summary h3 {
    margin-bottom: 0.75rem;
}

.product-specs-summary ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.product-specs-summary li {
    color: var(--text-dark);
}

.product-stock {
    margin-bottom: 1.25rem;
}

.in-stock {
    color: #0f766e;
    font-weight: 600;
}

.out-of-stock {
    color: #dc2626;
    font-weight: 600;
}

.product-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.product-trust-badges .trust-item {
    background: var(--beige);
    border-radius: 10px;
    padding: 0.75rem;
    text-align: center;
}

.product-trust-badges .trust-item i {
    color: var(--primary);
}

.tab-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: 0.5rem;
    background: #f8fafc;
    border: 1px solid var(--soft-gray);
    border-radius: 12px;
}

.tab-btn {
    border: 1px solid var(--soft-gray);
    background: var(--white);
    color: var(--text-dark);
    padding: 0.65rem 1.1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 8px 18px rgba(30, 64, 175, 0.22);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    background: #fcfdff;
    border: 1px solid #e6ebf2;
    border-radius: 12px;
    padding: 1rem;
}

.product-full-description {
    line-height: 1.9;
    color: var(--text-dark);
}

.product-attributes h3 {
    margin: 1rem 0 0.75rem;
}

.product-attributes ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.product-attributes li {
    padding: 0.6rem 0.75rem;
    background: var(--white);
    border: 1px solid var(--soft-gray);
    border-radius: 10px;
}

.specifications-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 0.5rem;
}

.specifications-table td {
    padding: 0.85rem 0.75rem;
    border: 1px solid var(--soft-gray);
    background: var(--white);
}

.specifications-table tr td:first-child {
    border-radius: 10px 0 0 10px;
    font-weight: 600;
    color: #1f2937;
    width: 38%;
}

.specifications-table tr td:last-child {
    border-radius: 0 10px 10px 0;
    color: #374151;
}

.reviews-list {
    display: grid;
    gap: 0.85rem;
}

.review-item {
    border: 1px solid var(--soft-gray);
    border-radius: 12px;
    padding: 0.9rem 1rem;
    background: var(--white);
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.verified-badge {
    background: #ecfeff;
    color: #0e7490;
    border: 1px solid #bae6fd;
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.review-rating .fa-star {
    color: #cbd5e1;
}

.review-rating .fa-star.active {
    color: #f59e0b;
}

.review-title {
    margin-bottom: 0.35rem;
    color: #111827;
}

.review-text {
    color: #374151;
    line-height: 1.75;
}

.review-footer {
    margin-top: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.helpful-count {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.product-features {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--beige);
    border-radius: 12px;
}

.product-features h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-features ul {
    list-style: none;
    padding: 0;
}

.product-features ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.product-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.product-actions {
    margin-bottom: 2rem;
}

.quantity-selector {
    margin-bottom: 1.5rem;
}

.quantity-selector label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: fit-content;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    background: var(--beige);
    border: 1px solid var(--soft-gray);
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
}

.quantity-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

#productQuantity {
    width: 60px;
    height: 40px;
    text-align: center;
    border: 1px solid var(--soft-gray);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

.action-buttons {
    display: flex;
    gap: 1rem;
}

.add-to-cart-btn-large,
.buy-now-btn-large {
    flex: 1;
    padding: 1.25rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    border: none;
}

.add-to-cart-btn-large {
    background: var(--primary);
    color: var(--white);
}

.add-to-cart-btn-large:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.buy-now-btn-large {
    background: var(--secondary);
    color: var(--white);
}

.buy-now-btn-large:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: var(--white);
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--beige);
    border-radius: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
}

.meta-item i {
    color: var(--primary);
    font-size: 1.25rem;
    width: 24px;
}

.related-products {
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid var(--soft-gray);
}

.product-error {
    text-align: center;
    padding: 4rem 2rem;
}

.product-error i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.product-error h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.product-error p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.back-to-products-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.back-to-products-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-details-main {
        grid-template-columns: 1fr;
    }

    .product-images {
        position: static;
    }
}

@media (max-width: 768px) {
    .product-title {
        font-size: 2rem;
    }

    .product-price-detail .price-new {
        font-size: 2rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .product-thumbnails {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-trust-badges {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0.6rem 0;
    }

    .header-content {
        gap: 0.5rem;
    }

    .logo h1 {
        font-size: 1.2rem;
    }

    .lang-toggle {
        padding: 0.45rem 0.65rem;
        font-size: 0.75rem;
    }

    .top-bar-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .hero-slider {
        height: 360px;
    }
    
    .slide-title {
        font-size: 1.45rem;
    }
    
    .slide-subtitle {
        font-size: 0.95rem;
    }
    
    .slide-description {
        font-size: 0.82rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-btn {
        padding: 0.62rem 1rem;
        font-size: 0.82rem;
    }
    
    .review-card {
        padding: 1.15rem 0.85rem;
    }

    .category-image,
    .product-image {
        height: 190px;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.about-hero-content {
    position: relative;
    z-index: 1;
}

.about-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.about-hero-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.about-story {
    padding: 5rem 0;
    background: var(--white);
}

.about-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story-image {
    position: relative;
}

.story-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 5rem;
    box-shadow: var(--shadow-hover);
}

.about-story-text h2 {
    margin-bottom: 1.5rem;
}

.about-story-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.mission-vision {
    padding: 5rem 0;
    background: var(--white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.mission-card,
.vision-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.mission-card h3,
.vision-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.mission-card p,
.vision-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Company Goal - هدف الشركة */
.company-goal {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, #f8f9fc 100%);
}

.company-goal-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.company-goal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.company-goal-content .section-title {
    margin-bottom: 1.5rem;
}

.company-goal-text {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.company-goal-tagline {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    font-style: italic;
}

html[dir="rtl"] .company-goal-content {
    direction: rtl;
}

html[dir="rtl"] .company-goal-text,
html[dir="rtl"] .company-goal-tagline {
    text-align: center;
}

.values-section {
    padding: 5rem 0;
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow-soft);
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    background: var(--white);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.about-stats {
    padding: 5rem 0;
    background: var(--white);
    color: var(--text-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.team-section {
    padding: 5rem 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.team-member {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
}

.team-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.team-member h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.team-bio {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

.why-choose-us {
    padding: 5rem 0;
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.why-item:hover .why-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.why-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.why-item p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Responsive for About Page */
@media (max-width: 1024px) {
    .about-story-content {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.25rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--beige);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.contact-info-card a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-info-card .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-info-card .social-links a {
    width: 40px;
    height: 40px;
    background: var(--beige);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: var(--transition);
}

.contact-info-card .social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.map-section {
    margin-top: 5rem;
    padding-top: 5rem;
    border-top: 2px solid var(--beige);
}

.map-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Responsive for Contact Page */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem;
    }

    .contact-info-card {
        padding: 1.5rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

/* Cart Page Styles */
.cart-section {
    padding: 3rem 0 5rem;
    background: var(--white);
    min-height: 70vh;
}

.cart-header {
    margin-bottom: 3rem;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cart-header .breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.cart-header .breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.cart-header .breadcrumb a:hover {
    text-decoration: underline;
}

.cart-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.cart-items-wrapper {
    background: var(--white);
}

.cart-items-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--beige);
}

.cart-items-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.items-count {
    color: var(--text-light);
    font-size: 0.95rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.empty-cart i {
    font-size: 4rem;
    color: var(--beige);
    margin-bottom: 1.5rem;
}

.empty-cart h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.empty-cart p {
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.continue-shopping-btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.continue-shopping-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto auto auto;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border: 2px solid var(--beige);
    border-radius: 15px;
    align-items: center;
    transition: var(--transition);
}

.cart-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-soft);
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--beige);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.cart-item-category {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item-price .old-price {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.cart-item-price .current-price {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.cart-item-quantity {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.cart-item-quantity label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid var(--beige);
    border-radius: 8px;
    padding: 0.25rem;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: var(--text-dark);
    cursor: pointer;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--beige);
    color: var(--primary);
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    background: transparent;
}

.quantity-input:focus {
    outline: none;
}

.cart-item-total {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.item-total-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.item-total-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.remove-item-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: #ef4444;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.remove-item-btn:hover {
    background: #fee2e2;
    transform: scale(1.1);
}

.cart-summary-wrapper {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.cart-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--beige);
}

.cart-summary h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--beige);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.summary-row span:first-child {
    color: var(--text-light);
}

.summary-row span:last-child {
    font-weight: 600;
    color: var(--text-dark);
}

.summary-divider {
    height: 2px;
    background: var(--beige);
    margin: 1.5rem 0;
}

.total-row {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 1rem;
}

.total-row .total-price {
    color: var(--primary);
    font-size: 1.5rem;
}

.checkout-btn {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1.2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.checkout-btn:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.continue-shopping-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    margin-top: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.continue-shopping-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.cart-features {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--beige);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.feature-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Responsive for Cart Page */
@media (max-width: 1024px) {
    .cart-content {
        grid-template-columns: 1fr;
    }

    .cart-summary-wrapper {
        position: static;
    }
}

@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }

    .cart-item-quantity,
    .cart-item-total,
    .remove-item-btn {
        grid-column: 2;
    }

    .cart-item-quantity {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }

    .cart-item-total {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
    }
}

/* Checkout Page Styles */
.checkout-section {
    padding: 3rem 0 5rem;
    background: var(--white);
    min-height: 70vh;
}

.checkout-header {
    margin-bottom: 3rem;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.checkout-summary {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--beige);
    position: sticky;
    top: 120px;
    height: fit-content;
}

.checkout-summary h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--beige);
}

.order-items {
    margin-bottom: 2rem;
    max-height: 400px;
    overflow-y: auto;
}

.order-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--beige);
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--beige);
    flex-shrink: 0;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-details {
    flex: 1;
}

.order-item-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.order-item-quantity {
    font-size: 0.85rem;
    color: var(--text-light);
}

.order-item-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    align-self: center;
}

.order-totals {
    padding-top: 1.5rem;
    border-top: 2px solid var(--beige);
}

.checkout-form-wrapper {
    background: var(--white);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--beige);
}

.form-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--beige);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-method-option {
    position: relative;
}

.payment-method-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border: 2px solid var(--beige);
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
    background: var(--white);
}

.payment-method-option input[type="radio"]:checked + .payment-label {
    border-color: var(--primary);
    background: rgba(59, 130, 246, 0.05);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.payment-label:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.payment-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.payment-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
}

.payment-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.payment-desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

.payment-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--beige);
}

.place-order-btn {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 1.3rem;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.place-order-btn:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.place-order-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Responsive for Checkout Page */
@media (max-width: 1024px) {
    .checkout-content {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .checkout-form-wrapper,
    .form-section {
        padding: 1.5rem;
    }

    .order-item {
        flex-wrap: wrap;
    }

    .order-item-image {
        width: 60px;
        height: 60px;
    }
}

/* Search Page Styles */
.search-section {
    padding: 3rem 0 5rem;
    background: var(--white);
    min-height: 70vh;
}

.search-header {
    margin-bottom: 3rem;
}

.search-bar-wrapper {
    margin-bottom: 3rem;
}

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--white);
    border: 2px solid var(--beige);
    border-radius: 15px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-bar i {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-right: 1rem;
}

.search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.1rem;
    color: var(--text-dark);
    background: transparent;
    font-family: inherit;
}

.search-bar input::placeholder {
    color: var(--text-light);
}

.clear-search-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    width: 32px;
    height: 32px;
}

.clear-search-btn:hover {
    background: var(--beige);
    color: var(--text-dark);
}

.search-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--beige);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--white);
    cursor: pointer;
    transition: var(--transition);
    min-width: 200px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-results {
    margin-top: 2rem;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--beige);
}

.results-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.results-count {
    color: var(--text-light);
    font-size: 0.95rem;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.no-search,
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.no-search i,
.no-results i {
    font-size: 4rem;
    color: var(--beige);
    margin-bottom: 1.5rem;
}

.no-search h3,
.no-results h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.no-search p,
.no-results p {
    font-size: 1.05rem;
}

/* Responsive for Search Page */
@media (max-width: 768px) {
    .search-filters {
        flex-direction: column;
    }

    .filter-select {
        width: 100%;
        min-width: auto;
    }

    .search-results-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Thank You Page Styles */
.thankyou-section {
    padding: 5rem 0;
    background: var(--white);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thankyou-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.success-icon {
    margin-bottom: 2rem;
}

.icon-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.thankyou-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.thankyou-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.order-info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--beige);
    margin-bottom: 3rem;
    text-align: left;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--beige);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.next-steps {
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--beige);
    transition: var(--transition);
}

.step-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.thankyou-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.help-section {
    padding: 2rem;
    background: var(--beige);
    border-radius: 15px;
    text-align: center;
}

.help-section p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.help-phone {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.2rem;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: var(--transition);
}

.help-phone:hover {
    text-decoration: underline;
}

.help-section span {
    color: var(--text-light);
    margin: 0 0.5rem;
}

.help-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    margin-left: 0.5rem;
    transition: var(--transition);
}

.help-link:hover {
    text-decoration: underline;
}

/* Responsive for Thank You Page */
@media (max-width: 768px) {
    .thankyou-title {
        font-size: 2rem;
    }

    .icon-circle {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .order-info-card {
        padding: 1.5rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-icon {
        margin: 0 auto;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .help-section {
        padding: 1.5rem;
    }

    .help-section p,
    .help-phone,
    .help-section span,
    .help-link {
        display: block;
        margin: 0.5rem 0;
    }
}

/* Offers Page Styles */
.offers-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.offers-hero-content {
    position: relative;
    z-index: 1;
}

.offers-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.offers-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    font-weight: 400;
}

.offers-section {
    padding: 5rem 0;
    background: var(--white);
}

.offers-header {
    margin-bottom: 3rem;
}

.offers-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--beige);
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--beige);
    background: var(--white);
    color: var(--text-dark);
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: var(--shadow-soft);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--beige);
    transition: var(--transition);
    position: relative;
}

.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.offer-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    background: #ef4444;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.savings-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    background: #10b981;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Keep offer badges separated in RTL to avoid overlap */
html[dir="rtl"] .offers-grid .offer-badge {
    right: 15px;
    left: auto;
}

html[dir="rtl"] .offers-grid .savings-badge {
    left: 15px;
    right: auto;
}

.offer-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--beige);
    position: relative;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.offer-card:hover .offer-image img {
    transform: scale(1.05);
}

.offer-info {
    padding: 1.5rem;
}

.offer-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.offer-category {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-transform: capitalize;
}

.offer-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.offer-price .price-old {
    color: var(--text-light);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.offer-price .price-new {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.3rem;
}

.offer-buttons {
    display: flex;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.no-offers {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-light);
}

.no-offers i {
    font-size: 4rem;
    color: var(--beige);
    margin-bottom: 1.5rem;
}

.no-offers h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.no-offers p {
    font-size: 1.05rem;
}

.special-banner {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: var(--white);
    padding: 3rem 0;
    margin-top: 3rem;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.banner-icon {
    font-size: 3rem;
    opacity: 0.9;
}

.banner-text {
    flex: 1;
}

.banner-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.banner-text p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.banner-btn {
    background: var(--white);
    color: #d97706;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    white-space: nowrap;
}

.banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Responsive for Offers Page */
@media (max-width: 1024px) {
    .offers-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .offers-hero-title {
        font-size: 2.5rem;
    }

    .offers-hero-subtitle {
        font-size: 1.1rem;
    }

    .offers-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-btn {
        width: 100%;
        text-align: center;
    }

    .offers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .offer-card {
        border-radius: 14px;
        overflow: hidden;
    }

    .offer-image {
        height: 210px;
    }

    .offer-info {
        padding: 1rem;
    }

    .offer-name {
        font-size: 1.05rem;
        margin-bottom: 0.35rem;
        line-height: 1.5;
    }

    .offer-category {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }

    .offer-price {
        margin-bottom: 1rem;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .offer-price .price-old {
        font-size: 0.85rem;
    }

    .offer-price .price-new {
        font-size: 1.15rem;
    }

    .offer-buttons {
        flex-direction: column;
        gap: 0.6rem;
    }

    .offer-buttons .add-to-cart-btn,
    .offer-buttons .buy-now-btn {
        width: 100%;
        min-height: 42px;
        padding: 0.7rem 0.8rem;
        font-size: 0.92rem;
    }

    .offer-badge,
    .savings-badge {
        top: 10px;
        padding: 0.35rem 0.65rem;
        font-size: 0.76rem;
        border-radius: 999px;
        max-width: calc(100% - 20px);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .offer-badge {
        right: 10px;
    }

    .savings-badge {
        left: 10px;
    }

    html[dir="rtl"] .offers-grid .offer-badge {
        right: 10px;
        left: auto;
    }

    html[dir="rtl"] .offers-grid .savings-badge {
        left: 10px;
        right: auto;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .banner-btn {
        width: 100%;
    }
}
