/* ============================================
   Header Component Styles
   ============================================ */
.hero__heading{
  font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0f2a6f;
    margin: 0 0 10px 0;
}
.header {
  background-color: #FFFFFF;
  padding: 16px 0;
  position: relative;
  z-index: var(--z-sticky);
}

.header__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

/* ============================================
   LEFT SECTION - Share Icon
   ============================================ */

.header__left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}





/* Body backdrop blur when modal is open */
body.modal-open-blur > *:not(#region-modal-overlay) {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
  transition: filter 0.3s ease;
}

/* Region Modal Overlay */
.region-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
  box-sizing: border-box;
}

.region-modal__body .logomain{
      text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
}
.region-modal__body .logomain img{
      width: 156px;
}
.region-modal-overlay--open {
  opacity: 1;
  visibility: visible;
}

/* Modal Content Card */
.region-modal {
  background: #ffffff;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  padding: 32px 28px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transform: translateY(15px);
  transition: transform 0.3s ease;
}

.region-modal-overlay--open .region-modal {
  transform: translateY(0);
}

.region-modal__title {
  font-size: 18px;
  font-weight: 700;
  color: #142d71;
  margin-bottom: 16px;
}

.region-modal__detected {
      font-size: 14px;
  color: #4a4a4a;
  margin-bottom: 10px;
  line-height: 1.5;
}

.region-modal__detected strong {
  color: #142d71;
  font-weight: 700;
}

