/* =========================
  SHOP HEADER
========================= */
.elementor-editor-active .reveal {
    opacity: 1 !important;
    transform: none !important;
}
.shop-header{
  position:sticky;
  top:0;
  z-index:999;
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,0.08);
}

.shop-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
}

/* Logo */
.shop-logo{
  text-decoration:none;
  display:inline-block;
}

.shop-logo-text{
  font-family:var(--serif);
  font-size:26px;
  letter-spacing:8px;
  color:#6a2f35;
  display:block;
  line-height:1;
}

.shop-logo-sub{
  font-family:var(--sans);
  font-size:9px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#8a8a8a;
  margin-top:4px;
  display:block;
}

/* Nav */
.shop-nav{
  flex:1;
  display:flex;
/*   justify-content:center; */
}

.shop-nav-toggle{
/*   display:none; */
  width:46px;
  height:46px;
  border-radius:12px;
  border:1px solid rgba(0,0,0,0.08);
  background:#fff;
  cursor:pointer;
}

.shop-nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:#333;
  margin:4px auto;
  border-radius:99px;
}

/* .shop-nav-links{
  list-style:none;
  display:flex;
  gap:22px;
  margin:0;
  padding:0;
  align-items:center;
} */

.shop-nav-links {
    list-style: none;
    display: flex;
    margin: 0;
}

.shop-dd.open .shop-mega {
        display: block;
        opacity: 1 !important;
        transform: none !important;
    }

.shop-nav-links {
        position: absolute;
        top: 80px;
        left: 18px;
        right: 18px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 18px;
        padding: 12px;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
/*         box-shadow: 0 22px 70px rgba(0, 0, 0, 0.12); */
	box-shadow: 0 20px 40px -35px rgb(0 0 0 / 10%);
        opacity: 0;
        transform: translateX(-50px);
        pointer-events: none;
        transition: all .25s ease;
		width: min(400px, 92vw);
    }

.shop-nav-links.open {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
		overflow-y: auto;
    	max-height: 82vh;
    }

.shop-link{
  font-family:var(--sans);
  font-size:16px;
  color:#1f1f1f;
  text-decoration:none;
  padding:10px 4px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:color .25s ease;
  position:relative;
}

.shop-link:hover{
  color:#6a2f35;
}

.shop-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:5px;
  width:0;
  height:2px;
  background:#b59b57;
  transition:width .25s ease;
}

.shop-link:hover::after{
/*   width:100%; */
}

/* Dropdown (normal) */
.shop-dd{
  position:relative;
}

.shop-dropdown{
  position:absolute;
  top:44px;
  left:0;
  min-width:220px;
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:14px;
  padding:10px;
  list-style:none;
  margin:0;
  box-shadow:0 18px 60px rgba(0,0,0,0.10);
  opacity:0;
  transform:translateY(10px);
  pointer-events:none;
  transition:all .25s ease;
  z-index:1;
}

.shop-dropdown li a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  color:#2a2a2a;
  text-decoration:none;
  font-family:var(--sans);
  font-size:15px;
  transition:all .2s ease;
}

.shop-dropdown li a:hover{
  background:rgba(181,155,87,0.12);
  color:#6a2f35;
}

.shop-dd--normal:hover .shop-dropdown{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

/* Mega Menu */
.shop-mega{
  position:static;
  top:44px;
  left:50%;
  transform:translateX(-50%) translateY(10px);
/*   width:min(860px, 92vw); */
  background:#fff;
  border:1px solid rgba(0,0,0,0.08);
  border-radius:18px;
/*   box-shadow:0 22px 70px rgba(0,0,0,0.12); */
  opacity:0;
  pointer-events:none;
  transition:all .25s ease;
	display: none;
}

.shop-mega-inner{
  display:grid;
  grid-template-columns: 1fr;
  gap:18px;
  padding:18px;
}

.mega-title{
  font-family:var(--serif);
  font-size:16px;
  font-weight:500;
  margin:0 0 10px 0;
  color:#1f1f1f;
}

.mega-link{
  display:block;
  padding:9px 10px;
  border-radius:10px;
  text-decoration:none;
  font-family:var(--sans);
  font-size:15px;
  color:#5d5d5d;
  transition:all .2s ease;
}

.mega-link:hover{
  background:rgba(181,155,87,0.12);
  color:#6a2f35;
}

/* Mega promo card */
.mega-card{
  height:100%;
  border-radius:16px;
  padding:18px;
  background:linear-gradient(135deg, rgba(106,47,53,0.08), rgba(181,155,87,0.14));
  border:1px solid rgba(0,0,0,0.06);
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.mega-card-tag{
  font-family:var(--sans);
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#6a2f35;
  margin:0 0 8px 0;
}

.mega-card-title{
  font-family:var(--serif);
  font-size:18px;
  margin:0 0 8px 0;
  color:#1f1f1f;
}

.mega-card-text{
  font-family:var(--sans);
  font-size:13px;
  line-height:1.6;
  margin:0 0 12px 0;
  color:#5e5e5e;
}

.mega-card-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  background:#b59b57;
  color:#fff;
  font-family:var(--sans);
  font-size:13px;
  text-decoration:none;
  width:max-content;
  transition:all .25s ease;
}

.mega-card-btn:hover{
  background:#8f7740;
  transform:translateY(-2px);
}

/* .shop-dd--mega:hover .shop-mega{
  opacity:1;
  transform:translateX(-50%) translateY(0);
  pointer-events:auto;
} */

.shop-dd--mega.open .shop-mega {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Right icons */
.shop-actions{
	flex: 1;
  display:flex;
  align-items:center;
  gap:10px;
	justify-content: flex-end;
}

.shop-icon-btn{
  width:38px;
  height:38px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.08);
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#333;
  text-decoration:none;
  cursor:pointer;
  transition:all .25s ease;
}

.shop-icon-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
}

.shop-cart{
  position:relative;
}

.cart-badge{
  position:absolute;
  right:-4px;
  top:-4px;
  background:#d33;
  color:#fff;
  font-size:10px;
  font-family:var(--sans);
  padding:2px 6px;
  border-radius:999px;
  line-height:1.4;
}

/* =========================
  MOBILE MENU
========================= */
@media (max-width: 900px){
  .shop-nav{
/*     justify-content:flex-end; */
  }

  .shop-nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
  }

  .shop-nav-links{
    position:absolute;
    top:72px;
    left:18px;
    right:18px;
    background:#fff;
    border:1px solid rgba(0,0,0,0.08);
    border-radius:18px;
    padding:12px;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    box-shadow:0 22px 70px rgba(0,0,0,0.12);

    opacity:0;
    transform:translateY(10px);
    pointer-events:none;
    transition:all .25s ease;
  }

  .shop-nav-links.open{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }

  .shop-link{
    padding:12px 12px;
    border-radius:14px;
/*     justify-content:space-between; */
  }

  .shop-link::after{
    display:none;
  }

  /* Disable hover dropdown, use JS open */
  .shop-dd--normal:hover .shop-dropdown,
  .shop-dd--mega:hover .shop-mega{
    opacity:0;
    pointer-events:none;
    transform:translateY(10px);
  }

  .shop-dropdown{
    position:static;
    box-shadow:none;
    border:none;
    border-top:1px solid rgba(0,0,0,0.06);
    border-radius:0;
    padding:8px 0 0;
    opacity:1;
    transform:none;
    pointer-events:auto;
    display:none;
  }

  .shop-dd.open .shop-dropdown{
    display:block;
  }

  .shop-mega{
    position:static;
    transform:none;
    width:100%;
    box-shadow:none;
    border:none;
    border-top:1px solid rgba(0,0,0,0.06);
    border-radius:0;
    opacity:1;
    pointer-events:auto;
    display:none;
  }

  .shop-dd.open .shop-mega{
    display:block;
  }

  .shop-mega-inner{
    grid-template-columns: 1fr;
    padding:12px 0 0;
    gap:14px;
  }

  .mega-card{
    padding:14px;
    border-radius:14px;
  }
}

@media (max-width: 520px){
  .shop-logo-text{
    font-size:22px;
    letter-spacing:6px;
  }

  .shop-actions{
    gap:8px;
  }

  .shop-icon-btn{
    width:36px;
    height:36px;
  }
}
.shop-logo img{
    max-width: 140px;
}
/* =========================
  SHOP HERO (FULL BG SLIDER)
========================= */
.shop-hero{
  position:relative;
  overflow:hidden;
}

.shop-hero-slide{
  position:relative;
  min-height:80vh;
  display:flex;
  align-items:center;
}

