/* =============================================================================
   Rewards Points — standalone card styles
   Namespaced with "pdpRewards-" to avoid collisions.
   ============================================================================= */

   :root {
    --pdpRewards-bg:            #f7f7f5;   /* warm off-white       */
    --pdpRewards-double-bg:     #f7f7f5;   /* slightly deeper      */
    --pdpRewards-triple-bg:     #f7f7f5;   /* deeper still         */
    --pdpRewards-border:        #deddd8;   /* neutral grey         */
    --pdpRewards-double-border: #deddd8;
    --pdpRewards-triple-border: #deddd8;
    --pdpRewards-accent:        #a0c454;   /* brand green — icons only */
    --pdpRewards-text:          #1a1a1a;   /* near-black           */
    --pdpRewards-radius: 5px;
  }
  
  
  /* -----------------------------------------------------------------------------
     Card
     ----------------------------------------------------------------------------- */
  
  .pdpRewards {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 18px 20px !important;
    background: var(--pdpRewards-bg);
    border: 1px solid var(--pdpRewards-border);
    border-radius: var(--pdpRewards-radius);
    margin-bottom: 6px !important;
  }
  
  .pdpRewards.pdpRewards--double {
    background: var(--pdpRewards-double-bg);
    border-color: var(--pdpRewards-double-border);
  }
  
  .pdpRewards.pdpRewards--triple,
  .pdpRewards.pdpRewards--promo {
    background: var(--pdpRewards-triple-bg);
    border-color: var(--pdpRewards-triple-border);
    max-width: 1200px;
  }
  
  
  /* -----------------------------------------------------------------------------
     Header row (icon + earn label + link pushed right)
     ----------------------------------------------------------------------------- */

  .pdpRewards-header {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .pdpRewards-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(160, 196, 84, 0.12);
    color: var(--pdpRewards-accent);
  }

  .pdpRewards-icon svg {
    display: block;
    width: 22px;
    height: 22px;
  }

  .pdpRewards-earn {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pdpRewards-text);
    flex: 1;
  }
  
  
  /* -----------------------------------------------------------------------------
     Body
     ----------------------------------------------------------------------------- */
  
  .pdpRewards-body {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--pdpRewards-border);
  }
  
  .pdpRewards-intro {
    margin: 0;
    font-size: .9rem;
    line-height: 1.6;
    color: #3a3a3a;
  }
  
  .pdpRewards-note {
    margin: 0;
    font-size: 0.75rem;
    line-height: 1.55;
    color: #555;
  }
  
  .pdpRewards-link {
    display: inline-block;
    flex-shrink: 0;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    white-space: nowrap;
    color: #555;
    transition: opacity 0.15s ease;
  }

  .pdpRewards-link:hover {
    opacity: 0.6;
  }
  