.region-modal__question {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.region-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.region-modal__btn {
  
        cursor: pointer;
    
    padding: 10px 25px; 
    border-radius: 7px;
    outline: none;
    font-size: 12px;
    border: none;
    justify-content: center; 
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
 
.region-modal__btn--confirm {
   background: linear-gradient(135deg, #ff7b00, #ff0095);
  color: #ffffff;
}

.region-modal__btn--confirm:hover {
      transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.region-modal__btn--change {
  background-color: #f3f4f6;
  color: #374151;
  border: 1px solid #d1d5db;
}

.region-modal__btn--change:hover {
      transform: translateY(-1px);
   box-shadow: 0 4px 12px rgb(177 177 177 / 40%);
}

/* Region Selection List View */
.region-modal__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 260px;
  overflow-y: auto;
  margin-top: 15px;
  padding-right: 5px;
}

.region-modal__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.region-modal__list-item:hover { 
  border-color: #142d71;
  color: #142d71;
}

.region-modal__list-item--active {
  border-color: #142d71;
  color: #142d71;
  background: #eff6ff;
  font-weight: 600;
}




/* Container for header left to align Share & Region selector side-by-side */
.header__left {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Flag SVG styling */
.region-flag {
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.3);
  vertical-align: middle;
}

/* Region Dropdown Layout */
.region-dropdown {
  position: relative;
  display: inline-block;
}

.region-dropdown__trigger {
      width: 40px;
    height: 40px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ff7b00, #ff0095);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);


  display: flex;
  align-items: center;
  gap: 0; 
  border: none; 
  padding: 0;
  font-size: 12px;
  font-weight: 600; 
  cursor: pointer; 
}

.region-dropdown__trigger img{
        height: 36px;
    width: 36px;
    border: 2px solid #fff;
    border-radius: 50%;
}
.region-dropdown__code,
.region-dropdown__icon{
  display: none;
}
.region-dropdown__trigger:hover {
  transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.region-dropdown__icon {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.region-dropdown--open .region-dropdown__icon {
  transform: rotate(180deg);
}

.region-dropdown__menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 190px; 
  background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 8px 0px;
  display: none;
  z-index: 1000;
}

.region-dropdown--open .region-dropdown__menu {
  display: block;
}

.region-dropdown__item {
  display: flex;
  align-items: center;
  gap: 8px;
      padding: 10px 16px;
    font-size: 14px;
  color: #374151;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.15s ease;
}

.region-dropdown__item:hover {
      background-color: #F8FAFC;
}

.region-dropdown__item--active {
  background: #eff6ff;
  color: #1e3a5f;
  font-weight: 600;
}



.header__share-btn {
  width: 40px;
  height: 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ff7b00, #ff0095);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  flex-shrink: 0;
}

.header__share-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.header__share-btn svg {
  width: 18px;
  height: 18px;
  color: #FFFFFF;
}

/* ============================================
   CENTER SECTION - Branding
   ============================================ */

.header__center {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.header__gift-icon {
  /* width: 40px;
  height: 40px; */
  margin-bottom: 2px;
}

.header__gift-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.header__logo-text {
  font-size: 22px;
  font-weight: var(--font-weight-bold);
  color: #2563EB;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1.2;
}

.header__logo-text span {
  color: #2563EB;
}

.header__subtext {
  font-size: 19px;
  font-weight: var(--font-weight-bold);
  color: #1E3A5F;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
  white-space: nowrap;
}

/* ============================================
   RIGHT SECTION - Cause Selector + Settings
   ============================================ */

.header__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Cause Logo */
.header__cause-logo-wrapper {
  width: 91px;
  height: 91px;
  flex-shrink: 0;
}

.header__cause-logo {
  width: 91px;
  height: 91px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #E2E8F0;
  background-color: #FFFFFF;
  display: block;
}

.header__cause-logo--fallback {
  width: 91px;
  height: 91px;
  border-radius: 50%;
  background-color: #EFF6FF;
  border: 2px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563EB;
  font-weight: var(--font-weight-bold);
  font-size: 20px;
}

/* Cause Selector */
.cause-selector {
  display: flex;
  align-items: center;
}

.cause-dropdown {
  position: relative;
}

.cause-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  color: #64748B;
  cursor: pointer;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cause-dropdown__trigger:hover {
  border-color: #1E3A5F;
  background-color: #F8FAFC;
  color: #1E3A5F;
}

.cause-dropdown__trigger-text {
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.04em;
}

.cause-dropdown__trigger-icon {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.cause-dropdown--open .cause-dropdown__trigger-icon {
  transform: rotate(180deg);
}

.cause-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 260px;
  background-color: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  z-index: var(--z-dropdown);
  max-height: 400px;
  overflow-y: auto;
}

.cause-dropdown--open .cause-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cause-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  font-size: 14px;
  color: #1E293B;
  cursor: pointer;
  transition: background-color var(--transition-fast);
  width: 100%;
  text-align: left;
}

.cause-dropdown__item:hover {
  background-color: #F8FAFC;
}

.cause-dropdown__item--active {
  background-color: #EFF6FF;
  font-weight: var(--font-weight-semibold);
  color: #1E3A5F;
}

.cause-dropdown__item-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid #E2E8F0;
}

.cause-dropdown__item-logo--fallback {
  display: none !important;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #EFF6FF;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563EB;
  font-weight: var(--font-weight-bold);
  font-size: 14px;
  flex-shrink: 0;
}

.cause-dropdown__item-name {
  flex: 1;
}

/* Settings Button */
.settings-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #94A3B8;
  transition: background-color var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0;
  margin-top: 4px;
}

.settings-btn:hover {
  background-color: #F1F5F9;
  color: #64748B;
}

.settings-btn svg {
  width: 18px;
  height: 18px;
}
img.header__logo{
  width: 310px;
  margin-bottom: 4px;
}
.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text-secondary);
}

.mobile-menu-btn svg {
  width: 24px;
  height: 24px;
}

/* ============================================
   RESPONSIVE - Mobile < 768px
   ============================================ */
.header__bottom-row{
  display: none;
}
@media (max-width: 768px) {
  .region-modal__title {
    font-size: 14px;
  }
  .region-modal__detected {
    font-size: 13px;
  }
  .region-modal__question {
    font-size: 13px;
  }
  .region-modal__actions { 
    gap: 8px; 
    flex-wrap: nowrap;
}
.region-dropdown__trigger {
            width: 40px;
        height: 40px;
        border-radius: 12px;
        position: relative;
        top: 3px; 
}
.region-dropdown__trigger img {
    height: 26px;
    width: 26px;
}
.region-modal__btn {
    cursor: pointer;
    padding: 8px 8px;
    border-radius: 7px;
    outline: none;
    font-size: 11px;
}
.region-modal__list-item {
  font-size: 13px;
}
.region-modal__list-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 11px;
    font-size: 13px;
}
.region-modal__list { 
    gap: 8px;
}

