html {
  width: 100%;
}

body {
  font-family: sans-serif;
  margin: 0;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.navbar {
  background-color: #FDB813;
  height: 36px;
  padding: 0 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.navbar-secondary {
  background-color: #6E1E1E;
  height: 72px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}

.logo-link {
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.logo {
  height: 65px;
  width: auto;
  margin-left: 0;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #FDF6E9;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-btn:hover {
  opacity: 0.8;
}

.nav-btn.active {
  color: #FDB813;
  position: relative;
}

.nav-btn.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background-color: #FDB813;
  border-radius: 2px;
}

.nav-item {
  position: relative;
}

.chevron {
  margin-top: 2px;
  transition: transform 0.2s;
}

.nav-item:hover .chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  margin-top: 10px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  list-style: none;
  padding: 8px;
  margin-left: 0;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 2px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 20;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 8px 14px;
  color: #3d2b1f;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  border-radius: 6px;
}

.dropdown-menu li a:hover {
  background: #FDF6E9;
  color: #6E1E1E;
}

.book-puja-btn {
  background-color: #fff;
  color: #6E1E1E;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
}

.book-puja-btn:hover {
  opacity: 0.85;
}

.cart-btn {
  margin-left: auto;
  margin-right: 20px;
  position: relative;
  display: flex;
  align-items: center;
  color: #FDF6E9;
}

.cart-btn:hover {
  opacity: 0.8;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: #FDB813;
  color: #6E1E1E;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  min-width: 15px;
  height: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-carousel {
  width: 100%;
  height: 480px;
  overflow: hidden;
  position: relative;
  margin-top: 16px;
  z-index: 1;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}

.hero-carousel-slide:not(:only-child) {
  opacity: 0;
  animation: hero-carousel-fade 40s infinite;
}

.hero-carousel-slide:nth-child(1) { animation-delay: 0s; }
.hero-carousel-slide:nth-child(2) { animation-delay: 5s; }
.hero-carousel-slide:nth-child(3) { animation-delay: 10s; }
.hero-carousel-slide:nth-child(4) { animation-delay: 15s; }
.hero-carousel-slide:nth-child(5) { animation-delay: 20s; }
.hero-carousel-slide:nth-child(6) { animation-delay: 25s; }
.hero-carousel-slide:nth-child(7) { animation-delay: 30s; }
.hero-carousel-slide:nth-child(8) { animation-delay: 35s; }

.hero-carousel:hover .hero-carousel-slide {
  animation-play-state: paused;
}

@keyframes hero-carousel-fade {
  0% { opacity: 0; }
  1.1% { opacity: 1; }
  11.25% { opacity: 1; }
  12.5% { opacity: 0; }
  100% { opacity: 0; }
}

.mantra-strip {
  width: 100%;
  height: 36px;
  margin-top: 14px;
  background-color: #FDB813;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.mantra-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: mantra-scroll 35s linear infinite;
}

.mantra-strip:hover .mantra-track {
  animation-play-state: paused;
}

.mantra-item {
  padding: 0 40px;
  font-weight: 700;
  font-size: 14px;
  color: #2b1a00;
}

@keyframes mantra-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.daan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin: 24px 0;
  padding: 0 24px;
}

.daan-card {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 18px 14px;
  background-color: #FDF6E9;
  color: #6E1E1E;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid #f0d9a8;
  transition: background-color 0.2s, transform 0.2s;
}

.daan-card:hover {
  background-color: #FDB813;
  transform: translateY(-2px);
}

.daan-section {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin: 0 0 32px;
  padding: 24px 24px;
  scroll-margin-top: 130px;
}

.daan-section h2 {
  color: #6E1E1E;
  margin: 0 0 8px;
  font-size: 22px;
}

.daan-section p {
  color: #3d2b1f;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.category-card {
  display: flex;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #f0d9a8;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(110, 30, 30, 0.08);
}

.category-card.reverse {
  flex-direction: row-reverse;
}

.category-card-image {
  width: 36%;
  min-height: 280px;
  object-fit: cover;
  flex-shrink: 0;
}

.category-card-body {
  flex: 1;
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-card-count {
  align-self: flex-start;
  background-color: #FDB813;
  color: #6E1E1E;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.category-card-body h2 {
  color: #6E1E1E;
  font-size: 23px;
  margin: 0 0 12px;
}

.category-card-body p {
  color: #3d2b1f;
  font-size: 14.5px;
  line-height: 1.75;
  margin: 0 0 22px;
}

.category-card-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-card-pills .daan-card {
  padding: 8px 16px;
  font-size: 13px;
}

@media (max-width: 800px) {
  .category-card,
  .category-card.reverse {
    flex-direction: column;
  }

  .category-card-image {
    width: 100%;
    min-height: 200px;
  }

  .category-card-body {
    padding: 24px 22px;
  }
}

.daan-section p + p {
  margin-top: 14px;
}

.vedic-puja-intro {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin: 28px 0 8px;
  padding: 0 24px;
  text-align: center;
}

.vedic-puja-intro h1 {
  margin: 0 0 10px;
  color: #6E1E1E;
  font-size: clamp(26px, 4vw, 36px);
}

.vedic-puja-intro p {
  margin: 0;
  color: #3d2b1f;
  font-size: 15px;
  line-height: 1.6;
}

.vedic-puja-cta {
  display: inline-block;
  margin-top: 4px;
  padding: 10px 18px;
  background-color: #6E1E1E;
  color: #FDF6E9;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
  transition: background-color 0.2s, transform 0.2s;
}

.vedic-puja-cta:hover {
  background-color: #8B2E2E;
  transform: translateY(-1px);
}

.vedic-puja-cta.is-gold {
  background-color: #FDB813;
  color: #2b1a00;
}

.vedic-puja-cta.is-gold:hover {
  background-color: #ffc94a;
}

.vedic-trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 900px;
  margin: 18px auto 0;
}

.vedic-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: #FDF6E9;
  border: 1px solid #f0d9a8;
  border-radius: 999px;
  color: #6E1E1E;
  font-size: 12.5px;
  font-weight: 700;
}

.vedic-trust-item svg {
  color: #a8571f;
  flex-shrink: 0;
}

.vedic-all-puja-banner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

@media (max-width: 600px) {
  .vedic-trust-item {
    font-size: 11.5px;
    padding: 7px 12px;
  }
}

.about-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 40px 24px 8px;
  box-sizing: border-box;
}

.about-section {
  margin-bottom: 40px;
}

.about-section h2 {
  color: #6E1E1E;
  font-size: 26px;
  margin: 0 0 10px;
  border-bottom: 2px solid #FDB813;
  padding-bottom: 10px;
}

.about-section h3 {
  color: #a8571f;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 16px;
}

.about-section p {
  color: #3d2b1f;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 14px;
}

.about-section ul {
  margin: 0 0 14px;
  padding-left: 20px;
  color: #3d2b1f;
  font-size: 15px;
  line-height: 1.9;
}

.about-section li {
  margin-bottom: 4px;
}

.about-section strong {
  color: #6E1E1E;
}

.about-promise {
  background-color: #FDF6E9;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}

.about-promise h2 {
  border-bottom: none;
}

.about-quote {
  font-size: 19px;
  font-weight: 700;
  font-style: italic;
  color: #6E1E1E;
}

.about-shloka {
  margin-top: 20px;
  color: #a8571f;
  font-weight: 700;
  line-height: 1.9;
}

.aarti-content {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin: 0;
  padding: 40px 24px;
}

.aarti-heading {
  color: #6E1E1E;
  font-size: 28px;
  text-align: center;
  margin: 0 0 8px;
}

.aarti-subheading {
  color: #3d2b1f;
  font-size: 15px;
  text-align: center;
  margin: 0 0 32px;
}

.aarti-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 18px;
}

.aarti-thumb-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background-color: #FDF6E9;
  border: 1px solid #f0d9a8;
  border-radius: 14px;
  padding: 16px 12px;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.aarti-thumb-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(110, 30, 30, 0.14);
}

.aarti-thumb-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
}

.aarti-thumb-title {
  color: #6E1E1E;
  font-weight: 700;
  font-size: 13.5px;
  text-align: center;
  line-height: 1.4;
}

.aarti-detail {
  background-color: #FDF6E9;
  border: 1px solid #f0d9a8;
  border-radius: 16px;
  padding: 28px;
  scroll-margin-top: 20px;
}

.aarti-back {
  border: 1px solid #f0d9a8;
  background-color: #fff;
  color: #6E1E1E;
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  margin-bottom: 20px;
}

.aarti-back:hover {
  background-color: #FDB813;
  color: #fff;
}

.aarti-detail-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.aarti-detail-header img {
  width: 140px;
  height: 175px;
  object-fit: cover;
  border-radius: 10px;
}

.aarti-detail-header h3 {
  color: #6E1E1E;
  font-size: 22px;
  margin: 0;
  text-align: center;
}

.aarti-detail-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 20px;
}

.aarti-tab {
  border: 1px solid #f0d9a8;
  background-color: #fff;
  color: #6E1E1E;
  font-weight: 700;
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
}

.aarti-tab.active {
  background-color: #6E1E1E;
  color: #FDF6E9;
  border-color: #6E1E1E;
}

