/* Base Styles */

:root {
    --primary-color: #355E3B;   /* Deep forest green - main brand color */
    --secondary-color: #4A7C59; /* Balanced soft green tone */
    --accent-color: #C2A15A;    /* Elegant gold accent for highlights/buttons */
    --highlight-color: #D7B77C; /* Light gold for subtle glow or hover states */
    --light-color: #FFFFFF;     /* White for backgrounds and clarity */
    --light-gray: #E8F0EB;      /* Light greenish gray background */
    --dark-gray: #2A3B32;       /* Deep muted green-gray for depth */
    --text-color: #2E3D31;      /* Main text (dark green-gray) */
    --text-light: #F8FFF9;      /* Text on dark backgrounds */
    --text-gray: #7C8F83;       /* Secondary muted text */
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--light-color);
    line-height: 1.6;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Language Selector */
.language-selector {
    margin-top: 30px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
    color: var(--light-color);
    font-size: 12px;
    letter-spacing: 1px;
}

.lang-option {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.lang-option.active {
    opacity: 1;
    font-weight: 600;
}

.lang-divider {
    margin: 0 8px;
}

/* Navigation */
/* Fixed Navbar */
/* Fixed Navbar */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 24px 0;
    z-index: 99;
    transition: all 0.3s ease;
}

/* Add top padding only on large screens to avoid overlap */
@media (min-width: 992px) {
    body {
        padding-top: 80px; /* match your navbar height */
    }
}





.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo a {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--light-color);
}

.nav-links {
    display: flex;
    gap: 30px;
    margin: 20px;
}

.nav-link {
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
    margin: 20px; 
    color: white;
}

.nav-link:hover {
    color: var(--accent-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-color);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-icon {
    font-size: 16px;
    color: var(--light-color);
    transition: color 0.3s;
    position: relative;
}

.nav-icon:hover {
    color: var(--accent-color);
}

/* Search Container - FIXED POSITION */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    width: 0;
    padding: 0;
    border: none;
    background-color: var(--light-color);
    color: var(--text-color);
    border-radius: 20px;
    padding-left: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    height: 35px;
    z-index: 101;
    visibility: hidden;
}

.search-input.active {
    width: 250px;
    opacity: 1;
    visibility: visible;
}

.search-input:focus {
    outline: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    width: 280px;
}

.search-icon {
    color: var(--light-color);
    cursor: pointer;
    transition: color 0.3s;
    z-index: 102;
    position: relative;
}

.search-icon:hover {
    color: var(--accent-color);
}

/* Search Results */
.search-results-container {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1001;
    display: none;
}

.search-results-container.active {
    display: block;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-result-item:hover {
    background-color: #f8f9fa;
}

.search-result-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 12px;
}

.search-result-info h4 {
    margin: 0 0 4px 0;
    font-size: 0.9rem;
    color: #333;
}

.search-result-info p {
    margin: 0;
    font-size: 0.8rem;
    color: #666;
    font-weight: bold;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: #666;
    margin: 0;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('https://amouage.com/cdn/shop/files/HD_MOBILE.png?v=1741673795') no-repeat center center/cover;
    position: relative;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-color);
    text-align: center;
}
@media (max-width: 768px) {
    .hero {
        height: 55vh;

    }
   }


.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.hero-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid var(--light-color);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.hero-btn:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-transform: uppercase;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: var(--accent-color);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* This ensures exactly 2 columns */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* If you want to maintain responsiveness, you could use: */
@media (min-width: 700px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 502px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;

    background: #fff;
    border-radius: 14px;
    padding: 14px 10px 18px;

    border: 1px solid rgba(0,0,0,0.06);
    box-shadow:
        0 4px 10px rgba(0,0,0,0.05),
        0 1px 2px rgba(0,0,0,0.04);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 14px 30px rgba(0,0,0,0.12),
        0 4px 8px rgba(0,0,0,0.06);
}