.cause-dropdown__trigger{
    position: absolute;
    top: -28px;
    right: -66px;
    width: 60px;
    overflow: hidden;
    opacity: 0;
}
  img.header__logo {
    width: 100%;
  }
  .hero__heading {
    text-align: center;
  }
  .header__container {
    padding: 0 var(--space-md);
    min-height: 64px;
  }

  .header__center {
    position: static;
    transform: none;
    margin: 0 auto;
  }

  .header__gift-icon {
    /* width: 32px;
    height: 32px; */
  }

  .header__logo-text {
    font-size: 18px;
  }

  .header__subtext {
    font-size: 11px;
  }

  .header__share-btn {
    width: 40px;
    height: 40px;
  }

  .header__share-btn svg {
    width: 18px;
    height: 18px;
  }

  .header__cause-logo-wrapper,
  .header__cause-logo,
  .header__cause-logo--fallback {
    width: 44px;
    height: 44px;
  }

  .cause-dropdown__trigger {
    padding: 5px 10px;
    font-size: 10px;
  }

  .cause-dropdown__menu {
    right: -40px;
    min-width: 220px;
  }

  .settings-btn {
    width: 32px;
    height: 32px;
  }

  .settings-btn svg {
    width: 16px;
    height: 16px;
  }
}

/* ============================================
   MOBILE LAYOUT (<= 768px)
   Share btn top-left | Change Cause + Cause image top-right
   Logo + Supporting text centered below
   ============================================ */
@media (max-width: 768px) {
  .header {
    padding: 7px 0 11px 0;
  }

  .header__container {
    padding: 0 6px;
    min-height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    position: relative;
  }

  /* --- Top Row: Share (left) + Change Cause + Image (right) --- */
  .header__left {
    align-self: flex-start;
    order: 1;
  }

  .header__share-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    position: relative;
    top: 3px;
    margin-left: 5px;
  }

  .header__share-btn svg {
            width: 23px;
        height: 23px;
                transform: translateX(-.5px);
  }

  /* Center section hidden on mobile (logo moves to bottom) */
  .header__center {
    display: none;
  }

  /* Right section: Change Cause + Image, aligned to top-right */
  .header__right {
    order: 2;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-left: auto;
  }

  .header__cause-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0;
    order: 2;
  }

  .header__cause-logo,
  .header__cause-logo--fallback {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #E2E8F0;
    background-color: #FFFFFF;
    display: block;
    margin-bottom: 0;
  }

  .header__cause-logo--loading {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #E2E8F0;
    background-color: #FFFFFF;
    display: block;
  }

  /* Cause selector moved to top-right, before image */
  .cause-selector {
    order: 1;
  }

  .cause-dropdown__trigger {
    padding: 2px 4px;
    font-size: 9px;
  }
.cause-dropdown__trigger-text {
    font-size: 10px;
}
  .cause-dropdown__trigger-icon {
    width: 10px;
    height: 10px;
  }

  .cause-dropdown__menu {
           right: -44px;
        min-width: 220px;
        top: 33px;
  }

  .settings-btn {
    display: none;
  }

  /* --- Bottom Row: Logo + Supporting text centered --- */
  .header__bottom-row {
    order: 3;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 0;
        padding-top: 0;
        border-top: none;
  }

  .header__bottom-row .header__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .header__bottom-row img.header__logo {
        width: 277px;
        margin-bottom: 2px;
        margin-top: -20px;

  }

  .header__bottom-row .header__logo-text {
    font-size: 18px;
    font-weight: var(--font-weight-bold);
    color: #2563EB;
    letter-spacing: 0.02em;
    white-space: nowrap;
    line-height: 1.2;
  }

  .header__bottom-row .header__subtext {
      font-size: 14px;
    font-weight: var(--font-weight-bold);
    color: #1E3A5F;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 4px 0 0 0;
    white-space: normal;
    text-align: center;
  }
}


