/* --- Luxury Typography & Global Resets --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Montserrat:wght@300;400;500&display=swap');

body.luxury-boutique {
    background-color: #fcfcfc;
    color: #111111;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    letter-spacing: 0.05em;
}

h1, h2, h3, .product-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* --- Clean Navigation Layout --- */
.site-header {
    border-bottom: 1px solid #eaeaea;
    background: #ffffff;
    padding: 1.5rem 3rem;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

/* --- Full-Bleed Product Layout Blueprint --- */
/* Forces a massive split layout: 65% image showcase, 35% checkout detail */
.hikashop_product_page, 
.eshop-product-detail {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: calc(100vh - 100px);
}

/* The Left Side: Massive, Unrestricted Jewelry Images */
.hikashop_product_left_part,
.eshop-image-block {
    flex: 0 0 65%;
    max-width: 65%;
    background: #f7f7f7;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hikashop_product_left_part img,
.eshop-image-block img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain; /* Prevents compression distortion of gems */
    transition: transform 0.4s ease;
}

/* Immersive zoom detail on hover */
.hikashop_product_left_part img:hover {
    transform: scale(1.05);
}

/* The Right Side: Elegant, Minimalist Checkout Sidebar */
.hikashop_product_right_part,
.eshop-info-block {
    flex: 0 0 35%;
    max-width: 35%;
    padding: 4rem 3rem;
    box-sizing: border-box;
    background: #ffffff;
}

/* High-End Clean Buttons (No generic styles) */
.hikashop_cart_input_button,
.btn-add-to-cart {
    background-color: #111111;
    color: #ffffff;
    border: none;
    padding: 1.2rem 2.5rem;
    width: 100%;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hikashop_cart_input_button:hover,
.btn-add-to-cart:hover {
    background-color: #333333;
}

/* Responsive collapse for tablets and mobile viewports */
@media (max-width: 1024px) {
    .hikashop_product_left_part, .eshop-image-block,
    .hikashop_product_right_part, .eshop-info-block {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .site-header { padding: 1rem; }
}