@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --primary-gold: #C8A75D;
    --dark-gold: #B38E3C;
    --ivory-white: #FAF8F5;
    --soft-cream: #F5F0E8;
    --charcoal: #2F2F2F;
    --light-gray: #F8F8F8;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--ivory-white);
    color: var(--charcoal);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-gold);
}

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

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-gold { color: var(--primary-gold); }

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--dark-gold);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
}

.btn-outline:hover {
    background-color: var(--primary-gold);
    color: #fff;
}

/* Header */
.site-header {
    background-color: #fff;
    border-bottom: 1px solid var(--soft-cream);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.grid-2-col {
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
    .nav-links { display: none; /* simple mobile hide for now */ }
    .grid-2-col { grid-template-columns: 1fr; gap: 2rem; }
}

/* Product Cards */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--soft-cream);
    padding: 1rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: inherit;
    border-radius: 8px; /* Luxury touch */
}

.product-link {
    display: block;
    flex-grow: 1;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08); /* Subtle luxury shadow */
}

.product-card .image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
    aspect-ratio: 1/1;
    background-color: #ffffff; /* Clean white background */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.no-image-placeholder {
    width: 100%;
    aspect-ratio: 1/1;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Prevent cropping for jewelry */
    transition: transform 0.5s ease;
}

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

.product-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--charcoal);
}

.product-card .btn-outline {
    width: 100%;
    margin-top: auto; /* Aligns to bottom */
    transition: all 0.3s ease;
}

.product-card:hover .btn-outline {
    background-color: var(--primary-gold);
    color: #fff;
}

/* Sections */
.page-header {
    background-color: var(--soft-cream);
    padding: 4rem 1.5rem;
    text-align: center;
}

.page-header h1 {
    color: var(--primary-gold);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--charcoal);
    max-width: 600px;
    margin: 1rem auto 0;
    font-size: 1.1rem;
}
.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--primary-gold);
    margin: 1rem auto 0;
}

/* Swiper overrides */
.swiper-button-next, .swiper-button-prev {
    color: var(--primary-gold) !important;
}
.swiper-pagination-bullet-active {
    background: var(--primary-gold) !important;
}

/* Footer */
.site-footer {
    background-color: var(--charcoal);
    color: var(--ivory-white);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-title {
    color: var(--primary-gold);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* WhatsApp Button Fixed */
.whatsapp-fixed {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s;
}
.whatsapp-fixed:hover {
    transform: scale(1.1);
    color: white;
}

/* Cart Toggle & Badge */
.cart-toggle {
    transition: transform 0.2s ease, color 0.3s ease;
}
.cart-toggle:hover {
    transform: scale(1.08);
}
.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--primary-gold);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

/* Dashboard Helpers */
.dashboard-table select:focus {
    border-color: var(--dark-gold) !important;
    box-shadow: 0 0 5px rgba(200, 167, 93, 0.4);
}