/* ============================================
   SHARE MODAL
   ============================================ */

.share-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.share-modal--open {
  opacity: 1;
  visibility: visible;
}

.share-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.share-modal__content {
  position: relative;
  background: #FFFFFF;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px 24px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  animation: share-modal-in 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes share-modal-in {
  from {
    opacity: 0;
    transform: scale(0.96) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.share-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #94A3B8;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease, color 0.15s ease;
  padding: 0;
}

.share-modal__close:hover {
  background-color: #F1F5F9;
  color: #64748B;
}

.share-modal__title {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1E293B;
  text-align: center;
  margin: 0 0 20px 0;
}

/* Preview Card */
.share-modal__preview {
  margin-bottom: 20px;
}

.share-modal__preview-url {
  font-size: 11px;
  color: #94A3B8;
  margin-bottom: 8px;
  word-break: break-all;
  line-height: 1.4;
}

.share-modal__preview-card {
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  overflow: hidden;
  background: #FFFFFF;
}

.share-modal__preview-image {
  position: relative;
  width: 100%;
  /* aspect-ratio: 16 / 9; */
  /* background: #F8FAFC; */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.share-modal__preview-image img {
  width: 87%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.share-modal__preview-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.share-modal__preview-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #1E293B;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.share-modal__preview-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.share-modal__preview-logo span {
  font-size: 24px;
  font-weight: 700;
  color: #1E293B;
}

.share-modal__preview-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.share-modal__preview-brand-name {
  font-size: 26px;
  font-weight: 800;
  color: #6EB6CF;
  letter-spacing: 0.02em;
  line-height: 1;
}

.share-modal__preview-brand-sub {
  font-size: 12px;
  font-weight: 700;
  color: #1E3A8A;
  text-transform: capitalize;
  letter-spacing: 0.02em;
}

/* Share Actions */
.share-modal__actions {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 24px;
}

.share-modal__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex: 1;
  min-width: 0;
}

.share-modal__action-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  flex-shrink: 0;
  transition: transform 0.15s ease;
}

.share-modal__action:hover .share-modal__action-icon {
  transform: scale(1.08);
}

.share-modal__action-icon--copy {
  background: #F97316;
}

.share-modal__action-icon--whatsapp {
  background: #25D366;
}

.share-modal__action-icon--facebook {
  background: #1877F2;
}

.share-modal__action-icon--messenger {
  background: #0084FF;
}

.share-modal__action-icon--email {
  background: #E2E8F0;
  color: #64748B;
}

.share-modal__action-icon--more {
  background: #EF4444;
}

.share-modal__action-label {
  font-size: 9px;
  font-weight: 600;
  color: #1E293B;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* Divider */
.share-modal__divider {
  height: 2px;
  background: #1E293B;
  border-radius: 1px;
  margin-bottom: 20px;
}

/* CTA Section */
.share-modal__cta {
  text-align: center;
}

.share-modal__cta-title {
  font-size: 14px;
  font-weight: 800;
  color: #1E293B;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 8px 0;
}

.share-modal__cta-text {
  font-size: 12px;
  color: #64748B;
  line-height: 1.5;
  margin: 0 0 16px 0;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}

.share-modal__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  background: linear-gradient(90deg, #F97316 0%, #EC4899 100%);
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  border: none;
  cursor: pointer;
}

.share-modal__cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
  color:#fff;
}

/* ============================================
   SHARE MODAL RESPONSIVE
   ============================================ */

@media (max-width: 480px) {
  .share-modal {
    padding: 16px; 
  }

  .share-modal__content {
    padding: 24px 20px;
    max-height: 85vh;
  }

  .share-modal__actions {
    gap: 4px;
  }

  .share-modal__action-icon {
    width: 44px;
    height: 44px;
  }

  .share-modal__action-label {
    font-size: 8px;
  }

  .share-modal__preview-brand-name {
    font-size: 22px;
  }

  .share-modal__preview-logo {
    width: 56px;
    height: 56px;
  }
}