.aarti-detail-lyrics {
  width: 100%;
  max-width: none;
  margin: 0;
}

.aarti-detail-lyrics p {
  color: #3d2b1f;
  font-size: 15px;
  line-height: 1.7;
  text-align: center;
  margin: 0 0 16px;
}

.aarti-thumb-card.coming-soon {
  cursor: default;
  opacity: 0.7;
  position: relative;
}

.aarti-thumb-card.coming-soon:hover {
  transform: none;
  box-shadow: none;
}

.aarti-coming-soon-badge {
  background-color: #6E1E1E;
  color: #FDF6E9;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sangrah-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0 24px;
}

.sangrah-hub-card {
  background-color: #FDF6E9;
  border: 1px solid #f0d9a8;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.sangrah-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(110, 30, 30, 0.15);
}

.sangrah-hub-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.sangrah-hub-body {
  padding: 20px 22px 24px;
}

.sangrah-hub-body h3 {
  color: #6E1E1E;
  font-size: 18px;
  margin: 0 0 8px;
}

.sangrah-hub-body p {
  color: #3d2b1f;
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0 0 14px;
}

.sangrah-hub-explore {
  color: #6E1E1E;
  font-weight: 700;
  font-size: 13.5px;
}

.blog-content {
  max-width: 1200px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 40px 24px;
}

.blog-section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 20px;
}

.blog-section-label span {
  color: #6E1E1E;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.blog-section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #f0d9a8;
}

.blog-section-label.blog-section-label-spaced {
  margin-top: 44px;
}

.blog-heading {
  color: #6E1E1E;
  font-size: 28px;
  text-align: center;
  margin: 0 0 8px;
}

.blog-subheading {
  color: #3d2b1f;
  font-size: 15px;
  text-align: center;
  width: 100%;
  max-width: none;
  margin: 0 0 32px;
  line-height: 1.6;
}

.blog-featured {
  display: flex;
  background-color: #FDF6E9;
  border: 1px solid #f0d9a8;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 10px 24px rgba(110, 30, 30, 0.1);
}

.blog-featured.reverse {
  flex-direction: row-reverse;
}

.blog-featured-image {
  width: 42%;
  min-height: 220px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.blog-featured-body {
  flex: 1;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured-body h3 {
  font-size: 22px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.blog-card {
  background-color: #FDF6E9;
  border: 1px solid #f0d9a8;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(110, 30, 30, 0.12);
}

.blog-card-image-wrap {
  position: relative;
  overflow: hidden;
}

.blog-card-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.blog-card.coming-soon .blog-card-image {
  filter: grayscale(30%) brightness(0.9);
}

.blog-card.coming-soon:hover {
  transform: none;
  box-shadow: none;
}

.blog-coming-soon-ribbon {
  position: absolute;
  top: 14px;
  right: -34px;
  background-color: #6E1E1E;
  color: #FDF6E9;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 38px;
  transform: rotate(35deg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.blog-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-tag {
  align-self: flex-start;
  background-color: #FDB813;
  color: #6E1E1E;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.blog-card h3 {
  color: #6E1E1E;
  font-size: 17px;
  margin: 0 0 10px;
  line-height: 1.4;
}

.blog-title-hindi {
  color: #a8571f;
  font-size: 13.5px;
  font-weight: 600;
  margin: -6px 0 12px;
  line-height: 1.4;
}

.blog-card p {
  color: #3d2b1f;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 14px;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #a8571f;
  margin: 6px 0 12px;
}

.blog-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #a8571f;
  flex-shrink: 0;
}

.blog-card-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  align-items: center;
}

.blog-readmore {
  color: #6E1E1E;
  font-weight: 700;
  font-size: 13.5px;
  text-decoration: none;
}

.blog-readmore:hover {
  text-decoration: underline;
}

.blog-readmore-disabled {
  color: #a8571f;
  opacity: 0.65;
  font-weight: 700;
  font-size: 13.5px;
  cursor: default;
}

@media (max-width: 700px) {
  .blog-featured {
    flex-direction: column;
  }

  .blog-featured-image {
    width: 100%;
    height: 200px;
  }
}

.blogpost-content {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
}

.blogpost-hero {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
  max-height: 360px;
}

.blogpost-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blogpost-photo-credit {
  font-size: 11.5px;
  color: #a8571f;
  opacity: 0.8;
  margin: -16px 0 20px;
}

.blogpost-photo-credit a {
  color: #a8571f;
}

.blogpost-header h1 {
  color: #6E1E1E;
  font-size: 28px;
  margin: 10px 0 6px;
  line-height: 1.35;
}

.blogpost-lang-switch {
  margin: 6px 0 4px;
}

.blogpost-lang-switch a {
  display: inline-block;
  background-color: #FDF6E9;
  color: #6E1E1E;
  border: 1px solid #f0d9a8;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.blogpost-lang-switch a:hover {
  background-color: #FDB813;
}

.policy-content .about-section h2 {
  font-size: 21px;
}

.policy-effective-date {
  color: #a8571f;
  font-weight: 700;
}

.policy-table-wrap {
  overflow-x: auto;
  margin: 0 0 16px;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.policy-table th,
.policy-table td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid #f0d9a8;
}

.policy-table th {
  background-color: #6E1E1E;
  color: #FDF6E9;
  font-weight: 700;
  white-space: nowrap;
}

.policy-table tr:nth-child(even) td {
  background-color: #FDF6E9;
}

.policy-layout {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 8px;
  box-sizing: border-box;
}

.policy-layout .about-content {
  padding: 0;
}

.policy-toc-wrap {
  display: none;
}

.policy-toc-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #a8571f;
}

.policy-toc {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.policy-toc a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  color: #3d2b1f;
  text-decoration: none;
  font-size: 13.5px;
  line-height: 1.4;
  border-left: 3px solid transparent;
}

.policy-toc a:hover {
  background-color: #FDF6E9;
  color: #6E1E1E;
}

.policy-toc a.active {
  background-color: #FDF6E9;
  border-left-color: #FDB813;
  color: #6E1E1E;
  font-weight: 700;
}

.policy-content .about-section {
  scroll-margin-top: 120px;
}

.policy-content > .about-section:first-of-type {
  background: linear-gradient(135deg, #FDF6E9, #fff);
  border: 1px solid #f0d9a8;
  border-radius: 16px;
  padding: 28px 24px;
  margin-bottom: 32px;
}

.policy-content > .about-section:first-of-type h2 {
  font-size: 28px;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 12px;
}

.policy-effective-date {
  display: inline-block;
  background-color: #6E1E1E;
  color: #FDF6E9;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 16px;
}

.policy-effective-date strong {
  color: #FDB813;
}

.policy-content > .about-section:not(:first-of-type):not(.about-promise) {
  padding: 20px 22px;
  border: 1px solid #f5e6cc;
  border-radius: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.policy-content > .about-section:not(:first-of-type):not(.about-promise):hover {
  border-color: #f0d9a8;
  box-shadow: 0 4px 16px rgba(110, 30, 30, 0.06);
}

.policy-back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #6E1E1E;
  color: #FDF6E9;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s;
  z-index: 40;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.policy-back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.policy-back-to-top:hover {
  background-color: #8B2E2E;
}

@media (min-width: 900px) {
  .policy-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 40px;
    align-items: start;
  }

  .policy-toc-wrap {
    display: block;
    position: sticky;
    top: 24px;
  }

  .policy-toc-inner {
    background-color: #fff;
    border: 1px solid #f0d9a8;
    border-radius: 14px;
    padding: 18px 16px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
  }
}

.site-footer {
  width: 100%;
  box-sizing: border-box;
  background-color: #FDF6E9;
  margin-top: 48px;
}

.footer-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #FDB813 18%, #6E1E1E 50%, #FDB813 82%, transparent);
}

.footer-main {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin: 0;
  padding: 48px 24px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 32px;
}

.footer-brand .footer-logo {
  font-size: 24px;
  font-weight: 800;
  color: #6E1E1E;
  letter-spacing: 0.02em;
}

.footer-brand .footer-tagline {
  margin: 12px 0 18px;
  font-size: 13.5px;
  color: #5a4636;
  line-height: 1.65;
  max-width: 280px;
}

.footer-social-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6E1E1E;
  margin: 0 0 10px;
}

.footer-social-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid rgba(110, 30, 30, 0.15);
  background-color: #fff;
  color: #6E1E1E;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}

.footer-social-icons a:hover {
  background-color: #6E1E1E;
  border-color: #6E1E1E;
  color: #FDF6E9;
  transform: translateY(-2px);
}

.footer-col h3 {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6E1E1E;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(253, 184, 19, 0.45);
  display: inline-block;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13.5px;
  color: #4a3a2c;
  text-decoration: none;
  transition: color 0.15s, padding-left 0.15s;
}

.footer-col ul li a:hover {
  color: #6E1E1E;
  padding-left: 3px;
}

.footer-contact address {
  font-style: normal;
}

.footer-contact address p {
  font-size: 13.5px;
  color: #4a3a2c;
  line-height: 1.7;
  margin: 0 0 12px;
}

.footer-contact address a {
  color: #6E1E1E;
  font-weight: 600;
  text-decoration: none;
}

.footer-contact address a:hover {
  text-decoration: underline;
}

.footer-bottom {
  width: 100%;
  box-sizing: border-box;
  background-color: #5A1818;
  color: rgba(253, 246, 233, 0.92);
  padding: 14px 24px;
  border-top: 1px solid rgba(253, 184, 19, 0.25);
}

.footer-bottom-inner {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-payments {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}

.footer-pay-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  min-width: 38px;
  padding: 0 7px;
  background: #fff;
  border-radius: 4px;
  box-sizing: border-box;
}

.footer-pay-icon svg {
  display: block;
  height: 14px;
  width: auto;
  max-width: 46px;
}

.footer-pay-icon--tall svg {
  height: 16px;
}

.footer-bottom-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-left: 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.footer-bottom-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(253, 184, 19, 0.7);
  flex-shrink: 0;
}

