:root{
  --brand:#801D2F;
  --text:#fff;
  --muted:rgba(255,255,255,.75);
  --line:rgba(0,0,0,.10);
  --shadow:0 14px 35px rgba(0,0,0,.12);
  --container:1200px;
  --underline:#FA9819;
   --navH: 180px;     /* desktop */

}
 /* ✅ total fixed navbar height (promo + topbar + menu) */
 

@media (max-width: 768px){
  :root{ --navH: 100px; }  /* mobile (promo + smaller topbar + menu collapsed) */
}
@media (max-width: 420px){
  :root{ --navH: 105px; }
}
@font-face{
  font-family: "Coralith";
  src: url("fonts/Coralith-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*{ box-sizing:border-box; }
body{
  margin:0;
  font-family:"Poppins",sans-serif;

  /* ✅ push page below fixed navbar */
  padding-top: var(--navH);
}
/* Section wrapper: NO BG */
.pd2-section{
  
  background: transparent;
  margin-top: 20px;
}
.pd2-section .container{ max-width: var(--container); }

/* Left */
.pd2-carousel{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.08);
}
.pd2-carousel img{
  width: 100%;
  height: 430px;
  object-fit: cover;
  background: #f6f6f6;
}

.pd2-arrow{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display:grid;
  place-items:center;
  background:#fff;
  box-shadow: var(--shadow);
  color:#111;
  font-size: 18px;
}

.pd2-thumbs{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pd2-thumb{
  width: 86px;
  height: 66px;
  padding:0;
  border-radius: 12px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.12);
  background: #fff;
  cursor:pointer;
  transition:.2s ease;
  opacity:.9;
}
.pd2-thumb img{ width:100%; height:100%; object-fit:cover; }
.pd2-thumb:hover{ transform: translateY(-2px); opacity:1; }
.pd2-thumb.active{
  border-color: var(--underline);
  box-shadow: 0 0 0 3px rgba(250,152,25,.18);
  opacity: 1;
}

/* Right */
.pd2-right{
  background: transparent;          /* ✅ no bg */
}
.pd2-collection{
  color: #6b7280;
  font-size: 13px;
  text-decoration:none;
}
.pd2-title{
  color:#111;
  font-size: 22px;
  line-height: 1.25;
  margin: 6px 0 8px;
  font-weight: 800;
}
.pd2-rating{
  display:flex;
  gap:10px;
  align-items:center;
  font-size: 14px;
}
.pd2-stars{ color: var(--underline); letter-spacing: 1px; }
.pd2-count{ color:#6b7280; text-decoration:none; }
.pd2-count:hover{ text-decoration: underline; }

.pd2-wishlist{
  border: 0;
  background: transparent;
  color: #111;
  font-weight: 700;
  display:flex;
  gap:8px;
  align-items:center;
  padding: 8px 0;
  transition: all .2s ease;
}

/* Hover effect */
.pd2-wishlist:hover{
  color: var(--brand);        /* text becomes brand color */
}


/* Icon hover effect */
.pd2-wishlist:hover i{
  border-color: var(--underline);
  color: var(--underline);
  box-shadow: 0 6px 18px rgba(128,29,47,.15);
}


.pd2-line{
  height: 1px;
  width: 100%;
  background: rgba(0,0,0,.08);
  margin: 14px 0;
}

.pd2-label{ font-weight: 700; color:#111; font-size: 14px; }
.pd2-guide{
  border:0;
  background: transparent;
  color: var(--brand);
  font-weight: 800;
  padding:0;
  text-decoration: underline;
  text-decoration-color: var(--underline);
  text-underline-offset: 4px;
}

.pd2-sizes{ display:flex; gap:10px; flex-wrap:wrap; }
.pd2-size{ position: relative; cursor:pointer; }
.pd2-size input{ position:absolute; opacity:0; pointer-events:none; }
.pd2-size span{
  width: 40px;
  height: 36px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.18);
  background: transparent; /* ✅ no bg */
  font-weight: 800;
  color:#111;
  transition:.18s ease;
}
.pd2-size input:checked + span{
  border-color: var(--underline);
  box-shadow: 0 0 0 3px rgba(250,152,25,.18);
}

/* Price */
.pd2-priceRow{
  display:flex;
  justify-content: space-between;
  align-items:flex-end;
  gap: 16px;
  flex-wrap: wrap;
}
.pd2-now{ font-size: 26px; font-weight: 900; color:#111; }
.pd2-was{
  margin-left:10px;
  color:#9ca3af;
  text-decoration: line-through;
  font-weight: 700;
  font-size: 14px;
}
.pd2-off{
  margin-left:8px;
  color: var(--brand);
  font-weight: 900;
  font-size: 14px;
}
.pd2-tax{ font-size: 12px; color:#6b7280; margin-top: 4px; }

.pd2-stock{
  display:flex;
  gap:8px;
  align-items:center;
  font-weight: 800;
  color:#16a34a;
}
.pd2-stock i{ font-size: 16px; }

/* Actions */
.pd2-actions{
  margin-top: 14px;
  display:flex;
  gap: 12px;
  align-items:center;
}
.pd2-qty{
  display:flex;
  align-items:center;
  border: 1px solid rgba(0,0,0,.14);
  border-radius: 12px;
  overflow:hidden;
  background: transparent; /* ✅ no bg */
}
.pd2-qtyBtn{
  width: 42px;
  height: 42px;
  border:0;
  background: transparent;
  font-size: 18px;
  font-weight: 900;
  color:#111;
}
.pd2-qty input{
  width: 54px;
  height: 42px;
  border:0;
  text-align:center;
  font-weight: 900;
  outline:none;
  background: transparent; /* ✅ no bg */
  color:#111;
}

.pd2-addBtn{
  flex: 1;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--underline);
  color: #fff;
  font-weight: 900;
  transition:.2s ease;
}
.pd2-addBtn:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(128,29,47,.22);
}

/* Perks */
.pd2-perks{
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px dashed rgba(0,0,0,.14);
  display:grid;
  gap: 6px;
  font-size: 13px;
  color:#6b7280;
}
.pd2-perk i{ color: var(--brand); margin-right: 8px; }

/* Modal */
.pd2-modal{ border-radius: 16px; }
.pd2-muted{ color:#6b7280; }

/* Responsive */
@media (max-width: 991.98px){
  .pd2-carousel img{ height: 140px; }
}
@media (max-width: 575.98px){
  .pd2-carousel img{ height: 280px; }
  .pd2-title{ font-size: 18px; }
  .pd2-actions{ flex-direction: column; align-items: stretch; }
  .pd2-qty{ width: 170px; }
}








.pinfo-wrap{
  padding: 16px 0 60px;
  background: transparent;
}
.pinfo-wrap .container{ max-width: var(--container); }

.pinfo-acc{
  border: 0;
}

/* Each row like the screenshot: thin lines top/bottom */
.pinfo-item{
  border: 0;
  border-top: 1px solid var(--brand);
  border-bottom: 1px solid var(--brand);
  border-radius: 0;
  background: transparent;
  margin-bottom: 14px;
}

/* Header button */
.pinfo-btn{
  background: transparent !important;
  box-shadow: none !important;
  border: 0;
  padding: 14px 0;
  font-weight: 800;
  color: var(--brand);
  font-size: 14px;
  letter-spacing: .2px;
}

/* Remove default bootstrap arrow and use our chevron */
.pinfo-btn::after{
  background-image: none !important;
  content: "\F282";              /* bi-chevron-down */
  font-family: "bootstrap-icons";
  font-size: 16px;
  color: var(--brand);
  transform: rotate(0deg);       /* closed = down */
  transition: transform .18s ease;
}

/* When accordion is OPEN (button not collapsed) rotate up */
.pinfo-btn:not(.collapsed)::after{
  transform: rotate(180deg);     /* open = up */
}

/* Body */
.pinfo-body{
  padding: 0 0 14px 0;
  color: #111;
}

/* Content styling */
.pinfo-list{
  margin: 0;
  padding-left: 18px;
}
.pinfo-list li{
  margin: 6px 0;
  font-size: 13px;
}

.pinfo-text{
  margin: 0;
  color: #111;
  font-size: 13px;
  line-height: 1.7;
}

.pinfo-ol{
  margin: 0;
  padding-left: 18px;
}
.pinfo-ol li{
  margin: 8px 0;
  font-size: 13px;
  line-height: 1.6;
}

.pinfo-subtitle{
  font-weight: 900;
  color: var(--brand);
  font-size: 13px;
}

.pinfo-bullets{
  margin: 8px 0 0;
  padding-left: 18px;
}
.pinfo-bullets li{
  margin: 7px 0;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 575.98px){
  .pinfo-btn{ padding: 12px 0; }
  .pinfo-body{ padding-bottom: 12px; }
}














:root{
  --brand:#801D2F;
  --underline:#FA9819;
  --container:1200px;
}

.kg-banner{ padding: 0; }

.kg-banner .container{ max-width: var(--container); }

.kg-banner-inner{
  min-height: 260px;
  padding: 56px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

/* Optional subtle overlay for readability (very light) */
.kg-banner-inner::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(90deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,.35) 52%, rgba(255,255,255,0) 100%);
  pointer-events:none;
}

.kg-banner-content{
  position: relative;
  max-width: 520px;
}

.kg-banner-content h2{
  margin: 0 0 10px;
  font-weight: 800;
  color: var(--brand);
  font-size: 40px;
  line-height: 1.1;
}

.kg-banner-content p{
  margin: 0 0 18px;
  color: rgba(0,0,0,.65);
  font-size: 14px;
}

.kg-banner-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--underline);
  color: #111;
  font-weight: 900;
  text-decoration: none;
  transition: .2s ease;
}

