/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 21 2026 | 14:59:48 */
/* ========== LUXURY BASE BACKGROUND ========== */
body {
    background-color: #f8f6f2;
}

/* Section spacing */
.elementor-section {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Premium container width breathing */
.container,
.elementor-container {
    max-width: 1200px;
}

/* ========== GOLD ACCENT SYSTEM ========== */
:root {
    --lux-gold: #c8a96a;
    --lux-dark: #111111;
}

/* Buttons */
.button,
.elementor-button {
    background: var(--lux-gold);
    border-radius: 10px;
    padding: 12px 26px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.button:hover,
.elementor-button:hover {
    background: #b89555;
    transform: translateY(-2px);
}

/* ========== PRODUCT CARD REFINEMENT ========== */
.woocommerce ul.products li.product {
    background: #ffffff;
    border-radius: 18px;
    padding: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* Image polish */
.woocommerce ul.products li.product img {
    border-radius: 12px;
    transition: transform 0.5s ease;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.06);
}

/* Product titles */
.woocommerce ul.products li.product h2 {
    margin-top: 15px;
    margin-bottom: 8px;
}

/* Price highlight */
.woocommerce ul.products li.product .price {
    color: var(--lux-gold);
    font-weight: 500;
}

/* ========== SECTION DIVIDER LINE ========== */
.section-divider {
    height: 1px;
    width: 80px;
    background: var(--lux-gold);
    margin: 40px auto;
}

/* ========== FOOTER REFINEMENT ========== */
.site-footer {
    background: var(--lux-dark);
    padding-top: 80px;
    padding-bottom: 60px;
}

.site-footer::before {
    content: "";
    display: block;
    height: 3px;
    width: 100%;
    background: var(--lux-gold);
    margin-bottom: 40px;
}

/* ========== HEADER SMOOTH TRANSITION ========== */
.site-header {
    transition: all 0.4s ease;
}

/* Shrink state */
.site-header.scrolled {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(6px);
}