:root {
  --bg: #fbf4e8;
  --bg-soft: #fffaf2;
  --paper: rgba(255, 252, 247, 0.88);
  --text: #35170b;
  --text-soft: #6b4a32;
  --brand: #b45f16;
  --brand-deep: #7d3408;
  --gold: #e0b15b;
  --gold-soft: #f8d58c;
  --green: #219653;
  --line: rgba(163, 110, 52, 0.22);
  --shadow: 0 18px 48px rgba(73, 35, 8, 0.14);
  --radius: 24px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(241, 209, 153, 0.25), transparent 35%),
    radial-gradient(circle at bottom right, rgba(204, 126, 47, 0.12), transparent 30%),
    var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

textarea,
select {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header .container {
  width: min(1380px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
  background: rgba(255, 249, 241, 0.42);
  backdrop-filter: blur(10px);
}

.site-header.is-scrolled {
  background: rgba(255, 249, 241, 0.95);
  box-shadow: 0 10px 30px rgba(63, 31, 12, 0.1);
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand strong {
  display: block;
  font-family: "Cinzel", serif;
  font-size: clamp(1.55rem, 1.8vw, 2.25rem);
  line-height: 1;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.brand small {
  color: var(--text-soft);
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--brand);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(255, 241, 209, 0.84)),
    #fff;
  border: 1px solid rgba(180, 95, 22, 0.3);
  box-shadow: inset 0 0 0 4px rgba(241, 212, 168, 0.35);
}

.brand-mark svg {
  width: 32px;
  height: 32px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.3vw, 24px);
  font-size: 0.9rem;
  min-width: 0;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  white-space: nowrap;
}

.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #d67c1d, var(--brand));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(180, 95, 22, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(180, 95, 22, 0.32);
  filter: saturate(1.04);
}

.button--nav {
  min-height: 48px;
  padding-inline: 22px;
  white-space: nowrap;
}

.site-header .button--nav {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  padding: 0 22px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, #d67c1d, var(--brand)) !important;
  color: #fff !important;
  font-size: 0.94rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  box-shadow: 0 12px 30px rgba(180, 95, 22, 0.25) !important;
}

.site-header .button--nav:hover,
.site-header .button--nav:focus-visible {
  background: linear-gradient(135deg, #c96f13, var(--brand-deep)) !important;
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(180, 95, 22, 0.32) !important;
}

.button--whatsapp {
  background: linear-gradient(135deg, #28ae61, var(--green));
  box-shadow: 0 12px 30px rgba(33, 150, 83, 0.24);
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  align-items: center;
  overflow: clip;
}

.page-hero {
  position: relative;
  min-height: 60vh;
  display: grid;
  align-items: end;
  overflow: clip;
}

.page-hero__media,
.page-hero__overlay {
  position: absolute;
  inset: 0;
}

.page-hero__media {
  background:
    linear-gradient(90deg, rgba(21, 8, 4, 0.9), rgba(21, 8, 4, 0.34) 55%, rgba(21, 8, 4, 0.74)),
    url("../images/banner.png") center/cover;
}

.page-hero__overlay {
  background:
    radial-gradient(circle at 76% 30%, rgba(255, 185, 88, 0.22), transparent 18%),
    linear-gradient(180deg, rgba(56, 22, 5, 0.12), rgba(56, 22, 5, 0.48));
}

.page-hero__content {
  position: relative;
  z-index: 1;
  padding: 160px 0 82px;
  color: #fff5e8;
}

.page-hero__content--center {
  text-align: center;
}

.page-hero__content h1 {
  margin: 0;
  max-width: 760px;
  font-family: "Cinzel", serif;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: 0.98;
}

.page-hero__content p:last-child {
  max-width: 700px;
  margin: 18px 0 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 245, 232, 0.88);
}

.page-hero__content--center h1,
.page-hero__content--center p:last-child {
  margin-left: auto;
  margin-right: auto;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(21, 8, 4, 0.85), rgba(21, 8, 4, 0.2) 45%, rgba(21, 8, 4, 0.68)),
    url("../images/banner.png") center/cover;
  transform: scale(1.04);
}

.hero-overlay {
  background:
    radial-gradient(circle at 78% 35%, rgba(255, 183, 74, 0.24), transparent 16%),
    linear-gradient(180deg, rgba(56, 22, 5, 0.22), rgba(56, 22, 5, 0.5));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  padding: 128px 0 92px;
  color: #fff8ee;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 800;
}

.eyebrow--center {
  color: var(--brand);
  text-align: center;
}

.hero h1,
.section-heading h2,
.cta-banner h2 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-weight: 700;
  line-height: 0.92;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.6rem, 7vw, 6.4rem);
}

.hero h1 span {
  display: block;
  color: #f3c76f;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  font-size: 1.16rem;
  line-height: 1.75;
  color: rgba(255, 247, 235, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  width: 34px;
  height: 58px;
  margin-left: -17px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
}

.scroll-indicator span {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: #fff;
  animation: scrollDot 1.7s infinite;
}

@keyframes scrollDot {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  80% {
    transform: translateY(24px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.section {
  padding: 96px 0;
  position: relative;
}

.section--warm::before,
.section--timeline::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top, rgba(245, 218, 173, 0.2), transparent 26%),
    radial-gradient(circle at bottom, rgba(204, 126, 47, 0.08), transparent 32%);
  pointer-events: none;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2.8rem, 4.2vw, 4rem);
  color: var(--text);
}

.section-heading p:last-child {
  margin: 14px auto 0;
  max-width: 620px;
  color: var(--text-soft);
  line-height: 1.8;
}

.services-grid,
.feature-grid,
.gallery-grid,
.instagram-grid,
.video-grid {
  display: grid;
  gap: 24px;
}

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.service-card,
.feature-card,
.testimonial-card,
.insta-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.service-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 236, 0.92)),
    var(--paper);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(73, 35, 8, 0.18);
  border-color: rgba(180, 95, 22, 0.35);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(241, 196, 123, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(212, 144, 73, 0.05));
  pointer-events: none;
}

.service-image {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin: 14px 14px 0;
  border-radius: 22px;
  background:
    radial-gradient(circle at top, rgba(255, 228, 184, 0.72), rgba(246, 234, 215, 0.9)),
    #f6ead7;
  border: 1px solid rgba(180, 95, 22, 0.14);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(0.94);
  transition: transform 0.35s ease;
}

.service-card:hover .service-image img {
  transform: scale(0.98);
}

.service-body {
  position: relative;
  z-index: 1;
  padding: 22px 24px 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 222, 172, 0.5);
  color: var(--brand-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card h3,
.event-card h3,
.feature-card h3,
.testimonial-card h3,
.insta-card h3,
.video-card h3,
.footer-grid h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: 2rem;
  line-height: 1.05;
}

.service-card p,
.feature-card p,
.timeline-step p,
.testimonial-card p,
.insta-card p,
.video-card p,
.footer-copy,
.footer-links,
.cta-banner p {
  color: var(--text-soft);
  line-height: 1.8;
}

.service-card .button {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

.services-grid .service-card:nth-child(2),
.services-grid .service-card:nth-child(5) {
  transform: translateY(20px);
}

.services-grid .service-card:nth-child(2):hover,
.services-grid .service-card:nth-child(5):hover {
  transform: translateY(12px);
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-intro,
.about-story {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.about-align-left {
  text-align: left;
}

.about-intro__copy h2,
.about-story__copy h2 {
  margin: 0 0 18px;
  font-family: "Cinzel", serif;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1.04;
  color: var(--text);
}

.about-intro__copy p,
.about-story__copy p {
  color: var(--text-soft);
  line-height: 1.9;
}

.about-intro__card,
.about-story__image,
.about-value-card,
.about-highlight {
  border-radius: 28px;
  border: 1px solid rgba(180, 95, 22, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 238, 0.92)),
    var(--paper);
  box-shadow: var(--shadow);
}

.about-intro__card {
  padding: 28px;
}

.about-intro__card h3 {
  margin: 0 0 14px;
  font-family: "Cinzel", serif;
  font-size: 1.9rem;
}

.about-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.9;
}

.about-values,
.about-highlights {
  display: grid;
  gap: 24px;
}

.about-values {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-value-card {
  padding: 28px;
}

.about-value-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(252, 236, 207, 0.92));
  border: 1px solid rgba(180, 95, 22, 0.16);
  color: var(--brand);
}

