/* Service Pages - Modern Design */

.service-page {
  min-height: calc(100vh - 230px);
  padding: 2rem 1rem;
  background: var(--color-white);
}

.service-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Header Section */
.service-header {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-blue) 100%);
  border-radius: 20px;
  color: var(--color-white);
  box-shadow: 0 8px 30px rgba(23, 46, 69, 0.15);
}

.service-header__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.service-header__icon svg {
  color: var(--color-white);
}

.service-header__icon--success {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.25);
}

.service-header--success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.service-header__title {
  font-family: 'Gready', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  color: var(--color-white);
}

.service-header__subtitle {
  font-size: 1.1rem;
  margin: 0;
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Card Container */
.service-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(23, 46, 69, 0.08);
  border: 1px solid #e8eaed;
  margin-bottom: 2rem;
}

.service-card--highlight {
  background: linear-gradient(135deg, #fafbfc 0%, #f4f6f8 100%);
  border-color: var(--color-pink);
}

.service-card__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-blue);
  margin: 0 0 1rem 0;
}

.service-card__text {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.service-card__text--small {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

.service-card__link {
  color: var(--color-pink);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.service-card__link:hover {
  color: var(--color-blue);
  text-decoration: underline;
}

/* Section Title */
.service-section__title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-blue);
  text-align: center;
  margin: 0 0 2rem 0;
}

/* Features Grid */
.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: #fafbfc;
  border-radius: 16px;
  border: 1px solid #e8eaed;
  transition: all 0.3s ease;
}

.service-feature:hover {
  border-color: var(--color-pink);
  box-shadow: 0 4px 12px rgba(206, 55, 88, 0.1);
  transform: translateY(-2px);
}

.service-feature__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-pink) 0%, #e85574 100%);
  border-radius: 12px;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.service-feature__icon svg {
  width: 24px;
  height: 24px;
}

.service-feature__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-blue);
  margin: 0 0 0.75rem 0;
}

.service-feature__description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Steps */
.service-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.service-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fafbfc;
  border-radius: 16px;
  border: 1px solid #e8eaed;
  transition: all 0.3s ease;
}

.service-step:hover {
  border-color: var(--color-pink);
  box-shadow: 0 4px 12px rgba(206, 55, 88, 0.1);
}

.service-step__number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-blue) 0%, #1a3a5a 100%);
  color: var(--color-white);
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(23, 46, 69, 0.2);
}

.service-step__content {
  flex: 1;
}

.service-step__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-blue);
  margin: 0 0 0.5rem 0;
}

.service-step__description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Gift Card Actions */
.gift-card-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .gift-card-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* Checkout Summary */
.checkout-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #fafbfc;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.checkout-summary__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e8eaed;
}

.checkout-summary__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.checkout-summary__item--total {
  padding-top: 1rem;
  border-top: 2px solid var(--color-blue);
  margin-top: 0.5rem;
}

.checkout-summary__label {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
}

.checkout-summary__value {
  font-size: 1rem;
  color: var(--color-blue);
  font-weight: 600;
}

.checkout-summary__price {
  font-size: 1.5rem;
  color: var(--color-blue);
  font-weight: 700;
}

/* Success Message */
.success-message {
  text-align: center;
}

.success-message__text {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.success-message__text:last-child {
  margin-bottom: 0;
}

/* CTA Section */
.service-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

/* Buttons */
.service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--color-blue) 0%, #1a3a5a 100%);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(23, 46, 69, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  min-width: 250px;
}

.service-button svg {
  transition: transform 0.3s ease;
}