.footer-bottom .footer-credit {
  color: rgba(253, 246, 233, 0.92);
  font-weight: 400;
}

.footer-bottom .footer-credit a {
  color: #FDB813;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s, opacity 0.15s;
}

.footer-bottom .footer-credit a:hover {
  border-bottom-color: #FDB813;
  opacity: 0.95;
}

@media (max-width: 760px) {
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-payments {
    margin-left: 0;
  }

  .footer-bottom-dot {
    display: none;
  }
}

@media (max-width: 600px) {
  .footer-bottom-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .footer-pay-icon {
    height: 24px;
    min-width: 34px;
    padding: 0 5px;
  }

  .footer-pay-icon svg {
    height: 12px;
  }
}

@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 24px;
  }
}

.contact-info {
  color: #2b1a00;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-info-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}

.contact-info-link:hover {
  opacity: 0.75;
}

.contact-info-divider {
  width: 1px;
  height: 14px;
  background-color: rgba(43, 26, 0, 0.35);
}

.nav-datetime {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #2b1a00;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  margin-left: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(43, 26, 0, 0.08);
}

.nav-datetime svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.nav-datetime-sep {
  opacity: 0.45;
  font-weight: 600;
}

.nav-datetime-time {
  font-variant-numeric: tabular-nums;
  min-width: 4.6em;
}

.utility-icons {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.utility-icons a {
  color: #2b1a00;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 13px;
}

.utility-icons a:hover {
  opacity: 0.7;
}

.search-wrap {
  display: flex;
  align-items: center;
}

.search-box {
  width: 0;
  min-width: 0;
  padding: 0;
  margin-right: 0;
  border: 1px solid rgba(43, 26, 0, 0.3);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  color: #2b1a00;
  opacity: 0;
  pointer-events: none;
  transition: width 0.25s ease, opacity 0.2s ease, margin-right 0.25s ease, padding 0.25s ease;
}

.search-box::placeholder {
  color: rgba(43, 26, 0, 0.6);
}

.search-wrap.open .search-box {
  width: 180px;
  padding: 4px 8px;
  margin-right: 8px;
  opacity: 1;
  pointer-events: auto;
}

.currency-wrap {
  position: relative;
}

.currency-menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 10px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  list-style: none;
  padding: 6px;
  min-width: 110px;
  display: none;
  flex-direction: column;
  z-index: 40;
}

.currency-wrap.open .currency-menu {
  display: flex;
}

.currency-menu li button {
  width: 100%;
  text-align: left;
  padding: 6px 10px;
  border: none;
  background: none;
  font-size: 13px;
  font-weight: 600;
  color: #3d2b1f;
  border-radius: 6px;
  cursor: pointer;
}

.currency-menu li button:hover {
  background: #FDF6E9;
  color: #6E1E1E;
}

.language-wrap {
  position: relative;
}

.language-menu {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 10px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  list-style: none;
  padding: 6px;
  min-width: 260px;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  z-index: 40;
}

.language-wrap.open .language-menu {
  display: grid;
}

.language-menu li button {
  width: 100%;
  text-align: left;
  padding: 6px 10px;
  border: none;
  background: none;
  font-size: 13px;
  font-weight: 600;
  color: #3d2b1f;
  border-radius: 6px;
  cursor: pointer;
}

.language-menu li button:hover {
  background: #FDF6E9;
  color: #6E1E1E;
}

/* Login page */
.auth-page {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin: 48px 0;
  padding: 0 24px;
}

.auth-card {
  display: flex;
  min-height: 560px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(110, 30, 30, 0.15);
  overflow: hidden;
}

.auth-visual {
  flex: 1;
  position: relative;
  background: linear-gradient(160deg, #6E1E1E 0%, #a8571f 100%);
  color: #FDF6E9;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.auth-om {
  position: absolute;
  top: -40px;
  right: -20px;
  font-size: 260px;
  line-height: 1;
  color: rgba(253, 246, 233, 0.08);
  pointer-events: none;
}

.auth-visual-logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.auth-visual-quote {
  font-size: 19px;
  font-weight: 700;
  font-style: italic;
  color: #FDB813;
  margin: 0 0 14px;
}

.auth-visual-subtext {
  font-size: 14px;
  line-height: 1.7;
  color: #FDF6E9;
  opacity: 0.9;
  max-width: 320px;
  margin: 0 0 28px;
}

.auth-visual-mantra {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border: 1px solid rgba(253, 246, 233, 0.4);
  border-radius: 30px;
}

.auth-form-panel {
  flex: 1;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-title {
  color: #6E1E1E;
  font-size: 26px;
  margin: 0 0 4px;
}

.auth-subtitle {
  color: #3d2b1f;
  font-size: 14px;
  margin: 0 0 24px;
}

.auth-tabs {
  display: flex;
  gap: 24px;
  border-bottom: 2px solid #f0d9a8;
  margin-bottom: 24px;
}

.auth-tab {
  background: none;
  border: none;
  padding: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: #a8571f;
  cursor: pointer;
  position: relative;
  bottom: -2px;
}

.auth-tab.active {
  color: #6E1E1E;
  border-bottom: 2px solid #FDB813;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-form[hidden] {
  display: none;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth-field label {
  font-size: 13px;
  font-weight: 700;
  color: #6E1E1E;
}

.auth-field input {
  padding: 11px 14px;
  border: 1px solid #e6cfa0;
  border-radius: 8px;
  font-size: 14px;
  color: #3d2b1f;
  font-family: inherit;
}

.auth-field input:focus {
  outline: none;
  border-color: #FDB813;
  box-shadow: 0 0 0 3px rgba(253, 184, 19, 0.25);
}

.auth-password-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.auth-password-wrap input {
  width: 100%;
  padding-right: 40px;
  box-sizing: border-box;
}

.auth-password-toggle {
  position: absolute;
  right: 10px;
  background: none;
  border: none;
  color: #a8571f;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.auth-otp-request {
  display: flex;
  gap: 10px;
}

.auth-otp-request input {
  flex: 1;
}

.auth-otp-send-btn {
  background-color: #FDF6E9;
  color: #6E1E1E;
  border: 1px solid #e6cfa0;
  border-radius: 8px;
  padding: 0 16px;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
}

.auth-otp-send-btn:hover {
  background-color: #FDB813;
}

.auth-otp-note {
  font-size: 12.5px;
  color: #3d2b1f;
  margin: 4px 0 0;
}

.auth-otp-resend {
  color: #6E1E1E;
  font-weight: 700;
}

.auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.auth-remember {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #3d2b1f;
}

.auth-forgot {
  color: #6E1E1E;
  font-weight: 700;
  text-decoration: none;
}

.auth-forgot:hover {
  text-decoration: underline;
}

.auth-terms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: #3d2b1f;
  line-height: 1.5;
}

.auth-terms input {
  margin-top: 3px;
  flex-shrink: 0;
}

.auth-terms a {
  color: #6E1E1E;
  font-weight: 700;
  text-decoration: none;
}

.auth-terms a:hover {
  text-decoration: underline;
}

.auth-submit-btn {
  background-color: #6E1E1E;
  color: #FDF6E9;
  border: none;
  border-radius: 8px;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
}

.auth-submit-btn:hover {
  background-color: #8a2929;
  transform: translateY(-1px);
}

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #a8571f;
  font-size: 12.5px;
  margin: 22px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #f0d9a8;
}

.auth-divider span {
  padding: 0 12px;
  white-space: nowrap;
}

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

.auth-social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid #e6cfa0;
  border-radius: 8px;
  background: #fff;
  color: #3d2b1f;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.auth-social-btn:hover {
  background-color: #FDF6E9;
}

.auth-register-note {
  text-align: center;
  font-size: 13.5px;
  color: #3d2b1f;
  margin: 22px 0 0;
}

.auth-register-note a {
  color: #6E1E1E;
  font-weight: 700;
  text-decoration: none;
}

.auth-register-note a:hover {
  text-decoration: underline;
}

@media (max-width: 800px) {
  .auth-card {
    flex-direction: column;
    min-height: 0;
  }

  .auth-visual {
    padding: 32px 24px;
  }

  .auth-om {
    font-size: 160px;
  }

  .auth-form-panel {
    padding: 36px 24px;
  }
}

.track-page {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin: 0;
  padding: 40px 24px 64px;
}

.track-container {
  max-width: 760px;
  margin: 0 auto;
}

.track-hero {
  position: relative;
  text-align: center;
  background: linear-gradient(160deg, #6E1E1E 0%, #a8571f 100%);
  color: #FDF6E9;
  border-radius: 18px;
  padding: 40px 32px;
  overflow: hidden;
  margin-bottom: 28px;
}

.track-hero-om {
  position: absolute;
  top: -30px;
  right: -10px;
  font-size: 200px;
  line-height: 1;
  color: rgba(253, 246, 233, 0.08);
  pointer-events: none;
}

.track-hero-title {
  position: relative;
  font-size: 28px;
  margin: 0 0 10px;
}

.track-hero-subtitle {
  position: relative;
  font-size: 14.5px;
  line-height: 1.7;
  color: #FDF6E9;
  opacity: 0.92;
  max-width: 480px;
  margin: 0 auto;
}

.track-form-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(110, 30, 30, 0.12);
  padding: 32px;
  margin-bottom: 28px;
  box-sizing: border-box;
}

.track-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 20px;
}

