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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #0b0b0b;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    min-height: 100vh;
}

/* Header and navbar (EXACT from home.css) */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    text-shadow: 0 0 4px rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.logo img {
    height: 72px;
    width: auto;
    border-radius: 12px;
    padding: 4px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.7));
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.logo:hover img {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
}

.diamond-emoji {
    filter: brightness(0) saturate(100%) invert(1);
}

.logo::before {
    content: '💎';
    font-size: 2.2rem;
    animation: rotate 8s linear infinite;
    filter: drop-shadow(0 0 6px rgba(255,255,255,0.7)) brightness(0) saturate(100%) invert(1);
    transition: filter 0.3s ease;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.7);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.nav-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
}

.nav-toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.8);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: #222222;
    border-radius: 2px;
    position: relative;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.nav-toggle[aria-expanded="true"] span { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(90deg) translateX(-6px); }
.nav-toggle[aria-expanded="true"] span::after { opacity: 0; }

.logo:hover { color: #222222; text-shadow: 0 0 8px rgba(255,255,255,0.6); }
.logo:hover::before { filter: drop-shadow(0 0 12px rgba(255,255,255,0.9)); animation-duration: 4s; }

@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 993px) {
    .nav-menu {
        gap: 0.5rem;
        padding: 6px;
        background: rgba(255,255,255,0.7);
        border: 1px solid rgba(0,0,0,0.06);
        border-radius: 999px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.8);
        backdrop-filter: blur(8px);
    }
    .nav-menu li { margin: 0 6px; }
}

.nav-menu a::before {
    content: '';
    display: inline-block;
    font-size: 1.1rem;
    line-height: 1;
    margin-right: 8px;
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.1));
}

.nav-menu a[href*="#home"]::before { content: '🏠'; }
.nav-menu a[href*="#products"]::before { content: '🛒'; }
.nav-menu a[href*="#contact"]::before { content: '✉️'; }
/* Ensure icons also appear for page links */
.nav-menu a[href$="home.html"]::before { content: '🏠'; }
.nav-menu a[href$="content.html"]::before { content: '🛒'; }
.nav-menu a[href$="contact.html"]::before { content: '✉️'; }

/* Enhanced active state */
.nav-menu a.active {
    color: #111111;
    background: linear-gradient(135deg, rgba(0,0,0,0.06), rgba(0,0,0,0.03));
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10), inset 0 1px 0 rgba(255,255,255,0.8);
}

.nav-menu a.active::after {
    width: calc(100% - 24px);
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    position: relative;
    transition: color 0.25s ease, text-shadow 0.25s ease, transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    background: transparent;
}

.nav-menu a:hover {
    color: #222222;
    text-shadow: 0 0 3px rgba(0,0,0,0.2);
    background: rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255,255,255,0.6);
}

.nav-menu a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.05);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -6px;
    left: 12px;
    right: 12px;
    background: linear-gradient(90deg, #d9d9d9, #ffffff);
    transition: width 0.35s ease;
    border-radius: 2px;
}

.nav-menu a:hover::after {
    width: calc(100% - 24px);
}

@media (max-width: 992px) {
    .nav-toggle { display: inline-flex; }
    .nav-menu {
        position: absolute;
        top: 100%;
        right: 20px;
        left: 20px;
        display: none;
        flex-direction: column;
        gap: 1rem;
        padding: 16px;
        background: rgba(255,255,255,0.9);
        border: 1px solid rgba(0,0,0,0.06);
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
        backdrop-filter: blur(8px);
    }
    .nav-menu.is-open { display: flex; }
}

