/* Luxury E-commerce CSS for Namoda Perfume Store */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0a0a0a;
    --secondary-color: #d4af37;
    --accent-color: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --gold: #d4af37;
    --dark-gold: #b8941f;
    --light-gold: #f4e8c1;
    --light-bg: #fafafa;
    --border-color: #e8e8e8;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.16);
    --shadow-gold: 0 8px 30px rgba(212,175,55,0.25);
}

body {
    font-family: var(--font-secondary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(212,175,55,0.1);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    color: var(--primary-color);
    letter-spacing: 4px;
    margin-bottom: 0;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    letter-spacing: 2px;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--dark-gold));
    transition: all 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
    transform: translateX(-50%) scaleX(1);
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-icons a {
    color: var(--text-dark);
    font-size: 1.2rem;
    position: relative;
    transition: color 0.3s;
}

.nav-icons a:hover {
    color: var(--gold);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    min-height: 95vh;
    display: flex;
    align-items: center;
    background-image: url('../images/Hero.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.7) 0%, rgba(26,26,26,0.6) 50%, rgba(10,10,10,0.7) 100%);
    z-index: 1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.15) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text {
    text-align: center;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-text {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 2px 10px rgba(212,175,55,0.3);
    animation: fadeInUp 1s ease;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2.5rem;
    line-height: 1.9;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.btn-primary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(212,175,55,0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-full {
    width: 100%;
    text-align: center;
    display: block;
}

/* Hero background image styling - image is now background */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        background-size: cover;
        background-position: center center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

.perfume-bottle {
    width: 300px;
    height: 400px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 20px 20px 60px 20px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: perspective(1000px) rotateY(-15deg);
}

.perfume-bottle::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 50%;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
}

/* Collections Showcase */
.collections-showcase {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    position: relative;
}

.collections-grid-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.collection-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid rgba(212,175,55,0.1);
    position: relative;
}

.collection-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.collection-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212,175,55,0.3);
}

.collection-card:hover::before {
    opacity: 1;
}

.collection-image {
    width: 100%;
    height: 350px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    display: block;
}

.collection-card:hover .collection-image img {
    transform: scale(1.15);
}

.collection-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.collection-card:hover .collection-image::after {
    opacity: 1;
}

.collection-image-placeholder {
    font-size: 4rem;
    color: var(--white);
    font-weight: bold;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.collection-info {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.collection-name {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.collection-card:hover .collection-name {
    color: var(--gold);
}

.collection-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.collection-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.collection-link:hover {
    gap: 1rem;
    color: var(--dark-gold);
}

.collection-link i {
    transition: transform 0.3s;
}

.collection-link:hover i {
    transform: translateX(5px);
}

/* Featured Section */
.featured-section {
    padding: 6rem 0;
    background: var(--white);
    position: relative;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.2), transparent);
}

.section-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.15rem;
    margin-bottom: 4rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    border: 1px solid rgba(212,175,55,0.05);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.02) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(212,175,55,0.2);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card.sold-out {
    opacity: 0.7;
}

.product-card.sold-out:hover {
    transform: none;
    cursor: not-allowed;
}

.product-image {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212,175,55,0.08) 0%, rgba(212,175,55,0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 1;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: transform 0.6s ease;
    z-index: 0;
}

.product-card:hover .product-image::before {
    opacity: 1;
}

.product-card:hover .product-image::after {
    transform: translate(-50%, -50%) scale(2);
}

.product-image img,
.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s;
    display: block;
}

.product-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    min-height: 250px;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-info {
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 2;
    background: var(--white);
    min-height: auto;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card .product-image {
    flex-shrink: 0;
}

.product-card .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

.product-card:hover .product-name {
    color: var(--gold);
}

.product-category {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.6rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
    font-family: var(--font-primary);
}

.add-to-cart {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-size: 0.85rem;
}

.add-to-cart::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;
}

.add-to-cart:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.add-to-cart:hover::before {
    width: 300px;
    height: 300px;
}

.add-to-cart.disabled {
    background: #ccc;
    cursor: not-allowed;
    opacity: 0.6;
}