.track-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.track-field label {
  font-size: 13px;
  font-weight: 700;
  color: #6E1E1E;
}

.track-field input {
  padding: 11px 14px;
  border: 1px solid #e6cfa0;
  border-radius: 8px;
  font-size: 14px;
  color: #3d2b1f;
  font-family: inherit;
  box-sizing: border-box;
  width: 100%;
}

.track-field input:focus {
  outline: none;
  border-color: #FDB813;
  box-shadow: 0 0 0 3px rgba(253, 184, 19, 0.25);
}

.track-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background-color: #6E1E1E;
  color: #FDF6E9;
  border: none;
  border-radius: 8px;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s, transform 0.2s;
}

.track-submit-btn:hover {
  background-color: #8a2929;
  transform: translateY(-1px);
}

.track-form-note {
  text-align: center;
  font-size: 13px;
  color: #a8571f;
  margin: 16px 0 0;
}

.track-result {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(110, 30, 30, 0.12);
  padding: 32px;
  margin-bottom: 28px;
  box-sizing: border-box;
}

.track-result[hidden] {
  display: none;
}

.track-result-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #f0d9a8;
}

.track-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.track-meta-label {
  margin: 0 0 4px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #a8571f;
}

.track-meta-value {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #3d2b1f;
}

.track-status-badge {
  display: inline-block;
  background-color: #FDF6E9;
  color: #6E1E1E;
  border: 1px solid #FDB813;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.track-timeline {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.track-step {
  position: relative;
  display: flex;
  gap: 16px;
  padding-bottom: 26px;
}

.track-step:last-child {
  padding-bottom: 0;
}

.track-step::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 20px;
  bottom: 0;
  width: 2px;
  background-color: #f0d9a8;
}

.track-step:last-child::before {
  display: none;
}

.track-step-dot {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border-radius: 50%;
  background-color: #fff;
  border: 3px solid #e6cfa0;
}

.track-step.is-done .track-step-dot {
  background-color: #6E1E1E;
  border-color: #6E1E1E;
}

.track-step.is-active .track-step-dot {
  background-color: #FDB813;
  border-color: #FDB813;
  box-shadow: 0 0 0 4px rgba(253, 184, 19, 0.25);
}

.track-step.is-done::before {
  background-color: #6E1E1E;
}

.track-step-title {
  margin: 0 0 2px;
  font-size: 14.5px;
  font-weight: 700;
  color: #3d2b1f;
}

.track-step.is-done .track-step-title,
.track-step.is-active .track-step-title {
  color: #6E1E1E;
}

.track-step-time {
  margin: 0;
  font-size: 12.5px;
  color: #a8571f;
}

.track-items h2 {
  color: #6E1E1E;
  font-size: 17px;
  margin: 0 0 14px;
}

.track-items-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.track-items-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #f5e6cc;
}

.track-item-name {
  margin: 0 0 2px;
  font-size: 14px;
  font-weight: 700;
  color: #3d2b1f;
}

.track-item-qty {
  margin: 0;
  font-size: 12.5px;
  color: #a8571f;
}

.track-item-price {
  font-size: 14px;
  font-weight: 700;
  color: #6E1E1E;
  white-space: nowrap;
}

.track-items-total {
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  font-size: 15px;
  color: #3d2b1f;
}

.track-items-total strong {
  color: #6E1E1E;
}

.track-help {
  text-align: center;
  background-color: #FDF6E9;
  border-radius: 18px;
  padding: 32px 24px;
}

.track-help h2 {
  color: #6E1E1E;
  font-size: 20px;
  margin: 0 0 8px;
}

.track-help p {
  color: #3d2b1f;
  font-size: 14px;
  margin: 0 0 20px;
}

.track-help-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.track-help-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  background-color: #6E1E1E;
  color: #FDF6E9;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: background-color 0.2s, transform 0.2s;
}

.track-help-btn:hover {
  background-color: #8a2929;
  transform: translateY(-1px);
}

.track-help-btn-alt {
  background-color: #fff;
  color: #6E1E1E;
  border: 1px solid #e6cfa0;
}

.track-help-btn-alt:hover {
  background-color: #FDF6E9;
}

@media (max-width: 600px) {
  .track-hero {
    padding: 32px 20px;
  }

  .track-hero-title {
    font-size: 24px;
  }

  .track-form-card,
  .track-result {
    padding: 24px 20px;
  }

  .track-form-row {
    grid-template-columns: 1fr;
  }

  .track-result-top {
    flex-direction: column;
    align-items: flex-start;
  }
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  color: #2b1a00;
  display: flex;
  align-items: center;
}

.social-icons a:hover {
  opacity: 0.7;
}

.navbar a {
  color: #4a2e00;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.navbar a:hover {
  text-decoration: underline;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #FDF6E9;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .navbar-secondary {
    flex-wrap: wrap;
    height: auto;
    min-height: 64px;
    padding: 10px 16px;
  }

  .logo-link {
    margin-left: 0;
  }

  .logo {
    height: 46px;
  }

  .mobile-menu-toggle {
    display: flex;
    margin-left: auto;
    order: 2;
  }

  .cart-btn {
    margin-left: 12px;
    margin-right: 0;
    order: 3;
  }

  .book-puja-btn {
    order: 4;
    margin-left: 12px;
    padding: 8px 16px;
    font-size: 13px;
  }

  .nav-center {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    transform: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background-color: #6E1E1E;
    padding: 6px 16px 16px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    display: none;
    order: 5;
    width: 100%;
    box-sizing: border-box;
  }

  .nav-center.open {
    display: flex;
  }

  .nav-center .nav-btn {
    width: 100%;
    padding: 12px 0;
    justify-content: space-between;
    border-top: 1px solid rgba(253, 246, 233, 0.12);
  }

  .nav-item {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    background: transparent;
    box-shadow: none;
    padding: 0 0 8px 12px;
    margin-top: 0;
  }

  .nav-item.open .dropdown-menu {
    display: grid;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .dropdown-menu li a {
    color: #FDF6E9;
    padding: 8px 10px;
  }

  .dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #FDB813;
  }

  .hero-carousel {
    height: 300px;
  }

  .hero-carousel-slide {
    background-size: cover;
  }

  .mantra-item {
    padding: 0 24px;
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .navbar {
    flex-wrap: wrap;
    height: auto;
    padding: 8px 12px;
    gap: 8px;
  }

  .contact-info {
    display: none;
  }

  .nav-datetime {
    order: -1;
    width: 100%;
    justify-content: center;
    margin: 0 0 2px;
    font-size: 11px;
  }

  .social-icons {
    display: none;
  }

  .utility-icons {
    margin-left: 0;
    gap: 10px;
  }

  .utility-icons a span {
    display: none;
  }

  .hero-carousel {
    height: 200px;
  }

  .book-puja-btn span,
  .book-puja-btn {
    font-size: 12px;
    padding: 7px 12px;
  }

  .daan-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== Online Vedic Panchang ===== */
.panchang-section {
  --pc-primary: #6E1E1E;
  --pc-primary-mid: #8B2E2E;
  --pc-accent: #C4A35A;
  --pc-primary-soft: rgba(110, 30, 30, 0.08);
  --pc-border: rgba(110, 30, 30, 0.14);
  --pc-cream: #F7F1E6;
  --pc-paper: #FFFCF7;
  --pc-ink: #1F1714;
  --pc-muted: #6B5E54;
  --pc-line: rgba(196, 163, 90, 0.35);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(196, 163, 90, 0.18), transparent 55%),
    linear-gradient(180deg, #FBF7F0 0%, var(--pc-cream) 100%);
  padding: 48px 20px 64px;
  font-family: "DM Sans", sans-serif;
  color: var(--pc-ink);
}

.panchang-inner {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin: 0;
}

.pc-header {
  text-align: center;
  margin-bottom: 28px;
}

.pc-eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pc-accent);
}

.pc-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--pc-primary);
  line-height: 1.15;
}