.about-value-card h3 {
  margin: 0 0 10px;
  font-family: "Cinzel", serif;
  font-size: 1.7rem;
}

.about-value-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.85;
}

.about-highlights {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-highlight {
  padding: 30px 24px;
  text-align: center;
}

.about-highlight strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Cinzel", serif;
  font-size: 2.1rem;
  color: var(--brand-deep);
}

.about-highlight span {
  color: var(--text-soft);
  line-height: 1.75;
}

.about-story__image {
  overflow: hidden;
}

.about-story__image img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.about-story__copy {
  align-self: center;
}

.service-detail-list {
  display: grid;
  gap: 28px;
}

.ceremony-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
}

.ceremony-slider__track {
  flex: 1;
  overflow: hidden;
}

.ceremony-slider__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 24px;
  transition: transform 0.45s ease;
}

.ceremony-slide {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.78fr);
  gap: 30px;
  align-items: stretch;
  padding: 46px;
  border-radius: 36px;
  border: 1px solid rgba(180, 95, 22, 0.12);
  background:
    radial-gradient(circle at top left, rgba(245, 220, 180, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 238, 0.94));
  box-shadow: 0 24px 56px rgba(73, 35, 8, 0.12);
}

.ceremony-slide__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ceremony-slide__copy h3 {
  margin: 0 0 20px;
  font-family: "Cinzel", serif;
  font-size: clamp(2.5rem, 4vw, 4.25rem);
  line-height: 0.98;
  max-width: 10ch;
}

.ceremony-slide__copy p:not(.eyebrow) {
  margin: 0;
  max-width: 24ch;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.9;
}

.ceremony-slide__list {
  margin-top: 28px;
}

.ceremony-slide__list li {
  font-size: 0.98rem;
}

.ceremony-slide__image {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(180, 95, 22, 0.14);
  box-shadow: 0 20px 44px rgba(73, 35, 8, 0.16);
  min-height: 0;
}

.ceremony-slide__image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.ceremony-slider__nav {
  flex-shrink: 0;
}

.ceremony-slider__dots {
  margin-top: 24px;
}

.ceremony-slider__summary {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.ceremony-slider__summary span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 248, 233, 0.86);
  border: 1px solid rgba(180, 95, 22, 0.12);
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.service-detail-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(180, 95, 22, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 238, 0.92)),
    var(--paper);
  box-shadow: var(--shadow);
}

.service-detail-card--reverse {
  grid-template-columns: 0.85fr 1.15fr;
}

.service-detail-card--reverse .service-detail-card__copy {
  order: 2;
}

.service-detail-card--reverse .service-detail-card__image {
  order: 1;
}

.service-detail-card__copy h3 {
  margin: 0 0 12px;
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.04;
}

.service-detail-card__copy p {
  color: var(--text-soft);
  line-height: 1.85;
}

.service-detail-card__image {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(180, 95, 22, 0.16);
}

.service-detail-card__image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.shop-status,
.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(180, 95, 22, 0.14);
  background: rgba(255, 247, 233, 0.82);
  color: var(--brand-deep);
}

.shop-status {
  display: grid;
  gap: 8px;
}

.vedam-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 320px));
  justify-content: start;
  gap: 26px;
}

.shop-card,
.vedam-product-card,
.product-detail,
.checkout-form,
.checkout-summary,
.vedam-woo-checkout .woocommerce,
.vedam-woocommerce-shell .woocommerce {
  border-radius: 28px;
  border: 1px solid rgba(180, 95, 22, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 238, 0.92)),
    var(--paper);
  box-shadow: var(--shadow);
}

.shop-card {
  overflow: hidden;
}

.vedam-product-card {
  overflow: hidden;
  position: relative;
}

.shop-card__image {
  padding: 16px 16px 0;
}

.shop-card__image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 22px;
}

.vedam-product-card__image {
  display: block;
  padding: 16px 16px 0;
  position: relative;
}

.vedam-product-card__image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 26px;
}

.shop-card__body {
  padding: 20px 22px 22px;
}

.vedam-product-card__body {
  display: grid;
  gap: 14px;
  padding: 20px 22px 22px;
}

.shop-card__body h3,
.vedam-product-card__body h3,
.product-detail__copy h2,
.checkout-form h3,
.checkout-summary h3 {
  margin: 0 0 10px;
  font-family: "Cinzel", serif;
}

.vedam-product-card__body h3 a {
  color: inherit;
}

.vedam-product-card__body h3 {
  margin: 0;
  font-size: clamp(1.35rem, 1.8vw, 1.85rem);
  line-height: 1.12;
  text-transform: uppercase;
}

.shop-card__body p {
  color: var(--text-soft);
  line-height: 1.8;
}

.vedam-product-card__body p {
  color: var(--text-soft);
  margin: 0;
  line-height: 1.8;
  min-height: 84px;
}

.shop-card__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 14px 0 16px;
}

.shop-card__price-row strong,
.product-detail__price,
.checkout-total strong {
  font-size: 1.8rem;
  color: var(--brand-deep);
}

.vedam-product-card__price {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin: 0;
}

.vedam-product-card__price-value {
  display: grid;
  gap: 4px;
}

.vedam-product-card__price-value,
.vedam-product-card__price-value .price {
  color: var(--brand-deep);
  font-weight: 800;
}

.vedam-product-card__price-value .amount {
  font-size: clamp(2rem, 2.5vw, 2.45rem);
  color: var(--brand-deep);
}

.vedam-product-card__price-value del {
  color: rgba(118, 81, 49, 0.75);
  font-size: 0.96rem;
  font-weight: 700;
}

.vedam-product-card__price-value del .amount {
  font-size: 0.96rem;
  color: rgba(118, 81, 49, 0.75);
}

.vedam-product-card__price-value ins {
  text-decoration: none;
}

.vedam-product-card__stock {
  color: var(--text-soft);
  font-weight: 700;
  line-height: 1.3;
  text-align: right;
  max-width: 72px;
}

.vedam-product-card__badge {
  position: absolute;
  top: 28px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  min-height: 58px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #b59a0b;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 800;
  z-index: 1;
}

.shop-card__price-row span {
  color: var(--text-soft);
  font-weight: 700;
}

.qty-control {
  display: inline-grid;
  grid-template-columns: 42px 72px 42px;
  align-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(180, 95, 22, 0.16);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.86);
}

.qty-btn {
  min-height: 42px;
  border: 0;
  background: transparent;
  color: var(--brand-deep);
  font-size: 1.3rem;
  font-weight: 800;
  cursor: pointer;
}

