* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body 
{
    font-family: 'Poppins', sans-serif;
    color: #333333;
    background-color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

html 
{
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

/* Navigation */
/* nav 
{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
    transition: all 0.3s ease;
}*/

nav 
{
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff;
    z-index: 1000;
    border-bottom: 1px solid #eee;
}

.nav-container 
{
    max-width: 1200px;     
    margin: 0 auto;         
    padding: 0 15px;        
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav.scrolled 
{
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/*.logo img {
    height: 50px;
    width: auto;
}*/

.logo img 
{
    height: 60px;   
    width: 140px;
}

/*.nav-menu 
{
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a 
{
    text-decoration: none;
    color: #333333;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}*/

.nav-menu 
{
    display: flex;
    list-style: none;
    gap: 2.8rem;
}

.nav-menu a 
{
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}


/* .nav-menu a:hover 
{
    color: #2D5A4E;
}

.nav-menu a::after 
{
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2D5A4E;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after 
{
    width: 100%;
}*/
        
.navbar-section
{
    background-color: #8B1A1A;
}
.nav-icons 
{
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-icons a 
{
    color: #333333;
    font-size: 18px;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-icons a:hover 
{
    color: #2D5A4E;
}

.hamburger 
{
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span 
{
    width: 25px;
    height: 3px;
    background: #333333;
    margin: 5px 0;
    transition: 0.3s;
}

/* MOBILE MENU */
@media (max-width: 768px) {

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #8B1A1A;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 0;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
        cursor: pointer;
    }

    .hamburger span {
        background: #ffffff;
    }
}


        /* Hero Section */
        .hero {
            margin-top: 80px;
            min-height: 90vh;
            background: linear-gradient(135deg, #FFFFFF 0%, #F9F9F9 100%);
            display: flex;
            align-items: center;
            padding: 3rem 2rem;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }

        .hero-text h1 {
            font-family: 'Playfair Display', serif;
            font-size: 52px;
            font-weight: 700;
            color: #A01010;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-text p {
            font-size: 16px;
            color: #666666;
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 12px 32px;
            border: none;
            border-radius: 0;
            cursor: pointer;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: #8B1A1A;
            color: #FFFFFF;
        }

        .btn-primary:hover {
            background: #8B1A1A;
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(45, 90, 78, 0.2);
        }

        .btn-secondary {
            background: transparent;
            color: #8B1A1A;
            border: 2px solid #8B1A1A;
        }

        .btn-secondary:hover {
            background: #8B1A1A;
            color: #FFFFFF;
        }

        .hero-image {
            position: relative;
            height: 590px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image img {
            width: 115%;
            height: 115%;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .floating-icon {
            position: absolute;
            font-size: 40px;
            color: #D4AF37;
            opacity: 0.8;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @media (max-width: 768px) {
    .hero {
        margin-top: 70px;
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 28px;
        margin-bottom: 1rem;
    }

    .hero-text p {
        font-size: 14px;
        margin-bottom: 1.5rem;
    }

    .hero-image {
        height: 420px;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
       
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

        /* Features Section */
        .features {
            padding: 5rem 2rem;
            background: #FFFFFF;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 40px;
            text-align: center;
            margin-bottom: 3rem;
            color: #8B1A1A;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .feature-card {
            text-align: center;
            padding: 2rem;
            border: 1px solid #8B1A1A;
            background: #FFFFFF;
            transition: all 0.3s ease;
            border-radius: 8px;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            border-color: #8B1A1A;
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: #F5F5F5;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 32px;
            color: #8B1A1A;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon {
            background: #8B1A1A;
            color: #FFFFFF;
        }

        .feature-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            margin-bottom: 1rem;
            color: #8B1A1A;
        }

        .feature-card p {
            font-size: 14px;
            color: #666666;
            line-height: 1.8;
        }

        /* About Section */
        .about {
            padding: 5rem 2rem;
            background: #F9F9F9;
            margin-top: 3rem;
        }

        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-image {
            width: 100%;
            height: 500px;
            border-radius: 10px;
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 36px;
            margin-bottom: 1.5rem;
            color: #8B1A1A;
        }

        .about-text p {
            font-size: 15px;
            color: #666666;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }

        @media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        height: auto;              /* 🔥 KEY FIX */
        max-height: 320px;
    }

    .about-image img {
        height: auto;              /* 🔥 KEY FIX */
        object-fit: contain;       /* 🔥 show full shop */
        border-radius: 8px;
    }

    .about-text h2 {
        font-size: 24px;
        text-align: center;
    }

    .about-text p {
        font-size: 14px;
        text-align: justify;
    }
}


        /* Our Gallery Store Section */
        .store-gallery {
            padding: 5rem 2rem;
            background: #FFFFFF;
        }

        .store-gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .store-gallery-subtitle {
            font-size: 15px;
            color: #666666;
            margin-bottom: 3rem;
        }

        .store-gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .store-gallery-item {
            overflow: hidden;
            border-radius: 10px;
            position: relative;
        }

        .store-gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .store-gallery-item:hover img {
            transform: scale(1.08);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .store-gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .store-gallery-grid {
                grid-template-columns: 1fr;
            }
        }


        .why-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }

        .why-item {
            display: flex;
            gap: 1rem;
            align-items: flex-start;
        }

        .why-item i {
            color: #2D5A4E;
            font-size: 20px;
            margin-top: 2px;
        }

        .why-item p {
            margin: 0;
        }

        /* Products Section */
        .products {
            padding: 5rem 2rem;
            background: #FFFFFF;
            margin-top: 1rem;
        }

        .products-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .filter-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 8px 20px;
            border: 1px solid #8B1A1A;
            background: transparent;
            color: #8B1A1A;
            cursor: pointer;
            font-size: 13px;
            font-weight: 600;
            transition: all 0.3s ease;
            border-radius: 4px;
        }

        .filter-btn.active {
            background: #8B1A1A;
            color: #FFFFFF;
        }

        .filter-btn:hover {
            background: #8B1A1A;
            color: #FFFFFF;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .product-card {
            background: #FFFFFF;
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        

        .product-card:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }

        .product-image {
            width: 100%;
            height: 300px;
            overflow: hidden;
            background: #F5F5F5;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-info {
            padding: 1.5rem;
            text-align: center;
        }

        .product-name {
            font-family: 'Playfair Display', serif;
            font-size: 16px;
            margin-bottom: 0.5rem;
            color: #1A3A3A;
        }

        .product-price {
            color: #2D5A4E;
            font-weight: 600;
            font-size: 14px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .product-card:hover .product-price {
            opacity: 1;
        }

        .view-all {
            text-align: center;
            margin-top: 2rem;
        }

        .view-all a {
            color: #2D5A4E;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            position: relative;
            letter-spacing: 1px;
        }

        .view-all a::after {
            content: '→';
            margin-left: 0.5rem;
            transition: margin 0.3s ease;
        }

        .view-all a:hover::after {
            margin-left: 1rem;
        }

        @media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.9rem;
    }

    .product-image {
        height: 190px;
    }

    .product-image img {
        object-fit: contain;  /* shows full jewellery */
        padding: 10px;
        
    }

    .product-card {
        border-radius: 12px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }

    .filter-buttons {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

        /* Gallery Section */
        .gallery {
            padding: 5rem 2rem;
            background: #FFFFFF;
            margin-top: 3rem;
        }

        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .gallery-item {
            position: relative;
            height: 280px;
            overflow: hidden;
            border-radius: 8px;
            cursor: pointer;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(45, 90, 78, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-text {
            color: #FFFFFF;
            text-align: center;
            font-size: 14px;
        }

        /* Google Map Section */
.map-section {
    padding: 5rem 2rem;
    background: #F9F9F9;
    margin-top: 3rem;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.map-subtitle {
    font-size: 15px;
    color: #666666;
    margin-bottom: 2rem;
}

.map-embed {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


       /* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: #F9F9F9;
    margin-top: 3rem;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
}

.contact-info {
    text-align: center;
    max-width: 500px;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 2rem;
    color: #8B1A1A;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 24px;
    color: #8B1A1A;
    width: 30px;
    flex-shrink: 0;
}

.contact-details p {
    font-size: 14px;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        width: 100%;
    }
}

        /* Footer */
        footer {
            background: #8B1A1A;
            color: #FFFFFF;
            padding: 3rem 2rem 1rem;
            margin-top: 3rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-column img
        {
            height: 120px;   /* matches luxury brand proportions */
            width: 140px;

        }

        .footer-column h4 {
            font-family: 'Playfair Display', serif;
            font-size: 18px;
            margin-bottom: 1rem;
            color: #D4AF37;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column ul li a {
            color: #CCCCCC;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s ease;
        }

        .footer-column ul li a:hover {
            color: #D4AF37;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #D4AF37;
            transition: all 0.3s ease;
            text-decoration: none !important;
            
        }

        .footer-social a:hover {
            background: #D4AF37;
            color: #1A3A3A;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            font-size: 13px;
            color: #AAAAAA;
        }

        

        .scroll-top {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 50px;
            height: 50px;
            background: #D4AF37;
            color: #FFFFFF;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .scroll-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: #D4AF37;
            transform: translateY(-5px);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content, .about-content, .contact-container {
                grid-template-columns: 1fr;
            }

            .features-grid, .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .process-line {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .hero-text h1 {
                font-size: 36px;
            }

            .section-title {
                font-size: 28px;
            }

            .features-grid, .testimonials-grid, .gallery-grid {
                grid-template-columns: 1fr;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero-buttons {
                flex-direction: column;
                
            }

             .hero-buttons .btn {
        width: 200px;          /* reduce width */
        height: 52px;          /* increase height */
        padding: 0;            /* reset padding */
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
    }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }
