/** Shopify CDN: Minification failed

Line 450:1 Expected "}" to go with "{"

**/
/*-----------------------------------------------------------------------------/
/ Custom Theme CSS
/-----------------------------------------------------------------------------*/
/*---------------- Global Custom CSS -------------------*/
.t4s-pr-style3 .t4s-product-btns span.t4s-svg-pr-icon {
    display: none !important;
}
.menu-card summary {
  list-style: none; /* Standard */
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.menu-card summary::-webkit-details-marker {
  display: none; /* Safari/Chrome */
}

/* 2. Create the + icon */
.menu-card summary::after {
  content: '+';
  font-family: monospace; /* Ensures alignment */
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--gold-soft); /* Using your variable */
  transition: transform 0.3s ease;
}

/* 3. Change to - when open */
.menu-card[open] summary::after {
  content: '−'; /* Using a proper minus sign character */
}
.t4s-product-inner.t4s-pr.t4s-oh {
    padding-top: 40px;
}
/* --- Global Container --- */
.t4s-filter-area {
    background-color: #080706 !important;
    padding: 0px !important;
    border: none !important;
    font-family: 'Inter', system-ui, sans-serif !important;
}

/* --- Section Headers --- */
.t4s-facet-title {
    color: #B8973A !important; /* Gold */
    font-size: 12px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.22em !important;
    margin-bottom: 6px !important;
    font-weight: 600 !important;
}

/* --- Filter Links & Text --- */
.t4s-filter__values li a {
    color: rgba(247, 242, 232, 0.84) !important;
    font-size: 13px !important;
    padding: 2px 0 !important;
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
    transition: color 0.2s;
}

.t4s-filter__values li a:hover {
    color: #d2b76f !important; /* Gold soft */
}

.t4s-value-count {
    color: #cdbf97 !important; /* Muted gold */
    margin-left: auto !important;
    font-size: 12px !important;
}

/* --- Square Checkboxes --- */
.t4s-checkbox-wrapper {
    width: 16px !important;
    height: 16px !important;
    border: 1px solid rgba(184, 151, 58, 0.4) !important;
    border-radius: 3px !important; /* Small radius for clean square */
    background: rgba(184, 151, 58, 0.05) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 12px !important;
    flex-shrink: 0;
}

/* Hide default SVG */
.t4s-checkbox-wrapper svg {
    display: none !important;
}

/* Active/Checked State */
.t4s-filter__values li.is--active .t4s-checkbox-wrapper {
    background: #B8973A !important;
    border-color: #B8973A !important;
}

/* --- Price Slider (Gold Styling) --- */
.noUi-target {
    background: rgba(184, 151, 58, 0.15) !important;
    height: 4px !important;
    border: none !important;
    margin: 20px 0 !important;
}

