/* ============================================
   EVENT DETAIL PAGE
   ============================================ */

/* Purple Navbar Variant */
.navbar.purple {
  background: var(--purple-500);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Event Page Container */
.event-page {
  background: var(--black);
  min-height: 100vh;
}

.event-content {
  background: var(--grey-100);
  padding: 32px 16px 120px;
  margin-top: 72px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

/* Breadcrumb Navigation */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  width: 100%;
  max-width: 1200px;
}

.breadcrumb-item {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: var(--grey-400);
  text-decoration: none;
}

.breadcrumb-item.active {
  color: var(--black);
  font-weight: 600;
}

.breadcrumb-separator {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: var(--grey-400);
}

/* Two Column Layout */
.event-layout {
  display: flex;
  gap: 16px;
  align-items: stretch;
  max-width: 1200px;
  width: 100%;
}

.event-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0; /* Prevent flex overflow */
}

.event-sidebar {
  width: 389px;
  flex-shrink: 0;
}

/* Image Gallery */
.event-gallery {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-gallery-main {
  position: relative;
  width: 100%;
  aspect-ratio: 746.66 / 420;
  border-radius: 8px;
  overflow: hidden;
}

.event-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-gallery-nav {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  pointer-events: none;
}

.event-gallery-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(4px);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  transition: background 0.2s ease;
}

.event-gallery-nav-btn:hover {
  background: rgba(0, 0, 0, 0.5);
}

.event-gallery-nav-btn svg,
.event-gallery-nav-btn img {
  width: 24px;
  height: 24px;
  display: block;
}

.event-gallery-nav-btn svg {
  fill: var(--white);
}

.event-gallery-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
}

.event-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}

.event-gallery-dot.active {
  background: var(--grey-100);
}

.event-gallery-thumbnails {
  display: flex;
  gap: 8px;
}

.event-gallery-thumbnail {
  flex: 1;
  aspect-ratio: 188.67 / 141.5;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.2s ease;
  opacity: 0.6;
}

.event-gallery-thumbnail:hover {
  opacity: 0.8;
}

/* Clickable gallery - full opacity, no hover effects */
.clickable-gallery .event-gallery-thumbnail {
  opacity: 1 !important;
}

.clickable-gallery .event-gallery-thumbnail:hover {
  opacity: 1 !important;
}

.clickable-gallery .event-gallery-thumbnail img {
  opacity: 1;
  filter: none;
}

.event-gallery-thumbnail.active {
  opacity: 1;
  border: 2px solid var(--purple-500);
}

.event-gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Event Card */
.event-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.event-card-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

.event-description {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-description h2 {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

.event-description p {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--grey-600);
  margin: 0;
}

/* Detail List */
.detail-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.detail-item-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.detail-item-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--grey-600);
}

.detail-item-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex-wrap: wrap;
}

.detail-item-label {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--black);
}

.detail-item-value {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--grey-600);
}

/* Concierge Services */
.concierge-services {
  background: var(--grey-100);
  padding: 24px;
  border-radius: 8px;
}

.concierge-services-title {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: var(--grey-600);
  margin: 0 0 8px 0;
}

.concierge-services-list {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--grey-600);
  margin: 0;
  padding-left: 24px;
}

.concierge-services-list li {
  margin-bottom: 4px;
}

.concierge-services-list li:last-child {
  margin-bottom: 0;
}

/* Hotel Section */
.hotel-section {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  padding: 24px;
}

.hotel-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.hotel-label {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  color: var(--grey-600);
  margin: 0;
}

.hotel-name {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

.hotel-details {
  background: var(--grey-100);
  padding: 24px;
  border-radius: 8px;
  margin-top: 16px;
}

.hotel-details .detail-list {
  margin-bottom: 16px;
}

.hotel-note {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--grey-500);
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--grey-200);
}

/* Charity Partner Section */
.charity-section {
  background: var(--grey-700);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.charity-header {
  display: flex;
  flex-direction: row; /* Horizontal layout by default (above 1024px) */
  gap: 48px;
  align-items: stretch;
}

.charity-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.charity-title {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--grey-100);
  margin: 0;
}

.charity-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--grey-300);
  margin: 0;
}

.charity-description {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--white);
  margin: 0;
}

