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

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #fbfbfb;
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --accent-gradient: linear-gradient(135deg, #0C2C55 0%, #1a4a8e 100%);
    --accent-hover: linear-gradient(135deg, #0a254a 0%, #153d7a 100%);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --border-soft: rgba(0, 0, 0, 0.05);
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
}

/* Navigation */
nav.main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-soft);
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-decoration: none;
    color: var(--text-main);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    opacity: 0.7;
}

.nav-links a:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    padding: 8rem 4rem 4rem;
    text-align: center;
    background: var(--bg-secondary);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Product Grid */
main {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}

.product-card {
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.product-image-wrapper {
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 3/4;
    background: #f0f0f0;
    margin-bottom: 1.5rem;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-info {
    text-align: center;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 400;
}

.product-info p {
    color: var(--text-muted);
    font-weight: 300;
}

.product-card .btn-quick-view {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -20%);
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    opacity: 0;
    transition: var(--transition);
    box-shadow: var(--shadow-premium);
    text-decoration: none;
    color: var(--text-main);
}

.product-card:hover .btn-quick-view {
    opacity: 1;
    transform: translate(-50%, -50%);
}

/* Product Detail Page Specific */
.product-detail-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
    align-items: start;
}

.product-gallery img {
    width: 100%;
    border-radius: 4px;
    box-shadow: var(--shadow-premium);
}

.product-meta-header h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.product-meta-header .price {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.description-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 3rem;
}

/* Premium Button Styling */
.wishlize-visualise-btn {
    background: var(--accent-gradient);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    border: none;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 20px rgba(12, 44, 85, 0.2);
    margin-bottom: 1rem;
}

.wishlize-visualise-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(12, 44, 85, 0.3);
}

.btn-secondary-outline {
    background: transparent;
    color: var(--text-main);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    border: 1px solid #e0e0e0;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-secondary-outline:hover {
    border-color: var(--text-main);
}

/* Footer */
footer {
    padding: 6rem 4rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-soft);
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-credits {
    color: var(--text-muted);
    font-size: 0.9rem;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    nav.main-nav {
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero {
        padding: 6rem 2rem 3rem;
    }
}