/* Platform Override Styles */

.starbuy-product-preview {
  display: none;
}

div#CustomerRewardPane {
  display: none !important;
}

#firstdetails > div.productColourPicker {
  order: -1;
}

/* div#product_just_stars {
  display: none;
} */

a.kl.kl-cta {
    display: none !important;
}

.finance-output{
  display: none !important;
}

div#seconddetails {
  order: 3;
}

.cc-lookup-service-wrapper {
  order: 4;
}

/* Style .productSize as a card to match the sidepanel accordions */
.col-1:has(.productSize){
  margin-bottom: 0 !important;
}

.productSize {
  border: 1px solid var(--pdpSidePanel-border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  min-width: 100%;
  padding: 0 14px;
  margin-bottom: 5px;
}

.productSize a.accordionTrigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pdpSidePanel-accent);
  text-decoration: none;
  background: transparent;
  border: none;
  min-width: 100% !important;
}

/* Icon — soft brand-green pill with a ruler icon (replaces the
   platform's ::before icon so it matches the accordion headers) */
.productSize a.accordionTrigger::before {
  content: '';
  display: flex;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--pdpSidePanel-brand-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%235c8a2a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21.3 15.3a2.4 2.4 0 0 1 0 3.4l-2.6 2.6a2.4 2.4 0 0 1-3.4 0L2.7 8.7a2.41 2.41 0 0 1 0-3.4l2.6-2.6a2.41 2.41 0 0 1 3.4 0Z'/%3E%3Cpath d='m14.5 12.5 2-2'/%3E%3Cpath d='m11.5 9.5 2-2'/%3E%3Cpath d='m8.5 6.5 2-2'/%3E%3Cpath d='m17.5 15.5 2-2'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 16px 16px !important;
  filter: none !important;
}

/* Right-pointing arrow — matches starbuys */
.productSize a.accordionTrigger::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #999;
  border-bottom: 1.5px solid #999;
  transform: rotate(-45deg) translateY(-1px);
  margin-left: auto;
  flex-shrink: 0;
}

.productSize a:hover::before{
  filter: none !important;
}

#firstdetails > div.cc-lookup-service-wrapper{
  margin-top: 1rem;
}

.starbuy-drawer[data-drawer-number="1"]{
  z-index: 1500 !important;
}
/* =============================================================================
   PDP Sidepanel
   Styles for the accordion CTA panel (rewards, Klarna, delivery, starbuys,
   coupons, contact) and the signpost toggles.

   All classes are namespaced with "pdpSidePanel-" to prevent collisions with
   host-site stylesheets.
   ============================================================================= */

/* -----------------------------------------------------------------------------
   Custom properties — adjust per deployment
   ----------------------------------------------------------------------------- */
:root {
  --pdpSidePanel-accent:           #1a1a1a;
  --pdpSidePanel-accent-subtle:    #f7f7f7;
  --pdpSidePanel-border:           #e5e5e5;
  --pdpSidePanel-radius:           0px;
  --pdpSidePanel-radius-card:      0px;
  --pdpSidePanel-font:             inherit;

  --pdpSidePanel-rewards-bg:       transparent;
  --pdpSidePanel-double-bg:        transparent;
  --pdpSidePanel-triple-bg:        transparent;
  --pdpSidePanel-free-delivery-bg: transparent;
  --pdpSidePanel-coupons-bg:       transparent;

  --pdpSidePanel-pip-bg:           #f5f5f5;
  --pdpSidePanel-pip-bg-hover:     #e5e5e5;

  --pdpSidePanel-copy-btn-bg:      #92c849;
  --pdpSidePanel-copy-btn-color:   #fff;

  /* Taunton Leisure brand green (#92c849) + gradient palette derived from it */
  --pdpSidePanel-brand:               #92c849;    /* main brand green */
  --pdpSidePanel-brand-dark:          #5c8a2a;    /* readable green for link/CTA text */
  --pdpSidePanel-brand-darker:        #476b1e;    /* hover text */
  --pdpSidePanel-brand-soft:          #eef6e1;    /* soft tint */
  --pdpSidePanel-icon-gradient:       linear-gradient(135deg, #a6d466 0%, #79b534 100%); /* icon pills */
  --pdpSidePanel-icon-gradient-soft:  linear-gradient(135deg, #f2f9e8 0%, #dcefc2 100%); /* soft pills */

  /* Aliases kept for the expert-advice card rules */
  --pdpSidePanel-green:            #5c8a2a;
  --pdpSidePanel-green-hover:      #476b1e;
  --pdpSidePanel-green-soft:       #eef6e1;
}


/* =============================================================================
   Layout
   ============================================================================= */

.pdpSidePanel-detail {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}


/* =============================================================================
   Accordion — base
   ============================================================================= */

.pdpSidePanel-accordions {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-top: none;
}

/* Every dropdown is a rounded, subtly-bordered card */
.pdpSidePanel-accordion {
  border: 1px solid var(--pdpSidePanel-border);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  padding: 0 14px;
}

/* Hide the native checkbox */
.pdpSidePanel-accordion > input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Accordion header */
.pdpSidePanel-accordion__header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  cursor: pointer;
  user-select: none;
  font-family: var(--pdpSidePanel-font);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pdpSidePanel-accent);
}

/* Chevron via ::after */
.pdpSidePanel-accordion__header::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid #999;
  border-bottom: 1.5px solid #999;
  transform: rotate(45deg) translateY(-2px);
  margin-left: auto;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

/* Rotate chevron when open */
.pdpSidePanel-accordion > input[type="checkbox"]:checked ~ .pdpSidePanel-accordion__header::after {
  transform: rotate(-135deg) translateY(-2px);
}

/* Icon — soft circular pill tinted in the brand green */
.pdpSidePanel-accordion__header .pdpSidePanel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--pdpSidePanel-brand-soft);
  color: var(--pdpSidePanel-brand-dark);
}

.pdpSidePanel-accordion__header .pdpSidePanel-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

/* Content panel — hidden by default */
.pdpSidePanel-accordion__content {
  display: none;
  padding: 0 0 13px;
  border-top: none;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #555;
}

.pdpSidePanel-accordion > input[type="checkbox"]:checked ~ .pdpSidePanel-accordion__content {
  display: block;
}

.pdpSidePanel-accordion__content p {
  margin: 0 0 8px;
}

.pdpSidePanel-accordion__content p:last-child {
  margin-bottom: 0;
}

.pdpSidePanel-accordion__content a {
  color: var(--pdpSidePanel-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pdpSidePanel-accordion__content a:hover {
  opacity: 0.7;
}

/* CTA links inside content */
.pdpSidePanel-accordion__content a.pdpSidePanel-delivery-link,
.pdpSidePanel-accordion__content a.pdpSidePanel-rewards-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--pdpSidePanel-accent);
}

.pdpSidePanel-accordion__content a.pdpSidePanel-delivery-link:hover,
.pdpSidePanel-accordion__content a.pdpSidePanel-rewards-link:hover {
  opacity: 0.6;
}


/* =============================================================================
   Accordion — variant: rewards
   ============================================================================= */

/* Highlighted rewards card */
#cta-cr {
  background: linear-gradient(180deg, var(--pdpSidePanel-brand-soft) 0%, #fbfdf7 100%);
  border-color: #cfe6a8;
}

#cta-cr .pdpSidePanel-accordion__header {
  font-weight: 700;
}

/* Solid brand-green icon pill to make rewards stand out */
#cta-cr .pdpSidePanel-accordion__header .pdpSidePanel-icon {
  background: var(--pdpSidePanel-brand);
  color: #fff;
}


/* =============================================================================
   Accordion — variant: starbuys (link-style, no checkbox toggle)
   ============================================================================= */

#cta-starbuys a {
  display: block;
  text-decoration: none;
  color: inherit;
}

#cta-starbuys .pdpSidePanel-accordion__header {
  pointer-events: none;
}

/* Right-pointing arrow in place of chevron */
#cta-starbuys .pdpSidePanel-accordion__header::after,
#cta-reviews .pdpSidePanel-accordion__header::after {
  transform: rotate(-45deg) translateY(-1px);
}

#cta-reviews a {
  display: block;
  text-decoration: none;
  color: inherit;
}

#cta-reviews .pdpSidePanel-accordion__header {
  pointer-events: none;
}

/* Finance provider tabs */
.pdpSidePanel-finance-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 16px;
}

.pdpSidePanel-finance-tab {
  flex: 1;
  text-align: center;
  padding: 9px 8px;
  border: 1px solid #e5e5e5;
  border-bottom: none;
  margin-bottom: -1px;
  background: #f7f7f7;
  font-family: var(--pdpSidePanel-font);
  font-size: 0.75rem;
  font-weight: 400;
  cursor: pointer;
  color: #888;
  transition: color 0.15s ease, background 0.15s ease;
  user-select: none;
}

.pdpSidePanel-finance-tab + .pdpSidePanel-finance-tab {
  border-left: none;
}

.pdpSidePanel-finance-tab:hover {
  background: #efefef;
  color: #1a1a1a;
}

.pdpSidePanel-finance-tab--active {
  background: #fff;
  color: #1a1a1a;
  font-weight: 500;
  border-bottom-color: #fff;
}

.pdpSidePanel-finance-tab--hidden {
  display: none;
}

/* Finance content panels */
.pdpSidePanel-finance-panel {
  display: none;
}

.pdpSidePanel-finance-panel--active {
  display: block;
  padding-top: 4px;
}

.pdpSidePanel-klarna-details {
  padding: 4px 0;
}

/* PayPal panel fine print */
.pdpSidePanel-paypal-terms {
  font-size: 0.72rem !important;
  color: #888 !important;
  line-height: 1.55;
  margin-top: 8px;
}

.pdpSidePanel-paypal-terms a {
  color: #0070ba !important;
}


/* Novuna panel — mirror iframe wrapper */
#pdpSidePanel-novuna-content iframe {
  display: block;
  width: 100%;
  border: none;
}


/* =============================================================================
   Colour swatches
   ============================================================================= */

.pdpSidePanel-colour-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pdpSidePanel-colour-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: var(--pdpSidePanel-accent);
}

.pdpSidePanel-colour-swatch img {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 2px solid transparent;
  outline: 2px solid transparent;
  object-fit: cover;
  transition: outline-color 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}

.pdpSidePanel-colour-swatch:hover img {
  outline-color: var(--pdpSidePanel-border);
  transform: scale(1.07);
}

.pdpSidePanel-colour-swatch--active img {
  border-color: var(--pdpSidePanel-accent);
  outline-color: var(--pdpSidePanel-accent);
  outline-offset: 1px;
}

.pdpSidePanel-colour-swatch__name {
  font-size: 0.6875rem;
  text-align: center;
  line-height: 1.2;
  max-width: 54px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: #777;
}

.pdpSidePanel-colour-swatch--active .pdpSidePanel-colour-swatch__name {
  font-weight: 700;
  color: var(--pdpSidePanel-accent);
}


/* =============================================================================
   Coupon items
   ============================================================================= */

.pdpSidePanel-coupon-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-bottom: 1px solid var(--pdpSidePanel-border);
  padding-block: .8rem;
}

.pdpSidePanel-coupon-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pdpSidePanel-coupon-item__code-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pdpSidePanel-coupon-code {
  display: inline-block;
  padding: 3px 10px;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  font-size: 0.9375rem;
  letter-spacing: 0.06em;
  font-family: monospace;
  color: #1a1a1a;
}

.pdpSidePanel-coupon-copy {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.pdpSidePanel-coupon-copy:hover {
  opacity: 0.82;
  text-decoration: none;
  /* color: var(--pdpSidePanel-copy-btn-color); */
}

.pdpSidePanel-coupon-desc {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--pdpSidePanel-accent);
}

.pdpSidePanel-coupon-how {
  font-size: 0.75rem;
  color: #888;
  line-height: 1.5;
}


