body {
  margin: 0;
  padding: 0;
  background-color: #411400;
  color: #ffda96;
}

::selection {
  background-color: rgb(255, 68, 0);
  color: rgb(56, 0, 0);
}

.nav-links .active {
  color: #ffa200;
}

.u .active {
  color: #ffa200;
}
/* Navbar */
.navbar {
  background-color: #5c0000;
  height: 90px;
  position: fixed;
  width: 100%;
  top: 0;
  display: flex;
  align-items: center;
  z-index: 1000;
}
.container {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  padding: 0 1rem;
  flex-wrap: wrap;
}
.logo img {
  max-height: 70px;
}
.hamburger {
  display: none;
  font-size: 28px;
  color: #ffda96;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1px;
}
.nav-links a {
  color: #fa2222;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
  margin: 0 30px;
}
.nav-links a:hover {
  color: #ff8c00;
}

/* ============================= */
/* GYANSHAKHA PREMIUM BUTTON */
/* ============================= */

.gyansakha button {
  position: relative;
  margin-right: 12px;
  background: linear-gradient(
    135deg,
    #ffcc00,
    #ff8c00,
    #d40000
  );
  color: #4a0000;
  font-weight: 800;
  font-size: 15px;
  padding: 11px 42px;
  border: none;
  border-radius: 18px;
  cursor: pointer;
  letter-spacing: 0.6px;
  text-transform: uppercase;

  box-shadow:
    0 0 6px rgba(255, 200, 0, 0.7),
    0 0 16px rgba(255, 140, 0, 0.5),
    inset 0 0 6px rgba(255,255,255,0.35);

  transition: all 0.35s ease;
  overflow: hidden;
}

/* Glow ring */
.gyansakha button::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 20px;
  background: linear-gradient(
    90deg,
    #ffd700,
    #ff8c00,
    #ffd700
  );
  opacity: 0;
  filter: blur(6px);
  transition: opacity 0.35s ease;
  z-index: -1;
}

/* Hover effect */
.gyansakha button:hover {
  transform: translateY(-2px) scale(1.03);
  color: #fff2c2;
  box-shadow:
    0 0 10px rgba(255, 215, 0, 0.9),
    0 0 26px rgba(255, 120, 0, 0.9);
}

.gyansakha button:hover::before {
  opacity: 1;
}

/* Click / Tap */
.gyansakha button:active {
  transform: scale(0.97);
}

/* Text glow */
.gyansakha .dstext {
  text-shadow:
    0 0 6px rgba(255, 215, 0, 0.8),
    0 0 12px rgba(255, 140, 0, 0.6);
}

/* Mobile adjust */
@media (max-width: 712px) {
  .gyansakha button {
    padding: 9px 25px;
    font-size: 14px;
    border-radius: 14px;
  }
}
.gyansakha-img {
  height: 15px;        /* desktop */
  width: auto;
  display: block;
  pointer-events: none; /* click button वरच जाईल */
  filter:
    drop-shadow(0 0 4px rgba(255,215,0,0.8))
    drop-shadow(0 0 10px rgba(255,140,0,0.6));
}

@media (max-width: 712px) {
  .gyansakha-img {
    height: 15px;
  }
}

@media (max-width: 366px) {
  .gyansakha-img {
    height: 15px;
  }
  .gyansakha button {
  margin-right: 1px;
}
}


.gyansakha button:hover {
  background-color: #bd0000;
  color: #ffda96;
}

.close-btn {
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  font-size: 28px;
  color: #ff8c00;
  cursor: pointer;
}
.panchang button {
  background-color: #ff8c00;
  color: #450000;
  font-weight: bolder;
  border: none;
  padding: 0px 40px;
  border-radius: 12px;
  margin-right: 40px;
  block-size: 40px;
  font-size: 15px;
}
.panchang button:hover {
  background-color: #bd0000;
  color: #ffda96;
}
.panchang_onmenu a {
  display: none;
}