.qty-input {
  width: 100%;
  min-height: 42px;
  border: 0;
  text-align: center;
  color: var(--text);
  background: transparent;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.shop-card__actions {
  display: flex;
  gap: 12px;
}

.vedam-product-card__actions,
.vedam-single-product__actions {
  display: flex;
  gap: 12px;
  align-items: stretch;
}

.button--ghost {
  background: transparent;
  color: var(--brand-deep);
  border: 1px solid rgba(180, 95, 22, 0.22);
  box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  box-shadow: 0 10px 24px rgba(180, 95, 22, 0.14);
}

.shop-card__actions .button {
  flex: 1;
}

.vedam-product-card__actions .button,
.vedam-single-product__actions .button {
  flex: 1;
  min-height: 52px;
  padding-inline: 22px;
  border-radius: 999px;
  justify-content: center;
  text-align: center;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: none;
}

.shop-buy-btn {
  background: linear-gradient(135deg, #d67c1d, var(--brand));
  color: #fff;
  border: 0;
  box-shadow: 0 10px 18px rgba(180, 95, 22, 0.16);
}

.shop-buy-btn:hover,
.shop-buy-btn:focus-visible {
  background: linear-gradient(135deg, #c96f13, var(--brand-deep));
  box-shadow: 0 14px 22px rgba(180, 95, 22, 0.24);
}

.shop-buy-btn--detail {
  min-height: 58px;
}

.post-type-archive-product .vedam-product-card__actions,
.tax-product_cat .vedam-product-card__actions,
.tax-product_tag .vedam-product-card__actions {
  display: flex !important;
  gap: 12px !important;
  align-items: stretch !important;
}

.post-type-archive-product .vedam-product-card__actions .button,
.tax-product_cat .vedam-product-card__actions .button,
.tax-product_tag .vedam-product-card__actions .button {
  flex: 1 1 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 52px !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  font-size: 0.96rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-decoration: none !important;
  appearance: none;
}

.post-type-archive-product .vedam-product-card__actions .button--ghost,
.tax-product_cat .vedam-product-card__actions .button--ghost,
.tax-product_tag .vedam-product-card__actions .button--ghost {
  background: rgba(255, 255, 255, 0.96) !important;
  color: var(--brand-deep) !important;
  border: 1px solid rgba(218, 166, 104, 0.45) !important;
  box-shadow: none !important;
}

.post-type-archive-product .vedam-product-card__actions .shop-buy-btn,
.tax-product_cat .vedam-product-card__actions .shop-buy-btn,
.tax-product_tag .vedam-product-card__actions .shop-buy-btn {
  background: linear-gradient(135deg, #d67c1d, var(--brand)) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: 0 10px 18px rgba(180, 95, 22, 0.16) !important;
}

.button--disabled {
  opacity: 0.65;
  pointer-events: none;
}

.vedam-shop-toolbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 34px;
}

.vedam-shop-toolbar__count {
  margin: 0;
  color: var(--text-soft);
  font-weight: 700;
}

.vedam-product-purchase {
  display: grid;
  gap: 18px;
  margin-top: auto;
}

.vedam-qty-control {
  display: grid;
  grid-template-columns: 44px minmax(72px, 1fr) 44px;
  align-items: center;
  width: min(160px, 100%);
  border-radius: 999px;
  border: 1px solid rgba(180, 95, 22, 0.16);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
}

.vedam-qty-control--large {
  width: 158px;
}

.vedam-qty-btn {
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--brand-deep);
  font-size: 1.4rem;
  font-weight: 800;
  cursor: pointer;
}

.vedam-qty-control .quantity {
  margin: 0;
}

.vedam-qty-control .qty {
  width: 100%;
  min-height: 44px;
  border: 0;
  padding: 0;
  text-align: center;
  color: var(--text);
  background: transparent;
  box-shadow: none;
}

.vedam-qty-control .qty::-webkit-outer-spin-button,
.vedam-qty-control .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-detail {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  padding: 28px;
}

.product-detail__image img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: 24px;
}

.product-detail__copy p {
  color: var(--text-soft);
  line-height: 1.85;
}

.product-detail__list {
  margin-top: 16px;
  margin-bottom: 18px;
}

.qty-control--detail {
  margin-top: 12px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.72fr;
  gap: 28px;
  align-items: start;
}

.checkout-form,
.checkout-summary {
  padding: 28px;
}

.checkout-form,
.checkout-summary {
  border-radius: 30px;
  border: 1px solid rgba(180, 95, 22, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 238, 0.92)),
    var(--paper);
  box-shadow: var(--shadow);
}

.cart-panel,
.cart-summary {
  border-radius: 30px;
  border: 1px solid rgba(180, 95, 22, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 238, 0.92)),
    var(--paper);
  box-shadow: var(--shadow);
}

.section-heading--left {
  text-align: left;
  margin: 0 0 26px;
}

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.checkout-fields label {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
  font-weight: 700;
}

.checkout-fields__full {
  grid-column: 1 / -1;
}

.checkout-fields input {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(180, 95, 22, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.checkout-fields textarea,
.panchang-field input,
.panchang-field select {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(180, 95, 22, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.contact-textarea {
  min-height: 140px;
  padding: 16px;
  resize: vertical;
}

.payment-box {
  margin-top: 24px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 247, 233, 0.8);
  border: 1px solid rgba(180, 95, 22, 0.12);
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.payment-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(180, 95, 22, 0.14);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
}

.payment-note {
  margin: 14px 0 0;
  color: var(--text-soft);
}

.checkout-submit {
  width: 100%;
  margin-top: 22px;
}

.vedam-checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 24px;
}

.vedam-checkout-step {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(180, 95, 22, 0.12);
  background: rgba(255, 248, 236, 0.86);
}

.vedam-checkout-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d67c1d, var(--brand));
  color: #fff;
  font-weight: 800;
}

.vedam-checkout-step strong {
  color: var(--brand-deep);
  font-size: 1.05rem;
}

.vedam-checkout-step small {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.vedam-cart-form {
  display: grid;
  gap: 24px;
}

.vedam-cart-list {
  display: grid;
  gap: 20px;
}

.vedam-cart-item {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 170px;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(180, 95, 22, 0.12);
  background: rgba(255, 250, 243, 0.92);
}

.vedam-cart-item__media img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 20px;
}

.vedam-cart-item__copy {
  display: grid;
  gap: 12px;
}

.vedam-cart-item__copy h3 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.vedam-cart-item__copy h3 a {
  color: var(--brand-deep);
}

.vedam-cart-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-soft);
  font-weight: 600;
}

.vedam-cart-item__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.vedam-cart-item__controls .vedam-qty-control {
  width: 220px;
  max-width: 100%;
}

.vedam-cart-item__remove {
  min-height: 52px;
  padding-inline: 22px;
}

.vedam-cart-item__subtotal {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.vedam-cart-item__subtotal span {
  color: var(--text-soft);
  font-weight: 700;
}

.vedam-cart-item__subtotal strong,
.vedam-cart-item__subtotal .amount {
  color: var(--brand-deep);
  font-size: 1.4rem;
  font-weight: 800;
}

.vedam-cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
}

.vedam-cart-actions .button {
  min-height: 56px;
  padding-inline: 28px;
}

.vedam-cart-empty__button,
.cart-summary__checkout {
  width: 100%;
  margin-top: 20px;
}

.vedam-woo-checkout .woocommerce,
.vedam-woocommerce-shell .woocommerce {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.vedam-woo-checkout .woocommerce-checkout {
  display: block;
}

.vedam-woo-checkout .woocommerce form.checkout {
  display: grid;
  gap: 28px;
}

.vedam-woo-checkout .woocommerce-form-coupon-toggle {
  margin-bottom: 18px;
}

.vedam-woo-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
  border: 0;
  border-radius: 18px;
  background: rgba(255, 248, 236, 0.9);
  color: var(--text);
  padding: 16px 18px 16px 50px;
  box-shadow: none;
}

.vedam-woo-checkout .woocommerce-form-coupon-toggle .woocommerce-info::before {
  color: var(--brand);
}

.vedam-woo-checkout .woocommerce-form-coupon-toggle .showcoupon {
  color: var(--brand-deep);
  font-weight: 800;
}

.vedam-woo-checkout .checkout_coupon {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  margin: 0 0 20px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(180, 95, 22, 0.12);
  background: rgba(255, 248, 236, 0.82);
}

.vedam-woo-checkout #customer_details {
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(180, 95, 22, 0.12);
  background: rgba(255, 250, 244, 0.9);
}

.vedam-woo-checkout .woocommerce form .form-row label,
.vedam-woocommerce-shell .woocommerce form .form-row label {
  color: var(--text-soft);
  font-weight: 700;
}

.vedam-woo-checkout .woocommerce input.input-text,
.vedam-woo-checkout .woocommerce textarea,
.vedam-woo-checkout .woocommerce select,
.vedam-woocommerce-shell .woocommerce input.input-text,
.vedam-woocommerce-shell .woocommerce textarea,
.vedam-woocommerce-shell .woocommerce select {
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(180, 95, 22, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.vedam-woo-checkout .woocommerce textarea,
.vedam-woocommerce-shell .woocommerce textarea {
  min-height: 140px;
  padding: 16px;
  resize: vertical;
}

.vedam-woo-checkout .woocommerce .select2-container--default .select2-selection--single,
.vedam-woo-checkout .woocommerce .select2-container--default .select2-selection--multiple {
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(180, 95, 22, 0.16);
  background: rgba(255, 255, 255, 0.88);
}

.vedam-woo-checkout .woocommerce .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 52px;
  padding-left: 16px;
  color: var(--text);
}

.vedam-woo-checkout .woocommerce .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 52px;
  right: 10px;
}

.vedam-woo-checkout .woocommerce button.button,
.vedam-woo-checkout .woocommerce a.button,
.vedam-woocommerce-shell .woocommerce button.button,
.vedam-woocommerce-shell .woocommerce a.button {
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  padding: 14px 24px;
}