.kg-banner-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(250,152,25,.25);
}

/* ✅ Responsive */
@media (max-width: 991.98px){
  .kg-banner-inner{ padding: 44px 0; }
  .kg-banner-content h2{ font-size: 34px; }
}

@media (max-width: 575.98px){
  .kg-banner-inner{
    padding: 34px 0;
    min-height: 220px;
  }

  /* Make overlay more even on small screens */
  .kg-banner-inner::before{
    background: rgba(255,255,255,.78);
  }

  .kg-banner-content{
    max-width: 100%;
    text-align: left; /* if you want center on mobile, change to center */
  }

  .kg-banner-content h2{
    font-size: 26px;
  }
}








:root{
  --brand:#801D2F;
  --underline:#FA9819;
  --container:1200px;
  --line: rgba(0,0,0,.10);
}

/* Section */
.ymal-section{
  padding: 36px 0 70px;
  background: transparent;
}
.ymal-section .container{ max-width: var(--container); }

/* Heading */
.ymal-head{
  text-align:center;
  margin-bottom: 26px;
}
.ymal-kicker{
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(0,0,0,.55);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.ymal-title{
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 900;
  color: #111;
}
.ymal-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
}
.ymal-divider span{
  height: 1px;
  width: 110px;
  background: rgba(250,152,25,.45);
}
.ymal-divider i{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid rgba(250,152,25,.7);
  display:inline-block;
}