.shop-hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.04);
  transition:transform 1.1s ease;
}

.shop-hero-slide:hover .shop-hero-bg{
  transform:scale(1.08);
}

/* White overlay gradient (left -> right) */
.shop-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(255,255,255,0.92) 0%,
    rgba(255,255,255,0.72) 35%,
    rgba(255,255,255,0.25) 60%,
    rgba(255,255,255,0.05) 100%
  );
}

.shop-hero-inner{
  position:relative;
  z-index:2;
  width:100%;
  height:80vh;
  padding:70px 18px;
  display:flex;
  flex-direction:column;
  align-items: flex-start;
  justify-content: center;
}

.shop-hero-content{
  max-width:560px;
}

.shop-hero-title{
  font-family:var(--serif);
  font-size:62px;
  line-height:1.05;
  margin:0 0 12px 0;
  color:#1f1f1f;
}

.shop-hero-title span{
  color:#6a2f35;
}

.shop-hero-sub{
  font-family:var(--sans);
  font-size:15px;
  line-height:1.7;
  color:#6b6b6b;
  margin:0 0 18px 0;
}

.shop-hero-btn{
  border-radius:6px;
  padding:10px 16px;
}

/* Dots */
.shop-hero-pagination{
  bottom:16px !important;
}

.shop-hero-pagination .swiper-pagination-bullet{
  background:#6a2f35;
  opacity:0.35;
}

.shop-hero-pagination .swiper-pagination-bullet-active{
  opacity:1;
}

/* =========================
  RESPONSIVE
========================= */
@media (max-width: 1024px){
  .shop-hero-title{
    font-size:52px;
  }
}
.decor-mobile-menu{
    display:none;
}
@media (max-width: 768px){
    
    .decor-icon{
        display:none;
    }
    .decor-mobile-menu{
    display:block;
}
    .shop-header-inner{
        padding: 14px 20px
    }
  .shop-hero-slide{
    min-height:460px;
  }

  .shop-hero-inner{
    padding:54px 18px 70px;
    height: 40vh;
  }

  /* Better readability on mobile */
  .shop-hero-overlay{
    background:linear-gradient(
      180deg,
      rgba(255,255,255,0.92) 0%,
      rgba(255,255,255,0.72) 50%,
      rgba(255,255,255,0.18) 100%
    );
  }

  .shop-hero-title{
    font-size:42px;
  }
}

@media (max-width: 480px){
  .shop-hero-title{
    font-size:36px;
  }
}

/* =========================
  FEATURED CATEGORIES (SLIDER)
========================= */
.feat-cat{
  background:#fff;
}

.feat-cat-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}

.feat-cat-left{
  max-width:520px;
}

.feat-cat-title{
  font-family:var(--serif);
  font-size:30px!important;
  font-weight:600;
  margin:0 0 6px 0;
  color:#3b3b3b;
}

.feat-cat-sub{
  font-family:var(--sans);
  font-size:12px;
  line-height:1.6;
  margin:0;
  color:#9a9a9a;
}

.feat-cat-right{
  display:flex;
  justify-content:flex-end;
}

.feat-cat-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-family:var(--sans);
  font-size:16px;
  font-weight:600;
  color:#b59b57;
  text-decoration:none;
  border:1px solid rgb(181,155,87,);
  padding:8px 20px;
  border-radius:2px;
  transition:all .25s ease;
  background:transparent;
  height:34px;
}

.feat-cat-btn:hover{
  background:rgba(181,155,87,0.10);
  transform:translateY(-2px);
}

/* =========================
  SLIDER WRAPPER
========================= */
.featCatSwiper{
  width:100%;
}

.featCatSwiper .swiper-wrapper{
  align-items:stretch;
}

.featCatSwiper .swiper-slide{
  height:auto;
}

/* =========================
  FEATURED CATEGORIES (SLIDER)
========================= */
.feat-cat{
  background:#fff;
}

.feat-cat-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}

.feat-cat-left{
  max-width:520px;
}

.feat-cat-title{
  font-family:var(--serif);
  font-size:24px;
  font-weight:500;
  margin:0 0 6px 0;
  color:#3b3b3b;
}
.feat-card-bottom{

}

.feat-cat-sub{
  font-family:var(--sans);
  font-size:16px;
  line-height:1.6;
  margin:0;
  color:#9a9a9a;
}