/* ---------- Image ---------- */
.product-image {
    width: 90px;
    height: 140px;
    object-fit: contain;

    display: block;
    margin: 16px auto 10px;

    background: #fff;
    border-radius: 6px;

    transition: transform 0.35s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

/* ---------- Info ---------- */
.product-info {
    text-align: center;
    line-height: 1.4;
    padding: 0 6px;
}

.product-name {
    font-size: 15.5px;
    font-weight: 500;
    letter-spacing: 0.4px;

    margin: 6px 0 4px;
    color: #3E3E3E;

    display: -webkit-box;
 
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---------- Prices ---------- */
.product-price {
    font-size: 15px;
    font-weight: 600;
    color: #5B455E;
    margin-right: 6px;
}

.original-price {
    font-size: 13px;
    text-decoration: line-through;
    color: #9E9E9E;
    opacity: 0.85;
}




/* Filters */
.section-header {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filters {
    display: flex;
    gap: 15px;
}

.filter-select {
    padding: 8px 15px;
    border: 1px solid var(--text-gray);
    background-color: transparent;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--text-color);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
    padding-right: 30px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent-color);
}

/* Newsletter */
.newsletter {
    background-color: var(--dark-gray);
    color: var(--light-color);
    text-align: center;
    padding: 60px 20px;
}

.newsletter h2 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.newsletter p {
    font-size: 14px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    opacity: 0.8;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    font-size: 14px;
    letter-spacing: 1px;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form button {
    padding: 12px 30px;
    background-color: var(--accent-color);
    color: var(--light-color);
    border: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #7a6549;
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 60px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--light-color);
    opacity: 0.7;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    letter-spacing: 1px;
    opacity: 0.7;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow: auto;
}

.modal-content {
    background-color: var(--light-color);
    margin: 5% auto;
    padding: 40px;
    max-width: 900px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: var(--accent-color);
}

.modal-product-details {
    display: flex;
    gap: 40px;
}

.modal-product-images {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.modal-product-images img {
    width: 25%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}


.modal-product-info {
    flex: 1;
    padding: 20px 0;
}

.modal-product-info h2 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.modal-product-info p {
    font-size: 12px;
    margin-bottom: 30px;
    line-height: 1.8;
}

.product-specs {
    margin-bottom: 30px;
}

.product-specs p {
    font-size: 12px;
    margin-bottom: 8px;
    display: flex;
}

.product-specs p span:first-child {
    width: 100px;
    font-weight: 500;
}

.product-price {
    font-size: 18px;
    margin-bottom: 30px;
}

.original-price {
    text-decoration: line-through;
    margin-left: 10px;
    font-size: 16px;
    color: var(--text-gray);
}

.add-to-cart {
    display: inline-block;
    padding: 22px 40px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart:hover {
    background-color: var(--secondary-color);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    gap: 10px;
}

.pagination-btn {
    padding: 8px 15px;
    background-color: var(--light-gray);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination-btn:hover {
    background-color: var(--accent-color);
    color: var(--light-color);
}

.pagination-btn.active {
    background-color: var(--accent-color);
    color: var(--light-color);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background-color: var(--primary-color);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.open {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.mobile-nav-link {
    color: var(--light-color);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.close-mobile-menu {
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 24px;
    cursor: pointer;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 20px;
    cursor: pointer;
    margin-right: 15px;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--light-color);
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-header h3 {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-cart:hover {
    color: var(--accent-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 15px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 14px;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.cart-item-actions {
    display: flex;
    align-items: center;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    margin-right: 15px;
}

.quantity-btn {
    width: 25px;
    height: 25px;
    background-color: var(--light-gray);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.quantity-btn:hover {
    background-color: var(--accent-color);
    color: var(--light-color);
}

.quantity-value {
    margin: 0 10px;
    min-width: 20px;
    text-align: center;
}

.remove-item {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s;
}

.remove-item:hover {
    color: var(--accent-color);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-weight: 500;
    height: 50px;
}

.checkout-btn {
    padding: 15px;
    margin: 0 20px 20px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 95px;
}

.checkout-btn:hover {
    background-color: var(--secondary-color);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

.cart-overlay.active {
    display: block;
}
.cart-modal {
  background: #fff;
  max-width: 95%;
  margin: 10% auto;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Cart Counter */
.cart-counter {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--accent-color);
    color: var(--light-color);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* Cart Notification */
.cart-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1000;
}

.cart-notification.show {
    opacity: 1;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-gray);
}

/* Responsive */
@media (max-width: 992px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-icons {
        margin-left: auto;
    }
    
    .search-input.active {
        width: 200px !important;
    }
    
    .modal-product-details {
        flex-direction: column;
    }
    
    .modal-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .filters {
        width: 100%;
        flex-direction: column;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .search-input.active {
        width: 180px !important;
    }
    
    .search-results-container {
        width: 250px;
    }
}

@media (max-width: 576px) {
    .search-input.active {
        width: 150px !important;
    }
    
    .cart-drawer {
        width: 100%;
        max-width: none;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form button {
        width: 100%;
    }
    
    .search-results-container {
        width: 200px;
    }
}

/* RTL styles for Arabic */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .language-selector {
    right: auto;
    left: 20px;
}

[dir="rtl"] .search-input {
    right: auto;
    left: 0;
}

[dir="rtl"] .section-title::after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

[dir="rtl"] .product-specs p {
    flex-direction: row-reverse;
    justify-content: flex-end;
}

[dir="rtl"] .product-specs p span:first-child {
    margin-left: 10px;
}

[dir="rtl"] .cart-item-image {
    margin-right: 0;
    margin-left: 15px;
}

[dir="rtl"] .cart-item-quantity {
    margin-right: 0;
    margin-left: 15px;
}

[dir="rtl"] .search-results-container {
    right: auto;
    left: 0;
}

[dir="rtl"] .search-result-image {
    margin-right: 0;
    margin-left: 12px;
}

/* Checkout Page */
.checkout-section {
    padding: 80px 0;
    margin-top: 70px;
}

.checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.checkout-title {
    text-align: center;
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 50px;
    text-transform: uppercase;
    position: relative;
}

.checkout-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background-color: var(--accent-color);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
}

.order-summary {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 4px;
}

.order-summary h2 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.order-items {
    margin-bottom: 30px;
}

.order-item {
    display: flex;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.order-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.order-item-image {
    width: 80px;
    height: 80px;
    margin-right: 15px;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-details {
    flex: 1;
}

.order-item-details h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.order-item-details p {
    font-size: 13px;
    color: var(--text-gray);
}

.order-item-price {
    font-weight: 500;
}

.order-totals {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
}

.order-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.order-row.total-row {
    font-weight: 500;
    font-size: 16px;
    margin-top: 15px;
}

.empty-cart-message {
    text-align: center;
    padding: 30px 0;
    color: var(--text-gray);
}

.checkout-form h2 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--text-gray);
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.payment-methods {
    margin: 20px 0;
}

.payment-method {
    margin-bottom: 15px;
}

.payment-method input {
    margin-right: 10px;
}

#credit-card-details {
    margin-top: 20px;
}

.place-order-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;

    margin-top: -30px; /* move it slightly up */
}


.place-order-btn:hover {
    background-color: var(--secondary-color);
}

/* Confirmation Modal */
.confirmation-content {
    text-align: center;
    padding: 40px;
}

.confirmation-icon {
    font-size: 60px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.confirmation-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.confirmation-content p {
    margin-bottom: 20px;
}

.order-number {
    font-size: 16px;
    margin-bottom: 30px;
    font-weight: 500;
}

.continue-shopping-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s;
}

.continue-shopping-btn:hover {
    background-color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .checkout-title {
        font-size: 24px;
    }
}

/* RTL styles for Arabic */
[dir="rtl"] .checkout-title::after {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

[dir="rtl"] .order-item-image {
    margin-right: 0;
    margin-left: 15px;
}

[dir="rtl"] .payment-method input {
    margin-right: 0;
    margin-left: 10px;
}

/* Full Screen Search Styles */
/* Full Screen Search */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
}

.search-overlay.active {
    display: block;
}

.search-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 10000;
}

.search-input-full {
    flex: 1;
    width: max-content;
    height: 70px;
    font-size: 18px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    background: white;
    color: var(--text-color);
    outline: none;
}

.search-input-full:focus {
    border-color: var(--accent-color);
}

.close-search {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.close-search:hover {
    background: #f5f5f5;
}

.search-results-full {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100% - 80px);
    background: white;
    overflow-y: auto;
    padding: 20px;
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
    max-width: 1200px;
    margin: 0 auto;
}

.search-result-item:hover {
    background: #f8f9fa;
}

.search-result-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 8px;
}

.search-result-info {
    flex: 1;
}

.search-result-info h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    color: var(--text-color);
    font-weight: 500;
}

.search-result-info p {
    margin: 0;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-gray);
    font-size: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .search-header {
        padding: 12px 15px;
    }
    
    .search-input-full {
        font-size: 16px;
        padding: 10px 15px;
    }
    
    .close-search {
        font-size: 20px;
        width: 35px;
        height: 35px;
    }
    
    .search-results-full {
        top: 70px;
        height: calc(100% - 70px);
        padding: 15px;
    }
    
    .search-result-item {
        padding: 12px;
    }
    
    .search-result-image {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }
}
/* Custom Order Section */
#custom-order-section {
  background: linear-gradient(rgba(53, 94, 59, 0.85), rgba(53, 94, 59, 0.85)),
              url('https://images.unsplash.com/photo-1505577058444-a3dab90d4253?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: var(--text-light);
  text-align: center;
  padding: 100px 20px;
  border-radius: 10px;
  margin: 40px 0;
}

#custom-order-section .custom-order-content h2 {
  font-size: 2.2rem;
  letter-spacing: 1px;
  color: var(--light-color);
  margin-bottom: 15px;
  text-transform: uppercase;
}

#custom-order-section .custom-order-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.custom-order-btn {
  background-color: var(--accent-color);
  color: var(--text-light);
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.custom-order-btn:hover {
  background-color: var(--highlight-color);
  color: var(--primary-color);
}

  .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 40px 0 20px;
    letter-spacing: 1px;
  }


:root {
    --dark: #1c1c1c;
    --gray: #666;
    --light-gray: #eaeaea;
    --gold: #DBC38A;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 26px;
    max-width: 1100px;
    padding: 0 20px;
    margin: 60px auto;
}

.card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: .25s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
}

.card-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .3s ease;
}

.card:hover img {
    transform: scale(1.04);
}

.card-body {
    padding: 22px;
    text-align: center;
}

.card-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.card-body p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 18px;
}

.card-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    padding: 10px 18px;
    border-radius: 50px;
    border: 1px solid var(--light-gray);
    text-decoration: none;
    transition: .25s ease;
}

.card-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}


