
  .value-savings-banner {
    background: linear-gradient(90deg, #e6f9ee 0%, #d1f2d8 100%);
    border: 1px solid #a8e6b0;
    color: #0d6832;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-block;
    padding: 6px 10px;
    border-radius: 8px;
    animation: pulse-green 2s infinite;
    justify-content: center; 
  }
  .value-savings-text {
    display: flex;
    align-items: center;
    justify-content: center;           /* center text + icon */
    text-align: center;
    width: 100%;
  }
  @keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.3); }
    70% { box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
    100% { box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
  }

.try-on-btn {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    padding: 6px 10px;
    border: none;
    text-align: center;
    display: block;
    width: 50%;
    margin: 8px auto 0 auto;   /* 🔥 centers the button */
    transition: 0.25s ease;
}

.try-on-btn:hover {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(30, 64, 175, 0.3);
}

.plp-nav-btn {
    background: #000;                    /* Pure black */
    color: #fff;                         /* White text */
    font-weight: 600;
    border-radius: 6px;
    padding: 8px 14px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}

.plp-nav-btn:hover {
    background: #222;                    /* Slightly lighter black */
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.plp-prev-btn {
    float: left;
}

.plp-next-btn {
    float: right;
}
.plp-nav-btn:disabled {
    background: #888 !important;  /* Greyed out */
    color: #ddd !important;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    opacity: 0.6;
}

.pc-title {
    margin-top: 0 !important;   /* removes browser default */
    margin-bottom: 1rem;        /* controlled spacing */
    padding-top: 0;
  }
  /* SEO-safe visually hidden H1 */
  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

/* ---------------- Collection Cover Spacing ---------------- */
.collection-cover {
  margin-bottom: 1.5rem;   /* desktop spacing */
}

@media (max-width: 767px) {
  .collection-cover {
    margin-bottom: 1rem;   /* slightly tighter on mobile */
  }
}

.collection-cover picture,
.collection-cover img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 767px) {
  .collection-cover img {
    max-height: 260px;   /* mobile visual control */
    object-fit: cover;
  }
}