.service-button:hover {
  background: linear-gradient(135deg, var(--color-pink) 0%, #e85574 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(206, 55, 88, 0.4);
  color: var(--color-white);
}

.service-button:hover svg {
  transform: translateX(4px);
}

.service-button:active {
  transform: translateY(0) scale(0.98);
}

.service-button--primary {
  background: linear-gradient(135deg, var(--color-pink) 0%, #e85574 100%);
  box-shadow: 0 4px 16px rgba(206, 55, 88, 0.3);
}

.service-button--primary:hover {
  background: linear-gradient(135deg, var(--color-blue) 0%, #1a3a5a 100%);
  box-shadow: 0 8px 24px rgba(23, 46, 69, 0.4);
}

.service-button--secondary {
  background: var(--color-white);
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
  box-shadow: 0 4px 16px rgba(23, 46, 69, 0.1);
}

.service-button--secondary:hover {
  background: var(--color-blue);
  color: var(--color-white);
  border-color: var(--color-blue);
  box-shadow: 0 8px 24px rgba(23, 46, 69, 0.3);
}

.service-button__price {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-left: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-page {
    padding: 1rem 0.5rem;
  }

  .service-header {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    border-radius: 16px;
  }

  .service-header__title {
    font-size: 1.75rem;
  }

  .service-header__subtitle {
    font-size: 1rem;
  }

  .service-card {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .service-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-step {
    padding: 1.25rem;
  }

  .service-button {
    width: 100%;
    min-width: auto;
  }

  .gift-card-actions {
    flex-direction: column;
  }

  .gift-card-actions .service-button {
    width: 100%;
  }
}

@media (min-width: 769px) {
  .service-page {
    padding: 3rem 2rem;
  }
}

/* Drop-Off Points */
.drop-off-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.drop-off-point {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.drop-off-point__name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-blue);
  margin: 0;
}

.drop-off-point__link {
  color: var(--color-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.drop-off-point__link:hover {
  color: var(--color-pink);
}

.drop-off-point__link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.drop-off-point__link:hover svg {
  transform: translate(2px, -2px);
}

.drop-off-point__address {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.drop-off-point__locations {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--color-pink);
}

.drop-off-point__location {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.drop-off-point__location-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-blue);
  margin: 0;
}

.drop-off-point__location .drop-off-point__address {
  font-size: 0.95rem;
  color: #555;
}

@media (max-width: 768px) {
  .drop-off-point__name {
    font-size: 1.25rem;
  }

  .drop-off-point__locations {
    padding-left: 1rem;
  }
}

/* ===================================================
   Bespoke Listing Page — Editorial Luxury Redesign
   =================================================== */

.bespoke-page {
  padding: 0;
  margin-bottom: 0;
}

/* ---- Hero ---- */
.bespoke-hero {
  padding: 4.5rem 2rem 4rem;
  max-width: 960px;
  margin: 0 auto;
}

.bespoke-hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(23, 46, 69, 0.12);
}

.bespoke-hero__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-pink);
}

.bespoke-hero__price-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-blue);
  background: rgba(23, 46, 69, 0.07);
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
}

.bespoke-hero__title {
  font-family: 'Playfair', serif;
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--color-blue);
  margin: 0 0 2rem 0;
  animation: bespoke-fade-up 0.7s 0.05s ease both;
}

.bespoke-hero__title-line {
  display: block;
}

.bespoke-hero__title-line--accent {
  color: var(--color-pink);
  font-style: italic;
  padding-left: clamp(1rem, 3vw, 2.5rem);
}

.bespoke-hero__rule {
  width: 48px;
  height: 2px;
  background: var(--color-pink);
  margin-bottom: 1.75rem;
  animation: bespoke-fade-up 0.5s 0.2s ease both;
}

.bespoke-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(23, 46, 69, 0.65);
  line-height: 1.75;
  max-width: 500px;
  margin: 0;
  animation: bespoke-fade-up 0.6s 0.3s ease both;
}

/* ---- Section Header ---- */
.bespoke-section-header {
  margin-bottom: 2.5rem;
}

.bespoke-section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-pink);
}

/* ---- Includes / Features ---- */
.bespoke-includes {
  padding: 4rem 2rem;
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid rgba(23, 46, 69, 0.1);
}

.bespoke-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.bespoke-feature {
  display: flex;
  gap: 1.25rem;
  padding: 2.25rem 1.75rem;
  border: 1px solid rgba(23, 46, 69, 0.08);
  transition: background 0.25s ease;
  cursor: default;
}

.bespoke-feature:hover {
  background: rgba(23, 46, 69, 0.025);
}

/* Collapse double borders in 2-col grid */
.bespoke-feature:nth-child(2) { border-left: none; }
.bespoke-feature:nth-child(3) { border-top: none; }
.bespoke-feature:nth-child(4) { border-left: none; border-top: none; }