.vedam-woo-checkout .woocommerce button.button:hover,
.vedam-woo-checkout .woocommerce a.button:hover,
.vedam-woocommerce-shell .woocommerce button.button:hover,
.vedam-woocommerce-shell .woocommerce a.button:hover {
  background: var(--brand-deep);
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 34px;
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex;
  gap: 10px;
  padding: 0;
  margin: 0;
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(180, 95, 22, 0.14);
  background: rgba(255, 255, 255, 0.85);
  color: var(--brand-deep);
  font-weight: 800;
}

.woocommerce nav.woocommerce-pagination ul li .page-numbers.current,
.woocommerce nav.woocommerce-pagination ul li .page-numbers:hover {
  background: var(--brand);
  color: #fff;
}

.vedam-woo-checkout #order_review,
.vedam-woo-checkout .woocommerce-checkout-review-order,
.vedam-woocommerce-shell .woocommerce-cart-form,
.vedam-woocommerce-shell .cart-collaterals,
.vedam-woocommerce-shell div.product {
  margin-top: 24px;
}

.vedam-woo-checkout #customer_details,
.vedam-woo-checkout .woocommerce-checkout-review-order {
  padding: 0;
  margin: 0;
}

.vedam-woo-checkout .woocommerce-checkout-review-order {
  border-radius: 28px;
  border: 1px solid rgba(180, 95, 22, 0.12);
  background: rgba(255, 247, 233, 0.82);
  padding: 24px;
}

.vedam-single-product {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 28px;
  padding: 28px;
  border-radius: 34px;
  border: 1px solid rgba(180, 95, 22, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 238, 0.92)),
    var(--paper);
  box-shadow: var(--shadow);
}

.vedam-single-product__gallery {
  display: grid;
  gap: 16px;
}

.vedam-single-product__frame {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.vedam-single-product__hero-image {
  width: 100%;
  min-height: 640px;
  object-fit: cover;
  border-radius: 30px;
}

.vedam-single-product__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.vedam-single-product__thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
}

.vedam-single-product__copy {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 30px 26px;
  border-radius: 30px;
  border: 1px solid rgba(180, 95, 22, 0.14);
  background: rgba(255, 255, 255, 0.82);
}

.vedam-single-product__copy h1 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  line-height: 1.04;
  text-transform: uppercase;
}

.vedam-single-product__price,
.vedam-single-product__price .amount {
  color: var(--brand-deep);
  font-size: clamp(2rem, 2.6vw, 3rem);
  font-weight: 700;
}

.vedam-single-product__summary,
.vedam-single-product__meta {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.85;
}

.vedam-single-product__points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--text);
}

.vedam-single-product__points li {
  line-height: 1.7;
}

.vedam-single-product__purchase {
  display: grid;
  gap: 22px;
  margin-top: 10px;
}

.vedam-single-product__actions {
  gap: 20px;
}

.vedam-single-product__actions .button--ghost {
  color: var(--brand-deep);
  background: transparent;
  border: 1px solid rgba(218, 166, 104, 0.45);
}

.vedam-single-product__actions .button--ghost:hover,
.vedam-single-product__actions .button--ghost:focus-visible {
  background: rgba(255, 251, 245, 1);
  border-color: rgba(218, 166, 104, 0.7);
}

.vedam-single-product__actions .shop-buy-btn {
  min-height: 56px;
  font-size: clamp(0.98rem, 1.3vw, 1.05rem);
  box-shadow: 0 14px 28px rgba(198, 119, 36, 0.2);
}

.vedam-single-product__actions .shop-buy-btn:hover,
.vedam-single-product__actions .shop-buy-btn:focus-visible {
  box-shadow: 0 16px 30px rgba(198, 119, 36, 0.26);
}

.vedam-single-product__purchase .vedam-qty-control {
  width: 318px;
  max-width: 100%;
  min-height: 56px;
  border-color: rgba(226, 202, 171, 0.95);
  background: rgba(255, 255, 255, 0.96);
}

.vedam-single-product__purchase .vedam-qty-btn,
.vedam-single-product__purchase .vedam-qty-control .qty {
  min-height: 54px;
}

.vedam-single-product__purchase .vedam-qty-btn {
  font-size: 1.8rem;
}

.vedam-single-product__meta a {
  color: var(--brand-deep);
  font-weight: 700;
}

.vedam-checkout-heading {
  margin-bottom: 24px;
}

.vedam-checkout-heading h2 {
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.vedam-woo-checkout .woocommerce-billing-fields > h3,
.vedam-woo-checkout .woocommerce-additional-fields > h3,
.vedam-woo-checkout #ship-to-different-address,
.vedam-woo-checkout .woocommerce-checkout-review-order h3,
.vedam-woo-checkout .wc_payment_methods + .place-order .woocommerce-privacy-policy-text {
  margin-top: 0;
}

.vedam-woo-checkout .woocommerce-checkout .col2-set,
.vedam-woo-checkout .woocommerce-checkout-review-order {
  margin: 0;
}

.vedam-woo-checkout .woocommerce form.checkout {
  display: grid;
  gap: 28px;
}

.vedam-woo-checkout .woocommerce .col2-set {
  display: block;
}

.vedam-woo-checkout .woocommerce .col2-set .col-1,
.vedam-woo-checkout .woocommerce .col2-set .col-2 {
  width: 100%;
  float: none;
}

.vedam-woo-checkout .woocommerce form .form-row-first,
.vedam-woo-checkout .woocommerce form .form-row-last {
  width: calc(50% - 10px);
}

.vedam-woo-checkout .woocommerce form .form-row-first {
  float: left;
}

.vedam-woo-checkout .woocommerce form .form-row-last {
  float: right;
}

.vedam-woo-checkout .woocommerce-checkout-review-order-table,
.vedam-woo-checkout .woocommerce-checkout-payment {
  margin-top: 0;
}

.vedam-woo-checkout #order_review_heading {
  display: none;
}

.vedam-woo-checkout .woocommerce-checkout-review-order-table {
  display: none;
}

.vedam-woo-checkout .woocommerce-checkout-payment .wc_payment_methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  border: 0;
  margin: 0 0 18px;
}

.vedam-woo-checkout .woocommerce-checkout-payment .wc_payment_method {
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(180, 95, 22, 0.12);
  background: rgba(255, 255, 255, 0.82);
}

.vedam-woo-checkout .woocommerce-checkout-payment .wc_payment_method label {
  color: var(--brand-deep);
  font-weight: 800;
}

.vedam-woo-checkout .woocommerce-checkout-payment .wc_payment_method input[type="radio"] {
  accent-color: var(--brand);
}

.vedam-woo-checkout .woocommerce-checkout-payment .payment_box {
  margin-top: 12px;
  border-radius: 16px;
  background: rgba(255, 247, 233, 0.92);
  color: var(--text-soft);
}

.vedam-woo-checkout .woocommerce-checkout-payment .place-order {
  padding: 0 !important;
  margin-top: 18px;
}

.vedam-woo-checkout .woocommerce-checkout-payment #place_order {
  width: 100%;
  min-height: 56px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d6842d, #c87724) !important;
  color: #fff !important;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(198, 119, 36, 0.2) !important;
}

.vedam-woo-checkout .woocommerce-checkout-payment #place_order:hover,
.vedam-woo-checkout .woocommerce-checkout-payment #place_order:focus-visible {
  background: linear-gradient(180deg, #cf7a24, #bb6819) !important;
  box-shadow: 0 16px 30px rgba(198, 119, 36, 0.26) !important;
}

.checkout-summary {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 120px;
}

.checkout-summary__back {
  width: 100%;
  min-height: 56px;
  margin-top: 6px;
  border-radius: 999px;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
}

.checkout-summary__note {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.checkout-summary__intro {
  margin: -4px 0 4px;
  color: var(--text-soft);
  font-weight: 700;
}

.vedam-woo-checkout table.shop_table,
.vedam-woocommerce-shell table.shop_table {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(180, 95, 22, 0.16);
}

.vedam-woo-checkout .woocommerce-checkout-review-order-table th,
.vedam-woo-checkout .woocommerce-checkout-review-order-table td,
.vedam-woocommerce-shell table.shop_table th,
.vedam-woocommerce-shell table.shop_table td {
  padding: 16px;
}

.vedam-woo-checkout .woocommerce-checkout-payment,
.vedam-woocommerce-shell .cart_totals,
.vedam-woocommerce-shell .summary.entry-summary {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 247, 233, 0.8);
  border: 1px solid rgba(180, 95, 22, 0.12);
}