.add-to-cart.disabled:hover {
    background: #ccc;
    transform: none;
}

.sold-out-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-image {
    position: relative;
}

/* Luxury Experience Section */
.luxury-experience {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
    position: relative;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.experience-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.4s ease;
    border: 1px solid rgba(212,175,55,0.05);
    box-shadow: var(--shadow-sm);
}

.experience-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212,175,55,0.15);
}

.experience-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    box-shadow: var(--shadow-gold);
    transition: all 0.4s ease;
    position: relative;
}

.experience-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
    filter: blur(8px);
}

.experience-item:hover .experience-icon {
    transform: translateY(-5px) scale(1.05);
}

.experience-item:hover .experience-icon::before {
    opacity: 0.5;
}

.experience-item h3 {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color 0.3s;
}

.experience-item:hover h3 {
    color: var(--gold);
}

.experience-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Newsletter */
.newsletter {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 50%, var(--primary-color) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.newsletter::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"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter h2 {
    font-family: var(--font-primary);
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1.2rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 4px rgba(212,175,55,0.1);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form button {
    padding: 1rem 2rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--primary-color) 0%, #0a0a0a 100%);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.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);
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a1a1a 50%, var(--primary-color) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212,175,55,0.05) 0%, transparent 70%);
}

.page-header h1,
.page-header p {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-family: var(--font-primary);
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -1px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Filters */
.filters-section {
    padding: 2rem 0;
    background: var(--light-bg);
}

.filters {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.filter-group select {
    padding: 0.9rem 1.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    background: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    color: var(--text-dark);
}

.filter-group select:hover {
    border-color: rgba(212,175,55,0.3);
}

.filter-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

/* Products Section */
.products-section {
    padding: 3rem 0 5rem;
}

/* Product Detail */
.product-detail-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-detail-image {
    width: 100%;
    height: 650px;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 120px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212,175,55,0.1);
    overflow: hidden;
}

.product-detail-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212,175,55,0.03) 0%, transparent 100%);
    z-index: 0;
}