/* =============================================================================
   "Why buy" title
   ============================================================================= */

p.pdpSidePanel-reasons {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pdpSidePanel-brand-dark);
  margin: 0 0 12px;
}


/* =============================================================================
   Expert advice — "Need Help Choosing the Right Gear?"
   Standalone rounded card that overrides the flat accordion styling.
   Scoped to #cta-talk so other accordions are unaffected.
   ============================================================================= */

/* Header — bold title (shares the base card + brand icon pill) */
#cta-talk .pdpSidePanel-accordion__header {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1a1a1a;
}

/* Content — acts as a query container so the options reflow to the
   space actually available (not the viewport width) */
#cta-talk .pdpSidePanel-accordion__content {
  padding: 0 0 13px;
  color: #333;
  container-type: inline-size;
  container-name: pdpContact;
}

.pdpSidePanel-contact-intro {
  margin: 0 0 14px !important;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #333;
}

/* Options grid — one row on desktop.
   Dividers are the grid's own background showing through 1px gaps, so no
   borders live on the (anchor) tiles — nothing can shift on hover. */
.pdpSidePanel-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--pdpSidePanel-border);
  border-top: 1px solid var(--pdpSidePanel-border);
  border-bottom: 1px solid var(--pdpSidePanel-border);
}

.pdpSidePanel-contact-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  padding: 12px 8px;
  text-decoration: none !important;
  color: inherit;
  background: #fff;
}

/* Keep option tiles completely static in every interaction state
   (cancels the generic content-link hover fade + any host-site a:hover
   border/underline/background styling that bleeds in) */
#cta-talk .pdpSidePanel-accordion__content a.pdpSidePanel-contact-option,
#cta-talk .pdpSidePanel-accordion__content a.pdpSidePanel-contact-option:hover,
#cta-talk .pdpSidePanel-accordion__content a.pdpSidePanel-contact-option:focus,
#cta-talk .pdpSidePanel-accordion__content a.pdpSidePanel-contact-option:active,
#cta-talk .pdpSidePanel-accordion__content a.pdpSidePanel-contact-option:visited {
  opacity: 1;
  background: #fff;
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none !important;
}


.pdpSidePanel-contact-option__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--pdpSidePanel-brand-soft);
  color: var(--pdpSidePanel-brand-dark);
  margin-bottom: 2px;
}

.pdpSidePanel-contact-option__icon svg {
  width: 18px;
  height: 18px;
}

.pdpSidePanel-contact-option__title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1a1a1a;
}

.pdpSidePanel-contact-option__desc {
  font-size: 0.6875rem;
  line-height: 1.45;
  color: #555;
}

.pdpSidePanel-contact-option__cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--pdpSidePanel-green);
}

.pdpSidePanel-contact-option__arrow {
  display: inline-flex;
  align-items: center;
}

.pdpSidePanel-contact-option__arrow svg {
  width: 13px;
  height: 13px;
}

/* Trust bar */
.pdpSidePanel-contact-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 11px 14px;
  background: var(--pdpSidePanel-brand-soft);
  border-radius: 8px;
}

.pdpSidePanel-contact-trust__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pdpSidePanel-brand-dark);
}

.pdpSidePanel-contact-trust__icon svg {
  width: 20px;
  height: 20px;
}

.pdpSidePanel-contact-trust__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pdpSidePanel-contact-trust__text strong {
  font-size: 0.75rem;
  color: #1a1a1a;
}

.pdpSidePanel-contact-trust__text span {
  font-size: 0.6875rem;
  line-height: 1.5;
  color: #555;
}

/* Responsive — reflow based on the card's own width, so it scales
   gracefully in a narrow side panel regardless of viewport size.
   The 1px grid gap draws all dividers automatically, so only the
   column count changes at each step. */