.bespoke-feature__num {
  font-family: 'Gready', serif;
  font-size: 2.75rem;
  font-weight: 400;
  color: rgba(23, 46, 69, 0.1);
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.25s ease;
  user-select: none;
}

.bespoke-feature:hover .bespoke-feature__num {
  color: rgba(206, 55, 88, 0.25);
}

.bespoke-feature__body {
  padding-top: 0.2rem;
}

.bespoke-feature__title {
  font-family: 'Playfair', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-blue);
  margin: 0 0 0.65rem 0;
  letter-spacing: 0.01em;
}

.bespoke-feature__desc {
  font-size: 0.875rem;
  color: rgba(23, 46, 69, 0.6);
  line-height: 1.7;
  margin: 0;
}

/* ---- Process / Steps ---- */
.bespoke-process {
  padding: 4rem 2rem;
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid rgba(23, 46, 69, 0.1);
}

.bespoke-steps {
  display: flex;
  flex-direction: column;
}

.bespoke-step {
  display: flex;
  gap: 2rem;
  align-items: stretch;
}

.bespoke-step__marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 18px;
}

.bespoke-step__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-pink);
  flex-shrink: 0;
  margin-top: 0.35rem;
  transition: transform 0.25s ease, background 0.25s ease;
  position: relative;
  z-index: 1;
}

.bespoke-step__dot--final {
  background: var(--color-blue);
}

.bespoke-step:hover .bespoke-step__dot {
  transform: scale(1.5);
}

.bespoke-step__line {
  flex: 1;
  width: 1px;
  background: rgba(23, 46, 69, 0.1);
  margin: 4px 0;
}

.bespoke-step__content {
  padding: 0 0 2.75rem;
  flex: 1;
}

.bespoke-step--last .bespoke-step__content {
  padding-bottom: 0;
}

.bespoke-step__num {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-pink);
  opacity: 0.65;
  display: block;
  margin-bottom: 0.3rem;
}

.bespoke-step__title {
  font-family: 'Playfair', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-blue);
  margin: 0 0 0.4rem 0;
}

.bespoke-step__desc {
  font-size: 0.875rem;
  color: rgba(23, 46, 69, 0.58);
  line-height: 1.65;
  margin: 0;
}

/* ---- CTA Band ---- */
.bespoke-cta-section {
  background: var(--color-pink);
  padding: 3.5rem 2rem;
}

.bespoke-cta-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.bespoke-cta-note {
  font-size: 0.875rem;
  color: rgba(247, 242, 233, 0.7);
  margin: 0;
  line-height: 1.6;
}

.bespoke-cta-link {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.bespoke-cta-link:hover {
  opacity: 0.75;
  text-decoration: underline;
}

/* ---- Book Button ---- */
.bespoke-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--color-white);
  color: var(--color-blue);
  text-decoration: none;
  padding: 0.9rem 1.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.bespoke-btn:hover {
  background: var(--color-blue);
  color: var(--color-white);
}

.bespoke-btn:hover .bespoke-btn__arrow {
  transform: translateX(4px);
}

.bespoke-btn__price {
  font-size: 0.7rem;
  font-weight: 500;
  opacity: 0.6;
  padding-left: 0.75rem;
  border-left: 1px solid currentColor;
  letter-spacing: 0.08em;
}

.bespoke-btn__arrow {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  opacity: 0.7;
}

/* ---- Checkout Page ---- */
.bespoke-hero__title--checkout {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

.bespoke-checkout-section {
  padding: 0 2rem 5rem;
  max-width: 960px;
  margin: 0 auto;
}

.bespoke-checkout-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding-top: 3rem;
  border-top: 1px solid rgba(23, 46, 69, 0.1);
}

.bespoke-order {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.bespoke-order__rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(23, 46, 69, 0.08);
}

.bespoke-order__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(23, 46, 69, 0.08);
}

.bespoke-order__row:last-child {
  border-bottom: none;
}

.bespoke-order__row--total {
  background: rgba(23, 46, 69, 0.03);
}

.bespoke-order__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(23, 46, 69, 0.5);
}

.bespoke-order__value {
  font-size: 0.9rem;
  color: var(--color-blue);
  font-weight: 500;
}