.featured-btn {
    display: block;          /* full row */
    width: fit-content;      /* shrink to content width */
    margin: 40px auto 0;     /* auto centers it */
    background: #111;
    color: #fff;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    text-align: center;
}

.featured-btn:hover {
    background: #333;
    transform: translateY(-3px);
}


.product-quantity {
    font-size: 14px;
    color: #666;
    margin: 8px 0;
    font-weight: 500;
    padding: 4px 0;
}

.product-quantity.low-stock {
    color: #ff6b6b;
    font-weight: bold;
}


.modal-info-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
}

#modal-product-size {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px !important;
}

#modal-product-quantity {
    font-size: 11px;
    margin-top: 4px !important;
    padding-top: 4px;
    border-top: 1px solid #ddd;
    width: 100%;
}


.quantity-btn.plus,
.quantity-btn.minus {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
}


/* === Loading Screen Styles (White Background + Green Theme #4A7C59) === */
/* Mobile loading fix */
/* =========================================
   MOBILE LOADING & PERFORMANCE IMPROVEMENTS
   ========================================= */

/* Fullscreen loading screen */
#loading-screen {
    position: fixed;
    inset: 0; /* cleaner than top/left/width/height */
    background-color: #ffffff;
    z-index: 9999;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition: opacity 0.35s ease, visibility 0.35s ease;
    will-change: opacity;
}

