/* ═══════════════════════════════════════════════════════════
   PRODUCTS PAGE — agasthee.html & rajasaab.html
   Grid layout handled by Bootstrap 5.3 row/col system.
   This file handles hero, breadcrumb, card styles & enquire band.
═══════════════════════════════════════════════════════════ */

/* ── GRID AREA wrapper ── */
.grid-area {
  padding: 48px 0 80px;
  background: var(--cream);
}

/* ── CINEMATIC HERO ── */
.prod-hero {
  position: relative;
  height: 88vh;
  min-height: 580px;
  overflow: hidden;
  background: var(--charcoal);
  display: flex;
  align-items: flex-end;
}
.ph-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
}
.ph-panel {
  overflow: hidden;
  position: relative;
}
.ph-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.42) saturate(0.78);
  animation: kzoom 9s ease-in-out infinite alternate;
}
.ph-panel:nth-child(2) img { animation-delay: 2s; }
.ph-panel:nth-child(3) img { animation-delay: 4s; object-position: top right; }
@keyframes kzoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.07) translateY(-2%); }
}
.ph-panel:first-child::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(17,13,13,0.65), transparent);
}
.ph-panel:last-child::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(17,13,13,0.65), transparent);
}
.ph-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17,13,13,0.48) 0%, transparent 30%, rgba(17,13,13,0.82) 100%);
}
.ph-content {
  position: relative;
  z-index: 3;
  padding: 0 72px 64px;
  max-width: 760px;
}
.ph-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  opacity: 0;
  animation: fromB 0.9s 0.25s ease forwards;
}
.ph-eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.6;
}
.ph-h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(52px, 7.5vw, 104px);
  font-weight: 400;
  line-height: 0.95;
  color: #fff;
  margin-bottom: 14px;
  opacity: 0;
  animation: fromB 1.1s 0.4s ease forwards;
}
.ph-h1 em {
  font-style: unset;
  color: var(--gold-pale);
}
.ph-sub {
  font-family: 'Cinzel', serif;
  /* font-style: italic; */
  font-size: 19px;
  color: rgba(255,255,255,0.58);
  opacity: 0;
  animation: fromB 0.9s 0.58s ease forwards;
}
@keyframes fromB {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── BREADCRUMB BAR ── */
.crumb-bar {
  background: #fff;
  border-bottom: 1px solid var(--beige2);
  padding: 0 56px;
  position: sticky;
  top: var(--header-h);
  z-index: 90;
}
.crumb-inner {
  max-width: 1560px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}
.crumb-trail {
  display: flex;
  align-items: center;
  gap: 10px;
}
.crumb-trail a {
  font-family: 'Jost', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s;
}
.crumb-trail a:hover { color: var(--maroon); }
.crumb-sep { font-size: 9px; color: var(--beige2); }
.crumb-now {
  font-family: 'Jost', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--maroon);
}
.crumb-count {
  font-family: 'Jost', sans-serif;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.crumb-count strong { color: var(--maroon); font-weight: 700; }

/* ══════════════════════════════════════════════
   PRODUCT CARD
   Bootstrap cols wrap the .pcard anchor tag.
   Height is consistent via aspect-ratio.
══════════════════════════════════════════════ */

/* .pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.88);
  transition: transform 0.82s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.55s;
}
.pcard:hover .pcard-img img {
  transform: scale(1.08);
  filter: saturate(1.05) brightness(0.82);
} */
.pcard {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  display: block;
  cursor: zoom-in;
  text-decoration: none;
  /* Consistent height via aspect ratio so all cards match */
  aspect-ratio: 3 / 4;
}

/* .pcard-img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}


.pcard-img img {
    transform: scale(1);
    transition: transform 1.2s ease-out;
    will-change: transform;
}

.pcard:hover .pcard-img img {
    transform: scale(1.22);
} */


.pcard-img{
    position: relative;
    overflow: hidden;
}

.pcard-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:opacity .5s ease, transform .8s ease;
}

