/* Gift with Purchase Banner - PDP */
.pdp-gwp {
  display: flex;
  gap: 6px;
  align-items: flex-start;
  padding: 6px;
  background: linear-gradient(90deg, rgba(11, 109, 56, 0.1) 0%, rgba(11, 109, 56, 0.1) 100%), 
              linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.pdp-gwp__image {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  position: relative;
}

.pdp-gwp__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.pdp-gwp__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
  width: 208px;
}

.pdp-gwp__label {
  font-family: var(--galls-font-gt-america-standard) !important;
  font-weight: 700;
  font-size: 12px;
  line-height: normal;
  color: #0b6d38;
  margin: 0;
  height: 15px;
}

.pdp-gwp__title {
  font-family: var(--galls-font-gt-america-standard) !important;
  font-weight: 500;
  font-size: 12px;
  line-height: normal;
  color: #000000;
  margin: 0;
  height: 15px;
  text-wrap: nowrap;
  text-decoration: none;
}

.pdp-gwp__title:hover,
.pdp-gwp a:hover {
  text-decoration: underline;
}

.pdp-gwp__price {
  display: flex;
  gap: 3px;
  align-items: flex-start;
  font-size: 12px;
  line-height: normal;
}

.pdp-gwp__price-original {
  font-family: var(--galls-font-gt-america-standard) !important;
  font-weight: 400;
  color: #616161;
  text-decoration: line-through;
  text-decoration-skip-ink: none;
  text-underline-position: from-font;
}

.pdp-gwp__price-free {
  font-family: var(--galls-font-gt-america-standard) !important;
  font-weight: 700;
  color: #0b6d38;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .pdp-gwp {
    padding: 8px;
  }
  
  .pdp-gwp__content {
    width: auto;
    flex: 1;
  }
}

/* USP only */
.site_USP .pdp-gwp {
  margin-top: 10px;
}