/* Scrollable horizontal menu */
.scroll-bar-wrapper {
  position: fixed;
  top: 90px;
  left: 0;
  right: 0;
  background-color: #300909;
  display: flex;
  align-items: center;
  z-index: 999;
  padding: 0 10px;
  height: 32px;
}
.course-bar {
  flex: 1;
  display: flex;
  align-items: center;
  overflow-x: auto;
  white-space: nowrap;
  scroll-behavior: smooth;
  padding: 5px 15px;
  background-color: transparent;
}
.course-bar::-webkit-scrollbar {
  display: none;
}
.course-bar a {
  color: #ffda96;
  font-weight: bold;
  padding: 0px 17px;
  text-decoration: none;
  font-size: 13px;
  height: 31px;
  line-height: 36px;
  display: inline-block;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.course-bar a:hover {
  color: #ff8c00;
}
.course-bar a.active {
  background-color: #ff8c00;
  color: #450000 !important;
}
.scroll-btn-left,
.scroll-btn-right {
  height: 40px;
  width: 40px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background-color: transparent;
}
.scroll-btn-left img,
.scroll-btn-right img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.scroll-btn-left img:hover {
  content: url(imagestore/arrowleftfocus.webp);
}
.scroll-btn-right img:hover {
  content: url(imagestore/arrowrightfocus.webp);
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 120px;
  left: 0;
  width: 240px;
  bottom: 0;
  background-color: #5c0000;
  overflow-y: auto;
  padding-top: 12px;
  z-index: 998;
  padding-bottom: 25px;
}
.sidebar a {
  color: #ffda96;
  display: block;
  padding: 10px 20px;
  font-weight: bold;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.4;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.sidebar a:hover {
  background-color: #450000;
}
.sidebar a.active {
  background-color: #300909;
  color: #ffda96;
}
.sidebar::-webkit-scrollbar {
  width: 10px;
}
.sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.sidebar::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #890000;
}
.sidebar::-webkit-scrollbar-thumb:hover {
  background-color: #e70000;
}
.chapter-dropdown-wrapper {
  display: none;
}

/* Main content */
.main-content {
  margin-top: 120px;
  margin-left: 240px;
  padding: 2rem 1rem;
  min-height: 100vh;
}

/* Watermark */



/* Responsive */
@media (max-width: 992px) {
  .sidebar {
    position: relative;
    width: 100%;
    height: auto;
  }
  .main-content {
    margin-left: 0;
  }
}


@media (min-width: 712px) {
  .bhagysthul button {
  background-color: #ff8c00;
  color: #450000;
  font-weight: bolder;
  border: none;
  padding: 0px 40px;
  border-radius: 12px;
  margin-right: 25px;
  block-size: 40px;
  font-size: 15px;
}

.bhagysthul button:hover {
  background-color: #bd0000;
  color: #ffda96;
}
.bhagysthul_onmenu{
  display: none;
}
}

@media (max-width: 712px) {
  .bhagysthul_onmenu button {
  background-color: #ff8c00;
  color: #450000;
  font-weight: bolder;
  border: none;
  padding: 0px 55px;
  border-radius: 12px;
  margin-right: 25px;
  margin-top: 15px;
  margin-left: 17px;
  block-size: 40px;
  font-size: 18px;
}

.bhagysthul_onmenu button:hover {
  background-color: #bd0000;
  color: #ffda96;
}

.bhagysthul{
  display: none;
}
}

@media (min-width: 711px) and (max-width: 1025px){
  .bhagysthul button{
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 0px;
  }

  .panchang button{
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 2px;
  }

  .gyansakha button {
    padding-left: 10px;
    padding-right: 10px;
    margin-right: 2px;
  }
}
/* ============================= */
/* MAIN CONTENT FORMATTING */
/* ============================= */

.content-text-block {
  white-space: normal;
  font-size: 18px;
  margin: 20px 0;
  text-align: justify;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.7;
}

.content-image-block {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

.content-image-block img {
  max-width: 500px;
  width: 500px;
  height: auto;
}

/* ============================= */
/* RESPONSIVE – SAME AS DESKTOP */
/* ============================= */

@media (max-width: 768px) {
  .content-text-block {
    white-space: normal;
    font-size: 18px;
    margin: 20px 0;
    text-align: justify;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.7;
  }

  .content-image-block img {
    max-width: 300px;
  }

  .content-text-block b {
    font-weight: bold;
  }

  .content-text-block small {
    font-size: inherit;
  }
}

@media (max-width: 576px) {
  .content-text-block {
    font-size: 18px;
    line-height: 1.7;
  }
}

/* ============================= */
/* HIGHLIGHTS & TITLES */
/* ============================= */

.highlight-title {
  color: #ff7700;
  font-weight: bold;
  background-color: #ff480008;
}

.point-list li {
  margin: 6px 0;
  font-size: 18px;
  margin-left: -20px;
}

.highlight-title-big {
  color: #ffee00;
  font-weight: bolder;
  font-size: 18px;
  background-color: #ffa20023;
}

.chapter-main-title {
  font-size: 20px;
  font-weight: bolder;
  text-align: center;
  margin-bottom: 20px;
  background-color: #ff6a25;
  margin-top: 50px;
  color: #620000;
  padding: 4px;
  width: auto;
}

/* ============================= */
/* DIVIDER LINE */
/* ============================= */

.gold-line {
  border: 0;
  height: 3px;
  width: 100%;
  margin-bottom: 19px;
  background: linear-gradient(
    90deg,
    rgba(255, 215, 0, 0) 0%,
    rgb(255, 132, 0) 50%,
    rgba(255, 215, 0, 0) 100%
  );
  box-shadow: 0 0 8px rgba(255, 215, 0, 0, 0.9);
  border-radius: 50px;
}


.lazy-video {
  position: relative;

  width: 38%;              /* desktop width */
  max-width: 520px;

  margin: 20px 0 30px 12px; /* LEFT aligned + spacing */
  
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  background: #000;
  cursor: pointer;

  border-top: 4px solid #FFD700; 
  border-bottom: 4px solid #D40000; 

  aspect-ratio: 16/9;
}

/* Thumbnail */
.lazy-video img.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* Iframe */
.lazy-video iframe {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  display: block;
  border: none;
}

/* PLAY BUTTON */
.play-btn-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  
  width: 68px;
  height: 68px;
  background: rgba(91, 0, 0, 0.9);
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 5;
  cursor: pointer;
  transition: 0.3s;
}

/* Play triangle */
.play-btn-overlay::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid #ffcc9a;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  margin-left: 4px;
}

