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

:root {
    --color-primary: #000000;
    --color-secondary: #ffffff;
    --color-accent: #d4af37;
    /* Gold-ish */
    --color-text-main: #333333;
    --color-text-light: #666666;
    --color-bg-light: #f9f9f9;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--color-text-main);
    background-color: var(--color-secondary);
    padding-top: 80px;
    /* Navbar height */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1rem 2rem;
    height: 80px;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-link {
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: var(--color-primary) !important;
    margin: 0 10px;
}

.nav-icons .btn {
    border: none;
    background: transparent;
    font-size: 1.2rem;
}

/* Hero Section */
.hero-section {
    background: url('https://images.unsplash.com/photo-1541643600914-78b084683601?q=80&w=2600&auto=format&fit=crop') no-repeat center center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-bottom: 4rem;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.btn-luxury {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-luxury:hover {
    background-color: white;
    color: black;
}

.btn-luxury-dark {
    background-color: black;
    color: white;
    border: 1px solid black;
    padding: 10px 25px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 0;
    width: 100%;
}

.btn-luxury-dark:hover {
    background-color: #333;
    color: white;
}

/* Section Headers */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title span {
    display: inline-block;
    border-bottom: 2px solid var(--color-primary);
    /* Underline style */
    padding-bottom: 10px;
    text-transform: uppercase;
    font-size: 2rem;
    letter-spacing: 2px;
    color: #555;
    font-weight: 300;
}

/* Product Card */
.product-card {
    border: none;
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

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

.product-img-wrapper {
    background-color: #f4f4f4;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-img-wrapper img {
    max-height: 80%;
    max-width: 80%;
    transition: transform 0.5s ease;
}

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

.product-card-body {
    text-align: center;
    padding: 1.5rem 0;
}

.product-brand {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-text-light);
    letter-spacing: 1px;
    margin-bottom: 5px;
    display: block;
}

.product-title {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-primary);
}

/* Features Section */
.features-section {
    background-color: #f8f8f8;
    padding: 80px 0;
    margin-top: 60px;
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-text {
    font-size: 0.9rem;
    color: #666;
    max-width: 250px;
    margin: 0 auto;
}

/* Collections Banner */
.collections-banner {
    background: url('https://images.unsplash.com/photo-1615634260167-c8cdede054de?q=80&w=2600&auto=format&fit=crop') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin: 60px 0;
    position: relative;
}

/* Footer */
.footer {
    background-color: #111;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 0;
}

.footer h5 {
    color: white;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #999;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.75rem;
    color: #666;
}

/* --- PRODUCT DETAIL PAGE SPECIFIC --- */
.product-detail-hero img {
    max-height: 600px;
    object-fit: contain;
    width: 100%;
}

.pd-title {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.pd-price {
    font-family: 'Lato', sans-serif;
    color: var(--color-accent);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pd-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.pd-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

/* Variant Radio Style */
.variant-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
}

.variant-selector input[type="radio"] {
    display: none;
}

.variant-selector label {
    border: 1px solid #ccc;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s;
    min-width: 80px;
    text-align: center;
}

.variant-selector input[type="radio"]:checked+label {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}

.variant-selector label:hover {
    border-color: #999;
}

.variant-selector label.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f9f9f9;
}

/* Add to Cart Area */
.add-to-cart-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 2rem;
}

.btn-black-lg {
    background: black;
    color: white;
    border: none;
    padding: 15px 40px;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    flex-grow: 1;
}

.btn-black-lg:hover {
    background: #333;
    color: white;
}

.wishlist-link {
    color: var(--color-accent);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Trust Box */
.trust-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #666;
}

.trust-item {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item i {
    color: var(--color-accent);
}

/* Clean Sleek Button for Actions */
.btn-sleek-black {
    background: #000;
    color: #fff;
    padding: 12px 35px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    border: 1px solid #000;
    transition: all 0.3s ease;
    border-radius: 4px;
    /* Slight rounded corners */
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
}

.btn-sleek-black:hover {
    background: #fff;
    color: #000;
    border-color: #000;
}