.checkout-summary__card {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 249, 241, 0.86);
  border: 1px solid rgba(180, 95, 22, 0.12);
}

.checkout-summary__card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 16px;
}

.checkout-summary__card strong,
.checkout-summary__card span {
  display: block;
}

.checkout-summary__card span {
  margin-top: 6px;
  color: var(--text-soft);
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(180, 95, 22, 0.14);
}

.checkout-total--grand {
  padding-top: 18px;
  border-top: 1px solid rgba(180, 95, 22, 0.12);
}

.thankyou-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.72fr;
  gap: 28px;
  align-items: start;
}

.thankyou-main {
  display: grid;
  gap: 24px;
}

.thankyou-card,
.thankyou-summary,
.thankyou-order-items {
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(180, 95, 22, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 238, 0.92)),
    var(--paper);
  box-shadow: var(--shadow);
}

.thankyou-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 222, 173, 0.42);
  color: var(--brand-deep);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.thankyou-card h2 {
  margin: 18px 0 14px;
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.thankyou-card > p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.85;
}

.thankyou-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.thankyou-meta-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 248, 236, 0.86);
  border: 1px solid rgba(180, 95, 22, 0.12);
}

.thankyou-meta-card span {
  color: var(--text-soft);
  font-weight: 700;
}

.thankyou-meta-card strong {
  color: var(--brand-deep);
  font-size: 1.08rem;
}

.thankyou-next-steps {
  margin-top: 28px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 247, 233, 0.82);
  border: 1px solid rgba(180, 95, 22, 0.12);
}

.thankyou-next-steps h3,
.thankyou-order-items h3,
.thankyou-summary h3 {
  margin: 0 0 16px;
  font-family: "Cinzel", serif;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

.thankyou-next-steps ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--text);
}

.thankyou-next-steps li {
  line-height: 1.75;
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.thankyou-actions .button {
  min-height: 56px;
  padding-inline: 28px;
}

.thankyou-order-items__list {
  display: grid;
  gap: 16px;
}

.thankyou-order-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 250, 243, 0.92);
  border: 1px solid rgba(180, 95, 22, 0.12);
}

.thankyou-order-item img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 16px;
}

.thankyou-order-item__copy {
  display: grid;
  gap: 6px;
}

.thankyou-order-item__copy strong {
  color: var(--brand-deep);
}

.thankyou-order-item__copy span {
  color: var(--text-soft);
}

.thankyou-order-item__price,
.thankyou-order-item__price .amount {
  color: var(--brand-deep);
  font-size: 1.18rem;
  font-weight: 800;
}

.thankyou-summary {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 120px;
}

.thankyou-summary__panel,
.thankyou-summary__helper {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 247, 233, 0.82);
  border: 1px solid rgba(180, 95, 22, 0.12);
}

.thankyou-summary__row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.thankyou-summary__row span {
  color: var(--text-soft);
  font-weight: 700;
}

.thankyou-summary__row strong {
  color: var(--brand-deep);
}

.thankyou-summary__row--total {
  margin-top: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(180, 95, 22, 0.12);
}

.thankyou-summary__row--total strong,
.thankyou-summary__row--total .amount {
  font-size: 1.3rem;
  font-weight: 800;
}

.thankyou-summary__helper span {
  color: var(--text-soft);
  line-height: 1.75;
}

.checkout-summary__helper {
  display: grid;
  gap: 8px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 247, 233, 0.82);
  border: 1px solid rgba(180, 95, 22, 0.12);
}

.checkout-summary__helper strong {
  color: var(--brand-deep);
}

.checkout-summary__helper span {
  color: var(--text-soft);
  line-height: 1.75;
}

.contact-card__link {
  margin-top: 12px;
}

.contact-card__link a {
  color: var(--brand-deep);
  font-weight: 800;
}

.contact-summary-list {
  display: grid;
  gap: 14px;
}

.contact-summary-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 247, 233, 0.8);
  border: 1px solid rgba(180, 95, 22, 0.12);
}

.contact-summary-item strong,
.contact-summary-item span {
  display: block;
}

.contact-summary-item span {
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.8;
}

.contact-form-shell .wpcf7,
.contact-form-shell form {
  width: 100%;
}

.panchang-shell {
  display: grid;
  gap: 24px;
}

.panchang-toolbar,
.panchang-day-card,
.panchang-panel,
.monthly-panchang__calendar,
.monthly-panchang__notes,
.panchang-metric-card {
  border-radius: 28px;
  border: 1px solid rgba(180, 95, 22, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 238, 0.92)),
    var(--paper);
  box-shadow: var(--shadow);
}

.panchang-toolbar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 24px;
}

.panchang-field {
  display: grid;
  gap: 8px;
}

.panchang-field span {
  color: var(--text-soft);
  font-weight: 700;
}

.panchang-status {
  padding: 18px 22px;
  border-radius: 18px;
  background: rgba(255, 240, 214, 0.72);
  border: 1px solid rgba(180, 95, 22, 0.14);
  color: var(--brand-deep);
  font-weight: 700;
  line-height: 1.7;
}

.panchang-top-grid,
.monthly-panchang {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.panchang-day-card,
.panchang-panel,
.monthly-panchang__calendar,
.monthly-panchang__notes {
  padding: 28px;
}

.panchang-day-card h3,
.panchang-panel h3,
.monthly-panchang__header h3 {
  margin: 0;
  font-family: "Cinzel", serif;
}

.panchang-day-card h3 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.06;
}

.panchang-day-card p,
.panchang-disclaimer,
.monthly-note-item span {
  color: var(--text-soft);
  line-height: 1.85;
}

.panchang-day-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 18px;
}

.panchang-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 219, 162, 0.62);
  color: var(--brand-deep);
  font-weight: 800;
}

.panchang-badge--soft {
  background: rgba(255, 243, 218, 0.95);
}

.panchang-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.panchang-mini-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 251, 245, 0.88);
  border: 1px solid rgba(180, 95, 22, 0.12);
}

.panchang-mini-card span,
.panchang-guidance__card span,
.monthly-note-item strong {
  display: block;
}

.panchang-mini-card span,
.panchang-guidance__card span {
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.panchang-mini-card strong,
.panchang-guidance__card strong {
  color: var(--text);
  line-height: 1.6;
}

.panchang-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.panchang-metric-card {
  padding: 22px;
}

.panchang-metric-card__label {
  display: block;
  margin-bottom: 12px;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panchang-metric-card strong {
  font-family: "Cinzel", serif;
  font-size: 1.45rem;
  line-height: 1.25;
  color: var(--brand-deep);
}

.panchang-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.panchang-panel__heading {
  margin-bottom: 22px;
}

.muhurat-list,
.monthly-note-list,
.panchang-guidance {
  display: grid;
  gap: 14px;
}

.muhurat-item,
.monthly-note-item,
.panchang-guidance__card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(180, 95, 22, 0.12);
  background: rgba(255, 251, 245, 0.88);
}

.muhurat-item--soft {
  background: rgba(255, 244, 222, 0.92);
}

.muhurat-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-weight: 700;
}

.muhurat-item strong,
.monthly-note-item strong {
  color: var(--brand-deep);
  font-size: 1.05rem;
}

.monthly-panchang__header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.monthly-panchang__weekdays,
.monthly-panchang__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.monthly-panchang__weekdays {
  margin-bottom: 10px;
}

.monthly-panchang__weekdays span {
  text-align: center;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.monthly-day {
  min-height: 126px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(180, 95, 22, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 241, 0.94));
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.monthly-day:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(180, 95, 22, 0.12);
  border-color: rgba(180, 95, 22, 0.22);
}

.monthly-day__date {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1rem;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(180, 95, 22, 0.1);
  box-shadow: 0 4px 10px rgba(141, 73, 18, 0.06);
}

.monthly-day__body {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  min-height: 0;
}

.monthly-day__primary,
.monthly-day__secondary {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}

