/* ==========================================================================
   Yas Jewellers - Mobile First App Theme Styles
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --yas-gold-top: #EBC888;
  --yas-gold-bottom: #DFAB59;
  --yas-header-gradient: linear-gradient(180deg, #EBC888 0%, #DFAB59 100%);
  --yas-card-gold-gradient: linear-gradient(135deg, #FBD78B 0%, #EAA84E 100%);
  
  --yas-bg: #FCF9F2;
  --yas-card-bg: #FFFFFF;
  
  --yas-text-dark: #3C2210;
  --yas-text-body: #5C493E;
  --yas-text-muted: #8E7D73;
  --yas-border-light: #F0E6D8;
  
  --yas-font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --yas-font-display: 'Outfit', 'Plus Jakarta Sans', sans-serif;
}

/* Reset & Mobile App Layout */
*, *::before, *::after {
  box-sizing: border-box;
}

body.yas-mobile-app-body {
  margin: 0;
  padding: 0;
  background-color: #ECE7DE;
  font-family: var(--yas-font-main);
  -webkit-font-smoothing: antialiased;
}

.yas-mobile-app-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
}

.yas-mobile-device {
  width: 100%;
  max-width: 440px;
  min-height: 100vh;
  background-color: var(--yas-bg);
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

/* ==========================================================================
   Header Component (Sticky on Scroll)
   ========================================================================== */
.yas-mobile-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--yas-header-gradient);
  padding: 16px 16px 20px 16px;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  box-shadow: 0 8px 24px rgba(60, 34, 16, 0.14);
  transition: all 0.2s ease;
}

.yas-header-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

/* Circular Buttons (Hamburger & Grid) */
.yas-header-btn {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  background-color: #FFFFFF !important;
  border: none !important;
  outline: none !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(60, 34, 16, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  padding: 0 !important;
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
}

.yas-header-btn:active {
  transform: scale(0.94);
  box-shadow: 0 2px 6px rgba(60, 34, 16, 0.1);
}

/* Hamburger Icon (3 Clean Equal Rounded Bars) */
.yas-hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 22px;
}

.yas-hamburger-icon span {
  display: block;
  height: 3px;
  width: 22px;
  background-color: var(--yas-text-dark);
  border-radius: 3px;
}

/* Bento / Grid Icon (4 Rounded Squares) */
.yas-grid-icon {
  display: grid;
  grid-template-columns: repeat(2, 8.5px);
  grid-gap: 3.5px;
  justify-content: center;
  align-items: center;
}

.yas-grid-icon span {
  width: 8.5px;
  height: 8.5px;
  background-color: var(--yas-text-dark);
  border-radius: 2.5px;
  display: block;
}

/* Center-Right Live Rate Pill Badge (Compact & Right-aligned) */
.yas-header-rate-pill {
  flex: 0 0 auto;
  height: 50px;
  background-color: #FFFFFF !important;
  border-radius: 999px !important;
  padding: 0 18px 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-left: auto; /* Pushes pill towards right side */
  margin-right: 4px; /* Slight separation from grid button */
  box-shadow: 0 4px 12px rgba(60, 34, 16, 0.08);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  user-select: none;
}

.yas-header-rate-pill:active {
  transform: scale(0.97);
  box-shadow: 0 2px 6px rgba(60, 34, 16, 0.1);
}

.yas-coin-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.yas-coin-icon svg {
  display: block;
  filter: drop-shadow(0 2px 3px rgba(122, 75, 0, 0.25));
}

.yas-rate-text {
  font-family: var(--yas-font-main);
  font-size: 17px;
  font-weight: 700;
  color: var(--yas-text-dark);
  letter-spacing: -0.2px;
  white-space: nowrap;
  line-height: 1;
}

/* Main Content Area */
.yas-app-content {
  flex: 1;
  padding: 24px 18px 100px 18px;
}

/* Section Common Titles */
.yas-section {
  margin-bottom: 26px;
}

.yas-section-title {
  font-family: var(--yas-font-main);
  font-size: 26px;
  font-weight: 800;
  color: var(--yas-text-dark);
  margin: 0 0 16px 0;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

/* ==========================================================================
   Today's Gold Rate Card Component
   ========================================================================== */
.yas-gold-card {
  background: linear-gradient(135deg, #FBD78B 0%, #EDB158 50%, #E3993D 100%);
  border-radius: 26px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 10px 25px rgba(227, 153, 61, 0.28);
  position: relative;
  overflow: hidden;
}

.yas-gold-card-badge {
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  border-radius: 50%;
  background: #FDE8C2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.yas-star-icon {
  width: 26px;
  height: 26px;
  fill: var(--yas-text-dark);
  display: block;
}

.yas-gold-card-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}

.yas-gold-card-heading {
  font-family: var(--yas-font-main);
  font-size: 19px;
  font-weight: 800;
  color: var(--yas-text-dark);
  line-height: 1.2;
  letter-spacing: -0.2px;
}

.yas-gold-card-subheading {
  font-family: var(--yas-font-main);
  font-size: 14px;
  font-weight: 600;
  color: #644122;
  line-height: 1.2;
}

.yas-gold-card-price {
  font-family: var(--yas-font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--yas-text-dark);
  letter-spacing: -0.5px;
  white-space: nowrap;
  line-height: 1;
}

.yas-gold-disclaimer {
  font-family: var(--yas-font-main);
  font-size: 8px;
  font-weight: 500;
  color: #857065;
  margin: 10px 0 0 0;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
  letter-spacing: -0.25px;
  width: 100%;
  display: block;
}

@media (min-width: 380px) {
  .yas-gold-disclaimer {
    font-size: 8.8px;
    letter-spacing: -0.2px;
  }
}

@media (min-width: 420px) {
  .yas-gold-disclaimer {
    font-size: 9.5px;
    letter-spacing: -0.1px;
  }
}

/* ==========================================================================
   Special Offers Carousel Component
   ========================================================================== */
.yas-offers-section {
  margin-top: 28px;
  margin-bottom: 30px;
}

.yas-carousel-wrapper {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(61, 35, 20, 0.12);
}

.yas-carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  -webkit-overflow-scrolling: touch;
  border-radius: 22px;
}