.pc-divider {
  width: 72px;
  height: 2px;
  margin: 14px auto 12px;
  background: linear-gradient(90deg, transparent, var(--pc-accent), transparent);
  border-radius: 2px;
  position: relative;
}

.pc-divider::before,
.pc-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--pc-accent);
  transform: translateY(-50%);
}

.pc-divider::before { left: -10px; }
.pc-divider::after { right: -10px; }

.pc-tagline {
  margin: 0 auto;
  width: 100%;
  max-width: none;
  color: var(--pc-muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.pc-shell {
  position: relative;
}

.pc-card {
  position: relative;
  background: var(--pc-paper);
  border: 1px solid var(--pc-border);
  border-radius: 20px;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.8) inset,
    0 20px 50px rgba(110, 30, 30, 0.08);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  overflow: hidden;
}

.pc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(196, 163, 90, 0.22);
}

.pc-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.55;
  border-color: var(--pc-accent);
  border-style: solid;
}

.pc-corner--tl { top: 10px; left: 10px; border-width: 1.5px 0 0 1.5px; }
.pc-corner--tr { top: 10px; right: 10px; border-width: 1.5px 1.5px 0 0; }
.pc-corner--bl { bottom: 10px; left: 10px; border-width: 0 0 1.5px 1.5px; }
.pc-corner--br { bottom: 10px; right: 10px; border-width: 0 1.5px 1.5px 0; }

@media (min-width: 960px) {
  .pc-card {
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.55fr);
    padding: 28px;
    gap: 28px;
  }
}

.pc-glass {
  background: rgba(255, 252, 247, 0.92);
  border: 1px solid var(--pc-border);
  border-radius: 14px;
  box-shadow: 0 1px 2px rgba(31, 23, 20, 0.03);
}

.pc-cal {
  padding: 16px;
  position: relative;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(247, 241, 230, 0.5));
}

.pc-view-toggle {
  display: inline-flex;
  background: #F3EBE0;
  border-radius: 10px;
  padding: 3px;
  gap: 2px;
  margin: 0 auto 14px;
  width: fit-content;
  border: 1px solid transparent;
}

.pc-view-btn {
  border: none;
  background: transparent;
  color: var(--pc-muted);
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.pc-view-btn:hover {
  color: var(--pc-primary);
}

.pc-view-btn.is-active {
  background: #fff;
  color: var(--pc-primary);
  box-shadow: 0 1px 3px rgba(31, 23, 20, 0.08);
}

.pc-cal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 14px;
}

.pc-nav-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--pc-border);
  border-radius: 10px;
  background: #fff;
  color: var(--pc-primary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}

.pc-nav-btn:hover {
  background: var(--pc-primary-soft);
  border-color: rgba(110, 30, 30, 0.28);
}

.pc-cal-label {
  background: var(--pc-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.pc-weekdays,
.pc-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.pc-wd {
  text-align: center;
  color: var(--pc-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 0 8px;
}

.pc-day {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--pc-ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  width: 100%;
  aspect-ratio: 1;
  max-height: 40px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  position: relative;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}

.pc-day-num {
  line-height: 1;
}

.pc-fest-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #C45C26;
  flex-shrink: 0;
}

.pc-day.has-festival .pc-fest-dot {
  background: #C45C26;
}

.pc-day.is-selected .pc-fest-dot {
  background: #FDB813;
}

.pc-day:hover:not(.pc-day--empty) {
  background: var(--pc-primary-soft);
  color: var(--pc-primary);
}

.pc-day--empty {
  cursor: default;
  pointer-events: none;
}

.pc-day.is-today {
  box-shadow: inset 0 0 0 1.5px var(--pc-accent);
  color: var(--pc-primary);
  font-weight: 700;
}

.pc-day.is-selected {
  background: var(--pc-primary);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(110, 30, 30, 0.28);
}

.pc-day.is-selected.is-today {
  box-shadow: 0 4px 12px rgba(110, 30, 30, 0.28);
}

.pc-festivals {
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: #9A3412;
  line-height: 1.4;
}

.pc-fest-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 8px 0 0;
  font-size: 11px;
  color: var(--pc-muted);
  font-weight: 500;
}

.pc-fest-legend .pc-fest-dot {
  display: inline-block;
}

.pc-cal-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--pc-line);
  text-align: center;
}

.pc-cal-footer p {
  margin: 0;
}

#pc-viewing {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--pc-primary);
}

#pc-day-meta {
  margin-top: 5px;
  font-size: 12px;
  color: var(--pc-muted);
  line-height: 1.4;
}

.pc-year-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 520px) {
  .pc-year-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pc-year-month {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--pc-border);
  border-radius: 10px;
  padding: 8px 6px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.pc-year-month:hover {
  border-color: rgba(110, 30, 30, 0.28);
  box-shadow: 0 4px 14px rgba(110, 30, 30, 0.06);
}

.pc-year-month-label {
  display: block;
  width: 100%;
  border: none;
  background: transparent;
  color: var(--pc-primary);
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 4px;
  padding: 2px;
}

.pc-days--compact .pc-day {
  font-size: 9px;
  max-height: 18px;
  border-radius: 4px;
  padding: 0;
}

.pc-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
  position: relative;
  z-index: 1;
}

.pc-details-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pc-section-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--pc-ink);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.pc-lang-toggle {
  position: relative;
  display: flex;
  width: 140px;
  background: #F3EBE0;
  border-radius: 999px;
  padding: 3px;
  flex-shrink: 0;
}

.pc-lang-pill {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  background: var(--pc-primary);
  border-radius: 999px;
  transition: transform 0.25s ease;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(110, 30, 30, 0.25);
}

.pc-lang-btn {
  position: relative;
  z-index: 1;
  width: 50%;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 0;
  border-radius: 999px;
  cursor: pointer;
  color: var(--pc-muted);
  transition: color 0.2s;
}

.pc-lang-btn.is-active {
  color: #fff;
}

.pc-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 520px) {
  .pc-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 960px) {
  .pc-info-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.pc-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  transition: border-color 0.15s, transform 0.15s;
}

.pc-info-item:hover {
  border-color: rgba(110, 30, 30, 0.28);
  transform: translateY(-1px);
}

.pc-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--pc-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pc-primary);
}

.pc-info-text {
  min-width: 0;
}

.pc-info-item p {
  margin: 0;
  line-height: 1.3;
}

.pc-info-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pc-muted);
  margin-bottom: 2px !important;
}

.pc-info-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--pc-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pc-astro-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 520px) {
  .pc-astro-row {
    grid-template-columns: 1fr 1fr;
  }
}

.pc-astro-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px;
}

.pc-astro-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pc-astro-icon--sun {
  background: rgba(196, 163, 90, 0.18);
  color: #A67C2A;
}

.pc-astro-icon--moon {
  background: rgba(110, 30, 30, 0.1);
  color: var(--pc-primary);
}

.pc-astro-kicker {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pc-muted);
}

.pc-astro-value {
  margin: 2px 0 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--pc-primary);
}

.pc-astro-times {
  margin: 3px 0 0 !important;
  font-size: 12px;
  font-weight: 500;
  color: var(--pc-muted);
}

.pc-details-block {
  min-width: 0;
}

.pc-details-block .pc-section-title {
  margin-bottom: 10px;
  font-size: 20px;
}

.pc-scroll {
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  margin: 0 -2px;
  padding-left: 2px;
  padding-right: 2px;
}

.pc-scroll::-webkit-scrollbar {
  height: 3px;
}

.pc-scroll::-webkit-scrollbar-track {
  background: #EFE6D8;
  border-radius: 20px;
}

.pc-scroll::-webkit-scrollbar-thumb {
  background: var(--pc-primary);
  border-radius: 20px;
}

.pc-scroll-track {
  display: flex;
  gap: 12px;
  width: max-content;
}

.pc-detail-card {
  width: 248px;
  padding: 16px 16px 14px;
  scroll-snap-align: start;
  flex-shrink: 0;
}

.pc-detail-card h4 {
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--pc-line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pc-primary);
}

.pc-dl {
  margin: 0;
}

.pc-dl > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: start;
  padding: 6px 0;
  border-bottom: 1px solid rgba(31, 23, 20, 0.05);
}

.pc-dl > div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pc-dl dt {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--pc-muted);
}

.pc-dl dd {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--pc-ink);
  text-align: right;
  max-width: 140px;
  line-height: 1.35;
}

.pc-detail-note {
  margin: 10px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--pc-line);
  font-size: 12px;
  color: var(--pc-muted);
  font-style: italic;
  line-height: 1.45;
}

@media (max-width: 600px) {
  .pc-corner {
    display: none;
  }

  .panchang-section {
    padding: 32px 12px 44px;
  }

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

  .pc-section-title {
    font-size: 19px;
  }
}

/* —— Home page content —— */
.home-content {
  width: 100%;
}

.home-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 56px 24px;
  box-sizing: border-box;
}

.home-section--cream {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  background:
    linear-gradient(180deg, rgba(253, 246, 233, 0.95) 0%, rgba(255, 252, 245, 0.98) 100%);
  border-top: 1px solid #f0d9a8;
  border-bottom: 1px solid #f0d9a8;
}