/* Hide state (use with JS) */
#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Loading progress bar */
.loading-progress-bar {
    width: 0%;
    height: 4px;
    background-color: #333;
    border-radius: 4px;

    transition: width 0.3s ease;
    will-change: width;
}


/* =========================================
   MOBILE INPUT & TOUCH FIXES
   ========================================= */

/* Prevent iOS zoom on focus */
input,
select,
textarea {
    font-size: 16px !important;
    line-height: 1.4;
}

/* Improve touch responsiveness */
button,
a,
.product-card,
.cart-item {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}


/* =========================================
   SCROLL & LAYOUT FIXES
   ========================================= */

/* Smooth momentum scrolling on iOS */
body {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: none; /* prevents bounce glitches */
}

/* Prevent horizontal overflow on mobile */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Safe container behavior */
.container {
    width: 100%;
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
    box-sizing: border-box;
}


/* ========================== */
/* MODERN MINIMAL UI STYLING  */
/* ========================== */

/* Discount Badge - Flat Gold */
.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #333;
    color: #fff;
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    z-index: 10;
    min-width: 52px;
    text-align: center;
    width: 20px;
    font-size: 10px;
}

/* Out of Stock Badge - Flat Gray */
.out-of-stock-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #4b5563;
    color: white;
    padding: 4px 8px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    z-index: 10;
    min-width: 90px;
    text-align: center;
}