.yas-carousel-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.yas-carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  position: relative;
}

.yas-slide-card {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 190px;
  overflow: hidden;
  text-decoration: none;
  background-color: #1A120B;
}

.yas-slide-image {
  width: 100%;
  height: 100%;
  max-height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.yas-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 75%, rgba(0, 0, 0, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 14px 16px;
  pointer-events: none;
}

/* Script & Typography Overlays */
.yas-slide-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.yas-text-script {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
  color: #FBD78B;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  letter-spacing: 0.3px;
}

.yas-text-serif {
  font-family: var(--yas-font-display);
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.2px;
}

/* Badge for Making Charges */
.yas-slide-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1;
}

.yas-badge-sub {
  font-size: 10px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.yas-badge-main {
  font-family: var(--yas-font-display);
  font-size: 24px;
  font-weight: 800;
  color: #F8BE59;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.yas-badge-text {
  font-size: 10px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* Dots Pagination */
.yas-carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}

.yas-dot {
  width: 6px !important;
  height: 6px !important;
  min-width: 6px !important;
  min-height: 6px !important;
  border-radius: 50% !important;
  background-color: #E2D7C8 !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-appearance: none;
  appearance: none;
}

.yas-dot.yas-dot-active {
  width: 22px !important;
  height: 6px !important;
  border-radius: 999px !important;
  background-color: #DFAB59 !important;
}

/* ==========================================================================
   Single Still Promotional Banner Component
   ========================================================================== */
.yas-promo-banner-section {
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.yas-promo-banner-card {
  width: 100%;
  max-width: 365px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(61, 35, 20, 0.12);
  background-color: #1A120B;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yas-promo-banner-card:active {
  transform: scale(0.985);
}

.yas-promo-link {
  display: block;
  width: 100%;
  text-decoration: none;
  line-height: 0;
}

.yas-promo-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1; /* Original 1:1 Square Orientation */
  object-fit: cover;
  display: block;
}

/* ==========================================================================
   Our Store Showcase Slider Component
   ========================================================================== */
.yas-store-section {
  margin-top: 36px;
  margin-bottom: 30px;
}

.yas-store-header {
  text-align: center;
  margin-bottom: 18px;
}

.yas-store-title {
  font-family: var(--yas-font-main);
  font-size: 26px;
  font-weight: 800;
  color: var(--yas-text-dark);
  margin: 0 0 6px 0;
  letter-spacing: -0.3px;
}

.yas-store-subtitle {
  font-family: var(--yas-font-main);
  font-size: 14.5px;
  font-weight: 500;
  color: #7A665A;
  margin: 0;
}

.yas-store-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.yas-store-slider-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}

.yas-store-slider-track::-webkit-scrollbar {
  display: none;
}

.yas-store-slide {
  flex: 0 0 88%;
  width: 88%;
  scroll-snap-align: center;
  position: relative;
}

.yas-store-card {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(61, 35, 20, 0.1);
  background-color: #1A120B;
}

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

/* ==========================================================================
   Floating Bottom Navigation Bar (Mirror of Top Header)
   ========================================================================== */
.yas-mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 440px;
  background: linear-gradient(180deg, #EAC380 0%, #DFAB59 100%) !important;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  z-index: 1000;
  box-shadow: 0 -6px 25px rgba(60, 34, 16, 0.16);
  padding: 10px 14px 6px 14px;
  box-sizing: border-box;
}

.yas-bottom-bar-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  width: 100%;
  position: relative;
}

.yas-tab-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #5C3D24;
  padding: 4px 2px;
  gap: 4px;
  flex: 1;
  transition: transform 0.15s ease, color 0.15s ease;
  user-select: none;
  cursor: pointer;
}

.yas-tab-link:active {
  transform: scale(0.92);
}

.yas-tab-active {
  color: #3C2210 !important;
}

.yas-tab-active .yas-tab-label {
  font-weight: 800;
  color: #3C2210;
}

.yas-tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  color: inherit;
}

