body {
  --sb-track-color: #fffefc;
  --sb-thumb-color: #b19c77;
  --sb-size: 5px;
}

body::-webkit-scrollbar {
  width: var(--sb-size)
}

body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 3px;
}

body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 3px;
  
}

@supports not selector(::-webkit-scrollbar) {
  body {
    scrollbar-color: var(--sb-thumb-color)
                     var(--sb-track-color);
  }
}
.main {
    background-color:#fffbf6;
}
.page-loader {
    position: fixed;
    inset: 0;
    background: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 999999;
    transition: opacity .5s ease;
}

.page-loader.hide {
    opacity: 0;
    pointer-events: none;
}

.loader-content p {
    margin-top: 15px;
    color: #af9a74;
    font-size: 16px;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255,255,255,.1);
    border-top: 4px solid #af9a74;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
.header-theme-bg-primary, .header {
    background: linear-gradient(90deg, rgba(175, 154, 116, 1) 0%, rgba(194, 175, 143, 1) 50%, rgba(212, 201, 176, 1) 100%);
}
ul.main-nav > li:hover > a {
    color: #5C4816;
    font-weight:bold;
}
ul.main-nav > li {
    transition: all 0.2s linear;
}
.top-level-link a {
    text-decoration: none;
    background-image: linear-gradient(#000, #000);
    background-size: 0% 2px;
    background-position: right bottom;
    background-repeat: no-repeat;
    transition: background-size 0.3s ease;
}

.top-level-link a:hover {
    background-size: 100% 2px;
}
.language-currency:hover, .account-btn:hover {
    background-color:white !important;
    border-color:#5C4816;
    color:#5C4816;
}
.language-btn:hover, .currency-btn:hover {
        color:#5C4816;
}
.section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align:center;
    gap: 15px;
    font-size: 2rem;
    font-weight: 700;
}

.section-title::before,
.section-title::after {
    content: "";
    width: 50px;
    height: 2px;
    background: currentColor;
}
.gallery-item {
    margin-bottom: 20px;
}
.gallery-item .content {
    border-radius: 18px;
    transition: all .3s ease;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .content {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,.15);
}
.gallery-item .content::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.15);
    opacity: 0;
    transition: .3s;
}

.gallery-item:hover .content::after {
    opacity: 1;
}
.gallery-item .content {
    overflow: hidden;
    border-radius: 18px;
    border: 2px solid transparent;
    transition: .3s;
}

.gallery-item:hover .content {
    border-color: #af9a74;
    box-shadow: 0 10px 25px rgba(175,154,116,.25);
}
.testimonials-customer-card {
    background: #fff !important;
    border-radius: 20px;
    padding: 24px;
    margin: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: all .3s ease;
    border: 1px solid rgba(175,154,116,.15);
}

.testimonials-customer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 12px rgba(0,0,0,.12);
}

.testimonials-customer-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #af9a74;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-left: 12px;
}

.testimonials-customer-name {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}

.testimonials-customer-date {
    margin: 0;
    font-size: .8rem;
    color: #999;
}

.testimonials-customer-text {
    margin-top: 15px;
    line-height: 1.8;
    color: #555;
    font-size: .95rem;
}
.testimonials-customer-card {
    position: relative;
    overflow: hidden;
}

.testimonials-customer-card::before {
    content: "❝";
    position: absolute;
    top: -15px;
    left: 15px;
    font-size: 90px;
    color: rgba(175,154,116,.12);
    font-family: serif;
    line-height: 1;
} 
.product-item {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(175,154,116,.15);
    transition: all .35s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    padding-bottom: 15px;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.product-item .box-1-1 {
    overflow: hidden;
}

.product-item img {
    transition: transform .5s ease;
}

.product-item:hover img {
    transform: scale(1.08);
}
.product-title {
    text-align: center;
    padding: 12px 15px 8px;
    min-height: 60px;
}

.product-title span {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    color: #222;
}
.section-product-price {
    text-align: center;
    margin-bottom: 15px;
}

.product-price {
    font-size: 22px;
    font-weight: 700;
    color: #af9a74 !important;
}

.product-prev-price {
    text-decoration: line-through;
    color: #999 !important;
    font-size: 14px;
}
.product-card-add-to-cart {
    background: #af9a74 !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 12px 20px !important;
    width: calc(100% - 30px);
    margin: auto;
    font-weight: 600;
    transition: all .3s ease;
}

.product-card-add-to-cart:hover {
    background: #98825f !important;
    transform: translateY(-2px);
}
.product-item::before {
    content: "خصم";
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f25f5f;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    z-index: 5;
}
.product-card-add-to-cart {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(175,154,116,.5);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(175,154,116,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(175,154,116,0);
    }
}
.footer {
    position: relative;
    background: linear-gradient(90deg,rgba(175, 154, 116, 1) 0%, rgba(194, 175, 143, 1) 50%, rgba(219, 208, 184, 1) 100%);
    color: #fff;
    overflow: hidden;
}

.footer-store-section {
    padding: 60px 0;
    position: relative;
    background: linear-gradient(90deg,rgba(175, 154, 116, 1) 0%, rgba(194, 175, 143, 1) 50%, rgba(219, 208, 184, 1) 100%);
}

.footer-about-us-links-div h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.footer-about-us-links-div h2::after {
    content: "";
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg,rgba(175, 154, 116, 1) 0%, rgba(194, 175, 143, 1) 50%, rgba(219, 208, 184, 1) 100%);
    position: absolute;
    bottom: -8px;
    right: 0;
    border-radius: 10px;
}

.footer-about-us-links-div p,
.footer-about-us-links-div a {
    color: white;
    font-size: 14px;
    line-height: 1.9;
    transition: .3s;
}

.footer-about-us-links-div a:hover {
    color: #af9a74;
    padding-right: 5px;
}

/* Social icons */
.social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
    transition: .3s;
}

.social-icons a:hover {
    background: #af9a74;
    transform: translateY(-4px);
}

.footer {
    position: relative;
    overflow: visible;
}

.footer__curve {
    position: absolute;
    top: -7px;
    left: 0;
    width: 100%;
    height: 54px;
    z-index: 1;
    display: block;
    color: #fffbf6;
}

.footer__curve path {
    fill: currentColor;
}
.breadcrumb {
    background-color: #fffbf6 !important;
}
.subTitle-detail {
    background-color: #fffbf6 !important;
}