/* Add to Cart Button - Flat Modern Gold */
.add-to-cart-btn {
    width: 100%;
    background: #d4af37;
    color: #000;
    border: none;
    padding: 8px 12px;       /* smaller */
    font-weight: 600;
    font-size: 0.8rem;       /* smaller */
    cursor: pointer;
    transition: 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-to-cart-btn:hover:not(:disabled) {
    background: #c39c2e;
}

/* Disabled state — flat gray */
.add-to-cart-btn:disabled {
    background: #9ca3af;
    color: #d1d5db;
    cursor: not-allowed;
}

/* Product image container */
.product-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

/* Minimal success + error states */
.add-to-cart-btn.success {
    background: #10b981;
    color: white;
}


/* Mobile */
@media (max-width: 768px) {
    .discount-badge,
    .out-of-stock-badge {
        padding: 3px 6px;
        font-size: 0.65rem;
    }

    .add-to-cart-btn {
        padding: 7px 10px;
        font-size: 0.75rem;
    }
}




/* From Uiverse.io by akshat-patel28 */ 
/* Centering container */
.center-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;            /* full screen vertical */
  width: 100%;
  margin-top: 20px;
}







/* CONTAINER */
.premium-card-container {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
}

/* CARD */
.premium-card {
    background: var(--white);
    border-radius: 14px;
    padding: 22px;
    border: 1px solid #eee;
    transition: 0.2s ease;
}

.premium-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
}

/* HEADER */
.premium-card-header {
    text-align: center;
    margin-bottom: 18px;
}

.premium-card-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 6px;
}

.premium-card-subtitle {
    font-size: 13px;
    color: var(--gray);
}

/* BUTTON */
.refresh-premium-btn {
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: 0.2s ease;
}

.refresh-premium-btn:hover {
    opacity: 0.9;
}

/* CONTENT */
.premium-product-display {
    text-align: center;
    transition: opacity 0.4s ease;
}

.premium-product-image {
    width: 100%;
    height: 230px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 14px;
    background: var(--soft-gray);
    padding: 15px;
}

.premium-product-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    transition: color 0.2s ease;
}

.premium-product-name:hover {
    color: var(--green);
}

/* PRICE */
.premium-product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 8px;
}

/* NOTES */
.premium-product-notes {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 12px;
    line-height: 1.5;
}

/* TAGS */
.premium-product-meta {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
    color: var(--gray);
}

.premium-gender, 
.premium-size {
    background: var(--soft-gray);
    padding: 5px 10px;
    border-radius: 12px;
    font-weight: 500;
}

/* FOOTER */
.premium-card-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.premium-note {
    font-size: 10px;
    color: var(--gray);
}

/* EMPTY */
.no-premium-products {
    text-align: center;
    padding: 30px 15px;
    color: var(--gray);
}

/* MOBILE */
@media (max-width: 768px) {
    .premium-card {
        padding: 18px;
    }

    .premium-product-image {
        height: 190px;
    }

    .premium-card-title {
        font-size: 18px;
    }
}



  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .2s ease;
  }

  .whatsapp-float:hover {
    transform: scale(1.08);
  }

  .whatsapp-icon {
    width: 32px;
    height: 32px;
  }

  @media (max-width: 480px) {
    .whatsapp-float {
      width: 50px;
      height: 50px;
      bottom: 15px;
      right: 15px;
    }
    .whatsapp-icon {
      width: 28px;
      height: 28px;
    }
  }


  /* Force navbar to always be LTR regardless of language */
nav, .navbar, header, .navigation {
    direction: ltr !important;
    text-align: left !important;
}

/* If you have specific navbar classes */
.main-nav, .site-header, .header-container {
    direction: ltr !important;
}

/* Keep the rest of the page RTL for Arabic */
body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl nav,
body.rtl .navbar,
body.rtl .main-nav {
    direction: ltr !important;
    text-align: left !important;
}




.discount-ribbon {
    position: absolute;
    top: 10px;
    right: -25px;
    background: #333;
    color: white;
    padding: 5px 30px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 1;
}


.premium-product-price {
    display: flex;
    align-items: center;        /* vertical center */
    justify-content: center;    /* horizontal center */
    gap: 10px;
    text-align: center;
}

.premium-original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9em;
}

.premium-final-price {
    color: #333;
    font-weight: bold;
    font-size: 1.2em;
}



/* LOGO SLIDER CONTAINER */
.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #fff;
    padding: 25px 0;
}

/* FADE EDGES (luxury look) */
.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