.home-section--cream > .home-section-head,
.home-section--cream > .home-puja-grid,
.home-section--cream > .daan-grid,
.home-section--cream > .home-category-grid,
.home-section--cream > .home-why-grid,
.home-section--cream > .home-section-foot {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

.home-section--cream > .home-puja-grid,
.home-section--cream > .daan-grid,
.home-section--cream > .home-category-grid,
.home-section--cream > .home-why-grid {
  padding-left: 20px;
  padding-right: 20px;
}

.home-section-head {
  text-align: center;
  width: 100%;
  max-width: none;
  margin: 0 0 32px;
}

.home-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a8571f;
}

.home-title {
  margin: 0 0 12px;
  color: #6E1E1E;
  font-size: clamp(24px, 3.5vw, 34px);
  line-height: 1.25;
}

.home-lead {
  margin: 0;
  color: #3d2b1f;
  font-size: 15px;
  line-height: 1.7;
}

.home-intro {
  text-align: center;
  padding-top: 48px;
  padding-bottom: 40px;
}

.home-intro .home-lead {
  width: 100%;
  max-width: none;
  margin: 0;
}

.home-intro-actions,
.home-section-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}

.home-btn:hover {
  transform: translateY(-1px);
}

.home-btn--primary {
  background-color: #6E1E1E;
  color: #FDF6E9;
}

.home-btn--primary:hover {
  background-color: #8B2E2E;
}

.home-btn--ghost {
  background-color: transparent;
  color: #6E1E1E;
  border: 1.5px solid #6E1E1E;
}

.home-btn--ghost:hover {
  background-color: #FDB813;
  border-color: #FDB813;
  color: #2b1a00;
}

.home-btn--gold {
  background-color: #FDB813;
  color: #2b1a00;
}

.home-btn--gold:hover {
  background-color: #ffc94a;
}

.home-btn--outline-light {
  background-color: transparent;
  color: #FDF6E9;
  border: 1.5px solid rgba(253, 246, 233, 0.7);
}

.home-btn--outline-light:hover {
  background-color: rgba(253, 246, 233, 0.12);
  border-color: #FDF6E9;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.home-service-card {
  position: relative;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #f0d9a8;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(110, 30, 30, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-service-card--compact {
  grid-column: span 1;
}

.home-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 32px rgba(110, 30, 30, 0.16);
}

.home-service-media {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.home-service-card--compact .home-service-media {
  height: 150px;
}

.home-service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background-color: #FDF6E9;
  filter: saturate(1.15) contrast(1.06);
  transition: transform 0.45s ease;
}

.home-service-card:hover .home-service-image {
  transform: scale(1.07);
}

.home-service-card--diagram .home-service-media {
  background: linear-gradient(135deg, #FDF6E9 0%, #f0d9a8 100%);
}

.home-service-card--diagram .home-service-image {
  object-fit: contain;
  padding: 18px;
  box-sizing: border-box;
  filter: sepia(0.5) saturate(1.8) contrast(1.1);
  mix-blend-mode: multiply;
}

.home-service-icon {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #FDB813;
  color: #6E1E1E;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.home-service-card--compact .home-service-icon {
  width: 32px;
  height: 32px;
}

.home-service-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 36px 18px 14px;
  background: linear-gradient(180deg, rgba(30, 10, 10, 0) 0%, rgba(25, 8, 8, 0.8) 100%);
}

.home-service-overlay h3 {
  margin: 0;
  color: #FDF6E9;
  font-size: 20px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.home-service-card--compact .home-service-overlay h3 {
  font-size: 16px;
}

.home-service-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 14px;
}

.home-service-body p {
  margin: 0;
  color: #3d2b1f;
  font-size: 13.5px;
  line-height: 1.6;
  flex: 1;
}

.home-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  color: #6E1E1E;
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 15px;
  border: 1px solid #f0d9a8;
  border-radius: 20px;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s;
}

.home-service-card:hover .home-service-link {
  background-color: #FDB813;
  border-color: #FDB813;
  color: #6E1E1E;
}

.home-puja-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.home-puja-card {
  background-color: #fff;
  border: 1px solid #f0d9a8;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.home-puja-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.home-puja-body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.home-puja-body h3 {
  margin: 0 0 8px;
  color: #6E1E1E;
  font-size: 18px;
}

.home-puja-body p {
  margin: 0 0 16px;
  color: #3d2b1f;
  font-size: 14px;
  line-height: 1.65;
  flex: 1;
}

.home-category-grid {
  margin-top: 0;
  margin-bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.home-cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 26px 14px;
  background-color: #fff;
  border: 1px solid #f0d9a8;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.home-cat-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 26px rgba(110, 30, 30, 0.14);
  background-color: #FDF6E9;
}

.home-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #FDB813 0%, #f0a500 100%);
  color: #6E1E1E;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(110, 30, 30, 0.15);
}

.home-cat-label {
  color: #6E1E1E;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
}

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

.home-why-item {
  background-color: #fff;
  border: 1px solid #f0d9a8;
  border-radius: 12px;
  padding: 22px 18px;
  text-align: center;
}

.home-why-item h3 {
  margin: 0 0 8px;
  color: #6E1E1E;
  font-size: 16px;
}

.home-why-item p {
  margin: 0;
  color: #3d2b1f;
  font-size: 13.5px;
  line-height: 1.6;
}

.home-blog-grid {
  width: 100%;
  max-width: none;
  margin: 0;
}

.home-cta {
  background:
    linear-gradient(135deg, #6E1E1E 0%, #8B2E2E 45%, #5a1818 100%);
  padding: 56px 20px;
  text-align: center;
}

.home-cta-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  box-sizing: border-box;
}

.home-cta h2 {
  margin: 0 0 12px;
  color: #FDF6E9;
  font-size: clamp(22px, 3.5vw, 30px);
  line-height: 1.3;
}

.home-cta p {
  margin: 0;
  color: rgba(253, 246, 233, 0.88);
  font-size: 15px;
  line-height: 1.65;
}

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

  .home-service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-service-card,
  .home-service-card--compact {
    grid-column: span 1;
  }

  .home-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .home-section {
    padding: 40px 16px;
  }

  .home-service-grid,
  .home-puja-grid,
  .home-why-grid {
    grid-template-columns: 1fr;
  }

  .home-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-service-card,
  .home-service-card--compact {
    grid-column: span 1;
  }

  .home-puja-image {
    height: 160px;
  }

  .home-service-media {
    height: 170px;
  }
}

/* —— Puja Booking Form —— */
.puja-booking {
  width: 100%;
  box-sizing: border-box;
  padding: 40px 24px 56px;
  background:
    linear-gradient(180deg, #fffdf8 0%, #FDF6E9 100%);
}

.puja-booking-intro {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 920px;
}

.puja-booking-title {
  margin: 0;
  color: #6E1E1E;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
}

.puja-booking-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 18px;
}

.puja-booking-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FDB813;
}

.puja-booking-lead {
  margin: 0 0 12px;
  color: #6E1E1E;
  font-size: 14.5px;
  line-height: 1.7;
}

.puja-booking-form {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #6E1E1E;
  border-radius: 12px;
  background: #fff;
  padding: 28px 24px 24px;
}

.puja-booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 36px;
  align-items: start;
}

.puja-booking-fields {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.puja-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.puja-field > span,
.puja-booking-list legend {
  color: #6E1E1E;
  font-size: 13.5px;
  font-weight: 700;
}

.puja-field input[type="text"],
.puja-field input[type="email"],
.puja-field input[type="tel"],
.puja-field input[type="date"],
.puja-field input[type="time"],
.puja-field textarea,
.puja-otp-row input {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #e5d3b5;
  border-radius: 8px;
  background: #f5f5f5;
  padding: 11px 12px;
  font: inherit;
  font-size: 14px;
  color: #2b1a00;
}

.puja-field input:focus,
.puja-field textarea:focus,
.puja-otp-row input:focus {
  outline: 2px solid rgba(253, 184, 19, 0.55);
  border-color: #FDB813;
  background: #fff;
}

.puja-field textarea {
  resize: vertical;
  min-height: 72px;
}

.puja-file {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  cursor: pointer;
}

.puja-file input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.puja-file-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  background: #FDB813;
  color: #2b1a00;
  font-weight: 700;
  font-size: 13px;
  border-radius: 8px;
  border: none;
}

.puja-file:hover .puja-file-btn {
  background: #ffc94a;
}

.puja-file-name {
  font-size: 13px;
  color: #5a4636;
}

.puja-mobile-row,
.puja-otp-row {
  display: flex;
  gap: 10px;
  align-items: center;
}

.puja-mobile-row input,
.puja-otp-row input {
  flex: 1;
}

.puja-otp-btn {
  flex-shrink: 0;
  padding: 10px 14px;
  border: 1.5px solid #6E1E1E;
  border-radius: 8px;
  background: #fff;
  color: #6E1E1E;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.15s, color 0.15s;
}

.puja-otp-btn:hover {
  background: #6E1E1E;
  color: #FDF6E9;
}

.puja-otp-status {
  font-size: 12px;
  color: #097939;
  white-space: nowrap;
}

.puja-booking-list {
  margin: 0;
  padding: 0;
  border: none;
  min-width: 0;
}