/* Two columns when there isn't room for four across */
@container pdpContact (max-width: 460px) {
  .pdpSidePanel-contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Single column on very narrow panels */
@container pdpContact (max-width: 280px) {
  .pdpSidePanel-contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Fallback for browsers without container query support */
@supports not (container-type: inline-size) {
  @media (max-width: 768px) {
    .pdpSidePanel-contact-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
}


/* =============================================================================
   Signpost toggles
   ============================================================================= */

.pdpSidePanel-hps-st-toggle {
  display: block;
}

.pdpSidePanel-hps-st-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid #d0d0d0;
  border-radius: 2px;
  padding: 5px 13px;
  font-size: 0.8125rem;
  font-weight: 400;
  cursor: pointer;
  color: var(--pdpSidePanel-accent);
  transition: border-color 0.15s ease;
}

.pdpSidePanel-hps-st-toggle-btn:hover {
  border-color: #999;
}

.pdpSidePanel-hps-st-toggle-btn[aria-expanded="true"] {
  background: var(--pdpSidePanel-accent);
  color: #fff;
  border-color: var(--pdpSidePanel-accent);
}

.pdpSidePanel-hps-st-toggle-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.pdpSidePanel-hps-st-toggle-list[hidden] {
  display: none;
}

.pdpSidePanel-hps-st-toggle-list a {
  display: inline-block;
  padding: 4px 12px;
  background: var(--pdpSidePanel-pip-bg);
  border-radius: 20px;
  font-size: 0.8125rem;
  color: var(--pdpSidePanel-accent);
  text-decoration: none;
  transition: background 0.15s ease;
}

.pdpSidePanel-hps-st-toggle-list a:hover {
  background: var(--pdpSidePanel-pip-bg-hover);
}


/* =============================================================================
   Utility
   ============================================================================= */

.pdpSidePanel-weight-bold {
  font-weight: 700;
}

.pdpSidePanel-zflex {
  display: flex;
  flex-direction: column;
}

.pdpSidePanel-col-1 {
  width: 100%;
}


/* =============================================================================
   Platform coupon block — #detailfast-coupons
   Restyled to match the sidepanel minimal aesthetic
   ============================================================================= */

#detailfast-coupons {
  font-family: inherit;
  font-size: 0.8125rem;
  color: #1a1a1a;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 0;
}

.coupon-preview {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding: 14px 0 !important;
  border: none !important;
  border-radius: 0 !important;
}

.coupon-preview:hover .coupon-view-icon {
  opacity: 1;
}

.coupon-preview-label {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  flex: 1 !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

.coupon-preview-label .coupon-description {
  font-size: 0.875rem !important;
  font-weight: 400 !important;
  color: #1a1a1a !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.coupon-icon {
  display: block !important;
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
  opacity: 0.45 !important;
}

.coupon-code-wrapper {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-shrink: 0 !important;
}

.coupon-code {
  display: inline-block !important;
  padding: 3px 10px !important;
  background: #f7f7f7 !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 2px !important;
  font-size: 0.8125rem !important;
  letter-spacing: 0.06em !important;
  font-family: monospace !important;
  color: #1a1a1a !important;
  font-weight: 400 !important;
  user-select: all;
}

/* Override feather font icon — replace with green copy button */
.coupon-copy-icon {
  font-family: inherit !important;
  font-size: 0 !important;
  display: block !important;
  width: 28px !important;
  height: 28px !important;
  cursor: pointer !important;
  background-color: #92c849 !important;
  border-radius: 2px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cg fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3E%3Crect width='13' height='13' x='9' y='9' rx='2'/%3E%3Cpath d='M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1'/%3E%3C/g%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 15px 15px !important;
  transition: opacity 0.15s ease !important;
  opacity: 1 !important;
}

.coupon-copy-icon::before {
  content: '' !important;
}

.coupon-copy-icon:hover {
  opacity: 0.75 !important;
}

/* Copied state — tick icon */
.coupon-copy-icon[data-active="true"] {
  background-color: #5a8a3a !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") !important;
}

.coupon-copy-icon[data-active="true"]:hover {
  opacity: 1 !important;
  cursor: default !important;
}

.coupon-copy-icon[data-active="true"]::before {
  content: '' !important;
}

/* Hide the view/arrow icon — not needed in this context */
.coupon-view-icon {
  display: none !important;
}