/* SLIDER TRACK */
.slider-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollLogos 45s linear infinite;
}

/* LOGOS */
.slider-track img {
    height: 60px;
    margin: 0 45px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: all 0.3s ease;
}

.slider-track img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.08);
}

/* ANIMATION */
@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .slider-track img {
        height: 45px;
        margin: 0 25px;
    }
}
.size{
    margin-top: 120px;
    margin-bottom: 20px;
}



.product-decants-tag {
    font-size: 12px;
    color: #666;
    background: #f8f8f8;
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 5px;
    border: 1px solid #ddd;
}




.product-decants-indicator {
    font-size: 11px;
    color: #333;
    background: #e8f6ef;
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 5px;
    font-weight: 600;
}

.no-products-message {
    text-align: center;
    padding: 40px 20px;
    color: #666;
    font-size: 16px;
    grid-column: 1 / -1;
}

.no-products-message p:first-child {
    font-weight: 600;
    margin-bottom: 10px;
}



/* Size buttons styles - bigger version */
.size-btn {
    padding: 14px 24px;          /* more padding for bigger buttons */
    border: 2px solid #dee2e6;
    background: white;
    border-radius: 25px;         /* pill-style */
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;             /* bigger text */
    min-width: 100px;            /* larger width */
    text-align: center;
    margin: 5px;                 /* gap between buttons */
}

.size-btn:hover {
    border-color: #adb5bd;
    background: #f8f9fa;
}

.size-btn.selected {
    border-color: #2c5530;
    background: #2c5530;
    color: white;
    box-shadow: 0 3px 10px rgba(44, 85, 48, 0.3);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .size-buttons {
        flex-direction: column !important;
        gap: 8px;
        align-items: stretch;
    }
    
    .size-btn {
        min-width: 100%;
        width: 100%;
        padding: 12px 20px;
        font-size: 15px;          /* still readable on phones */
        border-radius: 20px;
    }
}

.decant-badge {
    position: absolute;
    bottom: 10px; /* spacing from the bottom */
    left: 50%;     /* center horizontally */
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 4px 10px; /* default size */
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
}

/* Make badge smaller on small screens */
@media (max-width: 780px) {
    .decant-badge {
        padding: 2px 6px;
        font-size: 11px;
        bottom: 6px;
    }
}

.product-image-container {
    position: relative;
}





/* Decants filter header - mature minimal green */
.decants-filter-header {
    grid-column: 1/-1;
    text-align: center;
    padding: 10px 5px;
    margin-bottom: 25px;
    background: #fff; /* your green */
    color: #333;
    border-radius: 4px; /* minimal */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    position: relative;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.decants-filter-header h2 {
    margin: 0 0 8px 0;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.decants-filter-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 12px;
    line-height: 1.4;
    color: #333;
}

.decant-tag {
    background: #2c5530; /* darker green for contrast */
    color: #fff;
    padding: 3px 10px;
    border-radius: 2px; /* minimal */
    font-size: 12px;
    font-weight: 600;
    margin-left: 6px;
    display: inline-block;
    vertical-align: middle;
}

.clear-decants-filter {
    transition: all 0.3s ease;
    background: #2c5530;
    color: #fff;
    padding: 5px 12px;
    border-radius: 2px; /* minimal */
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}

.clear-decants-filter:hover {
    background: #3a7540;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}







/* Filter headers */
.filter-header {
    grid-column: 1/-1;
    text-align: center;
    padding: 25px 20px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.filter-header h2 {
    margin: 0 0 10px 0;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
}

.filter-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 15px;
}

/* Decants header */

/* Offers header */
.offers-header {
    background: #fff;
    color: #333;
}

/* Tags */
.filter-tag {
    font-weight: bold;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}



.discount-tag {
    background: #e74c3c;
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
}

/* Buttons */
.clear-filter-btn {
    transition: all 0.3s ease;
}

.clear-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}



.offers-header .clear-filter-btn:hover {
    background: #333;
}



/* Remove any big blue badges */
.decant-badge,
[class*="decant-badge"],
[style*="10ML DECANT"] {
    display: none !important;
}

/* Ensure only small price indicators show */
.product-card [style*="background: #3498db"] {
    display: none !important;
}






.logo-slider img {
    cursor: pointer;
    transition: transform 0.3s ease, filter 0.3s ease;
    user-select: none;
}

.logo-slider img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.logo-slider img.active {
    filter: brightness(1.5);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}







