/* ===== Root Colors ===== */
:root {
    --burgundy: #500106;
    --burgundy-dark: #3d0004;
    --nude: #E8D9C1;
    --rose: #D8A7B1;
    --black: #1B1B1B;
    --white: #ffffff;
}

/* ===== Global Reset ===== */
body {
    background-color: var(--nude);
}

.hero,
.main-hero,
.first-section,
.home-section {
    background-color: var(--burgundy) !important;
    color: #fff;
}
.your-section-class {
    background: #500106 !important;
}
/* ===== Smooth Transitions ===== */
* {
    transition: all 0.3s ease-in-out;
}

/* ===== HEADER ONLY (BURGUNDY) ===== */
.navbar,
.header,
.header__inner {
    background: linear-gradient(135deg, #500106, #3d0004) !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* ===== Logo Background (Highlight Burgundy) ===== */
.navbar-brand {
    background-color: #500106;
    padding: 6px 14px;
    border-radius: 12px;
}

/* ===== Icons Default (Nude Style) ===== */
.navbar .sicon,
.navbar a {
    color: #500106 !important;
}

/* ===== Main Action Button (Cart / Account) ===== */
.s-header-actions .btn,
.s-header-actions button {
    background-color: #500106;
    color: #fff;
    border-radius: 50px;
    padding: 8px 14px;
}

/* ===== Hover Effect ===== */
.navbar a:hover,
.sicon:hover {
    color: #8a0a12 !important;
}

/* ===== Search Bar ===== */
.s-search-input {
    background-color: #f3e7d3;
    border-radius: 30px;
    border: 1px solid #d6c2a8;
}

.s-search-input:focus {
    border-color: #500106;
    box-shadow: 0 0 0 2px rgba(80,1,6,0.1);
}





/* ===== Optional Soft Shadow ===== */
.header {
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

/* ===== Logo ===== */
.navbar-brand img {
    height: 70px;
    animation: logoPulse 3s infinite ease-in-out;
}

@keyframes logoPulse {
    0% { transform: scale(1); }
    50% { transform: scale(0.94); }
    100% { transform: scale(1); }
}

/* ===== Buttons ===== */
.s-button-btn,
button,
.s-price-range-number-input {
    border-radius: 50px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: var(--white);
    border: none;
    padding: 10px 18px;
    font-weight: 600;
    box-shadow: 0 6px 15px rgba(80,1,6,0.2);
}

.s-button-btn:hover,
button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(80,1,6,0.3);
}

/* ===== Outline Button ===== */
.s-button-primary-outline {
    border: 2px solid var(--burgundy);
    color: var(--burgundy);
    background: transparent;
}

.s-button-primary-outline:hover {
    background: var(--burgundy);
    color: #fff;
}

/* ===== Icons ===== */
[class^="sicon-"]:not(.s-button-text),
span.s-button-text [class*="sicon-"] {
    color: var(--burgundy);
}

/* ===== Product Cards ===== */
.s-product-card-entry {
    border-radius: 20px;
    border: 1px solid #eee;
    background-color: var(--white);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.s-product-card-entry:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.s-product-card-content {
    text-align: center;
    padding: 15px;
}

.s-product-card-sale-price h4 {
    color: var(--burgundy);
    font-weight: bold;
}

/* ===== Wishlist Button ===== */
.s-product-card-wishlist-btn button {
    background-color: var(--burgundy);
    border-radius: 30px 10px;
    color: var(--white);
}

/* ===== Tabs ===== */
.s-block--tabs-produtcs .tab-trigger.is-active button {
    color: var(--burgundy);
    font-weight: bold;
    border-bottom: 2px solid var(--burgundy);
}

/* ===== Menu Dropdown ===== */
.sub-menu ul {
    background-color: var(--nude);
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* ===== Cart ===== */
.s-cart-summary-total {
    color: var(--burgundy);
    font-weight: bold;
}

/* ===== Footer ===== */
.store-footer {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    color: var(--white);
    padding-top: 30px;
}

.store-footer__inner {
    background: transparent;
}

.store-footer a {
    color: var(--rose);
}

.store-footer a:hover {
    color: #fff;
}

/* ===== Utility Sections ===== */
.bg-inherit {
    background-color: var(--nude);
    color: var(--black);
    border-radius: 30px;
    padding: 20px;
}

/* ===== Images ===== */
img {
    max-width: 100%;
    border-radius: 12px;
}

.contain {
    object-fit: contain;
}

/* ===== Scrollbar (Luxury Touch) ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-thumb {
    background: var(--burgundy);
    border-radius: 10px;
}

/* ===== Animation Fade In ===== */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}