.feat-cat-right{
  display:flex;
  justify-content:flex-end;
}

.feat-cat-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-family:var(--sans);
  font-size:12px;
  color:#b59b57;
  text-decoration:none;
  border:1px solid rgba(181,155,87,0.45);
  padding:8px 14px;
  border-radius:2px;
  transition:all .25s ease;
  background:transparent;
  height:34px;
}

.feat-cat-btn:hover{
  background:rgba(181,155,87,0.10);
  transform:translateY(-2px);
}

/* =========================
  SLIDER WRAPPER
========================= */
.featCatSwiper{
  width:100%;
}

.featCatSwiper .swiper-wrapper{
  align-items:stretch;
}

.featCatSwiper .swiper-slide{
  height:auto;
}

/* =========================
  CATEGORY CARD
========================= */
.feat-cat{
    background-color:#F5F5F5;
}

.feat-card{
  text-decoration:none;
  display:block;
  width:100%;
}

.feat-card-media{
  width:100%;
  height:250px;
  background-size:cover;
  background-position:center;
  transition:transform .85s ease;
  overflow: hidden;
}

.feat-card:hover .feat-card-media{
  transform:scale(1.05);
}

.feat-card-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px;
}

.feat-card-name{
  font-family:var(--serif);
  font-size:20px;
  color:#2f2f2f;
}

.feat-card-name.active{
  color:#b59b57;
}

.feat-card-arrow{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:#2f2f2f;
  transition:transform .25s ease, color .25s ease;
}

.feat-card-arrow i{
  font-size:15px;
}

.feat-card:hover .feat-card-arrow{
  transform:translateX(4px);
  color:#6a2f35;
}

/* Bottom line */
.feat-card-line{
  width:100%;
  height:2px;
  background:rgba(0,0,0,0.35);
}

/* =========================
  RESPONSIVE
========================= */
@media (max-width: 1024px){
  .feat-cat-title{
    font-size:22px;
  }
}

@media (max-width: 768px){
  .feat-cat-head{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .feat-cat-right{
    width:100%;
    justify-content:flex-start;
  }

  .feat-card-media{
    height:200px;
  }
}

@media (max-width: 480px){
  .feat-card-media{
    height:190px;
  }
}
.feat-card-arrow i{
  font-size:18px;
  transform: rotate(-18deg);
  transition:transform .25s ease, color .25s ease;
}

/* Hover animation */
.feat-card:hover .feat-card-arrow i{
  transform: translateX(6px) rotate(0deg);
  color:#6a2f35;
}

/* =========================
  CURATED DECORATIVE OBJECTS
========================= */
.curated{
  background:#fff;
}

.curated-grid{
  display:grid;
  grid-template-columns: 0.55fr 1fr 1.05fr;
  gap:26px;
  align-items:center;
}

.curated-left{
  display:flex;
  justify-content:center;
  align-items:flex-end;
}

.curated-left img{
  max-width:100%;
  width:350px;
  height:auto;
  display:block;
}

.curated-content{
  padding:10px 0;
}

.curated-title{
  font-family:var(--serif);
  font-size:30px!important;
  font-weight:500;
  color:#2b2b2b;
  margin:0 0 10px 0;
}

.curated-text{
  font-family:var(--sans);
  font-size:16px;
  line-height:1.7;
  color:#9a9a9a;
  margin:0 0 14px 0;
  max-width:420px;
}

.curated-btn{
  border-radius:2px;
  padding:10px 16px;
  font-size:12px;
}

.curated-right{
  display:flex;
  justify-content:flex-end;
}

.curated-right img{
  width:100%;
  max-width:520px;
  height:300px;
  object-fit:cover;
  display:block;
  border-radius:0;
}

/* Responsive */
@media (max-width: 1024px){
  .curated-grid{
    grid-template-columns: 0.7fr 1fr;
    grid-template-areas:
      "left content"
      "right right";
    gap:20px;
  }

  .curated-left{ grid-area:left; }
  .curated-content{ grid-area:content; }
  .curated-right{ grid-area:right; justify-content:center; }

  .curated-right img{
    max-width:100%;
    height:240px;
  }
}

@media (max-width: 768px){
  .curated-grid{
    grid-template-columns:1fr;
    gap:16px;
    text-align:left;
  }

  .curated-left{
    justify-content:flex-start;
  }

  .curated-left img{
    width:180px;
  }

  .curated-text{
    max-width:100%;
  }

  .curated-right{
    justify-content:center;
  }

  .curated-right img{
    height:220px;
  }
}
/* =========================
  OUR COLLECTIONS
========================= */
.collections{
  background:#fbf8f2;
}

.collections-title{
  font-family:var(--serif);
  font-size:30px;
  font-weight:500;
  color:#3b3b3b;
  text-align:center;
  margin:0 0 18px 0;
}

.collections-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
}