.bespoke-order__total {
  font-family: 'Playfair', serif;
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--color-blue);
  letter-spacing: -0.01em;
}

.bespoke-checkout-action {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-top: 2rem;
}

.bespoke-btn--full {
  width: 100%;
  justify-content: space-between;
  background: var(--color-blue);
  color: var(--color-white);
  padding: 1.1rem 1.75rem;
}

.bespoke-btn--full:hover {
  background: var(--color-pink);
  color: var(--color-white);
}

.bespoke-checkout-note {
  font-size: 0.78rem;
  color: rgba(23, 46, 69, 0.45);
  margin: 0;
  text-align: center;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .bespoke-checkout-section {
    padding: 0 1.25rem 4rem;
  }

  .bespoke-checkout-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .bespoke-checkout-action {
    padding-top: 0;
  }
}

/* ---- Entrance Animations ---- */
@keyframes bespoke-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.bespoke-hero__eyebrow {
  animation: bespoke-fade-up 0.5s ease both;
}

.bespoke-hero__title {
  animation: bespoke-fade-up 0.65s 0.1s ease both;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .bespoke-hero {
    padding: 3rem 1.25rem 2.5rem;
  }

  .bespoke-hero__title {
    font-size: clamp(2.75rem, 13vw, 4.5rem);
  }

  .bespoke-hero__title-line--accent {
    padding-left: 0.75rem;
  }

  .bespoke-includes,
  .bespoke-process {
    padding: 3rem 1.25rem;
  }

  .bespoke-features {
    grid-template-columns: 1fr;
  }

  /* Reset double-border handling for single column */
  .bespoke-feature:nth-child(2),
  .bespoke-feature:nth-child(4) {
    border-left: 1px solid rgba(23, 46, 69, 0.08);
  }
  .bespoke-feature:nth-child(2),
  .bespoke-feature:nth-child(3),
  .bespoke-feature:nth-child(4) {
    border-top: none;
  }

  .bespoke-cta-section {
    padding: 2.5rem 1.25rem;
  }

  .bespoke-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .bespoke-btn {
    width: 100%;
    justify-content: space-between;
  }
}

/* ===================================================
   Gift Cards Pages
   =================================================== */

.gift-actions-section {
  padding: 0 2rem 0;
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid rgba(23, 46, 69, 0.1);
}

.gift-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.gift-action {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3rem 2.5rem;
  text-decoration: none;
  transition: opacity 0.25s ease;
  gap: 2rem;
}

.gift-action--primary {
  background: var(--color-blue);
  color: var(--color-white);
}

.gift-action--secondary {
  background: transparent;
  color: var(--color-blue);
  border: 1px solid rgba(23, 46, 69, 0.1);
  border-left: none;
}

.gift-action:hover {
  opacity: 0.88;
}

.gift-action__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 0.6rem;
}

.gift-action__title {
  font-family: 'Playfair', serif;
  font-size: 1.75rem;
  font-weight: 500;
  margin: 0 0 0.85rem 0;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.gift-action--primary .gift-action__title {
  color: var(--color-white);
}

.gift-action--secondary .gift-action__title {
  color: var(--color-blue);
}

.gift-action__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0;
  opacity: 0.65;
}

.gift-action__arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  opacity: 0.5;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.gift-action:hover .gift-action__arrow {
  transform: translateX(4px);
  opacity: 0.9;
}

/* ---- Gift Success ---- */
.gift-success-inner {
  padding-top: 3rem;
  border-top: 1px solid rgba(23, 46, 69, 0.1);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 480px;
}

.gift-success-note {
  font-size: 0.95rem;
  color: rgba(23, 46, 69, 0.65);
  line-height: 1.75;
  margin: 0;
}

.gift-success-link {
  color: var(--color-pink);
  text-decoration: none;
  font-weight: 500;
}

.gift-success-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .gift-actions-section {
    padding: 0 0;
  }

  .gift-actions {
    grid-template-columns: 1fr;
  }

  .gift-action--secondary {
    border-left: 1px solid rgba(23, 46, 69, 0.1);
    border-top: none;
  }

  .gift-action {
    padding: 2.25rem 1.25rem;
  }

  .gift-success-inner {
    padding: 2.5rem 1.25rem 0;
    max-width: 100%;
  }
}
