/* ============================================================
   THEME VARIABLES
   ============================================================ */
:root {
    --color-primary:   #000;
    --color-secondary: #957547;
    --color-secondary-alpha: #957547d9;
    --color-white:     #fff;
    --color-black:     #000;
    --gradient-main: linear-gradient(
        180deg,
        rgba(195, 166, 134, 0.93) 6%,
        rgba(195, 166, 134, 1)    17%,
        rgba(177, 148, 115, 1)    74%
    );
}

/* ============================================================
   BASE
   ============================================================ */
body {
    background-color: var(--color-white) !important;
}

/* ============================================================
   HEADER
   ============================================================ */
header.store-header {
    background-color: var(--color-secondary-alpha) !important;
    color: var(--color-white);
}

header.store-header div#mainnav {
    background-color: transparent !important;
}
.sub-menu.w-56{
  background-color: #a58a62 !important;
}
header.store-header .header-btn__icon,
.mburger.mburger--collapse i.sicon-menu {
    background-color: var(--color-primary) !important;
    color: var(--color-white) !important;
    border: 0 !important;
}

header.store-header input.s-search-input {
    background-color: var(--color-primary) !important;
}

.mburger.mburger--collapse i.sicon-menu {
    padding: 7px;
    border-radius: 50px;
}

b.s-cart-summary-total {
    color: var(--color-white) !important;
}

#mainnav .sicon-menu {
    display: inline-block;
    width: inherit;
}

.navbar-brand img {
    max-height: 5rem !important;
}

/* Fixed header bar */
.main-nav-container.fixed-header .inner {
    background: var(--color-secondary);
    padding: 6px;
    border-radius: 0 0 25px 25px;
}

/* Desktop header (homepage only) */
@media (min-width: 1024px) {
    .index header.store-header .main-menu li > a {
        color: var(--color-white) !important;
    }
}

/* Mobile header */
@media (max-width: 992px) {
    header.store-header {
        background-color: var(--color-secondary) !important;
    }

    .mm-ocd-opened .mobile-menu {
        background: var(--color-primary) !important;
        color: var(--color-white);
    }
}

/* ============================================================
   SLIDER
   ============================================================ */
section.s-block.s-block--photos-slider {
    margin-top: 0;
}