.monthly-day__primary {
  font-size: 0.86rem;
  line-height: 1.25;
  font-weight: 800;
  color: var(--brand-deep);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.monthly-day__primary--empty {
  color: rgba(107, 74, 50, 0.62);
}

.monthly-day__secondary {
  color: var(--text-soft);
  font-size: 0.72rem;
  line-height: 1.25;
  font-weight: 700;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.monthly-day--muted {
  opacity: 0.35;
}

.monthly-day--empty {
  background: rgba(255, 251, 245, 0.4);
  border-style: dashed;
  pointer-events: none;
  box-shadow: none;
}

.monthly-day--festival {
  background: linear-gradient(180deg, rgba(255, 243, 219, 0.98), rgba(255, 250, 239, 0.96));
}

.monthly-day--soft {
  background: linear-gradient(180deg, rgba(255, 248, 228, 0.98), rgba(255, 252, 245, 0.96));
}

.monthly-day--active {
  border-color: rgba(180, 95, 22, 0.34);
  background: linear-gradient(180deg, rgba(255, 233, 192, 0.9), rgba(255, 245, 225, 0.92));
  box-shadow: 0 14px 28px rgba(180, 95, 22, 0.14);
}

.monthly-day--today {
  border-color: rgba(33, 150, 83, 0.26);
  box-shadow: 0 14px 28px rgba(33, 150, 83, 0.08);
}

.monthly-day--selected {
  border-color: rgba(180, 95, 22, 0.34);
  background: linear-gradient(180deg, rgba(255, 239, 207, 0.98), rgba(255, 248, 231, 0.96));
  box-shadow: 0 16px 30px rgba(180, 95, 22, 0.18);
}

.monthly-day--active .monthly-day__date {
  background: linear-gradient(135deg, #d67c1d, var(--brand));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 18px rgba(180, 95, 22, 0.24);
}

.monthly-day--today .monthly-day__date {
  background: linear-gradient(135deg, #28ae61, var(--green));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 10px 18px rgba(33, 150, 83, 0.22);
}

.monthly-day--festival .monthly-day__date,
.monthly-day--soft .monthly-day__date {
  background: rgba(255, 248, 233, 0.98);
}

.panchang-disclaimer {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 245, 225, 0.85);
  border: 1px solid rgba(180, 95, 22, 0.1);
}

.monthly-toolbar {
  margin-bottom: 24px;
  grid-template-columns: 1.1fr 1fr 1fr;
  align-items: center;
}

.monthly-status {
  margin-bottom: 24px;
}

.monthly-switcher {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 18px;
  border: 1px solid rgba(180, 95, 22, 0.14);
  background: rgba(255, 251, 245, 0.9);
}

.monthly-switcher__btn {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 245, 225, 0.95);
  color: var(--brand-deep);
  font-size: 1.3rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.monthly-switcher__btn:hover,
.monthly-switcher__btn:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 233, 192, 0.96);
  box-shadow: 0 12px 24px rgba(180, 95, 22, 0.14);
}

.monthly-switcher__label {
  flex: 1;
  text-align: center;
  font-family: "Cinzel", serif;
  font-size: 1.35rem;
  color: var(--text);
}

.monthly-overview-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.monthly-page-panels {
  display: grid;
  gap: 24px;
}

.monthly-page-panel[hidden] {
  display: none;
}

.monthly-guidance-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.monthly-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.monthly-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 248, 233, 0.86);
  border: 1px solid rgba(180, 95, 22, 0.12);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.monthly-legend__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.monthly-legend__dot--festival {
  background: #d67c1d;
}

.monthly-legend__dot--vrat {
  background: #efc06c;
}

.monthly-legend__dot--today {
  background: var(--green);
}

.monthly-day-detail {
  display: grid;
  gap: 18px;
}

.monthly-day-detail__hero {
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 249, 239, 0.98), rgba(255, 236, 205, 0.96));
  border: 1px solid rgba(180, 95, 22, 0.14);
}

.monthly-day-detail__hero strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Cinzel", serif;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  line-height: 1.08;
  color: var(--brand-deep);
}

.monthly-day-detail__hero span {
  color: var(--text-soft);
  line-height: 1.7;
}

.monthly-day-detail__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.monthly-detail-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.monthly-detail-badge--festival,
.monthly-detail-badge--upcoming {
  background: rgba(255, 233, 192, 0.94);
  color: var(--brand-deep);
}

.monthly-detail-badge--today {
  background: rgba(214, 245, 222, 0.92);
  color: #1b6f42;
}

.monthly-detail-badge--soft {
  background: rgba(255, 246, 226, 0.96);
  color: var(--text-soft);
}

.monthly-detail-badge--past {
  background: rgba(240, 234, 224, 0.95);
  color: var(--text-soft);
}

.monthly-day-detail__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.monthly-panchang {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: start;
}

.monthly-panchang__calendar,
.monthly-panchang__notes {
  padding: 30px;
}

.monthly-detail-card {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(180, 95, 22, 0.12);
  background: rgba(255, 251, 245, 0.9);
}

.monthly-detail-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
}

.monthly-detail-card strong {
  color: var(--text);
  line-height: 1.6;
}

.monthly-detail-divider {
  height: 1px;
  margin: 2px 0 4px;
  background: linear-gradient(90deg, rgba(180, 95, 22, 0), rgba(180, 95, 22, 0.2), rgba(180, 95, 22, 0));
}

.panchang-panel__heading--compact {
  margin-bottom: 16px;
}

.monthly-guidance-strip__item {
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(180, 95, 22, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 238, 0.92)),
    var(--paper);
  box-shadow: var(--shadow);
}

.monthly-guidance-strip__item strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Cinzel", serif;
  font-size: 1.4rem;
}

.monthly-guidance-strip__item span {
  color: var(--text-soft);
  line-height: 1.75;
}

.about-page-shell {
  margin-top: 24px;
  margin-bottom: 72px;
  border: 1px solid rgba(174, 117, 52, 0.22);
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(255, 248, 238, 0.94));
  box-shadow: 0 24px 56px rgba(73, 35, 8, 0.12);
  overflow: hidden;
}

.about-section {
  padding: 42px 38px;
  border-top: 1px solid rgba(174, 117, 52, 0.18);
}

.about-section:first-child {
  border-top: 0;
}

.about-section__heading {
  margin-bottom: 26px;
  text-align: center;
}

.about-section__heading--left {
  text-align: left;
}

.about-section__heading--light h2 {
  color: #fff3e5;
}

.about-section__heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 2.7rem);
  color: var(--text);
}

.ornament {
  display: inline-block;
  width: 110px;
  height: 12px;
  margin-top: 8px;
  background:
    radial-gradient(circle, var(--brand) 0 2px, transparent 3px) center/12px 12px no-repeat,
    linear-gradient(90deg, transparent, rgba(180, 95, 22, 0.65), transparent);
}

.ornament--light {
  background:
    radial-gradient(circle, #f6cc84 0 2px, transparent 3px) center/12px 12px no-repeat,
    linear-gradient(90deg, transparent, rgba(246, 204, 132, 0.75), transparent);
}

.about-journey,
.about-choose {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 28px;
  align-items: center;
}

.about-journey__copy p,
.about-choose__list {
  color: var(--text-soft);
  line-height: 1.9;
}

.about-journey__image,
.about-choose__image {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(180, 95, 22, 0.16);
  box-shadow: var(--shadow);
}

.about-journey__image img,
.about-choose__image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.about-mission-card {
  padding: 26px 22px;
  text-align: center;
  border-radius: 20px;
  border: 1px solid rgba(180, 95, 22, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 243, 0.92));
  box-shadow: 0 18px 34px rgba(73, 35, 8, 0.08);
}

.about-mission-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--brand);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(249, 232, 203, 0.88));
  border: 1px solid rgba(180, 95, 22, 0.16);
}

.about-mission-card h3 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}

.about-mission-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.about-checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--text-soft);
  font-weight: 600;
}

.about-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--brand);
  font-weight: 800;
}

.about-achievements {
  padding: 46px 38px 52px;
  background:
    linear-gradient(180deg, rgba(47, 21, 9, 0.86), rgba(73, 31, 11, 0.92)),
    url("../images/banner.png") center/cover;
}

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