/* Product card */
.product-card{
  position:relative;
}

.product-media{
  position:relative;
  background:#fff;
  /*padding:22px;*/
  height:300px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.product-media img{
  max-width:100%;
  max-height:100%;
  object-fit:contain;
  display:block;
  transform:scale(1);
  transition:transform .45s ease;
}

/* Wishlist heart */
.product-wish{
  position:absolute;
  top:10px;
  right:10px;
  width:30px;
  height:30px;
  border:none;
  background:transparent;
  cursor:pointer;
  z-index:3;
  color:#2a2a2a;
}

.product-wish i{
  font-size:16px;
}

/* Add to cart - ONLY on hover */
.product-cart-btn{
  width:100%;
  text-align: center;
  position:absolute;
  left:18px;
  bottom:18px;
  display:inline-flex;
  align-items:center;
  justify-content: center;
  gap:8px;
  background:#b59b57;
  color:#fff;
  text-decoration:none;
  font-family:var(--sans);
  font-size:12px;
  padding:8px 12px;
  border-radius:2px;
  opacity:0;
  transform:translateY(8px);
  pointer-events:none;
  transition:all .25s ease;
}

.product-card:hover .product-cart-btn{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.product-card:hover .product-media img{
  transform:scale(1.05);
}

/* product name + price */
.product-info{
  padding:10px 2px 0;
}

.product-name{
  font-family:var(--serif);
  font-size:16px;
  line-height:1.4;
  margin:0 0 6px 0;
  color:#3b3b3b;
}

.product-price{
  font-family:var(--sans);
  font-size:17px;
  margin:0;
  color:#1f1f1f;
  font-weight: 600;
}

/* View All */
.collections-cta{
  display:flex;
  justify-content:center;
  margin-top:20px;
}

.collections-viewall{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(181,155,87,0.55);
  color:#b59b57;
  text-decoration:none;
  font-family:var(--sans);
  font-size:16px;
  padding:8px 20px;
  border-radius:2px;
  background:#fff;
  transition:all .25s ease;
  margin-top:30px;
}

.collections-viewall:hover{
  transform:translateY(-2px);
  background:rgba(181,155,87,0.10);
}

/* Responsive */
@media (max-width: 1024px){
  .collections-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px){
  .collections-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .product-media{
    height:350px;
    padding:18px;
  }
  .go-top{
    right: 64px;
    bottom: 25px;
  }
}

@media (max-width: 480px){
  .collections-grid{
    grid-template-columns: 1fr;
  }

  .product-media{
    /*height:200px;*/
  }
}

/* =========================
  BOOKS BANNER SECTION
========================= */
.books{
  padding:0;
  background:#f3eee7;
}

.books-wrap{
  display:grid;
  grid-template-columns: 1.35fr 1fr;
  align-items:stretch;
  overflow:hidden;
  min-height:260px;
}

/* left side background tone */
.books-left{
  display:flex;
  align-items:center;
  justify-content:center;
}

.books-left img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  min-height:260px;
}

/* right side background tone */
.books-right{
 
  display:flex;
  align-items:center;
}

.books-content{
  padding:40px 42px;
  max-width:520px;
}

.books-title{
  font-family:var(--serif);
  font-size:30px;
  font-weight:500;
  margin:0 0 10px 0;
  color:#2f2f2f;
}

.books-text{
  font-family:var(--sans);
  font-size:16px;
  line-height:1.7;
  color:#7d7d7d;
  margin:0 0 16px 0;
}

.books-btn{
  border-radius:2px;
  padding:10px 18px;
  font-size:15px;
}

/* Responsive */
@media (max-width: 1024px){
  .books-content{
    padding:32px 28px;
  }
}

@media (max-width: 768px){
  .books-wrap{
    grid-template-columns: 1fr;
  }

  .books-left img{
    min-height:220px;
  }

  .books-content{
    padding:26px 20px;
    max-width:100%;
  }
}


.product-hero {
  /* position: relative;
  padding: var(--spacing-lg) 20px;
  background-color: #f9f9f9;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 40vh; */
  background-color: var(--e-global-color-5d96894);
  background-image: url(img/bg-bread.jpg);
  background-position: center center;
  background-size: cover;
  position: relative;
  background-color: #f9f9f9;
  padding: 30px 20px;
}

.prod-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  z-index: 2;
  position: relative;
  /* background-color: #f9f9f9; */
  /* overflow: hidden; */
  display: flex;
  align-items: center;
  min-height: 40vh;
  justify-content: space-between;
}