.yas-tab-label {
  font-family: var(--yas-font-main);
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

/* Center Elevated Circle Button (About Us) */
.yas-tab-center {
  margin-top: -26px;
  position: relative;
  z-index: 10;
}

.yas-center-circle-btn {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  border-radius: 50%;
  background-color: #FFFFFF !important;
  box-shadow: 0 6px 20px rgba(60, 34, 16, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3C2210;
  margin-bottom: 3px;
  border: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yas-tab-center:active .yas-center-circle-btn {
  transform: scale(0.92);
}

/* Bento Mini Icon for Dock */
.yas-dock-bento {
  display: grid;
  grid-template-columns: repeat(2, 7.5px);
  grid-gap: 3px;
}

.yas-dock-bento span {
  width: 7.5px;
  height: 7.5px;
  background-color: currentColor;
  border-radius: 2px;
  display: block;
}

/* Home Indicator Bar */
.yas-bottom-indicator {
  width: 110px;
  height: 4px;
  background: rgba(60, 34, 16, 0.25);
  border-radius: 2px;
  margin: 8px auto 2px auto;
}

/* Floating WhatsApp Button */
.yas-floating-wa {
  position: fixed;
  bottom: 114px;
  right: calc(50% - 200px);
  width: 56px;
  height: 56px;
  min-width: 56px;
  min-height: 56px;
  border-radius: 18px;
  background-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.38);
  z-index: 990;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (max-width: 440px) {
  .yas-floating-wa {
    right: 18px;
  }
}

.yas-floating-wa:active {
  transform: scale(0.92);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.45);
}

/* ==========================================================================
   Jewellery Made For You CTA Card Component
   ========================================================================== */
.yas-cta-card-section {
  margin-top: 30px;
  margin-bottom: 24px;
}

.yas-luxury-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, #2D1A0D 0%, #3C2210 60%, #241409 100%);
  border-radius: 28px;
  padding: 22px 24px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(45, 26, 13, 0.22);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yas-luxury-cta-card::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(223, 171, 89, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.yas-luxury-cta-card:active {
  transform: scale(0.985);
  box-shadow: 0 6px 18px rgba(45, 26, 13, 0.25);
}

.yas-cta-content {
  flex: 1;
  min-width: 0;
}

.yas-cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #DFAB59;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.yas-cta-diamond {
  display: block;
  flex-shrink: 0;
  stroke: #DFAB59;
}

.yas-cta-heading {
  font-family: var(--yas-font-main);
  font-size: 22px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin: 8px 0 8px 0;
  letter-spacing: -0.3px;
}

.yas-cta-description {
  font-family: var(--yas-font-main);
  font-size: 13.5px;
  font-weight: 400;
  color: #D5C5B8;
  line-height: 1.45;
  margin: 0;
}

.yas-cta-action {
  flex-shrink: 0;
}

.yas-cta-arrow-btn {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  border-radius: 50%;
  background: rgba(223, 171, 89, 0.14);
  border: 1px solid rgba(223, 171, 89, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #DFAB59;
  transition: transform 0.2s ease, background 0.2s ease;
}

.yas-luxury-cta-card:hover .yas-cta-arrow-btn,
.yas-luxury-cta-card:active .yas-cta-arrow-btn {
  background: rgba(223, 171, 89, 0.25);
  transform: scale(1.05);
}

/* ==========================================================================
   Frequently Asked Questions (FAQ) Section
   ========================================================================== */
.yas-faq-section {
  margin-top: 32px !important;
  margin-bottom: 24px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.yas-section-title-wrap {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-bottom: 16px !important;
}

.yas-title-bar {
  width: 3.5px !important;
  height: 22px !important;
  background-color: #C99738 !important;
  border-radius: 2px !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
}

.yas-faq-title {
  font-family: var(--yas-font-main) !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: #3E2714 !important;
  margin: 0 !important;
  letter-spacing: -0.3px !important;
  line-height: 1.2 !important;
}

.yas-faq-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  width: 100% !important;
}

.yas-faq-card {
  background-color: #F7F2EB !important;
  border-radius: 22px !important;
  overflow: hidden !important;
  transition: all 0.25s ease !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.yas-faq-trigger {
  width: 100% !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding: 12px 16px !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  user-select: none !important;
}

.yas-faq-icon-box {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  min-height: 44px !important;
  border-radius: 14px !important;
  background-color: #FFFFFF !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 6px rgba(62, 39, 20, 0.04) !important;
  flex-shrink: 0 !important;
}

.yas-faq-heading {
  font-family: var(--yas-font-main) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #3E2714 !important;
  flex: 1 1 auto !important;
  line-height: 1.35 !important;
  text-align: left !important;
  margin: 0 !important;
}

.yas-faq-arrow {
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  transition: transform 0.25s ease !important;
}

.yas-faq-card.yas-faq-active .yas-faq-arrow {
  transform: rotate(180deg) !important;
}

.yas-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box !important;
}

.yas-faq-card.yas-faq-active .yas-faq-body {
  max-height: 250px;
}

.yas-faq-body-inner {
  padding: 0 18px 16px 72px !important;
  box-sizing: border-box !important;
}

.yas-faq-body-inner p {
  margin: 0 !important;
  font-family: var(--yas-font-main) !important;
  font-size: 13.5px !important;
  line-height: 1.5 !important;
  color: #6E5D53 !important;
  font-weight: 500 !important;
}

/* ==========================================================================
   Need Assistance (Contact Support Card) Section
   ========================================================================== */
.yas-assistance-section {
  margin-top: 30px;
  margin-bottom: 50px;
}

.yas-assistance-card {
  background: #FFFFFF;
  border: 1.5px solid #ECDCC8;
  border-radius: 26px;
  padding: 32px 20px 24px 20px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(62, 39, 20, 0.04);
}

.yas-agent-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: #F6EEE2;
  margin: 0 auto 16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yas-assistance-title {
  font-family: var(--yas-font-main);
  font-size: 22px;
  font-weight: 800;
  color: #3E2714;
  margin: 0 0 8px 0;
  letter-spacing: -0.2px;
}

.yas-assistance-text {
  font-family: var(--yas-font-main);
  font-size: 14px;
  font-weight: 500;
  color: #736257;
  line-height: 1.45;
  max-width: 270px;
  margin: 0 auto 22px auto;
}

.yas-contact-btn,
.yas-contact-btn:visited {
  background: #3E2714 !important;
  color: #FFFFFF !important;
  font-family: var(--yas-font-main) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border-radius: 999px !important;
  padding: 16px 20px !important;
  text-decoration: none !important;
  display: block !important;
  width: 100% !important;
  border: none !important;
  text-align: center !important;
  box-shadow: 0 4px 14px rgba(62, 39, 20, 0.22) !important;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease !important;
  box-sizing: border-box !important;
  cursor: pointer !important;
  line-height: 1.2 !important;
}

.yas-contact-btn:hover,
.yas-contact-btn:focus {
  background: #2C190D !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(62, 39, 20, 0.3) !important;
}

.yas-contact-btn:active {
  transform: scale(0.97) !important;
  background: #221208 !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
}

/* ==========================================================================
   Hamburger Side Navigation Drawer (Aligned Inside Mobile App Frame)
   ========================================================================== */
.yas-drawer-overlay {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.yas-drawer-overlay.yas-drawer-open {
  opacity: 1;
  visibility: visible;
}

.yas-nav-drawer {
  position: fixed;
  top: 0;
  left: calc(50% - 220px);
  bottom: 0;
  width: 82%;
  max-width: 350px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 2001;
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.25s ease, visibility 0.25s ease;
  box-shadow: 10px 0 35px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.yas-nav-drawer.yas-drawer-open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 440px) {
  .yas-drawer-overlay {
    left: 0;
    transform: none;
    max-width: 100%;
  }
  .yas-nav-drawer {
    left: 0;
    width: 82%;
    max-width: 85%;
  }
}

body.yas-drawer-locked {
  overflow: hidden !important;
}

/* Drawer Top Gold Banner Header */
.yas-drawer-header {
  background: linear-gradient(180deg, #EAC380 0%, #DFAB59 100%);
  padding: 30px 24px 26px 24px;
  border-bottom-right-radius: 40px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  box-sizing: border-box;
}

/* White Circle Logo Holder (Completely Inside Gold Header) */
.yas-drawer-logo-circle {
  width: 90px;
  height: 90px;
  min-width: 90px;
  min-height: 90px;
  border-radius: 50%;
  background-color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(60, 34, 16, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-sizing: border-box;
}

.yas-drawer-logo-img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* Drawer Menu Items */
.yas-drawer-nav {
  padding-top: 20px;
  padding-bottom: 30px;
  flex: 1;
}

.yas-drawer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.yas-drawer-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  margin: 0 16px;
  border-radius: 18px;
  text-decoration: none;
  color: #3E2714;
  transition: background-color 0.15s ease, transform 0.15s ease;
  user-select: none;
  cursor: pointer;
}

.yas-drawer-item:hover,
.yas-drawer-item:focus {
  background-color: #FAF3E8;
  color: #3E2714;
}

.yas-drawer-item:active {
  transform: scale(0.98);
}

.yas-drawer-item-active {
  background-color: #FAF3E8 !important;
}

.yas-drawer-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3E2714;
  flex-shrink: 0;
}

.yas-drawer-text {
  font-family: var(--yas-font-main);
  font-size: 16px;
  font-weight: 700;
  color: #3E2714;
  letter-spacing: -0.2px;
}

.yas-drawer-divider-wrap {
  padding: 8px 0;
}

.yas-drawer-divider {
  height: 1px;
  background-color: #EFE6DC;
  margin: 0 20px;
}

/* Drawer Bento Mini Grid */
.yas-drawer-bento {
  display: grid;
  grid-template-columns: repeat(2, 7.5px);
  grid-gap: 3px;
}

.yas-drawer-bento span {
  width: 7.5px;
  height: 7.5px;
  background-color: currentColor;
  border-radius: 2px;
  display: block;
}

/* ==========================================================================
   Jewellery Collection Full-Length Tall Banner Feed (Exact Match)
   ========================================================================== */
.yas-jewellery-page-content {
  padding: 24px 16px 120px 16px !important;
  box-sizing: border-box !important;
}

.yas-collection-section {
  width: 100%;
}

.yas-collection-header {
  text-align: center;
  margin-bottom: 22px;
}

.yas-collection-title {
  font-family: var(--yas-font-main);
  font-size: 28px;
  font-weight: 800;
  color: #3C2210;
  margin: 0;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.yas-collection-subtitle {
  font-family: var(--yas-font-main);
  font-size: 14.5px;
  color: #7A665A;
  margin: 6px 0 0 0;
  font-weight: 500;
}

.yas-tall-banner-feed {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.yas-tall-banner-card {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(60, 34, 16, 0.08);
  background-color: #FFFFFF;
}

.yas-tall-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}

/* ==========================================================================
   About Us Page Component (Exact Match to Screenshots)
   ========================================================================== */
.yas-about-page-content {
  padding: 28px 12px 150px 12px !important;
  box-sizing: border-box !important;
}

.yas-about-section {
  width: 100%;
}

.yas-about-header {
  text-align: center;
  margin-bottom: 34px;
}

.yas-about-title {
  font-family: 'Plus Jakarta Sans', var(--yas-font-main);
  font-size: 28px;
  font-weight: 800;
  color: #3C2210;
  margin: 0;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.yas-about-logo-wrap {
  text-align: center;
  margin: 24px auto 46px auto;
  max-width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yas-about-logo-img {
  width: 100%;
  max-width: 195px;
  height: auto;
  object-fit: contain;
  display: block;
}

.yas-about-cards-feed {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}

.yas-about-card {
  background-color: #FFFFFF;
  border-radius: 28px;
  padding: 34px 22px 36px 22px;
  box-shadow: 0 6px 24px rgba(60, 34, 16, 0.05);
  box-sizing: border-box;
  border: 1px solid rgba(234, 195, 128, 0.12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.yas-card-heading {
  font-family: 'Plus Jakarta Sans', var(--yas-font-main);
  font-size: 22px;
  font-weight: 800;
  color: #3C2210;
  margin: 0 0 16px 0;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.yas-card-body-text {
  font-family: 'Plus Jakarta Sans', var(--yas-font-main);
  font-size: 14.5px;
  line-height: 1.78;
  color: #554234;
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.05px;
}

.yas-store-info-card {
  padding: 34px 22px 36px 22px;
}

.yas-store-info-card .yas-store-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.yas-store-line {
  font-family: 'Plus Jakarta Sans', var(--yas-font-main);
  font-size: 15px;
  color: #3C2210;
  margin: 0;
  line-height: 1.6;
  font-weight: 500;
}

.yas-store-title-line {
  font-size: 16px;
  margin-bottom: 4px;
  font-weight: 700;
}

.yas-store-gap {
  height: 16px;
}

.yas-social-circle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin: 20px 0 30px 0;
}

.yas-social-circle {
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  border-radius: 50%;
  background-color: #FFFFFF;
  box-shadow: 0 6px 20px rgba(60, 34, 16, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(234, 195, 128, 0.18);
}

.yas-social-circle:hover,
.yas-social-circle:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(60, 34, 16, 0.12);
}

.yas-social-circle:active {
  transform: scale(0.95);
}

/* ==========================================================================
   Gold Calculator Component Styles
   ========================================================================== */
.yas-page-calculator {
  background-color: #ECE7DE;
}

.yas-calculator-page-content {
  padding: 24px 16px 110px 16px;
}

.yas-calc-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* Header & Rate Badge */
.yas-calc-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 6px;
}

.yas-calc-page-title {
  font-family: var(--yas-font-main) !important;
  font-size: 27px;
  font-weight: 800;
  color: #3C2210;
  letter-spacing: -0.02em;
  margin: 0 0 14px 0;
}

.yas-calc-rate-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #382012;
  color: #FFFFFF;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--yas-font-main) !important;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(56, 32, 18, 0.22);
}

.yas-calc-trend-icon {
  color: #EBB66C;
  stroke: #EBB66C;
  flex-shrink: 0;
}

.yas-calc-rate-text strong {
  font-weight: 700;
  color: #FFFFFF;
}

/* 2x2 Inputs Grid */
.yas-calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
  margin-top: 4px;
}

.yas-calc-card {
  border-radius: 22px !important;
  padding: 16px 14px 14px 14px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 106px;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

/* Golden Cards (Buy In Grams & Total Amount) */
.yas-card-golden {
  background: linear-gradient(135deg, #ECC88B 0%, #DFAB59 100%) !important;
  border: none !important;
  box-shadow: 0 6px 16px rgba(223, 171, 89, 0.22);
}

.yas-card-golden .yas-calc-card-label {
  color: #533215 !important;
  font-family: var(--yas-font-main) !important;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  margin-bottom: 6px !important;
  display: block;
}

/* White Cards (Making Charges & GST) */
.yas-card-white {
  background: #FFFFFF !important;
  border: 1.5px solid #EFE4D6 !important;
  box-shadow: 0 4px 14px rgba(60, 34, 16, 0.03);
}

.yas-card-white .yas-calc-card-label {
  color: #6E4924 !important;
  font-family: var(--yas-font-main) !important;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  margin-bottom: 6px !important;
  display: block;
}

.yas-calc-input-wrap {
  display: flex;
  align-items: baseline;
  gap: 3px;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.yas-calc-currency {
  font-family: var(--yas-font-main) !important;
  font-size: 25px;
  font-weight: 700 !important;
  line-height: 1;
  user-select: none;
  color: #533215 !important;
  flex-shrink: 0;
  transition: font-size 0.12s ease;
}

.yas-calc-unit {
  font-family: var(--yas-font-main) !important;
  font-size: 24px;
  font-weight: 700 !important;
  line-height: 1;
  user-select: none;
  flex-shrink: 0;
  transition: font-size 0.12s ease;
}

.yas-card-golden .yas-calc-unit {
  color: #533215 !important;
}

.yas-card-white .yas-calc-unit {
  color: #6E4924 !important;
}

/* Complete removal of browser/theme 1px solid input borders and box styling */
.yas-calc-card input.yas-calc-input,
.yas-calc-container input[type="text"].yas-calc-input,
.yas-calc-container input[type="number"].yas-calc-input {
  border: 0 !important;
  border-width: 0 !important;
  border-style: none !important;
  outline: 0 !important;
  outline-style: none !important;
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  font-family: var(--yas-font-main) !important;
  font-size: 30px;
  font-weight: 700 !important;
  line-height: 1 !important;
  height: auto !important;
  min-height: 0 !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  flex: 1 1 auto !important;
  vertical-align: baseline !important;
  -moz-appearance: textfield !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  transition: font-size 0.12s ease;
}

.yas-calc-card input.yas-calc-input:focus,
.yas-calc-container input[type="text"].yas-calc-input:focus,
.yas-calc-container input[type="number"].yas-calc-input:focus {
  border: 0 !important;
  border-width: 0 !important;
  border-style: none !important;
  outline: 0 !important;
  outline-style: none !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  background: transparent !important;
  background-color: transparent !important;
}

.yas-card-golden input.yas-calc-input {
  color: #533215 !important;
}

.yas-card-white input.yas-calc-input {
  color: #3C2210 !important;
}

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

.yas-calc-input::placeholder {
  color: rgba(90, 56, 25, 0.45) !important;
}

/* Estimated Breakdown Card */
.yas-calc-breakdown-card {
  background: #FFFFFF;
  border-radius: 26px;
  padding: 22px 18px;
  border: 1px solid rgba(234, 195, 128, 0.35);
  box-shadow: 0 8px 24px rgba(60, 34, 16, 0.05);
  display: flex;
  flex-direction: column;
  margin-top: 4px;
}

.yas-breakdown-heading {
  font-family: var(--yas-font-main);
  font-size: 13px;
  font-weight: 800;
  color: #945F23;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  margin: 0 0 18px 0;
}

.yas-breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.yas-breakdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.yas-breakdown-label {
  font-size: 14.5px;
  font-weight: 600;
  color: #472D1C;
}

.yas-breakdown-value {
  font-size: 15.5px;
  font-weight: 700;
  color: #3C2210;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.yas-breakdown-divider {
  height: 1px;
  background-color: #F2E8DC;
  margin: 3px 0;
  width: 100%;
}

.yas-row-subtotal .yas-breakdown-label {
  font-weight: 700;
  color: #3C2210;
}

.yas-row-subtotal .yas-breakdown-value {
  font-weight: 700;
  color: #3C2210;
}

.yas-calc-static-val {
  font-family: var(--yas-font-main) !important;
  font-size: 30px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  color: #3C2210 !important;
  user-select: none;
  display: inline-block;
}

.yas-row-grand-total {
  padding-top: 4px;
}

.yas-row-grand-total .yas-breakdown-label {
  font-size: 16.5px;
  font-weight: 800;
  color: #3C2210;
}

.yas-grand-total-val {
  font-size: 21px !important;
  font-weight: 800 !important;
  color: #3C2210 !important;
}

/* Actions Row: Reset & WhatsApp Inquire */
.yas-calc-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  width: 100%;
}

/* Luxury Reset Button */
.yas-calc-reset-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  height: 48px !important;
  padding: 0 14px !important;
  border-radius: 14px !important;
  background: #F5EFE7 !important;
  border: 1.5px solid #E2D3C2 !important;
  color: #4A2E16 !important;
  font-family: var(--yas-font-main) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  transition: all 0.15s ease !important;
  outline: none !important;
  box-shadow: 0 2px 8px rgba(60, 34, 16, 0.05) !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  flex-shrink: 0 !important;
}

.yas-calc-reset-btn svg {
  stroke: #4A2E16 !important;
  color: #4A2E16 !important;
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0;
}

.yas-calc-reset-btn:hover {
  background: #ECE1D3 !important;
  border-color: #DFAB59 !important;
  color: #3C2210 !important;
}

.yas-calc-reset-btn:active {
  transform: scale(0.96) !important;
  background: #E3D5C4 !important;
}

/* WhatsApp Inquire Button */
.yas-calc-whatsapp-share-btn {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  height: 48px !important;
  padding: 0 10px !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #25D366 0%, #1EBE5B 100%) !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  font-family: var(--yas-font-main) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  letter-spacing: -0.2px !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.28) !important;
  transition: transform 0.15s ease, box-shadow 0.15s ease !important;
}

.yas-calc-whatsapp-share-btn svg {
  width: 18px !important;
  height: 18px !important;
  fill: #FFFFFF !important;
  flex-shrink: 0;
}

.yas-calc-whatsapp-share-btn:hover {
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.38) !important;
  color: #FFFFFF !important;
}

.yas-calc-whatsapp-share-btn:active {
  transform: scale(0.97) !important;
}

/* Disclaimer text */
.yas-calc-disclaimer {
  font-size: 11px;
  color: #9C8C80;
  line-height: 1.5;
  text-align: center;
  margin: 16px 0 0 0;
}

/* ==========================================================================
   Menu Page Component Styles
   ========================================================================== */
.yas-page-menu {
  background-color: #ECE7DE;
}

.yas-menu-page-content {
  padding: 24px 16px 110px 16px;
}

.yas-menu-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

/* Header with Left Gold Accent Bar */
.yas-menu-page-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.yas-menu-title-accent {
  width: 4.5px;
  height: 25px;
  background-color: #A36B28;
  border-radius: 4px;
  display: inline-block;
  flex-shrink: 0;
}

.yas-menu-page-title {
  font-family: var(--yas-font-main) !important;
  font-size: 28px;
  font-weight: 800;
  color: #3C2210;
  margin: 0;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* Brand Card */
.yas-menu-brand-card {
  background: linear-gradient(135deg, #372012 0%, #2A170C 100%);
  border-radius: 24px;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 8px 24px rgba(42, 23, 12, 0.22);
}

.yas-menu-brand-logo-wrap {
  width: 58px;
  height: 58px;
  min-width: 58px;
  min-height: 58px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.yas-menu-brand-logo {
  width: 82%;
  height: auto;
  object-fit: contain;
  display: block;
}

.yas-menu-brand-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.yas-menu-brand-name {
  font-family: var(--yas-font-main) !important;
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.2;
}

.yas-menu-brand-tagline {
  font-family: var(--yas-font-main) !important;
  font-size: 13.5px;
  font-weight: 500;
  color: #D5C4B5;
  margin: 0;
  line-height: 1.2;
}

/* Menu Action List */
.yas-menu-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.yas-menu-card {
  background: #F4EFE6;
  border: 1px solid rgba(234, 195, 128, 0.28);
  border-radius: 22px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(60, 34, 16, 0.04);
  transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.yas-menu-card:hover {
  background-color: #EDE3D4;
  box-shadow: 0 6px 18px rgba(60, 34, 16, 0.07);
}

.yas-menu-card:active {
  transform: scale(0.98);
  background-color: #E6D9C6;
}

/* Icon Box inside Card */
.yas-menu-icon-box {
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  background: #FFFDFC;
  border: 1px solid #ECE0D2;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A36B28;
  box-shadow: 0 2px 8px rgba(60, 34, 16, 0.04);
  flex-shrink: 0;
}

.yas-menu-icon-box svg {
  stroke: #A36B28;
  color: #A36B28;
}

.yas-menu-card-title {
  font-family: var(--yas-font-main) !important;
  font-size: 17px;
  font-weight: 700;
  color: #3C2210;
  flex: 1;
  line-height: 1.2;
}

.yas-menu-chevron {
  color: #BBA99C;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.yas-menu-chevron svg {
  stroke: #BBA99C;
}

/* Bottom Legal Links */
.yas-menu-legal-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.yas-legal-link {
  font-family: var(--yas-font-main) !important;
  font-size: 13.5px;
  font-weight: 700;
  color: #8A5E28;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}

.yas-legal-link:hover {
  color: #533215;
}

.yas-legal-dot {
  color: #C2AB94;
  font-size: 14px;
  user-select: none;
}

/* Settings Bottom Sheet Modal */
.yas-settings-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 23, 12, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.yas-settings-overlay.yas-modal-active {
  opacity: 1;
  pointer-events: auto;
}

.yas-settings-sheet {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 105%);
  width: 100%;
  max-width: 440px;
  background: #FFFFFF;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  padding: 12px 20px 32px 20px;
  box-shadow: 0 -8px 32px rgba(42, 23, 12, 0.2);
  z-index: 1001;
  box-sizing: border-box;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.yas-settings-sheet.yas-modal-active {
  transform: translate(-50%, 0);
}

.yas-settings-sheet-handle {
  width: 42px;
  height: 4.5px;
  background: #E5D9CC;
  border-radius: 999px;
  margin: 4px auto 16px auto;
}

.yas-settings-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #F2EAE0;
}

.yas-settings-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.yas-settings-header-icon {
  font-size: 18px;
}

.yas-settings-sheet-title {
  font-family: var(--yas-font-main) !important;
  font-size: 19px;
  font-weight: 800;
  color: #3C2210;
  margin: 0;
  line-height: 1;
}

.yas-settings-close-btn,
button.yas-settings-close-btn,
.yas-settings-sheet button.yas-settings-close-btn {
  background: #F4EFE6 !important;
  background-color: #F4EFE6 !important;
  border: 1px solid #E2D4C3 !important;
  border-width: 1px !important;
  border-style: solid !important;
  border-color: #E2D4C3 !important;
  outline: none !important;
  box-shadow: 0 2px 6px rgba(60, 34, 16, 0.04) !important;
  -webkit-box-shadow: 0 2px 6px rgba(60, 34, 16, 0.04) !important;
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  min-height: 34px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #533215 !important;
  cursor: pointer !important;
  transition: all 0.15s ease !important;
  padding: 0 !important;
  margin: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.yas-settings-close-btn svg {
  stroke: #533215 !important;
  color: #533215 !important;
  width: 16px !important;
  height: 16px !important;
  display: block;
}

.yas-settings-close-btn:hover,
button.yas-settings-close-btn:hover {
  background: #ECE0D2 !important;
  background-color: #ECE0D2 !important;
  border-color: #DFAB59 !important;
  color: #3C2210 !important;
}

.yas-settings-close-btn:active,
button.yas-settings-close-btn:active {
  transform: scale(0.92) !important;
  background: #E3D5C4 !important;
}

.yas-settings-sheet-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.yas-settings-opt-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FCF9F4;
  border: 1.5px solid #F0E6D8;
  border-radius: 20px;
  padding: 14px 16px;
  text-decoration: none !important;
  transition: all 0.15s ease;
  box-shadow: 0 2px 8px rgba(60, 34, 16, 0.03);
}

.yas-settings-opt-card:hover {
  background: #F8F1E7;
  border-color: #DFAB59;
  box-shadow: 0 4px 14px rgba(223, 171, 89, 0.18);
}

.yas-settings-opt-card:active {
  transform: scale(0.98);
}

.yas-settings-opt-icon-box {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: #FFFFFF;
  border: 1px solid #EFE4D6;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(60, 34, 16, 0.04);
  flex-shrink: 0;
}

.yas-settings-opt-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.yas-settings-opt-label {
  font-family: var(--yas-font-main) !important;
  font-size: 16px;
  font-weight: 800;
  color: #3C2210;
  line-height: 1.2;
}

.yas-settings-opt-sub {
  font-family: var(--yas-font-main) !important;
  font-size: 12px;
  font-weight: 500;
  color: #7C6656;
  line-height: 1.3;
}

.yas-settings-opt-arrow {
  color: #BBA99C;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.yas-settings-app-meta {
  text-align: center;
  font-family: var(--yas-font-main) !important;
  font-size: 12px;
  font-weight: 600;
  color: #A39285;
  margin-top: 10px;
}

/* ==========================================================================
   Legal Pages (Privacy Policy & Terms of Service) Styles - Responsive
   ========================================================================== */
body.yas-page-legal {
  background-color: #F8F9FA;
  color: #222222;
  font-family: var(--yas-font-main);
  -webkit-font-smoothing: antialiased;
}

body.yas-page-legal .yas-mobile-app-wrapper {
  padding: 40px 20px 80px 20px;
  min-height: 100vh;
  background-color: #F8F9FA;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

body.yas-page-legal .yas-mobile-device {
  max-width: 860px;
  width: 100%;
  min-height: calc(100vh - 80px);
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  border: 1px solid #EAEAEA;
  margin: 0 auto;
  overflow: visible;
}

.yas-legal-page-content {
  padding: 48px 56px 60px 56px;
  box-sizing: border-box;
}

.yas-legal-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}

/* Top Back Navigation */
.yas-legal-top-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 28px;
}

.yas-legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F3F4F6;
  border: 1px solid #E5E7EB;
  color: #4B5563;
  font-family: var(--yas-font-main) !important;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none !important;
  padding: 7px 14px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  transition: all 0.15s ease;
  cursor: pointer;
}

.yas-legal-back-link svg {
  stroke: #4B5563;
  transition: stroke 0.15s ease;
}

.yas-legal-back-link:hover {
  background: #E5E7EB;
  color: #111827;
}

.yas-legal-back-link:hover svg {
  stroke: #111827;
}

.yas-legal-back-link:active {
  transform: scale(0.97);
}

/* Document Header */
.yas-legal-doc-header {
  margin-bottom: 30px;
}

.yas-legal-main-title {
  font-family: var(--yas-font-main) !important;
  font-size: 32px;
  font-weight: 800;
  color: #000000;
  margin: 0 0 8px 0;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: left;
}

.yas-legal-effective-date {
  font-family: var(--yas-font-main) !important;
  font-size: 14px;
  color: #6B7280;
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

/* Structured Sections & Dividers */
.yas-legal-sections {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.yas-legal-section {
  border-bottom: 1px solid #E5E7EB;
  padding-bottom: 24px;
  margin-bottom: 24px;
  text-align: left;
}

.yas-legal-section.yas-legal-section-last {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.yas-legal-heading {
  font-family: var(--yas-font-main) !important;
  font-size: 17.5px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 12px 0;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.yas-legal-paragraph {
  font-family: var(--yas-font-main) !important;
  font-size: 15px;
  line-height: 1.68;
  color: #222222;
  margin: 0;
}

.yas-legal-paragraph a,
.yas-legal-email-link {
  color: #111827;
  text-decoration: underline;
  word-break: break-all;
  font-weight: 500;
  transition: color 0.15s ease;
}

.yas-legal-paragraph a:hover,
.yas-legal-email-link:hover {
  color: #C59A3F;
}

/* Responsive Styles for Tablet and Mobile Views */
@media (max-width: 768px) {
  body.yas-page-legal .yas-mobile-app-wrapper {
    padding: 0;
    background-color: #FFFFFF;
  }
  
  body.yas-page-legal .yas-mobile-device {
    max-width: 100%;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    min-height: 100vh;
  }
  
  .yas-legal-page-content {
    padding: 20px 20px 90px 20px;
  }
  
  .yas-legal-top-bar {
    margin-bottom: 20px;
  }
  
  .yas-legal-doc-header {
    margin-bottom: 24px;
  }
  
  .yas-legal-main-title {
    font-size: 26px;
  }
  
  .yas-legal-effective-date {
    font-size: 13.5px;
  }
  
  .yas-legal-section {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  
  .yas-legal-heading {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .yas-legal-paragraph {
    font-size: 14px;
    line-height: 1.62;
  }
}