.play-btn-overlay:hover {
  background: #450000;
  transform: translate(-50%, -50%) scale(1.12);
}

/* ===== TABLET ===== */
@media (max-width: 768px) {
  .lazy-video {
    width: 90%;
    max-width: 100%;
    margin-left: 8px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 480px) {
  .lazy-video {
    width: 100%;
    margin-left: 6px;
  }

  .play-btn-overlay {
    width: 56px;
    height: 56px;
  }

  .play-btn-overlay::before {
    border-left: 16px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
  }
}


/* Smooth Fade + Slide Animation */
.page-transition {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.page-loaded {
  opacity: 1;
  transform: translateY(0);
}

.image-slider {
  position: relative;
  width: 70%;       /* 🔹 70% screen width, आधी 90% */
  max-width: 700px; /* 🔹 max size कमी केला */
  margin: 35px auto;
  border-radius: 18px;
  border: 3px solid #d4af37;
  box-shadow: 0 0 15px rgba(212,175,55,0.6);
  background: #000;
  overflow: hidden;
  aspect-ratio: 16 / 9;  /* height auto adjust */
  touch-action: pan-y;
}


.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.9s ease-in-out; /* 🎬 Slide animation */
}

.slider-slide {
  min-width: 100%;
  height: 100%;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* image fully cover frame */
  display: block;
}

/* Arrows */
.slider-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background-color: #6700006e;
  color: #ffcc00; /* 🟡 golden */
  border: transparent;
  font-size: 25px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-arrow {
  left: 12px;   /* Slider च्या आत middle left */
}

.right-arrow {
  right: 12px;  /* Slider च्या आत middle right */
}

/* Mobile – arrows थोडे छोटे */
@media (max-width: 576px) {
  .image-slider {
    width: 95%;
  }
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 22px;
    
  }
}

.chapter-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #d4af37;  /* golden */
  border: 2px solid #d4af37;
  font-size: 28px;
  width: 32px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-arrow {
  left: 12px;
}

.right-arrow {
  right: 12px;
}