.pcard-img .img-hover{
    position:absolute;
    inset:0;
    opacity:0;
}

.pcard:hover .img-default{
    opacity:0;
    transform:scale(1.08);
}

.pcard:hover .img-hover{
    opacity:1;
    transform:scale(1.08);
}




/* Badge */
.pcard-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  font-family: 'Jost', sans-serif;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  padding: 5px 13px;
}
.badge-m { background: var(--maroon); }
.badge-g { background: var(--gold); }
.badge-d { background: var(--charcoal); }

/* Number */
.pcard-num {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 3;
  font-family: 'Cinzel', serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.28);
}

/* Hover overlay — slides up */
.pcard-overlay {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 22px 26px;
  background: linear-gradient(
    to top,
    rgba(17,13,13,0.92) 0%,
    rgba(17,13,13,0.38) 48%,
    transparent 72%
  );
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.38s ease, transform 0.38s ease;
}
.pcard:hover .pcard-overlay {
  opacity: 1;
  transform: translateY(0);
}
.pcard-brand {
  font-family: 'Jost', sans-serif;
  font-size: 7.5px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 5px;
}
.pcard-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 7px;
}
.pcard-desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.60);
  line-height: 1.62;
  margin-bottom: 14px;
}
.pcard-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 16px;
}
.pcard-tag {
  font-family: 'Jost', sans-serif;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.30);
  padding: 3px 9px;
}
.pcard-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold-light);
  padding: 10px 22px;
  transition: background 0.28s;
  width: fit-content;
}
.pcard:hover .pcard-btn { background: var(--gold); }
.pcard-btn svg {
  width: 11px;
  height: 11px;
  stroke: var(--charcoal);
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.28s;
}
.pcard:hover .pcard-btn svg { transform: translateX(3px); }

/* ── ENQUIRE BAND ── */
.enq-band {
  background: var(--maroon-deep);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.enq-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}
.enq-h {
  font-family: 'Cinzel', serif;
  font-size: clamp(20px, 2.8vw, 36px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0;
}
.enq-h em { font-style: unset; color: var(--gold-pale); }
.enq-sub {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.52);
  margin-top: 8px;
  line-height: 1.7;
}
.enq-btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* Buttons */
.btn-gold {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--gold-light);
  padding: 14px 36px;
  border: 1.5px solid var(--gold-light);
  transition: background 0.3s, border-color 0.3s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-gold:hover { background: var(--gold); border-color: var(--gold); color: var(--charcoal); }

.btn-ghost-gold {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 14px 36px;
  border: 1.5px solid rgba(201,147,58,0.42);
  transition: border-color 0.3s, background 0.3s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-ghost-gold:hover {
  border-color: var(--gold-light);
  background: rgba(201,147,58,0.08);
  color: var(--gold-light);
}

/* ── SCROLL REVEAL (used on other pages) ── */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.rv.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
/* Bootstrap handles column breakpoints.
   Only override card-specific adjustments here. */
@media (max-width: 991.98px) {
  .ph-bg { grid-template-columns: 1fr 1fr; }
  .ph-panel:nth-child(3) { display: none; }
  .ph-content { padding: 0 40px 52px; }
  .crumb-bar { padding: 0 24px; }
  .grid-area { padding: 36px 0 64px; }
  .enq-band { padding: 52px 28px; }
}
@media (max-width: 767.98px) {
  .ph-bg { grid-template-columns: 1fr; }
  .ph-panel:not(:first-child) { display: none; }
  .ph-content { padding: 0 24px 48px; }
  .ph-h1 { font-size: clamp(40px, 12vw, 64px); }
  .pcard-desc { display: none; }
  .crumb-bar { top: var(--header-h); padding: 0 16px; }
  .grid-area { padding: 24px 0 60px; }
  .enq-band { flex-direction: column; align-items: flex-start; padding: 48px 22px; }
  .enq-btns { width: 100%; }
  .btn-gold, .btn-ghost-gold { flex: 1; text-align: center; }
}