/* Footer (EXACT from home.css) */
footer {
    background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
    color: #333333;
    padding: 60px 0 35px;
    text-align: center;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: left;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    margin-bottom: 1.2rem;
    color: #222222;
    text-shadow: 0 0 2px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-section h3::before {
    content: '💎';
    font-size: 1.3rem;
    filter: brightness(0) saturate(100%) invert(1);
}

.footer-section p, .footer-section a {
    color: #555555;
    text-decoration: none;
    line-height: 1.9;
    text-shadow: 0 0 1px rgba(0,0,0,0.05);
}

.footer-section a:hover {
    color: #444444;
    text-shadow: 0 0 3px rgba(0,0,0,0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 25px;
    text-align: center;
    color: #666666;
    text-shadow: 0 0 1px rgba(0,0,0,0.05);
}

/* Page spacing so fixed header doesn't overlap */
main, body > h1, body > h2, body > p, body > form, body > ul, body > hr {
    margin-top: 110px;
}



/* ===== Contact page sections (new) ===== */
.main-content { padding: 40px 0 80px; }

.page-header {
    padding: 0px 120px 40px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 220px;
}

.page-title {
    margin: auto;
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #222222;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
    justify-content: center;
    text-align: center;
}

.page-subtitle { 
    color: #444444; 
    
    text-align: center;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin: 2.2rem 0 1.2rem;
    color: #222222;
    position: relative;
    
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 4px;
    background: linear-gradient(45deg, #e0e0e0, #ffffff, #e0e0e0);
    border-radius: 3px;
}

/* Contact grid */
.contact-section {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-info, .contact-form {
    background: linear-gradient(135deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.02) 100%);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 22px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    padding: 1.6rem;
    backdrop-filter: blur(6px);
}

.contact-info h3, .contact-form h3 { 
    margin-bottom: 1rem; 
    color: #333333; 
    text-shadow: 0 0 2px rgba(0,0,0,0.1);
}

.contact-item { 
    display: grid; 
    grid-template-columns: 44px 1fr; 
    gap: 0.8rem; 
    padding: 0.9rem 0; 
    border-bottom: 1px solid rgba(0,0,0,0.06); 
}
.contact-item:last-child { border-bottom: 0; }
.contact-icon { 
    font-size: 1.6rem; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    filter: drop-shadow(0 0 2px rgba(0,0,0,0.1));
}
.contact-details h4 { 
    margin-bottom: 0.3rem; 
    color: #333333; 
    text-shadow: 0 0 1px rgba(0,0,0,0.05);
}
.contact-details p { 
    color: #555555; 
    text-shadow: 0 0 1px rgba(0,0,0,0.05);
}

/* Form */
.form-group { 
    display: grid; 
    gap: 0.4rem; 
    margin-bottom: 1rem; 
}
.form-group label { 
    color: #333333; 
    font-weight: 600; 
    text-shadow: 0 0 1px rgba(0,0,0,0.05);
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.12);
    background: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0,0,0,0.2);
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.8),
        0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}
.form-group textarea { 
    min-height: 120px; 
    resize: vertical; 
}

.submit-btn {
    margin: auto;
    display: inline-block;
    background: linear-gradient(45deg, #222222, #444444, #222222);
    background-size: 300% 300%;
    color: #ffffff;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.8);
    margin-top: 8px;
    transition: all 0.3s ease;
    animation: button-shine 2.5s linear infinite;
}
.submit-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 15px 35px rgba(0,0,0,0.15), inset 0 2px 0 rgba(255,255,255,0.9);
}