.puja-booking-list legend {
  padding: 0;
  margin: 0 0 12px;
}

.puja-checklist {
  max-height: 520px;
  overflow: auto;
  border: 1px solid #f0d9a8;
  border-radius: 10px;
  background: #FDF6E9;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.puja-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 6px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13.5px;
  color: #3d2b1f;
  line-height: 1.45;
}

.puja-check:hover {
  background: rgba(253, 184, 19, 0.22);
}

.puja-check input {
  margin-top: 3px;
  accent-color: #6E1E1E;
  flex-shrink: 0;
}

.puja-total {
  margin-top: 14px;
  padding: 12px 14px;
  background: #6E1E1E;
  color: #FDF6E9;
  border-radius: 8px;
  font-size: 14px;
}

.puja-total strong {
  color: #FDB813;
  font-size: 16px;
}

.puja-payment-box {
  margin-top: 24px;
  padding: 22px 24px;
  background: #FDF6E9;
  border: 1px solid #e5d3b5;
  border-radius: 12px;
}

.puja-payment-title {
  margin: 0 0 8px;
  color: #6E1E1E;
  font-size: 17px;
}

.puja-payment-note {
  margin: 0 0 16px;
  font-size: 13.5px;
  color: #5a4636;
  line-height: 1.6;
}

.puja-payment-amount {
  margin-bottom: 18px;
  padding: 12px 14px;
  background: #6E1E1E;
  color: #FDF6E9;
  border-radius: 8px;
  font-size: 14px;
}

.puja-payment-amount strong {
  color: #FDB813;
  font-size: 16px;
}

.puja-payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 20px;
}

.puja-payment-method {
  background: #fff;
  border: 1px solid #e5d3b5;
  border-radius: 10px;
  padding: 16px;
}

.puja-payment-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #6E1E1E;
  margin-bottom: 10px;
}

.puja-payment-value-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.puja-payment-value-row code {
  flex: 1;
  padding: 8px 10px;
  background: #f5f5f5;
  border: 1px solid #e5d3b5;
  border-radius: 6px;
  font-size: 13.5px;
  color: #2b1a00;
}

.puja-copy-btn {
  padding: 8px 14px;
  background: #FDB813;
  color: #2b1a00;
  font-weight: 700;
  font-size: 12.5px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}

.puja-copy-btn:hover {
  background: #ffc94a;
}

.puja-pay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #6E1E1E;
  color: #FDF6E9;
  font-weight: 700;
  font-size: 13.5px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.15s;
}

.puja-pay-btn:hover {
  background-color: #8a2929;
}

.puja-payment-bank-details {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.puja-payment-bank-details li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
}

.puja-payment-bank-details li span {
  color: #5a4636;
}

.puja-payment-bank-details li strong {
  color: #2b1a00;
  text-align: right;
}

.puja-booking-actions {
  margin-top: 28px;
  text-align: center;
}

.puja-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  background: #FDB813;
  color: #2b1a00;
  font-weight: 800;
  font-size: 16px;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.15s, transform 0.15s;
}

.puja-book-btn:hover {
  background: #ffc94a;
  transform: translateY(-1px);
}

.puja-form-msg {
  margin: 14px 0 0;
  font-size: 14px;
  color: #097939;
  font-weight: 600;
}

.puja-form-msg.is-error {
  color: #8B2E2E;
}

@media (max-width: 900px) {
  .puja-booking-grid {
    grid-template-columns: 1fr;
  }

  .puja-checklist {
    max-height: 360px;
  }
}

@media (max-width: 600px) {
  .puja-booking {
    padding: 28px 16px 40px;
  }

  .puja-booking-form {
    padding: 18px 14px 20px;
  }

  .puja-mobile-row {
    flex-direction: column;
    align-items: stretch;
  }

  .puja-payment-grid {
    grid-template-columns: 1fr;
  }

  .puja-payment-box {
    padding: 16px;
  }
}

/* ===== Professional Registration (Astrologer / Purohit) ===== */

.pro-page {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin: 0;
  padding: 40px 24px 64px;
}

.pro-container {
  max-width: 920px;
  margin: 0 auto;
}

.pro-hero {
  position: relative;
  text-align: center;
  background: linear-gradient(160deg, #6E1E1E 0%, #a8571f 100%);
  color: #FDF6E9;
  border-radius: 18px;
  padding: 44px 32px;
  overflow: hidden;
  margin-bottom: 28px;
}

.pro-hero-om {
  position: absolute;
  top: -30px;
  right: -10px;
  font-size: 200px;
  line-height: 1;
  color: rgba(253, 246, 233, 0.08);
  pointer-events: none;
}

.pro-hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(253, 184, 19, 0.18);
  border: 1px solid rgba(253, 184, 19, 0.4);
  color: #FDB813;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.pro-hero-title {
  position: relative;
  font-size: 30px;
  margin: 0 0 10px;
}

.pro-hero-subtitle {
  position: relative;
  font-size: 14.5px;
  line-height: 1.7;
  color: #FDF6E9;
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto;
}

.pro-hero-points {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.pro-hero-points li {
  background: rgba(253, 246, 233, 0.12);
  border: 1px solid rgba(253, 246, 233, 0.2);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
}

.pro-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(110, 30, 30, 0.12);
  padding: 36px;
  margin-bottom: 28px;
  box-sizing: border-box;
}

.pro-section + .pro-section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid #f0e2c4;
}

.pro-section-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 18px;
}

.pro-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #6E1E1E;
  color: #FDB813;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.pro-section-title {
  margin: 0;
  font-size: 18px;
  color: #6E1E1E;
  letter-spacing: 0.02em;
}

.pro-section-desc {
  margin: -8px 0 18px 36px;
  font-size: 13.5px;
  color: #5a4636;
}

.pro-form-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pro-form-grid.pro-cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.pro-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pro-field.pro-span-2 {
  grid-column: span 2;
}

.pro-field.pro-span-3 {
  grid-column: 1 / -1;
}

.pro-field label {
  font-size: 13px;
  font-weight: 700;
  color: #6E1E1E;
}

.pro-field .pro-optional-tag {
  font-weight: 500;
  color: #9c8a6f;
  text-transform: none;
  letter-spacing: 0;
}

.pro-field input,
.pro-field select,
.pro-field textarea {
  padding: 11px 14px;
  border: 1px solid #e6cfa0;
  border-radius: 8px;
  font-size: 14px;
  color: #3d2b1f;
  font-family: inherit;
  box-sizing: border-box;
  width: 100%;
  background: #fff;
}

.pro-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236E1E1E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
  cursor: pointer;
}

.pro-field textarea {
  resize: vertical;
  min-height: 110px;
}

.pro-field input:focus,
.pro-field select:focus,
.pro-field textarea:focus {
  outline: none;
  border-color: #FDB813;
  box-shadow: 0 0 0 3px rgba(253, 184, 19, 0.25);
}

.pro-bio-wrap {
  position: relative;
}

.pro-bio-counter {
  position: absolute;
  right: 12px;
  bottom: 10px;
  font-size: 12px;
  color: #9c8a6f;
  background: rgba(255, 255, 255, 0.9);
  padding: 1px 6px;
  border-radius: 6px;
  pointer-events: none;
}

.pro-bio-counter.is-near-limit {
  color: #a8571f;
  font-weight: 700;
}

.pro-pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pro-pill {
  position: relative;
}

.pro-pill input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.pro-pill span {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border: 1px solid #e6cfa0;
  border-radius: 999px;
  font-size: 13.5px;
  color: #5a4636;
  background: #FDF6E9;
  cursor: pointer;
  transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}

.pro-pill input:focus-visible + span {
  outline: 2px solid rgba(253, 184, 19, 0.55);
  outline-offset: 2px;
}

.pro-pill input:checked + span {
  background: #6E1E1E;
  border-color: #6E1E1E;
  color: #FDF6E9;
  font-weight: 700;
}

.pro-upload-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pro-upload {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pro-upload > span {
  font-size: 13px;
  font-weight: 700;
  color: #6E1E1E;
}

.pro-upload-box {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  border: 2px dashed #e6cfa0;
  border-radius: 12px;
  background: #FDF6E9;
  padding: 22px 16px;
  cursor: pointer;
  transition: border-color 0.15s, background-color 0.15s;
}

.pro-upload-box:hover,
.pro-upload-box.is-dragover {
  border-color: #FDB813;
  background: #fdf0d4;
}

.pro-upload-box.has-file {
  border-style: solid;
  border-color: #097939;
  background: #f0f9f2;
}

.pro-upload-box input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.pro-upload-icon {
  color: #a8571f;
}

.pro-upload-box.has-file .pro-upload-icon {
  color: #097939;
}

.pro-upload-text {
  font-size: 13.5px;
  color: #3d2b1f;
  font-weight: 600;
}

.pro-upload-hint {
  font-size: 11.5px;
  color: #9c8a6f;
  letter-spacing: 0.02em;
}

.pro-upload-filename {
  font-size: 12.5px;
  color: #097939;
  font-weight: 700;
  word-break: break-all;
  padding: 0 8px;
}

.pro-upload-browse-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  background: #FDB813;
  color: #2b1a00;
  font-weight: 700;
  font-size: 12.5px;
  border-radius: 999px;
  border: none;
  pointer-events: none;
  margin-top: 2px;
}