/* Mobile – arrows थोडे छोटे */
@media (max-width: 576px) {
  .chapter-nav {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
}

.chapter-nav-bottom {
  position: relative;
  display: flex;
  justify-content: center; /* center base */
  gap: 20px;
  margin: 40px 0 60px;
}

.chapter-btn {
  padding: 7px 10px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 14px;
  border: 2px solid #d4af37;       /* gold border */
  background: linear-gradient(135deg, #ffd700, #c9a227);
  color: #720000;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(55, 0, 0, 0.45);
  transition: all 0.25s ease;
}

.prev-btn {
  position: absolute;
  left: 0;
}

.next-btn {
  position: absolute;
  right: 0;
}


.chapter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(212,175,55,0.65);
}

/* Mobile friendly */
@media (max-width: 576px) {
  .chapter-nav-bottom {
    flex-direction: column;
  }
  .chapter-btn {
  font-size: 13px;
  padding: 7px 10px;
}
}

@media (max-width: 348px) {
  .chapter-nav-bottom {
    flex-direction: column;
  }
  .chapter-btn {
  font-size: 9px;
  padding: 7px 10px;
}
}

/* ============================= */
/* DEVANAGARI TEXT MOBILE FIX */
/* ONLY TEXT – SAFE PATCH */
/* ============================= */

.content-text-block {
  max-width: 100%;
  box-sizing: border-box;

  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;

  text-align: justify;
  line-height: 1.75;
}

/* Sanskrit / Hindi long words fix */
.content-text-block p,
.content-text-block span,
.content-text-block div {
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* Mobile extra safety */
@media (max-width: 576px) {
  .content-text-block {
    text-align: left;   /* justify mobile वर problem देतो */
    line-height: 1.8;
  }
}

/* Slider parent */
.image-slider {
  position: relative;
}

/* Dots container */
.slider-dots {
  position: absolute !important;
  bottom: 5px !important;      /* image च्या अगदी खाली */
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  justify-content: center !important;
  gap: 4px !important;         /* spacing between dots */
  z-index: 20 !important;
}

/* Individual dots */
.slider-dot {
  width: 5px !important;       /* forced small size */
  height: 5px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.6) !important;
  transition: all 0.25s ease !important;
  cursor: pointer !important;
}

/* Active dot */
.slider-dot.active {
  background-color: #FFD700 !important; /* golden */
  transform: scale(1.3) !important;
}

/* Extra tweak for very small screens */
@media (max-width: 576px) {
  .slider-dot {
    width: 4px !important;
    height: 4px !important;
  }
  .slider-dots {
    bottom: 4px !important;
    gap: 3px !important;
  }
}

.call-button-wrapper {
  margin: 24px 0;
  display: flex;
  justify-content: center;
}

.call-btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight:bolder;
  font-size: 1.05rem;
  color: #ffffff;

  background: linear-gradient(
    135deg,
    #790000,
    #aa0000,
    #c32100
  );

  box-shadow:
    0 4px 12px rgba(212, 160, 23, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.5);

  transition: all 0.25s ease;
}

.call-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 16px rgba(212, 160, 23, 0.45);
}

.call-icon {
  font-size: 1.1rem;
}

.call-text {
  letter-spacing: 0.5px;
  font-size: 1.05rem;
}

.whatsapp-button-wrapper {
  margin: 20px 0;
  display: flex;
  justify-content: center;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 5px 22px;
  border-radius: 999px;
  text-decoration: none;

  background: linear-gradient(
    135deg,
    #003513,
    #006c2b
  );

  color: #ffffff;
  font-weight: 600;
  font-size: 1.05rem;

  box-shadow:
    0 4px 12px rgba(37, 211, 102, 0.35);

  transition: all 0.25s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 16px rgba(37, 211, 102, 0.45);
}

.whatsapp-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.whatsapp-text {
  letter-spacing: 0.4px;
}

.call-icon-png {
  width: 27px;
  height: 27px;
  object-fit: contain;
}

.upi-pay-wrapper {
  margin: 30px 0;
  text-align: center;
}

.upi-input-box {
  margin-bottom: 14px;
}

.upi-amount-input {
  width: 220px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  text-align: center;
}

