.sp-layout {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.sp-gallery {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    flex: 1;
}
.sp-gallery-thumbs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 80px;
}
.sp-gallery-thumbs img {
    border: 2px solid #eee;
    border-radius: 6px;
    cursor: pointer;
}
.sp-thumb:hover {
    border: 2px solid #FD7338;
    border-radius: 9px;
}
.sp-thumb.selected {
    border: 2px solid #FD7338;
    border-radius: 9px;
}
.sp-featured-image {
    max-width: 350px;
    border-radius: 10px;
}
.sp-summary {
    flex: 1;
}
.sp-title {
    font-family: 'techna-sans';
    font-weight: 400;
    font-size: 34px;
    line-height: 120%;
    letter-spacing: -3%;
    margin-bottom: 10px;
}
.jdgm-preview-badge {
    margin-bottom: 10px;
}
.sp-price {
    font-family: 'techna-sans';
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    letter-spacing: -1%;
    margin-bottom: 10px;
}
.sp-shipping {
    font-family: 'techna-sans';
	color: #2B2B2B;
	text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: -1%;
    margin-bottom: 10px;
}
.sp-shipping .sp-shipping-price {
	border-bottom: 1px solid #2B2B2B;
}
.sp-shipping::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url(../img/truck.png); 
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: middle;
  margin-right: 5px;
}
.variant-buttons button {
    border: 1px solid #828282 !important;
    background: inherit !important;
    padding: 8px 12px;
    border-radius: 6px;
    margin-right: 5px;
    cursor: pointer;
    color: #828282 !important;
}
.variant-buttons button:hover {
    border-color: #FD7338 !important;
    color: #FD7338 !important;
    background: inherit !important;
}
.variant-buttons button.selected {
    border-color: #FD7338 !important;
    color: #FD7338 !important;
}
.sp-quantity {
    margin: 15px 0;
}
.qty-controls {
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: 13rem;
    border: 1px solid #9CA3AF;
    border-radius: 9px;
}
.qty-controls input {
    background: inherit !important;
}
.qty-controls button {
    width: 28px;
    height: 28px;
    font-size: 18px;
    background: inherit !important;
    cursor: pointer;
    border-radius: 4px;
}
.qty-controls button:hover {
    color: #FD7338 !important;
}
.quantity-wrapper {
    display: flex;
    gap: 24px;
}
.sp-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sp-add-to-cart, .sp-buy-now {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    border: 1px solid #ff6a00;
    border-radius: 9px !important;
    cursor: pointer;
}
.sp-add-to-cart {
    background: #fff;
    color: #ff6a00;
}
.sp-buy-now {
    background: #FD7338 !important;
    color: #fff !important;
}
.sp-add-to-cart:hover { background: #ffefdf; }
.sp-buy-now:hover { filter: brightness(120%); }
#shopify-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #2a7c46;
  color: #fff;
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9999;
}
#shopify-notification.show {
  opacity: 1;
  transform: translateY(0);
}
#shopify-notification.error {
  background: #c0392b;
}
@media screen and (max-width: 767px) {
    .sp-layout {
        flex-direction: column;
    }
    .sp-gallery {
        flex-direction: column-reverse;
    }
    .sp-gallery-thumbs {
        flex-direction: row;
    }
}