.achievement-card {
  padding: 24px 16px;
  text-align: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 219, 172, 0.14);
  backdrop-filter: blur(6px);
  color: #fff1e3;
}

.achievement-card__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 12px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #f4c776;
  background: rgba(255, 255, 255, 0.06);
}

.achievement-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 2rem;
}

.achievement-card span {
  color: rgba(255, 241, 227, 0.82);
  line-height: 1.55;
}

.feature-card {
  padding: 28px;
  text-align: center;
}

.feature-icon,
.timeline-icon,
.event-meta .icon-badge {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(180, 95, 22, 0.28);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(250, 238, 220, 0.86));
  color: var(--brand);
}

.feature-count {
  display: block;
  margin-top: 16px;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand);
}

.event-shell {
  animation: fadeUp 0.6s ease both;
}

.event-heading {
  margin-bottom: 34px;
}

.event-slider {
  display: flex;
  align-items: center;
  gap: 16px;
}

.event-track {
  flex: 1;
  overflow: hidden;
}

.event-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 24px;
  transition: transform 0.45s ease;
}

.event-card {
  display: grid;
  grid-template-columns: 1.15fr 1.5fr 0.75fr;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(180, 95, 22, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 247, 235, 0.96), rgba(255, 241, 220, 0.92)),
    var(--paper);
  box-shadow: var(--shadow);
}

.event-dots {
  margin-top: 20px;
}

.event-banner {
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
}

.event-banner img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
}

.event-copy h2 {
  margin: 0 0 14px;
  font-family: "Cinzel", serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  line-height: 0.98;
}

.event-copy h3 {
  margin: 0;
  font-size: 2.2rem;
}

.event-meta {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 0;
}

.event-meta li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  list-style: none;
  padding: 10px 14px 10px 10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(180, 95, 22, 0.12);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.event-side {
  display: grid;
  gap: 16px;
  justify-items: center;
  align-content: center;
}

.event-price {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--brand-deep);
}

.event-meta li span:last-child {
  font-size: 1.03rem;
  font-weight: 600;
  line-height: 1.45;
}

.event-meta .icon-badge {
  width: 52px;
  height: 52px;
  margin: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(251, 238, 217, 0.88));
  box-shadow: 0 10px 18px rgba(170, 104, 37, 0.12);
}

.seat-pill {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 216, 143, 0.45);
  color: var(--brand-deep);
  font-weight: 700;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.timeline-step {
  position: relative;
  text-align: center;
  padding: 0 10px;
}

.timeline-step::after {
  content: "";
  position: absolute;
  top: 36px;
  left: calc(50% + 50px);
  width: calc(100% - 30px);
  height: 1px;
  background: linear-gradient(90deg, rgba(180, 95, 22, 0.28), rgba(180, 95, 22, 0));
}

.timeline-step:last-child::after {
  display: none;
}

.timeline-step h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.timeline-icon {
  margin-bottom: 18px;
}

.testimonial-slider {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-track {
  flex: 1;
  overflow: hidden;
}

.testimonial-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.333% - 16px);
  gap: 24px;
  transition: transform 0.45s ease;
}

.testimonial-card {
  padding: 24px;
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.testimonial-head img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
}

.stars {
  color: #ffb400;
  letter-spacing: 0.12em;
}

.slider-nav {
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--brand);
  font-size: 2rem;
  cursor: pointer;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(180, 95, 22, 0.24);
  cursor: pointer;
}

.slider-dots button.is-active {
  background: var(--brand);
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 22px;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-item::after {
  content: attr(data-title);
  position: absolute;
  inset: auto 14px 14px 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(33, 13, 5, 0.15), rgba(33, 13, 5, 0.82));
  color: #fff;
  font-weight: 700;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.video-card {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 252, 247, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.video-frame {
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #190f09;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card h3 {
  margin-top: 18px;
  font-size: 1.8rem;
}

.instagram-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.insta-card {
  overflow: hidden;
}

.insta-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.insta-body {
  padding: 22px;
}

.insta-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-weight: 700;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  padding: 84px 0 76px;
  background:
    linear-gradient(180deg, rgba(61, 27, 9, 0.92), rgba(88, 38, 10, 0.92)),
    url("https://images.unsplash.com/photo-1519817650390-64a93db511aa?auto=format&fit=crop&w=1600&q=80")
      center/cover;
  color: #fff3e5;
}

.cta-banner::before,
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left bottom, rgba(255, 211, 137, 0.15), transparent 26%),
    radial-gradient(circle at right top, rgba(255, 179, 74, 0.12), transparent 22%);
  pointer-events: none;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 36px;
  align-items: center;
  padding: 40px 44px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 248, 235, 0.06), rgba(255, 210, 139, 0.08));
  border: 1px solid rgba(255, 218, 173, 0.16);
  box-shadow: 0 24px 48px rgba(19, 8, 3, 0.16);
  backdrop-filter: blur(8px);
}

.cta-banner h2 {
  font-size: clamp(2.8rem, 4.4vw, 4.4rem);
  line-height: 0.98;
  max-width: 620px;
}

.cta-copy {
  max-width: 720px;
}

.cta-copy .eyebrow {
  color: #f5c978;
}

.cta-copy p:last-child {
  margin: 18px 0 0;
  max-width: 640px;
  font-size: 1.08rem;
  color: rgba(255, 241, 224, 0.88);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 200px;
}

.cta-actions .button {
  width: 100%;
}

.cta-banner .cta-actions .button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 56px !important;
  padding: 0 24px !important;
  border: 0 !important;
  border-radius: 18px !important;
  background: linear-gradient(135deg, #d67c1d, var(--brand)) !important;
  color: #fff !important;
  font-size: 0.98rem !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  text-align: center !important;
  text-decoration: none !important;
  box-shadow: 0 14px 28px rgba(180, 95, 22, 0.24) !important;
}