.upi-pay-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7.5px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bolder;
  font-size: 1.05rem;
  color: #4b0000;

  background: linear-gradient(
    135deg,
    #ffff00,
    #ff9900
  );

  box-shadow: 0 6px 16px rgba(252, 198, 37, 0.4);
  transition: all 0.25s ease;
}

.upi-row {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center; /* center row */
  flex-wrap: wrap; /* mobile safe */
}

.upi-amount-input {
  width: 200px; /* थोडं कमी */
}

.upi-pay-btn {
  white-space: nowrap; /* text break होणार नाही */
}


.upi-pay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(252, 234, 37, 0.55);
}

.upi-icon {
  width: 28px;
  height: 28px;
}

.upi-note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #666;
}


.upi-title {
  margin-bottom: 8px;
  color: #222;
}

.upi-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 18px;
}

.upi-or {
  margin: 18px 0 10px;
  font-weight: bold;
  color: #777;
}

.upi-qr-box {
  margin-top: 10px;
  text-align: center;
}

.upi-qr-text {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #444;
}

.upi-qr-img {
  width: 180px;
  max-width: 100%;
  box-shadow: 0 0px 14px rgb(147, 123, 0);
}


/* ===== RECEIPT FORM ===== */
.receipt-form {
  margin-top: 24px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff6d8, #ffe2a8);
  box-shadow: 0 10px 30px rgba(180, 120, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* NAME INPUT (auto expand) */
.receipt-form textarea,
.receipt-form input {
  width: 100%;
  min-height: 36px;
  padding: 12px 16px; /* 🔥 single source of truth */
  font-size: 1.06rem;
  font-weight: 700;
  border-radius: 14px;
  border: 2px solid #d1a13a;
  background: #fffdf5;
  color: #4b2500;
  outline: none;
  resize: vertical;
  transition: all 0.25s ease;
  margin-top: 20px;
  box-sizing: border-box; /* 🔥 IMPORTANT */
}

/* name textarea */
#rName {
  min-height: 40px;
  max-height: 160px;
  overflow-y: auto;
  margin-top: 0;
}

/* placeholder – NO padding */
.receipt-form input::placeholder,
.receipt-form textarea::placeholder {
  color: #9c6a00;
  font-weight: 500;
}


/* focus glow */
.receipt-form input:focus,
.receipt-form textarea:focus {
  border-color: #ff9800;
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.25);
}
/* START BUTTON */
.receipt-start-btn {
  margin-top: 14px;
  padding: 16px 30px;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  color: #4b0000;

  background: linear-gradient(
    135deg,
    #fff200,
    #ff9a00,
    #ff3c00
  );

  box-shadow:
    0 10px 28px rgba(255, 140, 0, 0.45),
    inset 0 0 8px rgba(255, 138, 138, 0.6);

  transition: all 0.25s ease;
}

.receipt-start-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 14px 36px rgba(255, 100, 0, 0.55);
}

/* SUBMIT + DOWNLOAD */
.receipt-form button,
.receipt-preview button {
  margin-top: 30px;
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  color: #fff;

  background: linear-gradient(
    135deg,
    #7a2e00,
    #b84300,
    #ff6a00
  );

  box-shadow: 0 8px 22px rgba(122, 46, 0, 0.5);
  transition: all 0.25s ease;
}

.receipt-form button:hover,
.receipt-preview button:hover {
  transform: scale(1.05);
}
.receipt-preview {
  margin-top: 59px;
  text-align: center;
}

.receipt-canvas-wrapper {
  padding: 1px;
  background: radial-gradient(circle at top, #ffc9aa, #ffe4b3);
  box-shadow: inset 0 0 18px rgba(140, 90, 0, 0.35);
}

#receiptCanvas {
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
}
#rAmount {
  font-size: 1.12rem;
  letter-spacing: 0.5px;
  text-align: left;
}
.receipt-form button:active,
.receipt-start-btn:active {
  transform: scale(0.97);
}
.map-wrapper {
  margin: 40px 0;
  text-align: center;
}

.map-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 14px;
  color: #6b2e00;
}

.map-iframe-box {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(120, 70, 0, 0.35);
  border: 3px solid #f2c15d;
  background: #fff7da;
}

.map-iframe-box iframe {
  display: block;
  width: 100%;
}