/* Typography Refinement */
.prod-hero-title {
  font-family: var(--serif, 'Playfair Display', serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive sizing */
  font-weight: 500;
  color: #1a1a1a;
  margin: 10px 0;
  line-height: 1.1;
}

.prod-hero-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 500px;
}

/* Modern Breadcrumbs */
.prod-breadcrumb-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 14px;
  font-weight: 600;
}

.prod-breadcrumb-list li:not(:last-child)::after {
  content: "/"; /* Modern slash instead of pipe */
  margin-left: 15px;
  color: #000000;
}

.prod-breadcrumb-list a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.prod-breadcrumb-list a:hover {
  color: #6E2A32;
}

.prod-breadcrumb-list li.active {
  color: #6E2A32;
}

.prod-hero-bg-image {
  width: 45%;
  z-index: 1;
  opacity: 0.9;
}

.prod-hero-bg-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  /* filter: drop-shadow(20px 20px 60px rgba(0,0,0,0.1)); */
  filter: drop-shadow(0px 10px 10px rgba(0, 0, 0, 0.2));
}

.probanner-overlay {
  inset: 0;
  position: absolute;
  background-color: transparent;
  background-image: linear-gradient(180deg, #ffffffab 0%, #FFFFFF 100%);
  opacity: 1;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

@media (max-width: 768px) {
  .product-hero {
    padding: 30px 20px;
    text-align: center;
  }
  .prod-hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .prod-hero-bg-image {
    position: relative;
    width: 90%;
    right: 0;
    top: 0;
    transform: none;
    /* margin-top: 40px; */
  }
  .prod-breadcrumb-list {
    justify-content: center;
  }
}





 :root {
  --ink: #111111;
  --paper: #f9f9f9;
  --border-color: #e0e0e0;
  --accent-gold: #c5a059;
}

.arch-product {
  background: #fdfdfb;
  color: var(--ink);
  padding: 80px 60px;
  min-height: 100vh;
}

@media (max-width: 768px) {
  .arch-product {
    background: var(--paper);
    color: var(--ink);
    padding: 60px 20px;
    min-height: 100vh;
  }
}

.arch-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  max-width: 1140px;
  margin: 0 auto;
  align-items: center;
}

@media (max-width: 768px) {
  .arch-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
    align-items: center;
  }
}

.image-wrapper img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  filter: grayscale(20%);
  transition: filter 0.5s ease;
  transition: transform 1.2s cubic-bezier(0.2, 1, 0.2, 1), filter 0.5s ease;
}

.image-wrapper:hover img { 
  transform: scale(1.08);
  filter: grayscale(0%);
}

.id-tag {
  font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--accent-gold);
    /* color: #6E2A32; */
    font-weight: 600;
}

.arch-title {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 10px;
  font-family: var(--serif);
}

.arch-price { 
  font-size: 1.5rem; 
  font-weight: 400; 
  margin-bottom: 50px;
  color: #6E2A32; 
}

.control-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.control-label { 
  font-size: 14px; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
}


.arch-qty { 
  display: flex; 
  align-items: center; 
  gap: 20px; 
}
.qty-btn { 
  background: none; 
  border: none; 
  cursor: pointer; 
  font-size: 1rem; 
  padding: 5px; 
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.6;
}

#qty-val { 
  width: 60px; 
  border: none; 
  background: none; 
  text-align: center; 
  font-weight: 600; 
}


.arch-actions { 
  display: flex; 
  gap: 15px; 
  margin-top: 60px; 
}