.pro-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 30px;
  font-size: 13.5px;
  color: #5a4636;
  line-height: 1.6;
}

.pro-consent input {
  margin-top: 3px;
  accent-color: #6E1E1E;
  flex-shrink: 0;
}

.pro-consent a {
  color: #6E1E1E;
  font-weight: 700;
}

.pro-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background-color: #6E1E1E;
  color: #FDF6E9;
  border: none;
  border-radius: 8px;
  padding: 15px;
  font-size: 15.5px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  margin-top: 26px;
  transition: background-color 0.2s, transform 0.2s;
}

.pro-submit-btn:hover {
  background-color: #8a2929;
  transform: translateY(-1px);
}

.pro-form-note {
  text-align: center;
  font-size: 13px;
  color: #5a4636;
  margin-top: 14px;
}

.pro-success {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(110, 30, 30, 0.12);
  padding: 40px 32px;
  text-align: center;
}

.pro-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #e6f6ea;
  color: #097939;
  margin-bottom: 16px;
}

.pro-success h2 {
  margin: 0 0 8px;
  color: #6E1E1E;
  font-size: 22px;
}

.pro-success p {
  margin: 0 auto;
  max-width: 460px;
  color: #5a4636;
  font-size: 14.5px;
  line-height: 1.7;
}

.pro-success-ref {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 18px;
  background: #FDF6E9;
  border: 1px dashed #e6cfa0;
  border-radius: 8px;
  font-weight: 700;
  color: #6E1E1E;
  letter-spacing: 0.03em;
}

@media (max-width: 860px) {
  .pro-form-grid,
  .pro-form-grid.pro-cols-2 {
    grid-template-columns: 1fr 1fr;
  }

  .pro-upload-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .pro-page {
    padding: 28px 16px 40px;
  }

  .pro-card {
    padding: 22px 16px;
  }

  .pro-hero {
    padding: 32px 20px;
  }

  .pro-hero-title {
    font-size: 24px;
  }

  .pro-form-grid,
  .pro-form-grid.pro-cols-2 {
    grid-template-columns: 1fr;
  }

  .pro-field.pro-span-2,
  .pro-field.pro-span-3 {
    grid-column: auto;
  }

  .pro-section-desc {
    margin-left: 0;
  }
}

/* ===== Careers page ===== */

.career-page {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin: 0;
  padding: 40px 24px 64px;
}

.career-container {
  max-width: 1000px;
  margin: 0 auto;
}

.career-hero {
  position: relative;
  text-align: center;
  background: linear-gradient(160deg, #6E1E1E 0%, #a8571f 100%);
  color: #FDF6E9;
  border-radius: 18px;
  padding: 44px 32px;
  overflow: hidden;
  margin-bottom: 28px;
}

.career-hero-om {
  position: absolute;
  top: -30px;
  right: -10px;
  font-size: 200px;
  line-height: 1;
  color: rgba(253, 246, 233, 0.08);
  pointer-events: none;
}

.career-hero-title {
  position: relative;
  font-size: 30px;
  margin: 0 0 10px;
}

.career-hero-subtitle {
  position: relative;
  font-size: 14.5px;
  line-height: 1.7;
  color: #FDF6E9;
  opacity: 0.92;
  max-width: 560px;
  margin: 0 auto;
}

.career-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.career-benefit-card {
  background: #fff;
  border: 1px solid #f0e2c4;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
}

.career-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FDF6E9;
  color: #6E1E1E;
  margin-bottom: 12px;
}

.career-benefit-card h3 {
  margin: 0 0 6px;
  font-size: 14.5px;
  color: #6E1E1E;
}

.career-benefit-card p {
  margin: 0;
  font-size: 12.5px;
  color: #5a4636;
  line-height: 1.6;
}

.career-section-title {
  color: #6E1E1E;
  font-size: 22px;
  margin: 0 0 6px;
}

.career-section-subtitle {
  color: #5a4636;
  font-size: 14px;
  margin: 0 0 22px;
}

.career-openings-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.career-job-card {
  background: #fff;
  border: 1px solid #f0e2c4;
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 10px 26px rgba(110, 30, 30, 0.06);
}

.career-job-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.career-job-title {
  margin: 0;
  color: #6E1E1E;
  font-size: 18px;
}

.career-job-posted {
  font-size: 12px;
  color: #9c8a6f;
  white-space: nowrap;
}

.career-job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.career-job-tags span {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  background: #FDF6E9;
  border: 1px solid #f0d9a8;
  color: #a8571f;
  font-size: 12px;
  font-weight: 700;
}

.career-job-desc {
  margin: 0 0 14px;
  color: #3d2b1f;
  font-size: 14px;
  line-height: 1.7;
}

.career-job-details {
  margin: 0 0 14px;
  padding-top: 14px;
  border-top: 1px dashed #f0d9a8;
}

.career-job-details h4 {
  margin: 0 0 8px;
  font-size: 13.5px;
  color: #6E1E1E;
}

.career-job-details ul {
  margin: 0 0 14px;
  padding-left: 20px;
  color: #3d2b1f;
  font-size: 13.5px;
  line-height: 1.8;
}

.career-job-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.career-job-toggle-btn {
  padding: 9px 18px;
  background: #FDF6E9;
  color: #6E1E1E;
  border: 1px solid #f0d9a8;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
}

.career-job-toggle-btn:hover {
  background: #fdf0d4;
}

.career-job-apply-btn {
  padding: 9px 22px;
  background: #6E1E1E;
  color: #FDF6E9;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.15s;
}

.career-job-apply-btn:hover {
  background-color: #8a2929;
}

.career-openings-empty {
  text-align: center;
  padding: 40px 24px;
  background: #FDF6E9;
  border: 1px dashed #e6cfa0;
  border-radius: 14px;
  color: #5a4636;
  font-size: 14.5px;
  margin-bottom: 40px;
}

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

@media (max-width: 600px) {
  .career-page {
    padding: 28px 16px 40px;
  }

  .career-hero {
    padding: 32px 20px;
  }

  .career-hero-title {
    font-size: 24px;
  }

  .career-benefits-grid {
    grid-template-columns: 1fr;
  }

  .career-job-card {
    padding: 18px 16px;
  }
}

/* ===== Career admin panel ===== */

.career-admin-page {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin: 0;
  padding: 40px 24px 64px;
}

.career-admin-container {
  max-width: 1100px;
  margin: 0 auto;
}

.career-admin-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fdf0d4;
  border: 1px solid #f0d9a8;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 28px;
  color: #5a4636;
  font-size: 13.5px;
  line-height: 1.6;
}

.career-admin-banner strong {
  color: #a8571f;
}

.career-admin-title {
  color: #6E1E1E;
  font-size: 26px;
  margin: 0 0 24px;
}

.career-admin-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.career-admin-form-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(110, 30, 30, 0.12);
  padding: 28px;
  box-sizing: border-box;
}

.career-admin-form-card h2 {
  margin: 0 0 20px;
  color: #6E1E1E;
  font-size: 18px;
}

.career-admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.career-admin-form-actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

.career-admin-submit-btn {
  flex: 1;
  padding: 13px;
  background: #6E1E1E;
  color: #FDF6E9;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.15s;
}

.career-admin-submit-btn:hover {
  background-color: #8a2929;
}

.career-admin-cancel-btn {
  padding: 13px 20px;
  background: #f5f5f5;
  color: #5a4636;
  border: 1px solid #e5d3b5;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14.5px;
  cursor: pointer;
  font-family: inherit;
}

.career-admin-cancel-btn:hover {
  background: #eee;
}

.career-admin-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.career-admin-list-empty {
  text-align: center;
  padding: 30px 20px;
  background: #FDF6E9;
  border: 1px dashed #e6cfa0;
  border-radius: 12px;
  color: #5a4636;
  font-size: 13.5px;
}

.career-admin-item {
  background: #fff;
  border: 1px solid #f0e2c4;
  border-radius: 12px;
  padding: 16px 18px;
}

.career-admin-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.career-admin-item-title {
  margin: 0 0 4px;
  color: #6E1E1E;
  font-size: 15.5px;
}

.career-admin-item-meta {
  font-size: 12px;
  color: #9c8a6f;
}

.career-admin-status {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.career-admin-status.is-open {
  background: #e6f6ea;
  color: #097939;
}

.career-admin-status.is-closed {
  background: #f5e6e6;
  color: #a83232;
}

.career-admin-item-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.career-admin-item-actions button {
  flex: 1;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #e5d3b5;
  background: #f5f5f5;
  color: #3d2b1f;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.career-admin-item-actions button:hover {
  background: #eee;
}

.career-admin-item-actions .career-admin-delete-btn:hover {
  background: #f5e6e6;
  color: #a83232;
}

@media (max-width: 900px) {
  .career-admin-layout {
    grid-template-columns: 1fr;
  }

  .career-admin-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .career-admin-page {
    padding: 28px 16px 40px;
  }

  .career-admin-form-card {
    padding: 20px 16px;
  }
}