.product-detail-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.product-detail-info h1 {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.product-detail-category {
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.product-detail-price {
    font-size: 3rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: var(--font-primary);
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(212,175,55,0.2);
}

.product-detail-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.product-detail-notes {
    margin-bottom: 2rem;
}

.product-detail-notes h3 {
    font-family: var(--font-primary);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.product-detail-notes ul {
    list-style: none;
    padding-left: 0;
}

.product-detail-notes li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.quantity-selector label {
    font-weight: 600;
}

.quantity-selector input {
    width: 80px;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    text-align: center;
    font-size: 1rem;
}

/* Cart */
.cart-section {
    padding: 4rem 0 6rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.cart-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.cart-item {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212,175,55,0.05);
    transition: all 0.3s ease;
}

.cart-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(212,175,55,0.15);
    transform: translateY(-2px);
}

.cart-item-image {
    width: 150px;
    height: 150px;
    background: var(--light-bg);
    border-radius: 10px;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.cart-item-category {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cart-item-price {
    font-size: 1.3rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-control button {
    width: 35px;
    height: 35px;
    border: 2px solid var(--border-color);
    background: var(--white);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.quantity-control button:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.quantity-control span {
    min-width: 40px;
    text-align: center;
    font-weight: 600;
}

.remove-item {
    color: #e74c3c;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
    transition: color 0.3s;
}

.remove-item:hover {
    color: #c0392b;
}

.cart-summary {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 120px;
    height: fit-content;
    border: 1px solid rgba(212,175,55,0.1);
}

.cart-summary h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-row.total {
    border-bottom: none;
    border-top: 2px solid var(--primary-color);
    margin-top: 1rem;
    padding-top: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.cart-summary .btn-primary,
.cart-summary .btn-secondary {
    margin-top: 1.5rem;
}

/* Checkout */
.checkout-section {
    padding: 4rem 0 6rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.checkout-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.checkout-form-container {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212,175,55,0.1);
}

.checkout-form h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.1rem 1.3rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: all 0.3s;
    background: var(--white);
    color: var(--text-dark);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(212,175,55,0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
    background: var(--white);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.checkout-summary {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 120px;
    height: fit-content;
    border: 1px solid rgba(212,175,55,0.1);
}

.checkout-summary h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.checkout-item-name {
    font-weight: 600;
    color: var(--text-dark);
}

.checkout-item-price {
    color: var(--text-light);
}

.checkout-totals {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

/* About Page */
.about-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-image {
    width: 100%;
    height: 500px;
}

.about-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    border-radius: 10px;
}

.values-section {
    padding: 3rem 0;
    background: var(--light-bg);
    border-radius: 10px;
}

/* Shipping & Returns Page Styles */
.shipping-returns-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    background: var(--bg-primary);
    padding: 3rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
}

.policy-section h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gold);
}

.policy-section h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content {
    line-height: 1.8;
    color: var(--text-primary);
}

.policy-content p {
    margin-bottom: 1rem;
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.policy-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-primary);
}

.policy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.5rem;
}

.policy-list ol {
    list-style: decimal;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.policy-list ol li {
    padding: 0.75rem 0;
    padding-left: 0.5rem;
}

.policy-list ol li::before {
    display: none;
}

.policy-note {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--gold);
}

.policy-note p {
    margin: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.policy-note i {
    color: var(--gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.policy-note a {
    color: var(--gold);
    text-decoration: underline;
}

.contact-box {
    background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.contact-box h3 {
    color: white;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
}

.contact-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

.contact-info-box {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.contact-info-box p {
    margin: 0.75rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.contact-info-box i {
    font-size: 1.2rem;
}

.contact-info-box a {
    color: white;
    text-decoration: underline;
}

/* RTL Support for Shipping & Returns */
[dir="rtl"] .policy-list li {
    padding-right: 1.5rem;
    padding-left: 0;
}

[dir="rtl"] .policy-list li::before {
    right: 0;
    left: auto;
}

[dir="rtl"] .policy-list ol {
    padding-right: 1.5rem;
    padding-left: 0;
}

[dir="rtl"] .policy-note {
    border-right: 4px solid var(--gold);
    border-left: none;
}

/* Worldwide Brand Badge */
.worldwide-badge {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 0.2em 0.6em;
    border-radius: 4px;
    font-size: 0.75em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(212,175,55,0.3);
    vertical-align: middle;
    margin-left: 0.5em;
}

[dir="rtl"] .worldwide-badge {
    margin-left: 0;
    margin-right: 0.5em;
}

.values-section h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: 15px;
    border: 1px solid rgba(212,175,55,0.05);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}

.value-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(212,175,55,0.15);
}

.value-item i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.value-item h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Page */
.contact-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 0.5rem;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.info-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form-container {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(212,175,55,0.1);
}

.contact-form-container h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background: var(--gold);
    color: var(--white);
}

::-moz-selection {
    background: var(--gold);
    color: var(--white);
}

/* Responsive Design - Mobile First Approach */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .container {
        padding: 0 15px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 1.5rem;
    }
}

/* Tablets */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
        cursor: pointer;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin: 1rem 0;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cart-container,
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .collections-grid-showcase {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .nav-icons {
        gap: 1rem;
    }
    
    /* Touch-friendly buttons */
    .btn-primary, .btn-secondary, .add-to-cart {
        min-height: 44px;
        min-width: 44px;
        padding: 0.75rem 1.5rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo .tagline {
        font-size: 0.7rem;
    }
    
    .hero {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
    }
    
    .product-card {
        padding: 0.75rem;
        min-width: 0; /* Prevents grid overflow */
    }
    
    .product-image {
        min-height: 200px;
        height: auto;
    }
    
    .product-image img,
    .product-img,
    .product-image-placeholder {
        width: 100% !important;
        height: 200px !important;
        min-height: 200px !important;
        max-height: 250px !important;
        object-fit: cover !important;
    }
    
    .product-image-placeholder {
        font-size: 2rem !important;
    }
    
    .product-info {
        padding: 0.75rem 0 !important;
        min-height: auto !important;
    }
    
    .product-name {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .product-category {
        font-size: 0.8rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    .product-price {
        font-size: 1.1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .add-to-cart {
        font-size: 0.85rem !important;
        padding: 0.6rem 1rem !important;
        width: 100%;
    }
    
    /* Ensure products are visible on mobile */
    .products-grid {
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .product-card {
        display: flex !important;
        flex-direction: column !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-form input {
        width: 100%;
        margin-bottom: 0;
    }
    
    .newsletter-form button {
        width: 100%;
    }

    .filters {
        flex-direction: column;
        gap: 1rem;
    }
    
    .filters select,
    .filters input {
        width: 100%;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .page-header {
        padding: 3rem 0 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .product-detail-image img,
    .product-detail-image > div {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: 400px !important;
    }
    
    .cart-item,
    .checkout-form {
        padding: 1rem;
    }
    
    .policy-section {
        padding: 1.5rem;
    }
    
    .policy-section h2 {
        font-size: 1.75rem;
    }
    
    .policy-section h3 {
        font-size: 1.25rem;
    }
    
    /* Improve touch targets */
    .nav-menu li a {
        padding: 1rem;
        display: block;
    }
    
    .cart-icon,
    .search-icon {
        padding: 0.5rem;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .language-switcher button {
        min-height: 44px;
        padding: 0.5rem 1rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 0.75rem;
    }
    
    .product-card {
        padding: 0.5rem;
    }
    
    .product-image {
        min-height: 180px;
    }
    
    .product-image img,
    .product-img,
    .product-image-placeholder {
        height: 180px !important;
        min-height: 180px !important;
    }
    
    .product-image-placeholder {
        font-size: 1.5rem !important;
    }
    
    .product-info {
        padding: 0.5rem 0 !important;
    }
    
    .product-name {
        font-size: 0.85rem !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .product-category {
        font-size: 0.75rem !important;
    }
    
    .product-price {
        font-size: 1rem !important;
    }
    
    .add-to-cart {
        font-size: 0.8rem !important;
        padding: 0.5rem 0.75rem !important;
        width: 100%;
    }
    
    /* Ensure products are visible on small mobile */
    .products-grid {
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .product-card {
        display: flex !important;
        flex-direction: column !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .collections-grid-showcase {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        padding: 0.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }
    
    .nav-icons {
        gap: 0.5rem;
    }
    
    .logo h1 {
        font-size: 1.25rem;
    }
    
    .footer-bottom {
        text-align: center;
        font-size: 0.85rem;
    }
}

/* Landscape Orientation */
@media (max-width: 968px) and (orientation: landscape) {
    .hero {
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .product-image img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .hamburger,
    .nav-icons,
    .btn-primary,
    .add-to-cart {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
}

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .nav-menu {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-menu a.active::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .nav-icons {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-content {
    direction: rtl;
}

[dir="rtl"] .hero-text {
    text-align: center;
}

[dir="rtl"] .cart-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .product-detail-grid {
    direction: rtl;
}

[dir="rtl"] .checkout-container,
[dir="rtl"] .cart-container {
    direction: rtl;
}

[dir="rtl"] .about-content,
[dir="rtl"] .contact-container {
    direction: rtl;
}

[dir="rtl"] .form-row {
    direction: rtl;
}

[dir="rtl"] .quantity-control {
    flex-direction: row-reverse;
}

[dir="rtl"] .summary-row {
    flex-direction: row-reverse;
}

[dir="rtl"] .checkout-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .info-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .social-links {
    flex-direction: row-reverse;
}

/* Language Switcher */
.language-switcher {
    margin-left: 1rem;
    margin-right: 0;
}

[dir="rtl"] .language-switcher {
    margin-left: 0;
    margin-right: 1rem;
}

.language-switcher button {
    background: transparent;
    border: 2px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s;
    font-size: 0.9rem;
}

.language-switcher button:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Arabic Font Support */
[dir="rtl"] body {
    font-family: 'Cairo', 'Montserrat', sans-serif;
}

[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] .hero-title,
[dir="rtl"] .section-title {
    font-family: 'Cairo', 'Playfair Display', serif;
}