.add-to-cart-trigger {
  flex: 1;
  background: var(--ink);
  color: white;
  border: none;
  padding: 22px 30px;
  display: flex;
/*   justify-content: space-between; */
	justify-content: center;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, background 0.3s;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.add-to-cart-trigger:hover { 
  background: #000; 
  transform: translateY(-2px); 
  background: #000;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.price-confirm { 
  opacity: 0.6; 
  font-weight: 400; 
}

.wishlist-icon {
  width: 65px;
  border: 1px solid var(--border-color);
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}

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

@keyframes sideReveal {
  from { clip-path: inset(0 100% 0 0); }
  to { clip-path: inset(0 0 0 0); }
}

.animate-in .staggered > * {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.staggered > *:nth-child(1) { animation-delay: 0.1s; }
.staggered > *:nth-child(2) { animation-delay: 0.2s; }
.staggered > *:nth-child(3) { animation-delay: 0.3s; }
.arch-actions { 
  animation: fadeInUp 0.8s 0.4s both; 
}

.reveal .image-wrapper {
  position: relative;
  overflow: hidden;
  animation: sideReveal 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  filter: drop-shadow(2px 2px 10px rgb(197 160 89 / 20%));
  background-color: white;
}


.add-to-cart-trigger::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  transition: left 0.4s;
}

.add-to-cart-trigger:hover::before {
  left: 100%;
}


.wishlist-icon:hover {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
  transform: scale(1.1);
}

.wishlist-icon:active {
  transform: scale(0.9);
}


.qty-btn:hover {
  opacity: 1;
  transform: scale(1.3);
  color: var(--accent-gold);
}




 /* Fix for Owl images to prevent them from stretching strangely */
.owl-carousel .product-card {
  width: 100%;
  margin: 0 auto;
}

.owl-carousel .product-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Hide default Owl Nav if you are using custom buttons */
.owl-nav {
  display: none;
}

/* Mobile Tweak */
@media (max-width: 600px) {
  .collections {
    padding: 40px 15px;
  }
}

.slider-controls {
  display: flex;
  gap: 12px;
  align-items: center;
}

.slider-nav-btn {
  /* Layout & Size */
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* Styling */
  background: transparent;
  border: 1px solid #e0e0e0; /* Subtle border */
  border-radius: 50%; /* Perfect circle */
  color: #111;
  font-size: 14px;
  
  /* Interactivity */
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.slider-nav-btn i {
  transition: transform 0.3s ease;
  z-index: 2;
}

/* Hover Effects */
.slider-nav-btn:hover {
  background: #b59b57;
  color: #fff;
  border-color: #b59b57;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.slider-nav-btn:active {
  transform: translateY(0) scale(0.95);
}

.collections-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    align-items: center;
}

h2.collections-title.vbsc{
  margin-bottom: 0;
}

@media (max-width: 768px) {

  h2.collections-title.vbsc{
    font-size: 26px;
  }
}


.woocommerce-pagination .page-numbers.current {
    background: #b59b57;
    color: #fff;
    border-color: #b59b57;
}
.woocommerce-pagination .page-numbers {
    padding: 8px 14px;
    border: 1px solid #6e2a3252;
    margin: 0 4px;
    color: #6E2A32;
    text-decoration: none;
}

.collections-grid {
    margin-bottom: 50px;
}

.shop-nav-links::-webkit-scrollbar {
    width: 6px; 
}

.shop-nav-links::-webkit-scrollbar-track {
    background: #f4f4f4; 
    border-radius: 10px;
}

.shop-nav-links::-webkit-scrollbar-thumb {
    background: #b59b57; 
    border-radius: 10px;
}

.shop-nav-links::-webkit-scrollbar-thumb:hover {
    background: #8f7740; 
}

.shop-nav-links {
    scrollbar-width: thin; 
    scrollbar-color: #b59b57 #f4f4f4; 
}


.ajax-pagination .disabled{
    opacity:0.4;
    cursor:not-allowed;
    pointer-events:none;
}















.shop-action-wrapper{
    position:relative;
}


.user-dropdown{
    display:none;
    position:absolute;
    top:100%;
    right:0;
    background:#fff;
    min-width:150px;
    padding:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
    z-index:999;
}


.user-dropdown a{
    display:block;
    padding:8px 0;
    color:#333;
}


.user-action:hover .user-dropdown{
    display:block;
}