.cta-banner .cta-actions .button:hover,
.cta-banner .cta-actions .button:focus-visible {
  background: linear-gradient(135deg, #c96f13, var(--brand-deep)) !important;
  color: #fff !important;
  box-shadow: 0 18px 34px rgba(180, 95, 22, 0.3) !important;
}

.cta-banner .cta-actions .button--whatsapp {
  background: linear-gradient(135deg, #28ae61, var(--green)) !important;
  box-shadow: 0 14px 28px rgba(33, 150, 83, 0.24) !important;
}

.cta-banner .cta-actions .button--whatsapp:hover,
.cta-banner .cta-actions .button--whatsapp:focus-visible {
  background: linear-gradient(135deg, #239454, #1d7d48) !important;
  box-shadow: 0 18px 34px rgba(33, 150, 83, 0.3) !important;
}

.site-footer {
  position: relative;
  padding-top: 0;
  background:
    linear-gradient(180deg, #3d1c0b, #241007),
    #2b1408;
  color: #f5e9da;
}

.footer-topbar {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: -22px;
  padding-bottom: 30px;
}

.footer-topbar__item {
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(95, 45, 16, 0.95), rgba(58, 23, 8, 0.95));
  border: 1px solid rgba(255, 216, 165, 0.12);
  box-shadow: 0 20px 34px rgba(16, 7, 2, 0.24);
}

.footer-topbar__item strong {
  display: block;
  margin-bottom: 6px;
  color: #fff2de;
  font-size: 1rem;
}

.footer-topbar__item span {
  color: rgba(245, 233, 218, 0.8);
  line-height: 1.6;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.4fr) repeat(2, minmax(180px, 0.78fr)) minmax(210px, 0.9fr) minmax(250px, 1fr);
  gap: 18px;
  align-items: start;
  padding: 10px 0 24px;
}

.footer-brand-block {
  padding: 10px 10px 10px 0;
  min-width: 0;
}

.brand--footer strong,
.brand--footer small,
.site-footer h3,
.site-footer a,
.site-footer li,
.site-footer p {
  color: inherit;
}

.footer-copy {
  margin: 18px 0;
  color: rgba(245, 233, 218, 0.82);
  font-size: 0.98rem;
  line-height: 1.75;
  max-width: 420px;
}

.footer-panel {
  min-height: 100%;
  min-width: 0;
  padding: 20px 20px 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-footer h3 {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  word-break: break-word;
}

.social-row {
  display: flex;
  gap: 12px;
}

.social-row a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  color: #fff4e5;
}

.footer-links {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
  color: rgba(245, 233, 218, 0.84);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.footer-links a {
  color: rgba(245, 233, 218, 0.9);
}

.footer-links a:hover {
  color: #fff6eb;
}

.footer-note {
  margin: 0 0 16px;
  color: rgba(245, 233, 218, 0.74);
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.subscribe-form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.brand--footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.brand--footer strong {
  font-size: clamp(1.85rem, 2.1vw, 2.55rem);
  white-space: normal;
  line-height: 0.96;
}

.brand--footer small {
  margin-top: 8px;
  font-size: 0.78rem;
  white-space: normal;
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.subscribe-form .button {
  width: 100%;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 36px;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: rgba(245, 233, 218, 0.82);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(14, 8, 4, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1080px, 100%);
  max-height: 86vh;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #28ae61, var(--green));
  box-shadow: 0 20px 34px rgba(33, 150, 83, 0.28);
  color: #fff;
}

.icon,
.icon--plain {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
}

.icon svg,
.icon--plain svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (max-width: 1100px) {
  .site-nav {
    gap: 12px;
    font-size: 0.82rem;
  }

  .feature-grid,
  .about-values,
  .about-highlights,
  .about-mission-grid,
  .about-achievements__grid,
  .shop-grid,
  .vedam-product-grid,
  .panchang-grid,
  .monthly-overview-stats,
  .monthly-guidance-strip,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-intro,
  .about-story,
  .about-journey,
  .about-choose,
  .ceremony-slide,
  .service-detail-card,
  .service-detail-card--reverse,
  .vedam-single-product,
  .product-detail,
  .cart-layout,
  .checkout-layout,
  .thankyou-layout,
  .vedam-checkout-steps,
  .panchang-top-grid,
  .monthly-panchang {
    grid-template-columns: 1fr;
  }

  .service-detail-card--reverse .service-detail-card__copy,
  .service-detail-card--reverse .service-detail-card__image {
    order: initial;
  }

  .vedam-single-product__hero-image {
    min-height: 520px;
  }

  .footer-topbar {
    grid-template-columns: 1fr;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .vedam-cart-item {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .vedam-cart-item__subtotal {
    justify-items: start;
    text-align: left;
  }

  .checkout-summary {
    position: static;
    top: auto;
  }

  .thankyou-summary {
    position: static;
    top: auto;
  }

  .thankyou-meta-grid {
    grid-template-columns: 1fr;
  }

  .thankyou-order-item {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .event-card,
  .ceremony-slide,
  .video-grid,
  .instagram-grid {
    grid-template-columns: 1fr;
  }

  .event-banner {
    min-height: 320px;
  }

  .ceremony-slide {
    padding: 34px;
    gap: 24px;
  }

  .ceremony-slide__copy h3,
  .ceremony-slide__copy p:not(.eyebrow) {
    max-width: none;
  }

  .ceremony-slide__copy {
    order: 2;
    justify-content: flex-start;
  }

  .ceremony-slide__image {
    order: 1;
  }

  .ceremony-slide__image img {
    min-height: 420px;
  }

  .event-copy h2 {
    font-size: clamp(2.2rem, 5vw, 3rem);
  }

  .event-side {
    justify-items: start;
  }

  .testimonial-rail {
    grid-auto-columns: calc(50% - 12px);
  }
}

@media (max-width: 1240px) {
  .event-card {
    grid-template-columns: 1fr 1.1fr 0.8fr;
  }

  .event-copy h2 {
    font-size: clamp(2.3rem, 3.2vw, 3.2rem);
  }
}

@media (max-width: 900px) {
  .site-header .container {
    width: var(--container);
  }

  .nav-wrap {
    grid-template-columns: auto auto;
  }

  .brand strong {
    font-size: 1.35rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav,
  .button--nav {
    display: none;
  }

  .site-header.menu-open .site-nav {
    display: flex;
    position: absolute;
    top: 92px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 249, 241, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-header.menu-open .button--nav {
    display: inline-flex;
    position: absolute;
    top: calc(92px + 290px);
    right: 28px;
  }

  .services-grid,
  .feature-grid,
  .about-values,
  .about-highlights,
  .about-mission-grid,
  .about-achievements__grid,
  .shop-grid,
  .vedam-product-grid,
  .panchang-metric-grid,
  .monthly-overview-stats,
  .gallery-grid,
  .timeline,
  .monthly-guidance-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .checkout-fields,
  .payment-options,
  .shop-card__actions,
  .vedam-single-product__actions,
  .panchang-toolbar,
  .panchang-mini-grid {
    grid-template-columns: 1fr;
  }

  .monthly-toolbar,
  .monthly-day-detail__grid {
    grid-template-columns: 1fr;
  }

  .shop-card__actions {
    display: grid;
  }

  .vedam-product-card__body p {
    min-height: auto;
  }

  .vedam-woo-checkout .woocommerce-checkout-payment .wc_payment_methods {
    grid-template-columns: 1fr;
  }

  .event-slider {
    gap: 10px;
  }

  .ceremony-slider {
    gap: 10px;
  }

  .ceremony-slider__nav {
    position: absolute;
    top: 180px;
    z-index: 2;
  }

  .ceremony-slider__nav--prev {
    left: 10px;
  }

  .ceremony-slider__nav--next {
    right: 10px;
  }

  .event-slider-nav {
    width: 42px;
    height: 42px;
    font-size: 1.6rem;
  }

  .ceremony-slider__nav {
    width: 42px;
    height: 42px;
    font-size: 1.6rem;
  }

  .services-grid .service-card:nth-child(2),
  .services-grid .service-card:nth-child(5) {
    transform: none;
  }

  .timeline-step::after {
    display: none;
  }

  .testimonial-rail {
    grid-auto-columns: 100%;
  }

  .cta-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions {
    width: 100%;
    max-width: 320px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 74px 0;
  }

  .hero-content {
    padding-top: 120px;
  }

  .page-hero__content {
    padding: 132px 0 70px;
  }

  .brand strong {
    font-size: 1.65rem;
  }

  .hero-copy,
  .section-heading p:last-child {
    font-size: 1rem;
  }

  .event-card,
  .feature-card,
  .ceremony-slide,
  .service-body,
  .testimonial-card,
  .insta-body {
    padding: 20px;
  }

  .about-page-shell {
    margin-top: 18px;
    margin-bottom: 56px;
  }

  .service-detail-card {
    padding: 20px;
  }

  .ceremony-slide__copy h3 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .ceremony-slide__copy {
    gap: 0;
  }

  .ceremony-slide__copy p:not(.eyebrow) {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .ceremony-slide__list {
    margin-top: 20px;
  }

  .ceremony-slide__image {
    border-radius: 24px;
  }

  .ceremony-slide__image img {
    min-height: auto;
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .product-detail,
  .checkout-form,
  .checkout-summary,
  .panchang-day-card,
  .panchang-panel,
  .monthly-panchang__calendar,
  .monthly-panchang__notes {
    padding: 20px;
  }

  .monthly-panchang__header {
    flex-direction: column;
  }

  .monthly-panchang__grid {
    gap: 8px;
  }

  .monthly-day {
    min-height: 104px;
    padding: 10px;
  }

  .monthly-day__date {
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
  }

  .monthly-day__body {
    gap: 6px;
    margin-top: 12px;
  }

  .monthly-day__primary {
    font-size: 0.75rem;
  }

  .monthly-day__secondary {
    font-size: 0.68rem;
  }

  .about-section,
  .about-achievements {
    padding: 30px 20px;
  }

  .about-journey__image img,
  .about-choose__image img,
  .service-detail-card__image img,
  .product-detail__image img {
    min-height: 220px;
  }

  .event-copy h2 {
    font-size: 2.2rem;
  }

  .event-copy h3 {
    font-size: 1.8rem;
  }

  .event-meta li {
    grid-template-columns: 32px 1fr;
    gap: 10px;
    padding: 8px 10px 8px 8px;
  }

  .event-meta .icon-badge {
    width: 32px;
    height: 32px;
    margin: 0;
  }

  .slider-nav {
    display: none;
  }

  .event-slider .slider-nav {
    display: grid;
    flex-shrink: 0;
  }

  .subscribe-form {
    flex-direction: column;
  }
}