.event-page .charity-section .charity-logo {
  width: 320px;
  align-self: stretch;
  min-height: 0;
  height: auto; /* Allow content to dictate height, or inherit from flex stretch */
  min-height: 100%; /* Ensure it fills at least the parent's height */
  background: var(--white);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box; /* Critical for padding to be included in height */
}

.event-page .charity-section .charity-logo img {
  max-width: 100%;
  max-height: 365px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Tablet - Charity Logo */
@media (max-width: 1024px) {
  .event-page .charity-section .charity-logo img {
    max-height: 480px;
  }
}

.charity-stats {
  display: flex;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-600);
}

.charity-stat {
  flex: 1;
  background: var(--grey-600);
  border: 1px solid var(--grey-500);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  text-align: center;
}

.charity-stat-value {
  font-family: 'Manrope', sans-serif;
  font-size: 40px;
  line-height: 48px;
  font-weight: 800;
  color: var(--grey-100);
  margin: 0;
}

.charity-stat-label {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #BEDBFF;
  margin: 0;
}

/* Past Winner Stories */
.winner-story {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  padding: 24px;
}

.winner-story .event-card-title {
  margin-bottom: 16px;
}

.winner-story-header {
  display: flex;
  gap: 24px;
  align-items: center;
}

.winner-story-image {
  width: 256px;
  height: auto;
  aspect-ratio: 256 / 340; /* Maintain family image aspect ratio */
  border-radius: 4px;
  overflow: hidden;
  flex-shrink: 0;
}

.winner-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.winner-story-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.winner-story-title {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

.winner-story-date {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--grey-500);
  margin: 0;
}

.winner-story-text {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--grey-600);
  margin: 0;
}

.winner-story-author {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  color: var(--grey-700);
  margin: 0;
}

/* Eligibility & Rules */
.eligibility-section {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.eligibility-title {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--black);
  margin: 0 0 16px 0;
}

.eligibility-rules {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}

.eligibility-rule {
  background: var(--grey-100);
  padding: 8px;
  border-radius: 8px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.eligibility-rule-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.eligibility-rule-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.eligibility-rule-title {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}

.eligibility-rule-text {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--grey-600);
  margin: 0;
}

.eligibility-link {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--purple-500);
  text-decoration: none;
  margin-top: 16px;
  display: inline-block;
  padding-top: 16px;
  border-top: 1px solid var(--grey-200);
}

.eligibility-link:hover {
  text-decoration: underline;
}

/* Sidebar */
.event-sidebar-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 88px;
}

/* Countdown Timer */
.countdown-timer {
  background: var(--red-50);
  padding: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.countdown-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.countdown-label {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--red-500);
  flex: 1;
}

.countdown-value {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: var(--red-500);
  text-align: right;
}

/* Event Title in Sidebar */
.sidebar-title {
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: var(--black);
  margin: 0;
}

.sidebar-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--grey-500);
  margin: 0;
}

/* Pricing Box */
.pricing-box {
  border: 1px solid var(--sand-100);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
}

.pricing-amount {
  background: var(--sand-50);
  border-right: 2px dashed var(--sand-500);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.pricing-value {
  font-family: 'Manrope', sans-serif;
  font-size: 40px;
  line-height: 48px;
  font-weight: 800;
  color: var(--black);
  margin: 0;
}

.pricing-label {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--black);
  margin: 0;
}

.pricing-details {
  background: var(--sand-50);
  border: 1px solid var(--sand-100);
  border-left: none;
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pricing-detail-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pricing-detail-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.pricing-detail-label {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--black);
}

.pricing-detail-value {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  color: var(--black);
  margin: 0;
}

.pricing-detail-time {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--black);
  margin: 0;
}

/* Guest Selector */
.guest-selector {
  background: var(--purple-50);
  border: 1px solid var(--purple-300);
  border-radius: 10px;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.guest-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.guest-text {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--purple-500);
  flex: 1;
}

/* Sidebar Buttons */
.sidebar-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn-share {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
}

.btn-share:hover {
  background: var(--grey-100);
}

.btn-share-text {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: var(--grey-700);
}

.btn-share-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--grey-200);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-badge-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.trust-badge-text {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: var(--grey-600);
}

/* Divider */
.divider {
  height: 1px;
  background: var(--grey-200);
  width: 100%;
}