@keyframes button-shine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Map */

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

        

        /* Enhanced map section */
        .map-section {
            margin: 1rem 0;
            position: relative;
        }

        .map-section::before {
            content: '🗺️';
            position: absolute;
            right: -20px;
            top: -30px;
            font-size: 3rem;
            opacity: 0.6;
            filter: drop-shadow(0 0 8px rgba(0,0,0,0.2));
            animation: float 3s ease-in-out infinite;
            z-index: 1;
        }

        .section-title {
            text-align: center;
            font-size: 2rem;
            margin: 2.2rem 0 1.2rem;
            color: #222222;
            position: relative;
            padding: 16px 32px;
            background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,240,240,0.7));
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 20px;
            box-shadow: 0 12px 30px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
            backdrop-filter: blur(10px);
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            font-weight: 700;
        }

        .section-title::before {
            
            position: absolute;
            left: -50px;
            top: 50%;
            transform: translateY(-50%) rotate(-15deg);
            font-size: 1.8rem;
            opacity: 0.8;
            filter: drop-shadow(0 0 6px rgba(0,0,0,0.2));
            animation: bounce 2.5s ease infinite;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background: linear-gradient(45deg, #e0e0e0, #ffffff, #e0e0e0);
            border-radius: 3px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .map-container {
            position: relative;
            z-index: 2;
        }

        .map-placeholder {
            position: relative;
            background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(240,240,240,0.8));
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 240px;
            overflow: hidden;
            box-shadow: 0 16px 40px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
            backdrop-filter: blur(12px);
            transition: all 0.4s ease;
            min-height: 400px;
        }

        .map-placeholder:hover {
            transform: translateY(-4px);
            box-shadow: 0 24px 50px rgba(0,0,0,0.16), inset 0 2px 0 rgba(255,255,255,0.95);
        }

        .map-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 24px;
            transition: transform 0.4s ease;
            filter: brightness(1.05) saturate(1.1);
        }

        .map-placeholder:hover img {
            transform: scale(1.02);
        }

        .map-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                135deg,
                rgba(255,255,255,0.1) 0%,
                transparent 30%,
                transparent 70%,
                rgba(0,0,0,0.1) 100%
            );
            border-radius: 24px;
            z-index: 1;
        }

        .map-info {
            position: absolute;
            bottom: 80px;
            left: 124px;
            right: 750px;
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 18px;
            padding: 10px 24px;
            box-shadow: 0 12px 32px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.9);
            z-index: 3;
            transition: all 0.3s ease;
            text-align: center;
        }

        .map-info:hover {
            background: rgba(255,255,255,0.98);
            transform: translateY(-2px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.2), inset 0 2px 0 rgba(255,255,255,0.95);
        }

        .location-icon {
            font-size: 1.4rem;
            margin-right: 8px;
            filter: drop-shadow(0 0 3px rgba(0,0,0,0.2));
            animation: pulse 2s infinite;
        }

        .location-name {
            color: #333333;
            font-size: 0.95rem;
            margin-bottom: 4px;
            text-shadow: 0 0 2px rgba(0,0,0,0.1);
        }

        .shop-name {
            color: #222222;
            font-weight: 700;
            font-size: 1.1rem;
            margin: 6px 0 12px;
            text-shadow: 0 0 3px rgba(0,0,0,0.15);
        }

        .map-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(45deg, #222222, #444444, #222222);
            background-size: 300% 300%;
            color: #ffffff;
            text-decoration: none;
            padding: 12px 20px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 8px 20px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.2);
            transition: all 0.3s ease;
            animation: button-shine 3s linear infinite;
            letter-spacing: 0.02em;
        }

        .map-link::before {
            content: '🧭';
            font-size: 1rem;
            filter: drop-shadow(0 0 2px rgba(255,255,255,0.3));
        }

        .map-link:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 12px 28px rgba(0,0,0,0.25), inset 0 2px 0 rgba(255,255,255,0.3);
            background-position: 100% 50%;
        }

        .map-link:active {
            transform: translateY(0) scale(0.98);
        }

        /* Decorative elements */
        .map-section::after {
            content: '💎';
            position: absolute;
            right: 20px;
            top: 10px;
            font-size: 1.2rem;
            opacity: 0.4;
            filter: brightness(0) saturate(100%) invert(1) drop-shadow(0 0 4px rgba(255,255,255,0.8));
            animation: rotate 8s linear infinite;
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(-50%) rotate(-15deg) scale(1); }
            50% { transform: translateY(-60%) rotate(-15deg) scale(1.1); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        @keyframes button-shine {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Responsive design */
        @media (max-width: 992px) {
            .map-placeholder {
                min-height: 350px;
            }
            
            .section-title::before {
                left: -35px;
                font-size: 1.4rem;
            }

            .map-section::before {
                right: -15px;
                top: -25px;
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {
            .map-placeholder {
                min-height: 320px;
                border-radius: 20px;
            }

            .map-placeholder img {
                border-radius: 20px;
            }

            .map-overlay {
                border-radius: 20px;
            }

            .map-info {
                bottom: 16px;
                left: 16px;
                right: 16px;
                padding: 16px 20px;
                border-radius: 16px;
            }

            .section-title {
                font-size: 1.8rem;
                padding: 12px 24px;
                border-radius: 16px;
            }
        }

        @media (max-width: 480px) {
            .map-placeholder {
                min-height: 280px;
                border-radius: 18px;
            }

            .map-info {
                bottom: 12px;
                left: 12px;
                right: 12px;
                padding: 14px 16px;
                border-radius: 14px;
            }

            .section-title {
                font-size: 1.6rem;
                padding: 10px 20px;
            }

            .section-title::before {
                display: none;
            }

            .map-section::before,
            .map-section::after {
                display: none;
            }

            .map-link {
                padding: 10px 16px;
                font-size: 0.85rem;
            }
        }

/* Hours */
.hours-section { margin-top: 2.4rem; }
.hours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.hours-card { background: linear-gradient(135deg, rgba(0,0,0,0.05), rgba(0,0,0,0.02)); border: 1px solid rgba(0,0,0,0.05); border-radius: 18px; padding: 1.2rem; box-shadow: 0 10px 22px rgba(0,0,0,0.08); }
.hours-card h4 { margin-bottom: 0.8rem; color: #333333; }
.hours-list { list-style: none; display: grid; gap: 0.6rem; }
.hours-list li { display: flex; justify-content: space-between; color: #555555; }

/* Enhanced map section title */
.map-section .section-title {
    position: relative;
    margin-bottom: 2rem;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(0,0,0,0.05), rgba(0,0,0,0.02));
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    backdrop-filter: blur(6px);
}

.map-section .section-title::before {
    
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(-10deg);
    font-size: 1.4rem;
    opacity: 0.8;
    filter: drop-shadow(0 0 4px rgba(0,0,0,0.2));
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(-50%) rotate(-10deg); }
    50% { transform: translateY(-60%) rotate(-10deg); }
}

/* Responsive */
@media (max-width: 992px) {
    .contact-section { grid-template-columns: 1fr; }
    .map-placeholder {
        height: 280px;
    }
    .map-section::after {
        right: 10px;
        top: -10px;
    }
    .map-section .section-title::before {
        left: -30px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .map-placeholder {
        height: 250px;
    }
    .map-placeholder > div {
        padding: 16px;
    }
    .map-placeholder a {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-title { font-size: 2.2rem; }
    .map-placeholder {
        height: 220px;
    }
    .map-placeholder > div {
        padding: 12px;
    }
    .map-section .section-title::before {
        display: none;
    }
    .map-section::after {
        display: none;
    }
}


