/*
 * Bhagya Rishi Product Catalog
 * Theme: Bhagya Rishi Sansthan
 */
:root{
  --brs-bg:#fffaf2;
  --brs-surface:#ffffff;
  --brs-surface-2:#fbf2e6;
  --brs-maroon:#4a0f22;
  --brs-maroon-2:#6c1935;
  --brs-maroon-dark:#2d0815;
  --brs-gold:#d4a33f;
  --brs-gold-2:#f2cf7a;
  --brs-text:#25171c;
  --brs-muted:#75646b;
  --brs-line:rgba(74,15,34,.12);
  --brs-shadow:0 18px 60px rgba(49,10,24,.12);
  --brs-shadow-soft:0 10px 35px rgba(49,10,24,.08);
}

.brs-products-section,
.brs-single-product-shell{
  font-family:'Poppins',sans-serif;
  color:var(--brs-text);
  box-sizing:border-box;
}

.brs-products-section *,
.brs-single-product-shell *{box-sizing:border-box}

.brs-products-section{
  background:
    radial-gradient(circle at 10% 10%,rgba(212,163,63,.07),transparent 28%),
    linear-gradient(180deg,var(--brs-bg) 0%,#fff 100%);
  padding:84px 0;
}

.brs-products-container,
.brs-single-product-container{
  width:min(1180px,calc(100% - 40px));
  margin:0 auto;
}

.brs-products-heading{
  margin-bottom:38px;
}

.brs-products-eyebrow{
  display:block;
  color:var(--brs-gold);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.15em;
  text-transform:uppercase;
  margin-bottom:10px;
}

.brs-products-heading h2,
.brs-product-description h2,
.brs-booking-card h2,
.brs-product-summary h1{
  font-family:'Cinzel',serif;
  color:var(--brs-maroon);
  line-height:1.15;
}

.brs-products-heading h2{
  font-size:clamp(2rem,4vw,3.2rem);
  margin:0;
}

.brs-products-line{
  display:block;
  width:74px;
  height:3px;
  margin-top:16px;
  border-radius:100px;
  background:var(--brs-gold);
}

.brs-products-grid{
  display:grid;
  grid-template-columns:repeat(var(--brs-columns,3),minmax(0,1fr));
  gap:24px;
}

.brs-product-card{
  background:#fff;
  border:1px solid var(--brs-line);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 10px 32px rgba(49,10,24,.06);
  transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease;
}

.brs-product-card:hover{
  transform:translateY(-8px);
  border-color:rgba(212,163,63,.4);
  box-shadow:0 20px 50px rgba(49,10,24,.12);
}

.brs-product-image-wrap{
  display:block;
  position:relative;
  aspect-ratio:1/.84;
  overflow:hidden;
  background:var(--brs-surface-2);
  text-decoration:none!important;
}

.brs-product-card-image{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}

.brs-product-card:hover .brs-product-card-image{transform:scale(1.06)}

.brs-product-placeholder{
  width:100%;
  height:100%;
  min-height:220px;
  display:grid;
  place-items:center;
  background:linear-gradient(145deg,#fff7e8,#f2dfbd);
  color:var(--brs-maroon);
  font-size:3rem;
}

.brs-product-badge,
.brs-single-badge{
  position:absolute;
  left:16px;
  top:16px;
  z-index:4;
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:6px 11px;
  border-radius:999px;
  background:var(--brs-gold-2);
  color:var(--brs-maroon-dark);
  font-size:.75rem;
  font-weight:800;
  box-shadow:0 8px 20px rgba(49,10,24,.15);
}

.brs-product-card-body{padding:24px}

.brs-product-card h3{
  font-family:'Cinzel',serif;
  font-size:1.18rem;
  line-height:1.35;
  margin:0 0 9px;
  color:var(--brs-maroon);
}

.brs-product-card h3 a{
  color:inherit!important;
  text-decoration:none!important;
}

.brs-product-excerpt{
  color:var(--brs-muted);
  font-size:.92rem;
  line-height:1.65;
  margin:0 0 16px;
}

.brs-product-price-row,
.brs-single-price-row{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}

.brs-product-price-row{margin-bottom:18px}

.brs-product-current-price{
  color:var(--brs-maroon);
  font-size:1.18rem;
  font-weight:800;
}

.brs-product-price-row del,
.brs-single-price-row del{
  color:#9a8a90;
}

.brs-product-view-btn,
.brs-whatsapp-submit{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:48px;
  border:0;
  border-radius:999px;
  padding:0 20px;
  background:var(--brs-maroon);
  color:#fff!important;
  font-weight:700;
  text-decoration:none!important;
  cursor:pointer;
  transition:transform .3s ease,background .3s ease,box-shadow .3s ease;
}

.brs-product-view-btn:hover,
.brs-whatsapp-submit:hover{
  transform:translateY(-2px);
  background:var(--brs-maroon-2);
  box-shadow:0 12px 28px rgba(74,15,34,.22);
}

.brs-empty-products{
  padding:28px;
  border:1px dashed rgba(74,15,34,.2);
  border-radius:18px;
  text-align:center;
  color:var(--brs-muted);
  background:#fff;
}

/* Single product */
.brs-single-product-shell{
  background:var(--brs-bg);
  padding:72px 0 90px;
}

.brs-single-product-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:54px;
  align-items:start;
}

.brs-product-gallery{
  position:sticky;
  top:110px;
}

.brs-main-image-frame{
  position:relative;
  overflow:hidden;
  border-radius:28px;
  border:1px solid rgba(212,163,63,.28);
  background:#fff;
  box-shadow:var(--brs-shadow);
  aspect-ratio:1/1;
}

.brs-main-product-image{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:opacity .2s ease,transform .45s ease;
}

.brs-main-image-frame:hover .brs-main-product-image{transform:scale(1.025)}

.brs-product-placeholder-large{min-height:520px}

.brs-gallery-thumbs{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:11px;
  margin-top:14px;
}

.brs-gallery-thumb{
  display:block;
  padding:0;
  border:2px solid transparent;
  border-radius:13px;
  overflow:hidden;
  aspect-ratio:1/1;
  background:#fff;
  cursor:pointer;
  transition:border-color .25s ease,transform .25s ease;
}

.brs-gallery-thumb:hover,
.brs-gallery-thumb.active{
  border-color:var(--brs-gold);
  transform:translateY(-2px);
}

.brs-gallery-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.brs-product-summary{
  padding:26px 0;
}

.brs-product-summary h1{
  font-size:clamp(2.2rem,4.5vw,4rem);
  margin:0 0 20px;
}

.brs-single-price-row{margin-bottom:24px}

.brs-single-current-price{
  color:var(--brs-maroon);
  font-size:2rem;
  font-weight:800;
}

.brs-save-badge{
  display:inline-flex;
  padding:5px 10px;
  border-radius:999px;
  background:#edf8ed;
  color:#277536;
  font-size:.78rem;
  font-weight:800;
}

.brs-product-short-desc{
  color:var(--brs-muted);
  font-size:1.02rem;
  line-height:1.8;
  margin-bottom:24px;
}

.brs-product-short-desc p{margin:0}

.brs-highlight-list{
  display:grid;
  gap:11px;
  margin:25px 0 30px;
}

.brs-highlight-item{
  display:flex;
  gap:11px;
  align-items:flex-start;
  color:#4d3a42;
  font-weight:500;
}

.brs-highlight-item i{
  color:var(--brs-gold);
  margin-top:2px;
}

.brs-product-assurance{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  border-top:1px solid var(--brs-line);
  padding-top:24px;
}

.brs-product-assurance div{
  padding:14px 12px;
  border-radius:14px;
  background:#fff;
  border:1px solid var(--brs-line);
  text-align:center;
  color:var(--brs-maroon);
  font-size:.78rem;
  font-weight:700;
}

.brs-product-assurance i{
  display:block;
  color:var(--brs-gold);
  font-size:1.25rem;
  margin-bottom:5px;
}

.brs-product-details-grid{
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:36px;
  align-items:start;
  margin-top:72px;
}

.brs-product-description,
.brs-booking-card{
  background:#fff;
  border:1px solid var(--brs-line);
  border-radius:24px;
  padding:34px;
  box-shadow:var(--brs-shadow-soft);
}

.brs-product-description h2,
.brs-booking-card h2{
  font-size:clamp(1.6rem,3vw,2.4rem);
  margin:0 0 20px;
}

.brs-product-content{
  color:#534149;
  line-height:1.85;
}

.brs-product-content h2,
.brs-product-content h3,
.brs-product-content h4{
  color:var(--brs-maroon);
  font-family:'Cinzel',serif;
  margin-top:1.4em;
}

.brs-product-content img{
  max-width:100%;
  height:auto;
  border-radius:16px;
}

.brs-booking-card{
  position:sticky;
  top:110px;
  background:linear-gradient(160deg,var(--brs-maroon),var(--brs-maroon-dark));
  color:#fff;
  border-color:rgba(212,163,63,.25);
}

.brs-booking-card .brs-products-eyebrow{color:var(--brs-gold-2)}
.brs-booking-card h2{color:#fff}
.brs-booking-card>p{color:rgba(255,255,255,.72);line-height:1.65}

.brs-whatsapp-booking-form{
  display:grid;
  gap:14px;
  margin-top:22px;
}

.brs-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.brs-form-field{
  display:grid;
  gap:7px;
}

.brs-form-field label{
  font-size:.82rem;
  font-weight:700;
  color:rgba(255,255,255,.86);
}

.brs-form-field input,
.brs-form-field textarea{
  width:100%;
  border:1px solid rgba(255,255,255,.14);
  border-radius:12px;
  background:rgba(255,255,255,.08);
  color:#fff;
  padding:12px 13px;
  outline:none;
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}

.brs-form-field input::placeholder,
.brs-form-field textarea::placeholder{
  color:rgba(255,255,255,.45);
}

.brs-form-field input:focus,
.brs-form-field textarea:focus{
  border-color:var(--brs-gold-2);
  background:rgba(255,255,255,.11);
  box-shadow:0 0 0 3px rgba(242,207,122,.12);
}

.brs-whatsapp-submit{
  width:100%;
  margin-top:4px;
  min-height:52px;
  background:#25D366;
  color:#fff!important;
}

.brs-whatsapp-submit:hover{background:#1fbd59}

.brs-related-products{
  margin-top:80px;
}

@media (max-width:1080px){
  .brs-products-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .brs-single-product-grid{gap:36px}
  .brs-product-details-grid{grid-template-columns:1fr}
  .brs-booking-card{position:relative;top:auto}
}

@media (max-width:820px){
  .brs-single-product-grid{grid-template-columns:1fr}
  .brs-product-gallery{position:relative;top:auto}
  .brs-product-summary{padding-top:0}
  .brs-product-assurance{grid-template-columns:1fr 1fr 1fr}
}

@media (max-width:640px){
  .brs-products-section{padding:62px 0}
  .brs-single-product-shell{padding:38px 0 68px}
  .brs-products-container,
  .brs-single-product-container{
    width:min(100% - 24px,1180px);
  }
  .brs-products-grid{grid-template-columns:1fr}
  .brs-product-card-body{padding:20px}
  .brs-main-image-frame{border-radius:20px}
  .brs-gallery-thumbs{grid-template-columns:repeat(4,1fr)}
  .brs-product-summary h1{font-size:clamp(2rem,10vw,3rem)}
  .brs-single-current-price{font-size:1.65rem}
  .brs-product-assurance{grid-template-columns:1fr}
  .brs-product-details-grid{margin-top:46px}
  .brs-product-description,
  .brs-booking-card{padding:24px 19px;border-radius:20px}
  .brs-form-grid{grid-template-columns:1fr}
}

@media (prefers-reduced-motion:reduce){
  .brs-product-card,
  .brs-product-card-image,
  .brs-product-view-btn,
  .brs-whatsapp-submit,
  .brs-main-product-image,
  .brs-gallery-thumb{
    transition:none!important;
  }
}
