:root {
    --primary-color: #d4af37;
    --secondary-color: #1a1a1a;
    --accent-color: #8b4513;
    --light-gold: #f4e4bc;
}

body {
    font-family: 'Poppins', sans-serif;
    padding-top: 80px;
    background-color: #fff;
}

/* Navigation */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--secondary-color) !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: calc(100vh - 80px);
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
                url('PJ%20Jewellery%20Pics/Sets/2.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Featured Categories */
.featured-categories {
    padding: 5rem 0;
    background-color: #fff;
}

.featured-categories h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.category-card {
    display: block;
    text-decoration: none;
    color: var(--secondary-color);
    transition: transform 0.3s;
    margin-bottom: 2rem;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.category-card h3 {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-top: 1.5rem;
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* Catalog Page */
.catalog-page {
    background-color: #f8f9fa;
}

.catalog-header {
    background-color: white;
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.catalog-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.catalog-grid {
    padding: 2rem 0 5rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Product Page */
.product-page {
    background-color: #f8f9fa;
}

.product-container {
    min-height: 80vh;
    padding: 2rem 0;
}

.product-image-container {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.product-image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-details {
    padding: 2rem;
}

.product-details h1 {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.breadcrumb {
    margin-bottom: 2rem;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

/* Modal */
.modal-content {
    border: none;
    border-radius: 15px;
}

.modal-header {
    border-bottom: none;
    padding: 1.5rem;
}

.modal-body {
    padding: 0 1.5rem 1.5rem;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    border-radius: 30px;
    padding: 0.6rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    color: white;
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 3rem 0;
}

.social-links {
    margin-bottom: 1.5rem;
}

.social-link {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--light-gold);
}

/* Responsive */
@media (max-width: 768px) {
    .btn-whatsapp,
    .product-details .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .product-details .btn-outline-secondary {
        margin-left: 0 !important;
    }
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .category-image img {
        height: 300px;
    }

    .product-image {
        height: 250px;
    }
}
