* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fundamental Responsive Rules */
html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Responsive container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Responsive text */
h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
    hyphens: auto;
}

/* Responsive tables */
table {
    width: 100%;
    border-collapse: collapse;
}

/* Responsive forms */
input, textarea, select {
    max-width: 100%;
}

:root {
    /* Refined Color Palette with Better Contrast */
    --primary-gold: #D4AF37;
    --secondary-gold: #B8860B;
    --accent-gold: #FFD700;
    --luxury-gold: #F7D794;
    --dark-brown: #2C1810;
    --medium-brown: #3D2817;
    --light-brown: #8B4513;
    --cream: #FFF8DC;
    --off-white: #FEFDF8;
    --warm-gray: #F5F2ED;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #7A7A7A;
    --accent-red: #C41E3A;
    --accent-blue: #1E3A8A;
    --success: #10B981;
    --error: #EF4444;
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
    --backdrop-blur: blur(16px);
    --shadow-light: 0 8px 32px rgba(31, 38, 135, 0.37);
    --shadow-medium: 0 12px 40px rgba(31, 38, 135, 0.25);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    background: linear-gradient(135deg, var(--warm-gray) 0%, var(--cream) 50%, var(--off-white) 100%);
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 400;
    min-height: 100vh;
}

/* Beautiful Logo Design */
.logo {
    display: flex;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon-container {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
}

.logo-icon-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--accent-gold), var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    z-index: -1;
}

.logo-svg {
    width: 30px;
    height: 30px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-brown);
    letter-spacing: -0.5px;
}

.logo-sub {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -2px;
}

/* Header */
.header {
    background: #ffffff;
    padding: 10px 0;
    box-shadow: 0 1px 5px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
    position: relative; /* Added for mobile menu positioning */
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 100%;
}

/* Simple Logo Styles */
.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-1px);
}

.logo-icon {
    width: 32px;
    height: 32px;
    margin-right: 12px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-brown);
    letter-spacing: -0.5px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input {
    padding: 8px 40px 8px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    width: 200px;
    transition: all 0.3s ease;
    background: white;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.search-btn {
    position: absolute;
    right: 5px;
    background: var(--primary-gold);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.search-btn:hover {
    background: var(--secondary-gold);
    transform: scale(1.1);
}

.cart-btn, .wishlist-btn {
    position: relative;
    background: none;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-btn:hover, .wishlist-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.cart-count, .wishlist-count {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--accent-red);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.cart-count.active, .wishlist-count.active {
    transform: scale(1);
}

.navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    padding: 8px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 0px;
}

.nav-list a:hover,
.nav-list a.active {
    background-color: #f5f5f5;
    color: var(--primary-gold);
}

/* Typography Improvements */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-brown);
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--text-medium);
    text-align: center;
}

.section-badge {
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-gold));
    color: white;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    font-family: 'Inter', sans-serif;
}

/* Beautiful Home Hero Section */
.hero-home {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8f6f1 0%, #e8e4dc 50%, #d4c7a8 100%);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-badge {
    background: linear-gradient(45deg, #e0b650, #d4a643);
    color: #3b2f2f;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.hero-main-title {
    font-size: 52px;
    font-weight: 800;
    color: #3b2f2f;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-description {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary {
    background: linear-gradient(45deg, #e0b650, #d4a643);
    color: #3b2f2f;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(224, 182, 80, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(224, 182, 80, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #3b2f2f;
    padding: 15px 30px;
    border: 2px solid #3b2f2f;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #3b2f2f;
    color: white;
    transform: translateY(-3px);
}

.hero-features {
    display: flex;
    gap: 30px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-icon {
    font-size: 20px;
}

.feature-text {
    font-weight: 600;
    color: #3b2f2f;
    font-size: 14px;
}

.hero-image {
    position: relative;
    height: 500px;
}

.floating-jewelry {
    position: relative;
    height: 100%;
}

.jewelry-img {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.jewelry-1 {
    width: 200px;
    height: 200px;
    object-fit: cover;
    top: 0;
    left: 0;
    animation: float 6s ease-in-out infinite;
}

.jewelry-2 {
    width: 150px;
    height: 150px;
    object-fit: cover;
    top: 100px;
    right: 50px;
    animation: float 6s ease-in-out infinite 2s;
}

.jewelry-3 {
    width: 180px;
    height: 180px;
    object-fit: cover;
    bottom: 0;
    right: 0;
    animation: float 6s ease-in-out infinite 4s;
}

/* Featured Categories */
.featured-categories {
    padding: 80px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #3b2f2f;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.category-image {
    position: relative;
    height: 100%;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: white;
}

.category-overlay h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.category-overlay p {
    margin-bottom: 15px;
    opacity: 0.9;
}

.category-btn {
    background: #e0b650;
    color: #3b2f2f;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    align-self: flex-start;
    transition: background 0.3s ease;
}

.category-btn:hover {
    background: #d4a643;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
}

.hero h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero p {
    color: #666;
    font-size: 18px;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background: #f8f6f1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-card.featured {
    border: 3px solid #e0b650;
    transform: scale(1.02);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #e0b650;
    color: #3b2f2f;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.product-actions {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-actions {
    opacity: 1;
}

.action-btn {
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: #e0b650;
    transform: scale(1.1);
}

.product-content {
    padding: 25px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.stars {
    color: #ffd700;
}

.rating-count {
    font-size: 14px;
    color: #666;
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    color: #3b2f2f;
    margin-bottom: 10px;
}

.product-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 22px;
    font-weight: 700;
    color: #e0b650;
}

.original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
}

.discount {
    background: #ff4757;
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.add-to-cart-btn {
    width: 100%;
    background: linear-gradient(45deg, #e0b650, #d4a643);
    color: #3b2f2f;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 182, 80, 0.3);
}

.view-all-section {
    text-align: center;
}

.view-all-btn {
    background: #3b2f2f;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.view-all-btn:hover {
    background: #2a1f1f;
    transform: translateY(-3px);
}

/* Promotional Banner Home */
.promo-banner-home {
    padding: 60px 0;
    background: linear-gradient(135deg, #3b2f2f 0%, #2a1f1f 100%);
    color: white;
}

.promo-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.promo-label {
    background: #e0b650;
    color: #3b2f2f;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.promo-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.promo-description {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
    line-height: 1.6;
}

.promo-countdown {
    display: flex;
    align-items: center;
    gap: 20px;
}

.countdown-label {
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    gap: 15px;
}

.time-unit {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 10px 15px;
    border-radius: 10px;
}

.time-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.time-label {
    font-size: 12px;
    opacity: 0.8;
}

.promo-btn {
    background: #e0b650;
    color: #3b2f2f;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.promo-btn:hover {
    background: #d4a643;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Beautiful About Section for Home Page */
.about-section-home {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f1 100%);
    position: relative;
}

.about-home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text-section {
    position: relative;
}

.section-badge {
    background: linear-gradient(45deg, #e0b650, #d4a643);
    color: #3b2f2f;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #e0b650;
    margin-bottom: 5px;
}

.stat-text {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.learn-more-btn {
    background: linear-gradient(45deg, #3b2f2f, #2a1f1f);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 47, 47, 0.3);
}

.about-visual-section {
    position: relative;
}

.about-image-grid {
    position: relative;
    height: 400px;
}

.about-img {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.about-img-1 {
    width: 250px;
    height: 200px;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img-2 {
    width: 200px;
    height: 150px;
    object-fit: cover;
    bottom: 50px;
    right: 0;
    z-index: 1;
}

.about-overlay-card {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    text-align: center;
    z-index: 3;
    min-width: 200px;
}

.about-overlay-card h4 {
    color: #3b2f2f;
    margin-bottom: 10px;
    font-size: 16px;
}

.about-overlay-card p {
    color: #666;
    font-size: 12px;
    line-height: 1.4;
}

/* Beautiful Contact Section for Home Page */
.contact-section-home {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f6f1 0%, #e8e4dc 100%);
}

.contact-home-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-home-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e0b650, #d4a643);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.contact-card h3 {
    color: #3b2f2f;
    margin-bottom: 15px;
    font-size: 18px;
}

.contact-card p {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-card a {
    color: #e0b650;
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    text-decoration: underline;
}

.contact-hours,
.contact-availability,
.contact-response {
    background: #f8f6f1;
    padding: 10px;
    border-radius: 10px;
    font-size: 14px;
    margin-top: 15px;
}

.quick-contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    position: sticky;
    top: 100px;
}

.quick-contact-form h3 {
    color: #3b2f2f;
    margin-bottom: 25px;
    font-size: 22px;
    text-align: center;
}

.contact-form-home {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form-home input,
.contact-form-home select,
.contact-form-home textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.contact-form-home input:focus,
.contact-form-home select:focus,
.contact-form-home textarea:focus {
    outline: none;
    border-color: #e0b650;
}

.submit-contact-btn {
    background: linear-gradient(45deg, #e0b650, #d4a643);
    color: #3b2f2f;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(224, 182, 80, 0.3);
}

.submit-contact-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Search Results Styles */
.search-results-message {
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.no-results h3 {
    color: #ff4757;
    margin-bottom: 15px;
    font-size: 20px;
}

.no-results p {
    color: #666;
    margin-bottom: 20px;
}

.search-suggestions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.suggestion-btn {
    background: #e0b650;
    color: #3b2f2f;
    padding: 8px 15px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.suggestion-btn:hover {
    background: #d4a643;
    transform: translateY(-2px);
}

.search-results p {
    color: #28a745;
    font-weight: 600;
    font-size: 16px;
}

.clear-search-btn {
    background: #3b2f2f;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.clear-search-btn:hover {
    background: #2a1f1f;
    transform: translateY(-2px);
}

/* Search Box Enhancement */
.search-box {
    position: relative;
}

.search-box input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(224, 182, 80, 0.3);
}

.search-btn:hover {
    transform: scale(1.1);
}

/* Promotional Banner */
.promo-banner {
    background-color: #8b4513;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin: 40px 0;
}

.promo-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.promo-description {
    font-size: 16px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background-color: #3b2f2f;
    color: #e0b650;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.footer-text {
    font-size: 14px;
}

/* Page Header Styles */
.page-header {
    background-color: #e0b650;
    text-align: center;
    padding: 60px 20px;
}

.page-title {
    font-size: 36px;
    font-weight: bold;
    color: #3b2f2f;
    margin-bottom: 10px;
}

.page-subtitle {
    font-size: 18px;
    color: #3b2f2f;
    opacity: 0.8;
}

/* Active Navigation Link */
.nav-list a.active {
    background-color: #3b2f2f;
    color: #e0b650;
    padding: 8px 15px;
    border-radius: 20px;
}

/* Product Price */
.product-price {
    font-size: 18px;
    font-weight: bold;
    color: #e0b650;
    margin-top: 10px;
}

/* About Page Styles */
.about-content-page {
    padding: 60px 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text h2 {
    color: #3b2f2f;
    margin: 30px 0 15px 0;
    font-size: 24px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.feature-card h3 {
    color: #3b2f2f;
    margin-bottom: 10px;
    font-size: 16px;
}

.feature-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-page {
    padding: 60px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-section h2,
.contact-form-section h2 {
    color: #3b2f2f;
    margin-bottom: 30px;
    font-size: 24px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Contact Form */
.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #3b2f2f;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e0b650;
}

.submit-btn {
    background-color: #e0b650;
    color: #3b2f2f;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #d4a643;
}

/* Form Note Styling */
.form-note {
    margin-top: 20px;
    padding: 15px;
    background-color: #f8f6f0;
    border-left: 4px solid var(--primary-gold);
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-note p {
    margin: 0;
    line-height: 1.5;
}

.form-note strong {
    color: var(--primary-gold);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
}

/* Beautiful About Page Styles */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, #e0b650 0%, #d4a643 50%, #c8961f 100%);
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

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

.about-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #3b2f2f;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.about-hero-subtitle {
    font-size: 20px;
    color: #3b2f2f;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #3b2f2f;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #3b2f2f;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-badge {
    background-color: #e0b650;
    color: #3b2f2f;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
}

.story-title {
    font-size: 40px;
    font-weight: 700;
    color: #3b2f2f;
    margin-bottom: 30px;
    line-height: 1.2;
}

.story-text {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.story-highlights {
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.highlight-icon {
    font-size: 20px;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background-color: #f8f6f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.highlight-text {
    font-weight: 600;
    color: #3b2f2f;
}

.story-image {
    position: relative;
}

.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.image-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.story-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px;
}

.overlay-text {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background-color: #f8f6f1;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

.values-title {
    font-size: 40px;
    font-weight: 700;
    color: #3b2f2f;
    margin-bottom: 15px;
}

.values-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e0b650, #d4a643);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.value-title {
    font-size: 22px;
    font-weight: 700;
    color: #3b2f2f;
    margin-bottom: 15px;
}

.value-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: white;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-title {
    font-size: 40px;
    font-weight: 700;
    color: #3b2f2f;
    margin-bottom: 15px;
}

.team-subtitle {
    font-size: 18px;
    color: #666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

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

.member-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(224, 182, 80, 0.9);
    color: #3b2f2f;
    padding: 5px;
    font-size: 12px;
    font-weight: 600;
}

.member-name {
    font-size: 20px;
    font-weight: 700;
    color: #3b2f2f;
    margin-bottom: 5px;
}

.member-role {
    font-size: 14px;
    color: #e0b650;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.member-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Awards Section */
.awards-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f6f1 0%, #e8e4dc 100%);
}

.awards-content {
    text-align: center;
}

.awards-title {
    font-size: 36px;
    font-weight: 700;
    color: #3b2f2f;
    margin-bottom: 50px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.award-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.award-item:hover {
    transform: scale(1.05);
}

.award-icon {
    font-size: 32px;
    margin-right: 20px;
    flex-shrink: 0;
}

.award-info h3 {
    font-size: 16px;
    font-weight: 700;
    color: #3b2f2f;
    margin-bottom: 5px;
    text-align: left;
}

.award-info p {
    font-size: 14px;
    color: #666;
    text-align: left;
    margin: 0;
}

/* Responsive Design for Home Page */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
        margin-right: 10px;
    }
    
    .navigation ul {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-list a {
        padding: 6px 15px;
        font-size: 13px;
    }
    
    .header-actions {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .search-input {
        width: 180px;
        font-size: 13px;
    }
    
    .cart-btn, .wishlist-btn {
        padding: 8px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-main-title {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .jewelry-1 {
        width: 150px;
        height: 150px;
    }
    
    .jewelry-2 {
        width: 120px;
        height: 120px;
    }
    
    .jewelry-3 {
        width: 140px;
        height: 140px;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .countdown-timer {
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
}



/* ===== GLASSMORPHIC CONTACT FORM STYLING ===== */

/* Enhanced Contact Form with Glassmorphic Design */
.contact-form {
    background: var(--glass-bg) !important;
    backdrop-filter: var(--backdrop-blur) !important;
    -webkit-backdrop-filter: var(--backdrop-blur) !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 24px !important;
    padding: 50px 40px !important;
    box-shadow: 
        var(--shadow-light),
        inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 25%, 
        rgba(255, 255, 255, 0.3) 75%, 
        transparent 100%);
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 
        var(--shadow-medium),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

/* Contact Form Title Enhancement */
.contact-form h2 {
    font-family: 'Playfair Display', serif !important;
    font-size: clamp(28px, 4vw, 36px) !important;
    font-weight: 700 !important;
    color: var(--text-dark) !important;
    text-align: center;
    margin-bottom: 40px !important;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--accent-gold));
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(212, 175, 55, 0.3);
}

/* Enhanced Form Inputs with Glassmorphic Effect */
.contact-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.contact-form label {
    display: block;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100% !important;
    padding: 16px 20px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    color: var(--text-dark) !important;
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 12px !important;
    outline: none;
    transition: all 0.3s ease !important;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.05),
        0 1px 2px rgba(255, 255, 255, 0.1) !important;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    background: rgba(255, 255, 255, 0.6) !important;
    border-color: rgba(212, 175, 55, 0.5) !important;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.05),
        0 0 0 3px rgba(212, 175, 55, 0.1),
        0 4px 12px rgba(212, 175, 55, 0.15) !important;
    transform: translateY(-2px);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Enhanced Submit Button with Glassmorphic Hover */
.contact-form .submit-btn {
    width: 100% !important;
    padding: 18px 24px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: white !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 50%, var(--primary-gold) 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.contact-form .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%);
    transition: left 0.5s ease;
}

.contact-form .submit-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.contact-form .submit-btn:hover::before {
    left: 100%;
}

.contact-form .submit-btn:active {
    transform: translateY(-1px) !important;
}

/* Contact Section Background Enhancement */
.contact-page {
    background: linear-gradient(135deg, var(--warm-gray) 0%, var(--cream) 50%, var(--off-white) 100%) !important;
    min-height: 100vh;
    position: relative;
}

.contact-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Enhanced Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-gold) 50%, var(--primary-gold) 100%) !important;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Responsive Design for Glassmorphic Elements */
@media (max-width: 768px) {
    .contact-form {
        padding: 40px 25px !important;
        border-radius: 20px !important;
    }
    
    .contact-form h2 {
        font-size: 24px !important;
        margin-bottom: 30px !important;
    }
}

/* ===================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   =================================== */

/* Mobile Navigation Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
    transition: all 0.3s ease;
    z-index: 1001;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #3b2f2f;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .hamburger-line {
    background: #d4af37;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Tablet and Mobile Responsive Design */
@media (max-width: 768px) {
    
    /* Header adjustments */
    .header {
        padding: 15px 0;
        position: relative;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Logo adjustments */
    .logo-text {
        font-size: 20px;
    }
    
    .logo-icon {
        width: 28px;
        height: 28px;
    }
    
    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hide desktop navigation by default */
    .navigation ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        z-index: 999;
        gap: 5px;
        margin-top: 15px;
    }
    
    /* Show navigation when active */
    .navigation ul.active {
        display: flex;
    }
    
    .nav-list a {
        padding: 15px 20px;
        font-size: 16px;
        text-align: center;
        border-radius: 8px;
        width: 100%;
        display: block;
    }
    
    .nav-list a:hover,
    .nav-list a.active {
        background: #d4af37;
        color: #fff;
    }
    
    /* ALL HERO SECTIONS - Make single column */
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
        padding: 40px 0;
    }
    
    .hero-main-title {
        font-size: 32px !important;
        line-height: 1.2;
    }
    
    .hero-subtitle,
    .hero-description {
        font-size: 16px !important;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 200px;
        padding: 12px 20px;
    }
    
    .hero-features {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* ALL GRID LAYOUTS - Make single column */
    .products-grid,
    .collections-grid,
    .about-grid,
    .contact-grid,
    .story-content,
    .team-grid,
    .values-grid,
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* About page specific */
    .about-hero-title {
        font-size: 36px !important;
    }
    
    .about-hero-subtitle {
        font-size: 18px !important;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Contact form mobile */
    .contact-form {
        padding: 30px 20px !important;
        margin: 0 10px;
        border-radius: 15px !important;
    }
    
    .contact-form h2 {
        font-size: 24px !important;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        border-radius: 8px;
        box-sizing: border-box;
    }
    
    /* Footer mobile */
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    /* Typography mobile */
    .page-title {
        font-size: 28px !important;
    }
    
    .section-title {
        font-size: 28px !important;
    }
    
    .section-subtitle {
        font-size: 16px !important;
    }
    
    /* Product and Collection Cards */
    .product-card,
    .collection-card {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .product-title,
    .collection-title {
        font-size: 18px !important;
    }
    
    .product-price {
        font-size: 16px !important;
    }
    
    /* Images responsive */
    .hero-image,
    .about-image,
    .story-image {
        height: auto !important;
        max-height: 300px;
        width: 100%;
        object-fit: cover;
    }
    
    /* Statistics responsive */
    .stat-item {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .stat-number {
        font-size: 28px !important;
    }
    
    .stat-label {
        font-size: 14px !important;
    }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    
    .container {
        padding: 0 10px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .logo-icon {
        width: 24px;
        height: 24px;
    }
    
    /* Extra small mobile hero */
    .hero-main-title {
        font-size: 26px !important;
    }
    
    .hero-subtitle,
    .hero-description {
        font-size: 14px !important;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 180px;
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .nav-list a {
        font-size: 14px;
        padding: 12px 15px;
    }
    
    /* About page extra small */
    .about-hero-title {
        font-size: 26px !important;
    }
    
    .about-hero-subtitle {
        font-size: 14px !important;
    }
    
    /* Contact form extra small */
    .contact-form {
        padding: 20px 15px !important;
        margin: 0 5px;
    }
    
    .contact-form h2 {
        font-size: 20px !important;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 14px;
    }
    
    /* Typography extra small */
    .page-title {
        font-size: 22px !important;
    }
    
    .section-title {
        font-size: 22px !important;
    }
    
    .section-subtitle {
        font-size: 14px !important;
    }
    
    /* Product cards extra small */
    .product-title,
    .collection-title {
        font-size: 16px !important;
    }
    
    .product-price {
        font-size: 14px !important;
    }
    
    /* Stats extra small */
    .stat-number {
        font-size: 24px !important;
    }
    
    .stat-label {
        font-size: 12px !important;
    }
}

/* Large Mobile/Small Tablet (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    
    .products-grid,
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-main-title {
        font-size: 36px;
    }
    
    .about-hero-title {
        font-size: 38px;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
}

/* Medium Tablets (769px - 992px) */
@media (min-width: 769px) and (max-width: 992px) {
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* Desktop optimizations */
@media (min-width: 993px) {
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .collections-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

/* Additional Mobile Fixes */
@media (max-width: 768px) {
    
    /* Ensure mobile elements are touch-friendly */
    .btn,
    .nav-list a,
    .mobile-menu-toggle {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Hero image adjustments */
    .hero-image {
        height: auto;
        max-height: 300px;
    }
    
    /* Product card improvements */
    .product-card,
    .collection-card {
        margin: 0 auto;
        max-width: 100%;
    }
    
    /* Text improvements */
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    /* Ensure all images are responsive */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Form improvements */
    .form-group input,
    .form-group textarea,
    .form-group select {
        width: 100%;
        box-sizing: border-box;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Section spacing */
    .section {
        padding: 50px 0;
    }
}