section.s-block.s-block--photos-slider .swiper-slide {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

section.s-block.s-block--photos-slider .swiper-slide,
section.s-block.s-block--photos-slider .swiper-slide img {
    border-radius: 0 !important;
}

section.s-block.s-block--photos-slider .swiper.s-slider-container {
    padding: 0 !important;
}

/* ============================================================
   BANNERS
   ============================================================ */
section.s-block.s-block--fixed-banner.wide-placeholder > .container {
    padding: 0 !important;
    margin: 0 !important;
    max-width: unset !important;
}

.banner--fixed img {
    border-radius: 0 !important;
}

/* ============================================================
   SECTION TITLES — Animated Gradient
   ============================================================ */
.s-block__title {
    display: flex;
    justify-content: center;
}

.s-slider-block__title-right {
    width: 60% !important;
    display: flex;
    justify-content: flex-end;
    padding-left: 0 !important;
}

.s-slider-block__title h2 {
    width: 210px !important;
    padding-left: 0;
    text-align: center !important;
}

h2 {
    font-size: 2rem !important;
    font-weight: 800 !important;
    background: linear-gradient(90deg, #8b5e3c, #c8a46e, #e8c99a, #000);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 3s ease infinite;
}

@keyframes gradientMove {
    0%   { background-position: 0%; }
    50%  { background-position: 100%; }
    100% { background-position: 0%; }
}

@media (max-width: 576px) {
    h2 {
        font-size: 20px !important;
    }

    .s-slider-block__title-right {
        width: 100% !important;
        justify-content: center;
    }
}

/* ============================================================
   CATEGORIES SECTION (section 2)
   ============================================================ */
section:nth-of-type(2) .grid {
    width: 40%;
    margin-inline: auto;
}

section:nth-of-type(2) .grid a {
    height: 236px !important;
    background: #fefcfd !important;
}

.banner-entry h3.text-with-border {
    border-width: 0 !important;
}

@media (max-width: 768px) {
    section:nth-of-type(2) .grid {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .banner-entry h3.text-with-border span,
    .banner-entry p {
        background: #957547de;
        border-radius: 30px;
    }
}

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.s-product-card-entry {
    box-shadow: rgba(0, 0, 0, 0.16) 0 1px 4px;
}

.s-product-card-entry * {
    justify-content: center;
    text-align: center;
}

.s-products-slider-card.swiper-slide {
    padding-block: 7px;
}

.s-product-card-image {
    background-color: transparent;
}

.s-product-card-image-contain {
    object-fit: cover !important;
}

.s-slider-nav-arrow {
    background-color: var(--color-primary) !important;
}

.s-slider-nav-arrow svg {
    fill: var(--color-white) !important;
}

/* ============================================================
   ADD TO CART BUTTON
   ============================================================ */
button[product-status="sale"] {
    --btn-bg:     #1e170e;
    --btn-accent: #957547;
    --btn-size:   16px;

    padding: 0.3em 1em;
    font-size: var(--btn-size);
    background-color: transparent;
    border: calc(var(--btn-size) / 10) solid var(--btn-accent);
    border-radius: 0.5em;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: 300ms cubic-bezier(0.83, 0, 0.17, 1);
}

button[product-status="sale"] > .s-button-text {
    font-weight: 400;
    color: var(--btn-accent);
    position: relative;
    z-index: 1;
    transition: color 700ms cubic-bezier(0.83, 0, 0.17, 1);
}

button[product-status="sale"]::before,
button[product-status="sale"]::after {
    content: "";
    width: 150%;
    aspect-ratio: 1 / 1;
    scale: 0;
    background-color: var(--btn-accent);
    border-radius: 50%;
    position: absolute;
    translate: -50% -50%;
    transition: 1000ms cubic-bezier(0.76, 0, 0.24, 1);
}

button[product-status="sale"]::before { top: 0;    left: 0; }
button[product-status="sale"]::after  { top: 100%; left: 100%; }

button[product-status="sale"]:hover,
custom-salla-product-card:hover button[product-status="sale"] {
    & > .s-button-text { color: var(--btn-bg); }
    &::before, &::after { scale: 1; }
}

button[product-status="sale"]:active {
    scale: 0.98;
    filter: brightness(0.9);
}

/* ============================================================
   BANNERS GRID SECTION (section 4)
   ============================================================ */
section:nth-of-type(4) .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 1fr 1fr;
    height: 600px !important;
}

section:nth-of-type(4) .banner-entry {
    height: 100%;
}

section:nth-of-type(4) .banner-entry:nth-child(1) {
    height: 95%;
    grid-column: 1;
    grid-row: 1 / 4;
}

section:nth-of-type(4) .banner-entry:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

section:nth-of-type(4) .banner-entry:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
}

section:nth-of-type(4) .lazy__bg {
    background-size: cover !important;
    background-position: center !important;
}

@media (max-width: 768px) {
    section:nth-of-type(4) .grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        height: auto !important;
    }

    section:nth-of-type(4) .banner-entry:nth-child(1),
    section:nth-of-type(4) .banner-entry:nth-child(2),
    section:nth-of-type(4) .banner-entry:nth-child(3) {
        grid-column: 1 !important;
        grid-row: auto !important;
        height: 280px;
    }
}





/** footer **/ 

.store-footer__inner {
    background: linear-gradient(180deg,rgba(149, 117, 71, 1) 0%, rgba(30, 23, 14, 1) 100%);
    color: #fff !important;
}

@media (max-width: 992px) {
    .store-footer__inner * {
        justify-content: center;
        text-align: center;
    }
}

footer .s-social-list {
    margin-top: 20px !important;
}

footer .s-social-list a {
    transition: all 0.3s ease-in-out;
    border:none;
}
footer .s-social-list a:hover {
    transform: translateY(-10px);
}

footer a[href*=instagram] {
    background: linear-gradient(45deg, #f09433 0, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
border:none
}
footer a[href="https://www.tiktok.com/@qz_aa7"] {
   background: #000 !important;
    color:white;
}
footer a[href*=snapchat] {
    background:yellow;
    color:var(--black-color);

}