/* Cards */
.ymal-card{
  height: 100%;
}
.ymal-img{
  display:block;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: #f7f7f7;
  position: relative;
}
.ymal-img img{
  width:100%;
  height: 230px;
  object-fit: cover;
  transition: transform .35s ease;
}
.ymal-img:hover img{
  transform: scale(1.06);
}

.ymal-body{
  padding-top: 10px;
  position: relative;
}
.ymal-name{
  display:block;
  font-size: 11px;
  line-height: 1.45;
  color: #111;
  text-decoration:none;
  min-height: 34px;
  font-weight: 600;
}
.ymal-name:hover{
  color: var(--brand);
  text-decoration: underline;
  text-decoration-color: var(--underline);
  text-underline-offset: 4px;
}

.ymal-price{
  margin-top: 6px;
  display:flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.ymal-price .now{
  font-weight: 900;
  color:#111;
  font-size: 13px;
}
.ymal-price .was{
  color: rgba(0,0,0,.45);
  text-decoration: line-through;
  font-weight: 700;
  font-size: 12px;
}
.ymal-price .off{
  color: var(--brand);
  font-weight: 800;
  font-size: 12px;
}

/* Icons row */
.ymal-actions{
  margin-top: 8px;
  display:flex;
  gap: 10px;
  align-items:center;
}
.ymal-ico{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.12);
  background: transparent;
  display:grid;
  place-items:center;
  color: #111;
  transition: .2s ease;
}
.ymal-ico:hover{
  border-color: var(--underline);
  color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

/* Responsive tweaks */
@media (max-width: 991.98px){
  .ymal-title{ font-size: 24px; }
  .ymal-img img{ height: 220px; }
}
@media (max-width: 575.98px){
  .ymal-title{ font-size: 22px; }
  .ymal-divider span{ width: 78px; }
  .ymal-img img{ height: 240px; }
  .ymal-name{ font-size: 12px; }
}



/* Divider wrapper */
.k-divider{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 12px auto 22px;
  width: 100%;
}

/* Lines */
.k-divider .k-line{
  height: 1px;
  flex: 1;
  max-width: 170px;
  background: linear-gradient(90deg, transparent, rgba(250,152,25,.55), transparent);
  position: relative;
}

/* Slightly stronger near the logo */
.k-divider .k-line.left{
  background: linear-gradient(90deg, transparent, rgba(250,152,25,.70));
}
.k-divider .k-line.right{
  background: linear-gradient(90deg, rgba(250,152,25,.70), transparent);
}

/* Center mark */
.k-divider .k-mark{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(250,152,25,.45);
  display: grid;
  place-items: center;
  background: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  padding: 6px;
}

/* Logo image */
.k-divider .k-mark img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ✅ Responsive */
@media (max-width: 575.98px){
  .k-divider{
    gap: 10px;
    margin: 10px auto 16px;
  }
  .k-divider .k-line{
    max-width: 110px;
  }
  .k-divider .k-mark{
    width: 36px;
    height: 36px;
    padding: 5px;
  }
}



.pd2-size.disabled span{
  opacity: .45;
  cursor: not-allowed;
}











.pd2-size.out-stock{
  opacity:.65;
  cursor:not-allowed;
  border-color:#e5b9b9;
  background:#fff7f7;
}

.pd2-oos-text{
  display:block;
  font-size:11px;
  color:#c0392b;
  font-weight:600;
  margin-top:2px;
}

.disabled-btn{
  background:#b7b7b7 !important;
  cursor:not-allowed;
  pointer-events:none;
  border-color:#b7b7b7 !important;
}