.noUi-connect {
    background: linear-gradient(90deg, #B8973A, #e8c574) !important;
}

.noUi-handle {
    background: #e8c574 !important;
    border-radius: 50% !important;
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #080706 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5), 0 0 0 1px #B8973A !important;
    cursor: grab !important;
}

.t4s-price_label {
    color: rgba(247, 242, 232, 0.84) !important;
    font-size: 13px !important;
    margin-top: 15px !important;
}

/* --- Filter Button --- */
.t4s-price_slider_btn {
    background: linear-gradient(180deg, #c8aa5f, #a9842b) !important;
    color: #080706 !important;
    border-radius: 999px !important;
    padding: 10px 25px !important;
    border: none !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    font-size: 11px !important;
    letter-spacing: 0.14em !important;
    cursor: pointer !important;
}
.t4s-active-filters {
    color: #ffffff !important;
}
a.t4s-pr-item-btn.t4s-pr-addtocart.t4s-tooltip-actived
 {
    color: #000;
    font-weight: bold;
}
a.t4s-pr-item-btn.t4s-pr-addtocart.t4s-tooltip-actived:hover {
    color: #fff !important;
}
.t4s-pr-style3 .t4s-product-btns2>.t4s-pr-item-btn {
    color: #000;
}
.t4s-pr-style3 .t4s-product-btns {
    bottom: 0px !important;
}
/* Container alignment */
.t4s-pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
}

.t4s-pagination__list {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/* Base style for non-active items (Pill shape) */
.t4s-pagination__item {
        display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    border: 1px solid #ccb068 !important;
    border-radius: 50% !important;
    padding: 8px 20px !important;
    min-width: 40px !important;
    min-height: 40px !important;
    text-decoration: none !important;
    color: #ccb068 !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
    width: 40px;
    height: 42px;
}

/* Style for Current Page (Perfect Circle) */
.t4s-pagination__item.pagination__item--current {
    background-color: #ccb068 !important;
    color: #000 !important;
    border-radius: 50% !important; /* Perfect circle */
    padding: 0 !important;
    width: 40px !important;
    height: 40px !important;
}

/* Hover effect */
.t4s-pagination__item:hover:not(.pagination__item--current) {
    background-color: rgba(204, 176, 104, 0.1) !important;
}
.t4s-pagination-wrapper {
    border-top: 1px solid rgba(184, 151, 58, .12);
}
nav.t4s-pr-breadcrumb {
    line-height: 1.8;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}
.t4s-product-wrapper p.author-line a {
    border-bottom: 1px solid rgba(184, 151, 58, .25);
}
/* 1. Ensure the product card wrapper uses flexbox for full height */
.t4s-product-wrapper {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

/* 2. Make the product info section fill the remaining vertical space */
.t4s-product-info {
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

/* 3. Ensure the info inner area is a flex column */
.t4s-product-info__inner {
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
}

/* 4. Arabic Title - Removed min-height to prevent gaps */
.title-ar {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 5px !important;
}

/* 5. English Title - Removed min-height to prevent gaps */
.t4s-product-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 5px !important;
}

/* 6. Author Container - This now takes up the remaining space to push gaps below */
.metafield-item.custom-author-english {
  flex-grow: 1 !important;
}

/* 7. Push the price wrapper to the very bottom */
.t4s-price-wrapper {
  margin-top: auto !important;
  padding-top:5px !important;
}
.t4s-product-wrapper p.author-line a:hover {
    border-bottom: 1px solid #d2b76f;
color: #d2b76f;
}
.t4s-product-wrapper p.author-line {
    color: #f7f2e8a6 !important;
}
.t4s-product-wrapper p.author-line a {
    color: #f7f2e8a6;
}
a.t4s-pagination__item.link {
    border-color: #483b18 !important;
}

/*---------------- Custom CSS for only desktop -------------------*/
@media (min-width: 1025px) {
  div#blockid_1, div#blockid_3    {
    overflow-y: scroll;
}
/* Apply to all scrollbars globally */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #c5a059; /* Muted Gold */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #a8874a;
}
}

/*---------------- Custom CSS for tablet, mobile -------------------*/
@media (max-width: 1024px) {
  a.t4s-push-menu-btn.t4s-lh-1.t4s-d-flex.t4s-align-items-center {
    display: none !important;
}
}

/*---------------- Custom CSS for only tablet -------------------*/
@media (min-width: 768px) and (max-width: 1024px) {
  a.t4s-push-menu-btn.t4s-lh-1.t4s-d-flex.t4s-align-items-center {
    display: none !important;
}
}

/*---------------- Custom CSS for only mobile -------------------*/
@media (max-width: 767px){
  a.t4s-push-menu-btn.t4s-lh-1.t4s-d-flex.t4s-align-items-center {
    display: none !important;
}
.info-col .meta-grid {
        grid-template-columns: 1fr 1fr !important;
    }
.t4s-product-btns, .t4s-product-btns2 {
    display: none !important;
}
h1.t4s-product__title {
    font-size: 20px !important;
}
.t4s-product-wrapper .title-ar {
    font-size: 13px;
}
.t4s-product-wrapper p.author-line {
    font-size: 9px;
}
.badge_shape_3 .t4s-product-badge>span {
    padding: 6px 6px !important;
    font-size: 7px !important;
}
.t4s-product-wrapper .title-ar {
    padding: 3px 0;
}
.t4s-price-wrapper {
    padding-top: 3px;
    padding-bottom: 3px;
}
.t4s-drawer[aria-hidden=false] {
    background: #1b1b1b !important;
}
.t4s-filter-hidden.t4s-drawer .t4s-drawer__header span {
    color: #fff;
}
.t4s-facets__form .t4s-facet .t4s-facet-content .t4s-current-scrollbar {
    max-height: 100%;
}
.t4s-filter-hidden.t4s-drawer .t4s-drawer__header button.t4s-drawer__close {
    color: #fff;
}
button.t4s-btn-filter, .t4s-collection-header .t4s-dropdown__sortby button[data-dropdown-open] {
    padding: 5px 16px !important;
        min-width: 80px;
}
.t4s-icon-select-arrow, .t4s-dropdown__sortby .t4s-icon-select-arrow {
        right: 12px !important; }

.t4s-collection-header {
    margin-bottom: 20px;
}
.t4s-dropdown__header {
   background: #000;
    border-bottom: 1px solid var(--line);
}
.t4s-dropdown__header button {
    color: #fff;
}
.t4s-filter-hidden.t4s-drawer .t4s-facets__form>div {
    border-bottom: 1px solid var(--line);
}
.trust-grid {
        grid-template-columns: initial;
    }
.pill {
    padding: 5px 10px;
}
.t4s-price-wrapper {
  margin-top: auto !important;
  padding-top:0px !important;
}
.meta-item.gridsss a {
    font-size: 7px !important;
}
@media (max-width: 767px) {
  .footerr-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Creates the 2-column layout */
    gap: 20px; /* Adjust spacing as needed */
  }

  /* Force the first child (Logo/Text) to span both columns */
  .footerr-grid > div:first-child {
    grid-column: span 2;
  }
::placeholder {
    text-wrap: auto;
    align-items: center;
}
nav.t4s-pr-breadcrumb {
    line-height: 1;
    font-size: 9px;
    margin-bottom: 5px;
}
.t4s-pagination__list {
    gap: 0px !important;
}
ul.t4s-pagination__list.list-unstyled {
    display: list-item !important;
}
div#blockid_1, div#blockid_3    {
    max-height: 400px;
    overflow-y: scroll;
width: 99%;
}
/* Apply to all scrollbars globally */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #c5a059; /* Muted Gold */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #a8874a;
}
}