.product-header {
    margin-top: 20px;
}

.breadcrumb {
    font-size: 13px;
    gap: 6px;
    display: flex;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumb .active {
    color: #111827;
    font-weight: 500;
}

.product-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.product-title span {
    color: #16a34a;
    font-weight: 600;
}

.assured-badge {
    background: #ecfdf5;
    color: #15803d;
    font-size: 13px;
    padding: 6px 12px;
    border-radius: 999px;
    white-space: nowrap;
}
@media (max-width: 576px) {
    .product-title {
        font-size: 22px;
        line-height: 1.3;
    }
}

/* Preview image */
.gift-preview-wrap {
    background: #0f2a44;
    border-radius: 20px;
    padding: 20px;
}

.gift-preview-img {
    width: 100%;
    border-radius: 16px;
}

/* Below image buttons */
.gift-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.gift-action-btn {
    border: 1px solid #e5e7eb;
    background: #fff;
    padding: 8px 14px;
    font-size: 13px;
    border-radius: 999px;
    cursor: pointer;
}

/* Purchase card */
.purchase-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 24px;
    height: 100%;
}

@media (max-width: 576px) {
    .gift-actions {
        flex-wrap: wrap;
    }

    .gift-action-btn {
        width: 100%;
        text-align: center;
    }
}

.gift-info-link {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #ffffff;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
}

.gift-info-link:hover {
    background: #f9fafb;
    color: #111827;
}

@media (max-width: 576px) {
    .gift-actions {
        flex-direction: column;
    }

    .gift-info-link {
        justify-content: center;
        width: 100%;
    }
}
.gift-actions {
  display: flex;
  gap: 0.5rem; /* optional spacing between buttons */
}

.gift-actions .gift-info-link {
  flex: 1;              /* 50 / 50 */
  text-align: center;   /* center text */
   justify-content: center;
  align-items: center;
}

/* Assured box */
.assured-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-radius: 14px;
    padding: 12px 14px;
    margin-bottom: 20px;
}

.assured-left {
    display: flex;
    gap: 10px;
    align-items: center;
}

.assured-icon {
    width: 26px;
    height: 26px;
    background: #22c55e;
    color: #fff;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.assured-title {
    font-size: 14px;
    font-weight: 600;
    color: #166534;
}

.assured-sub {
    font-size: 12px;
    color: #15803d;
}

.assured-link {
    font-size: 12px;
    color: #15803d;
    text-decoration: underline;
}

/* Value section */
.value-section {
    margin-bottom: 20px;
}

.value-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #111827;
}

.value-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Pills */
.value-pill {
    border: 1px solid #e5e7eb;
    background: #fff;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.15s ease;
}

.value-pill:hover {
    background: #f9fafb;
}

.value-pill.active {
    background: #ecfdf5;
    border-color: #22c55e;
    color: #166534;
    font-weight: 600;
}

@media (max-width: 576px) {
    .assured-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .value-pill {
        flex: 1 1 calc(50% - 10px);
        text-align: center;
    }
}

.price-box {
    margin-bottom: 16px;
}

.price-label {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.final-price {
    font-size: 28px;
    font-weight: 700;
    color: #15803d;
}

.original-price {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
}

/* CTA */
.cta-btn {
    width: 100%;
    background: #111827;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.cta-btn:hover {
    background: #000000;
}

/* Note */
.payment-note {
    margin-top: 10px;
    font-size: 12px;
    color: #6b7280;
    text-align: center;
}

.product-about {
    margin-top: 40px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #111827;
}

.about-text {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.6;
    max-width: 780px;
}

.product-features {
    margin-top: 20px;
}

.feature-item {
    font-size: 14px;
    color: #166534;
    background: #ecfdf5;
    border-radius: 10px;
    padding: 10px 12px;
    text-align: left;
}

.product-features {
    margin-top: 24px;
}

.feature-box {
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px 16px;
    background: #ffffff;
}

.feature-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.feature-desc {
    font-size: 13px;
    color: #6b7280;
    margin-top: 2px;
}

.feature-box {
    display: flex;
    gap: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 14px 16px;
    background: #ffffff;
    align-items: flex-start;
}

.feature-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.feature-title {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.feature-desc {
    font-size: 13px;
    color: #6b7280;
    margin-top: 2px;
}


/* Trust Badge */

.hubble-promise-section {
    margin-top: 48px;
}

/* METRICS */
.promise-metrics {
    display: flex;
    gap: 48px;
    margin-bottom: 24px;
}

.metric-value {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
}

.metric-label {
    font-size: 14px;
    color: #6b7280;
    max-width: 200px;
}

/* PROMISE BOX */
.promise-box {
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 20px 24px;
    background: #ffffff;
}

.promise-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.promise-icon {
    font-size: 18px;
}

/* PROMISE POINTS */
.promise-points {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
}

.promise-point {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #166534;
    min-width: 220px;
}

.promise-point i {
    font-size: 16px;
    color: #16a34a;
}
@media (max-width: 576px) {
    .promise-metrics {
        flex-direction: column;
        gap: 16px;
    }

    .metric-value {
        font-size: 24px;
    }

    .promise-points {
        flex-direction: column;
        gap: 12px;
    }

    .promise-point {
        min-width: unset;
    }
}


/* Faq */

/* Hubble accordion look */
.hubble-accordion .accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
}

.hubble-accordion .accordion-button {
  font-size: 14px;
  font-weight: 500;
  padding: 16px;
  background: #fff;
  box-shadow: none;
}

.hubble-accordion .accordion-button:not(.collapsed) {
  background: #fff;
  color: #111827;
}

.hubble-accordion .accordion-button::after {
  background-size: 16px;
}

.hubble-accordion .accordion-body {
  font-size: 14px;
  color: #4b5563;
  padding-top: 0;
}

/* Things to note card */
.hubble-note-card {
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  color: #374151;
}

.hubble-note-card p {
  margin-bottom: 8px;
}

/* About Card */

.card {
  border: 1px solid #e5e7eb !important;
}

.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04) !important;
}

/* Similar Card */

.similar-card {
  cursor: pointer;
  position: relative;
}

.img-box {
  aspect-ratio: 312 / 348;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e7eb;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: visible;
}

.category {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 6px;
}

.discount {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.discount .value {
  font-size: 16px;
  font-weight: 600;
  color: #16a34a;
}

.discount .unit {
  font-size: 12px;
  font-weight: 600;
  color: #16a34a;
}

/* Hover arrow (desktop only) */
@media (min-width: 576px) {
  .similar-card::after {
    content: "→";
    position: absolute;
    bottom: 12px;
    right: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
    font-size: 18px;
  }

  .similar-card:hover::after {
    opacity: 1;
  }
}


.value-label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.value-pill {
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.value-pill.active {
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
}

.value-pill:hover {
  border-color: #16a34a;
}