/* Image Lightbox/Modal */
.image-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.image-lightbox.active {
  display: flex;
}

.image-lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.image-lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 10001;
}

.image-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.image-lightbox-close::before,
.image-lightbox-close::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--white);
  transform: rotate(45deg);
}

.image-lightbox-close::after {
  transform: rotate(-45deg);
}

/* ============================================
   STICKY BOTTOM BAR
   ============================================ */
.sticky-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-top: 1px solid var(--grey-200);
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
}

.sticky-bottom-bar.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.sticky-bottom-bar-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.sticky-bottom-bar-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.sticky-bottom-bar-buttons .btn-primary {
  flex: 1;
  max-width: 300px;
}

.sticky-bottom-bar-buttons .btn-share {
  width: 56px;
  height: 56px;
  min-width: 56px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sticky-bottom-bar-buttons .btn-share .btn-share-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.sticky-bottom-bar-buttons .btn-share .btn-share-icon img {
  width: 20px;
  height: 20px;
  display: block;
}

/* Hide sticky bottom bar on desktop (over 1024px) */
@media (min-width: 1025px) {
  .sticky-bottom-bar {
    display: none !important;
  }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet & Smaller Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
  .event-content {
    padding: 32px 24px 64px;
  }
  
  .event-layout {
    flex-direction: column-reverse;
    gap: 32px;
  }
  
  .event-sidebar {
    width: 100%;
  }
  
  .event-sidebar-card {
    position: static; /* Remove sticky on mobile/tablet when stacked */
  }
}

/* Charity header breakpoint at 1240px */
@media (max-width: 1240px) {
  .charity-header {
    flex-direction: column;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .event-content {
    padding: 24px 10px 48px;
  }
  
  /* Force all cards to respect width and reduce padding */
  .event-card, 
  .event-sidebar-card, 
  .how-it-works-card, 
  .concierge-services, 
  .hotel-section,
  .hotel-details,
  .charity-section, 
  .winner-story, 
  .eligibility-section {
    padding: 16px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Fix overflow issues */
  img, svg {
    max-width: 100%;
    height: auto;
  }

  /* Typography Scaling */
  .event-card-title, 
  .event-description h2, 
  .hotel-name,
  .charity-title,
  .winner-story-title,
  .sidebar-title {
    font-size: 22px;
    line-height: 28px;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  .charity-stat-value {
    font-size: 28px;
  }

  /* Breadcrumb */
  .breadcrumb {
    flex-wrap: wrap;
    gap: 4px;
  }
  
  /* Gallery */
  .event-gallery-main {
    aspect-ratio: 16/9;
  }
  
  /* Charity Section */
  .charity-header {
    flex-direction: column;
    gap: 24px;
  }
  
  .event-page .charity-section .charity-logo {
    width: 100%;
    height: auto;
    padding: 16px;
  }
  
  .event-page .charity-section .charity-logo img {
    height: auto;
    width: auto;
    max-height: 320px;
  }

  .charity-stats {
    flex-wrap: wrap;
  }
  
  .charity-stat {
    min-width: 45%;
    flex: 1;
  }

  /* Winner Story */
  .winner-story-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .winner-story-image {
    width: 100%;
    height: auto;
    aspect-ratio: 256 / 340; /* Maintain family image aspect ratio */
  }
  
  /* Hotel Experience */
  .hotel-header {
    gap: 8px;
  }
  
  /* Pricing Box - Stack nicely on very small screens */
  .pricing-box {
    flex-direction: column;
    width: 100%;
  }

  .pricing-amount {
    border-right: none;
    border-bottom: 1px dashed var(--sand-500);
    padding: 12px;
    min-width: auto;
    width: 100%;
    box-sizing: border-box;
  }

  .pricing-details {
    border-left: 1px solid var(--sand-100);
    border-top: none;
    padding: 12px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Sticky Bottom Bar - Mobile */
  .sticky-bottom-bar {
    padding: 12px 16px;
  }

  .sticky-bottom-bar-buttons {
    flex-direction: row;
    gap: 8px;
  }

  .sticky-bottom-bar-buttons .btn-primary {
    max-width: 100%;
    flex: 1;
  }

  .sticky-bottom-bar-buttons .btn-share {
    width: 56px;
    height: 56px;
    min-width: 56px;
    flex-shrink: 0;
  }
}
