/* ============================================
   Advanced Minimal Single Product - Black/White
   ============================================ */

/* Main Container */
.product-detail-page {
    width: 100%;
    min-height: 100vh;
    padding: 50px 24px 80px;
    background: #fff;
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.product-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Product Layout */
.sp {
    width: 100%;
}

.sp__wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Gallery Section */
.sp__gallery {
    position: sticky;
    top: 100px;
    width: 100%;
}

.sp__badges {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sp__badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sp__badge--sale {
    background: #000;
    color: #fff;
}

.sp__badge--new {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

.sp__main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f8f8f8;
    cursor: zoom-in;
}

.sp__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sp__main-image:hover .sp__image {
    transform: scale(1.05);
}

.sp__zoom-hint {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sp__main-image:hover .sp__zoom-hint {
    opacity: 1;
}

/* Thumbnails */
.sp__thumbs-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.sp__thumbs-nav {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000;
    transition: all 0.2s ease;
}

.sp__thumbs-nav:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.sp__thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
}

.sp__thumbs::-webkit-scrollbar {
    display: none;
}

.sp__thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    padding: 0;
    border: 2px solid transparent;
    background: #f8f8f8;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.2s ease;
}

.sp__thumb:hover {
    border-color: #999;
}

.sp__thumb--active {
    border-color: #000;
}

.sp__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Product Info */
.sp__info {
    padding-top: 0 !important;
    background: #fff !important;
    position: relative !important;
}

.sp__category {
    font-size: 11px !important;
    color: #888 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    margin-bottom: 16px !important;
    font-weight: 600 !important;
    display: inline-block !important;
    padding-bottom: 8px !important;
    border-bottom: 2px solid #000 !important;
}

.sp__category a {
    color: #888 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.sp__category a:hover {
    color: #000 !important;
}

.sp__title {
    font-size: 36px !important;
    font-weight: 700 !important;
    color: #000 !important;
    margin: 0 0 24px 0 !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
    position: relative !important;
    padding-bottom: 24px !important;
}

.sp__title::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    right: 0 !important;
    width: 60px !important;
    height: 3px !important;
    background: linear-gradient(90deg, #000, #666) !important;
}

/* Rating */
.sp__rating {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
    padding: 16px 20px !important;
    background: #f8f8f8 !important;
    border-right: 3px solid #000 !important;
}

.sp__stars {
    display: flex !important;
    gap: 2px !important;
}

.sp__star {
    width: 18px !important;
    height: 18px !important;
    fill: none !important;
    stroke: #ccc !important;
    stroke-width: 1.5 !important;
    transition: all 0.2s ease !important;
}

.sp__star--filled {
    fill: #000 !important;
    stroke: #000 !important;
}

.sp__rating-text {
    font-size: 14px !important;
    color: #000 !important;
    font-weight: 600 !important;
}

/* Price */
.sp__price {
    margin-bottom: 24px !important;
    padding: 24px 0 !important;
    border-bottom: 2px solid #f0f0f0 !important;
}

.sp__price .price {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #000 !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
}

.sp__price .price del {
    font-size: 22px !important;
    color: #999 !important;
    font-weight: 400 !important;
    text-decoration: line-through !important;
}

.sp__price .price ins {
    text-decoration: none !important;
    position: relative !important;
}

.sp__price .price ins::before {
    content: '' !important;
    position: absolute !important;
    bottom: -8px !important;
    right: 0 !important;
    width: 100% !important;
    height: 2px !important;
    background: #000 !important;
}

/* Short Description */
.sp__short-desc {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: #333 !important;
    margin-bottom: 32px !important;
    padding: 28px 28px 28px 24px !important;
    background: linear-gradient(135deg, #fafafa 0%, #fff 100%) !important;
    border-left: 4px solid #000 !important;
    border-right: none !important;
    position: relative !important;
    border-radius: 4px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
    overflow: hidden !important;
}

.sp__short-desc::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    width: 100px !important;
    height: 100px !important;
    background: rgba(0, 0, 0, 0.02) !important;
    border-radius: 50% !important;
    transform: translate(30%, -30%) !important;
}

.sp__short-desc::after {
    content: '"' !important;
    position: absolute !important;
    top: -20px !important;
    right: 16px !important;
    font-size: 120px !important;
    color: rgba(0, 0, 0, 0.05) !important;
    font-family: Georgia, serif !important;
    font-weight: 700 !important;
    line-height: 0.5 !important;
    z-index: 0 !important;
}

.sp__short-desc p {
    margin: 0 0 16px 0 !important;
    position: relative !important;
    z-index: 1 !important;
    font-weight: 500 !important;
}

.sp__short-desc p:first-child {
    font-weight: 600 !important;
    color: #000 !important;
    font-size: 17px !important;
}

.sp__short-desc p:last-child {
    margin-bottom: 0 !important;
}

/* Stock Status */
.sp__stock {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    margin-bottom: 32px !important;
    padding: 14px 20px !important;
    background: #f8f8f8 !important;
    border-right: 3px solid #000 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
}

.sp__stock svg {
    width: 18px !important;
    height: 18px !important;
}

.sp__stock--instock {
    color: #000 !important;
    border-right-color: #22c55e !important;
}

.sp__stock--instock svg {
    stroke: #22c55e !important;
}

.sp__stock--outofstock {
    color: #999 !important;
    border-right-color: #ef4444 !important;
}

.sp__stock--outofstock svg {
    stroke: #ef4444 !important;
}

.sp__stock--onbackorder {
    color: #666 !important;
    border-right-color: #f59e0b !important;
}

.sp__stock--onbackorder svg {
    stroke: #f59e0b !important;
}

/* Add to Cart Section */
.sp__cart {
    margin-bottom: 24px !important;
}

.sp__cart form.cart {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
}

/* Variations - Radio Button Style */
.sp__cart .variations {
    width: 100% !important;
    border-collapse: collapse !important;
}

.sp__cart .variations tr {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
}

.sp__cart .variations td {
    padding: 0 !important;
    border: none !important;
}

.sp__cart .variations label {
    display: block !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #000 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 12px !important;
}

/* Hide default select dropdown */
.sp__cart .variations select {
    display: none !important;
}

/* Custom Radio Button Container */
.sp__cart .variations .variation-radios {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

/* Radio Button Style */
.sp__cart .variations .variation-radio {
    position: relative !important;
    flex: 0 0 auto !important;
}

.sp__cart .variations .variation-radio input[type="radio"] {
    position: absolute !important;
    opacity: 0 !important;
    cursor: pointer !important;
}

.sp__cart .variations .variation-radio-label {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 60px !important;
    height: 48px !important;
    padding: 0 20px !important;
    background: #fff !important;
    border: 2px solid #e0e0e0 !important;
    color: #000 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    position: relative !important;
    text-align: center !important;
}

.sp__cart .variations .variation-radio-label:hover {
    border-color: #000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

.sp__cart .variations .variation-radio input[type="radio"]:checked + .variation-radio-label {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.2) !important;
}

.sp__cart .variations .variation-radio input[type="radio"]:checked + .variation-radio-label::before {
    content: '✓' !important;
    position: absolute !important;
    top: -8px !important;
    right: -8px !important;
    width: 20px !important;
    height: 20px !important;
    background: #22c55e !important;
    color: #fff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 12px !important;
    font-weight: 700 !important;
}

/* Color Variations */
.sp__cart .variations .variation-radio.variation-color .variation-radio-label {
    width: 48px !important;
    height: 48px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    min-width: auto !important;
    overflow: hidden !important;
    position: relative !important;
}

.sp__cart .variations .variation-radio.variation-color .variation-radio-label::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    border-radius: 50% !important;
    box-shadow: inset 0 0 0 2px rgba(0,0,0,0.1) !important;
}

.sp__cart .variations .variation-radio.variation-color input[type="radio"]:checked + .variation-radio-label {
    box-shadow: 0 0 0 3px #000, 0 6px 16px rgba(0,0,0,0.2) !important;
}

.sp__cart .variations .variation-radio.variation-color input[type="radio"]:checked + .variation-radio-label::before {
    top: 50% !important;
    right: 50% !important;
    transform: translate(50%, -50%) !important;
}

/* Out of Stock Variation */
.sp__cart .variations .variation-radio.out-of-stock .variation-radio-label {
    opacity: 0.4 !important;
    cursor: not-allowed !important;
    position: relative !important;
}

.sp__cart .variations .variation-radio.out-of-stock .variation-radio-label::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    right: 0 !important;
    width: 100% !important;
    height: 2px !important;
    background: #ef4444 !important;
    transform: translateY(-50%) rotate(-45deg) !important;
}

.sp__cart .variations .variation-radio.out-of-stock:hover .variation-radio-label {
    transform: none !important;
    border-color: #e0e0e0 !important;
}

/* Reset Variations Link */
.sp__cart .reset_variations {
    display: inline-block !important;
    margin-top: 12px !important;
    font-size: 13px !important;
    color: #666 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
    cursor: pointer !important;
}

.sp__cart .reset_variations:hover {
    color: #000 !important;
    text-decoration: underline !important;
}

/* Quantity */
.sp__cart .quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid #e0e0e0;
}

.sp__cart .quantity .qty {
    width: 60px;
    height: 50px;
    border: none;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    background: #fff;
    -moz-appearance: textfield;
}

.sp__cart .quantity .qty::-webkit-outer-spin-button,
.sp__cart .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Add to Cart Button - Enhanced Black Design */
.sp__cart .single_add_to_cart_button,
.sp__cart button[type="submit"],
.woocommerce-variation-add-to-cart button.single_add_to_cart_button,
button.single_add_to_cart_button {
    width: 100% !important;
    height: 64px !important;
    background: #000 !important;
    background-color: #000 !important;
    color: #fff !important;
    border: none !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 2.5px !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
}

/* Ripple Effect on Click */
.sp__cart .single_add_to_cart_button::before {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 0 !important;
    height: 0 !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translate(-50%, -50%) !important;
    transition: width 0.6s ease, height 0.6s ease !important;
}

.sp__cart .single_add_to_cart_button:hover::before {
    width: 400px !important;
    height: 400px !important;
}

/* Hover & Active States */
.sp__cart .single_add_to_cart_button:hover,
.woocommerce-variation-add-to-cart button.single_add_to_cart_button:hover {
    background: #000 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4) !important;
}

.sp__cart .single_add_to_cart_button:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

/* Disabled State - Gray */
.sp__cart .single_add_to_cart_button.disabled,
.sp__cart .single_add_to_cart_button:disabled,
.woocommerce-variation-add-to-cart-disabled .single_add_to_cart_button,
.woocommerce-variation-add-to-cart-disabled button {
    background: #e0e0e0 !important;
    color: #999 !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

.sp__cart .single_add_to_cart_button.disabled:hover,
.sp__cart .single_add_to_cart_button:disabled:hover,
.woocommerce-variation-add-to-cart-disabled .single_add_to_cart_button:hover,
.woocommerce-variation-add-to-cart-disabled button:hover {
    transform: none !important;
    box-shadow: none !important;
    background: #e0e0e0 !important;
}

/* Loading State */
.sp__cart .single_add_to_cart_button.loading::after {
    content: '' !important;
    position: absolute !important;
    right: 20px !important;
    width: 18px !important;
    height: 18px !important;
    border: 3px solid rgba(255, 255, 255, 0.3) !important;
    border-top-color: #fff !important;
    border-radius: 50% !important;
    animation: buttonSpin 0.8s linear infinite !important;
}

@keyframes buttonSpin {
    to { transform: rotate(360deg); }
}

/* Variation Add to Cart Container */
.woocommerce-variation-add-to-cart {
    margin-top: 24px !important;
    padding-top: 24px !important;
    border-top: 2px solid #f0f0f0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.woocommerce-variation-add-to-cart .woocommerce-variation-price {
    margin-bottom: 0 !important;
}

.woocommerce-variation-add-to-cart .woocommerce-variation-price .price {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #000 !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
}

.woocommerce-variation-add-to-cart .woocommerce-variation-price .price del {
    font-size: 22px !important;
    color: #999 !important;
    font-weight: 400 !important;
}

.woocommerce-variation-add-to-cart .woocommerce-variation-price .price ins {
    text-decoration: none !important;
    position: relative !important;
}

.woocommerce-variation-add-to-cart .woocommerce-variation-price .price ins::before {
    content: '' !important;
    position: absolute !important;
    bottom: -8px !important;
    right: 0 !important;
    width: 100% !important;
    height: 2px !important;
    background: #000 !important;
}

/* Action Buttons */
.sp__actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #eee;
}

.sp__action {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #e0e0e0;
    font-size: 12px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    transition: all 0.2s ease;
}

.sp__action:nth-child(3) {
    justify-content: center;
    text-align: center;
}

.sp__action:hover {
    border-color: #000;
}

.sp__action--active {
    background: #000;
    border-color: #000;
    color: #fff;
}

.sp__action--active svg {
    fill: #fff;
}

/* Product Meta */
.sp__meta {
    margin-bottom: 24px;
}

.sp__meta-row {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.sp__meta-label {
    font-weight: 600;
    color: #000;
}

.sp__meta-value a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sp__meta-value a:hover {
    color: #000;
}

/* Guarantees */
.sp__guarantees {
    display: flex;
    gap: 24px;
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.sp__guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #000;
}

.sp__guarantee svg {
    color: #000;
}

/* Product Details/Tabs */
.sp__details {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.sp__tabs-nav {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
}

.sp__tab-btn {
    padding: 16px 0;
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

.sp__tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: #000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.sp__tab-btn:hover {
    color: #000;
}

.sp__tab-btn--active {
    color: #000;
}

.sp__tab-btn--active::after {
    transform: scaleX(1);
}

.sp__tab-panel {
    display: none;
}

.sp__tab-panel--active {
    display: block;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.sp__tab-content {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
}

.sp__tab-content p {
    margin: 0 0 16px 0;
}

/* Specifications Table */
.sp__specs-table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
}

.sp__specs-table tr {
    border-bottom: 1px solid #eee;
}

.sp__specs-table th,
.sp__specs-table td {
    padding: 16px 0;
    font-size: 14px;
    text-align: left;
}

.sp__specs-table th {
    font-weight: 600;
    color: #000;
    width: 40%;
}

.sp__specs-table td {
    color: #555;
}

/* Share Modal */
.sp__modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sp__modal--active {
    opacity: 1;
    visibility: visible;
}

.sp__modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
}

.sp__modal-content {
    position: relative;
    background: #fff;
    padding: 40px;
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.sp__modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    cursor: pointer;
    color: #000;
    padding: 4px;
}

.sp__modal-close:hover {
    opacity: 0.7;
}

.sp__modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin: 0 0 24px 0;
}

.sp__share-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.sp__share-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    color: #000;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.sp__share-link:hover {
    background: #000;
    color: #fff;
}

/* Lightbox */
.sp__lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sp__lightbox--active {
    opacity: 1;
    visibility: visible;
}

.sp__lightbox-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    transition: opacity 0.2s ease;
}

.sp__lightbox-close:hover {
    opacity: 0.7;
}

.sp__lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #000;
    transition: all 0.2s ease;
}

.sp__lightbox-nav:hover {
    background: #000;
    color: #fff;
}

.sp__lightbox-nav--prev {
    left: 24px;
}

.sp__lightbox-nav--next {
    right: 24px;
}

.sp__lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

/* Stock Status Override */
.stock {
    display: none !important;
}

/* WooCommerce Overrides */
.woocommerce-variation-price .price {
    font-size: 24px !important;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
}

.woocommerce div.product form.cart .reset_variations {
    font-size: 12px;
    color: #888;
    text-decoration: none;
    margin-left: 8px;
}

.woocommerce div.product form.cart .reset_variations:hover {
    color: #000;
}

/* ============================================
   RESPONSIVE DESIGN - Tablet & Mobile
   ============================================ */

/* Tablet Landscape (992px - 1024px) */
@media (max-width: 1024px) {
    .sp__wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .sp__gallery {
        position: relative;
        top: 0;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .sp__main-image {
        border-radius: 8px;
        overflow: hidden;
    }
    
    .sp__info {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .sp__guarantees {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .sp__guarantee {
        flex: 1 1 calc(50% - 8px);
        min-width: 200px;
    }
    
    .sp__details {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991.98px) {
    .product-detail-page {
        padding: 40px 20px 60px;
    }
    
    .product-detail-container {
        max-width: 100%;
    }
    
    .sp__wrapper {
        gap: 40px;
    }
    
    .sp__gallery {
        max-width: 100%;
    }
    
    .sp__badges {
        top: 12px;
        right: 12px;
        left: auto;
    }
    
    .sp__badge {
        padding: 5px 10px;
        font-size: 9px;
    }
    
    .sp__thumb {
        width: 70px;
        height: 70px;
    }
    
    .sp__thumbs-wrapper {
        gap: 10px;
        margin-top: 14px;
    }
    
    .sp__title {
        font-size: 30px !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
    }
    
    .sp__category {
        font-size: 10px !important;
        margin-bottom: 14px !important;
    }
    
    .sp__rating {
        padding: 14px 18px !important;
        margin-bottom: 20px !important;
    }
    
    .sp__price {
        padding: 20px 0 !important;
        margin-bottom: 20px !important;
    }
    
    .sp__price .price {
        font-size: 28px !important;
    }
    
    .sp__short-desc {
        padding: 24px 22px 24px 20px !important;
        margin-bottom: 28px !important;
        font-size: 15px !important;
        line-height: 1.75 !important;
    }
    
    .sp__stock {
        padding: 12px 18px !important;
        margin-bottom: 28px !important;
        font-size: 13px !important;
    }
    
    .sp__cart {
        margin-bottom: 20px !important;
    }
    
    .sp__actions {
        gap: 10px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    
    .sp__action {
        padding: 10px 14px;
        font-size: 11px;
    }
    
    .sp__meta {
        margin-bottom: 20px;
    }
    
    .sp__guarantees {
        gap: 14px;
        padding: 18px 0;
    }
    
    .sp__details {
        margin-top: 60px;
        padding-top: 50px;
    }
    
    .sp__tabs-nav {
        gap: 30px;
        margin-bottom: 35px;
    }
    
    .sp__tab-btn {
        font-size: 12px;
        padding: 14px 0;
    }
    
    .sp__tab-content {
        font-size: 14px;
        line-height: 1.75;
    }
    
    .sp__specs-table th,
    .sp__specs-table td {
        padding: 14px 0;
        font-size: 13px;
    }
}

/* Mobile Landscape & Portrait (480px - 767px) */
@media (max-width: 767.98px) {
    .product-detail-page {
        padding: 30px 16px 50px;
    }
    
    .sp__wrapper {
        gap: 35px;
    }
    
    .sp__gallery {
        margin-bottom: 20px;
    }
    
    .sp__badges {
        top: 10px;
        right: 10px;
        gap: 6px;
    }
    
    .sp__badge {
        padding: 4px 8px;
        font-size: 8px;
        letter-spacing: 0.5px;
    }
    
    .sp__main-image {
        border-radius: 6px;
    }
    
    .sp__zoom-hint {
        width: 32px;
        height: 32px;
        bottom: 12px;
        right: 12px;
    }
    
    .sp__zoom-hint svg {
        width: 14px;
        height: 14px;
    }
    
    .sp__thumbs-wrapper {
        gap: 8px;
        margin-top: 12px;
    }
    
    .sp__thumbs-nav {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }
    
    .sp__thumbs-nav svg {
        width: 14px;
        height: 14px;
    }
    
    .sp__thumb {
        width: 64px;
        height: 64px;
        border-width: 2px;
    }
    
    .sp__info {
        width: 100%;
    }
    
    .sp__category {
        font-size: 9px !important;
        margin-bottom: 12px !important;
        padding-bottom: 6px !important;
    }
    
    .sp__title {
        font-size: 26px !important;
        margin-bottom: 18px !important;
        padding-bottom: 20px !important;
        line-height: 1.25 !important;
    }
    
    .sp__title::after {
        width: 50px !important;
        height: 2px !important;
    }
    
    .sp__rating {
        padding: 12px 16px !important;
        margin-bottom: 18px !important;
        gap: 10px !important;
    }
    
    .sp__star {
        width: 16px !important;
        height: 16px !important;
    }
    
    .sp__rating-text {
        font-size: 13px !important;
    }
    
    .sp__price {
        padding: 18px 0 !important;
        margin-bottom: 18px !important;
    }
    
    .sp__price .price {
        font-size: 26px !important;
        gap: 12px !important;
    }
    
    .sp__price .price del {
        font-size: 20px !important;
    }
    
    .sp__short-desc {
        padding: 20px 18px 20px 16px !important;
        margin-bottom: 24px !important;
        font-size: 14px !important;
        line-height: 1.7 !important;
        border-width: 3px !important;
    }
    
    .sp__short-desc::after {
        font-size: 100px !important;
        top: -15px !important;
        right: 12px !important;
    }
    
    .sp__short-desc p:first-child {
        font-size: 16px !important;
    }
    
    .sp__stock {
        padding: 10px 16px !important;
        margin-bottom: 24px !important;
        font-size: 12px !important;
        gap: 8px !important;
    }
    
    .sp__stock svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    .sp__cart {
        margin-bottom: 18px !important;
    }
    
    .sp__cart form.cart {
        gap: 20px !important;
    }
    
    .sp__cart .variations tr {
        margin-bottom: 20px !important;
        gap: 14px !important;
    }
    
    .sp__cart .variations label {
        font-size: 12px !important;
        margin-bottom: 10px !important;
        letter-spacing: 1px !important;
    }
    
    .sp__cart .variations .variation-radios {
        gap: 8px !important;
    }
    
    .sp__cart .variations .variation-radio-label {
        min-width: 55px;
        height: 44px;
        padding: 0 16px;
        font-size: 13px;
    }
    
    .sp__cart .variations .variation-radio.variation-color .variation-radio-label {
        width: 44px;
        height: 44px;
    }
    
    .sp__cart .quantity {
        border-width: 1px;
    }
    
    .sp__cart .quantity .qty {
        width: 55px;
        height: 48px;
        font-size: 14px;
    }
    
    .sp__cart .single_add_to_cart_button,
    .sp__cart button[type="submit"],
    .woocommerce-variation-add-to-cart button.single_add_to_cart_button {
        height: 56px !important;
        font-size: 14px !important;
        letter-spacing: 2px !important;
    }
    
    .sp__actions {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 18px;
        padding-bottom: 18px;
    }
    
    .sp__action {
        flex: 1 1 calc(50% - 4px);
        padding: 12px 10px;
        font-size: 11px;
        min-width: 0;
        min-height: 44px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 4px;
    }
    
    .sp__action svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }
    
    .sp__action span {
        display: block;
        margin-right: 0;
        font-size: 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    
    .sp__meta {
        margin-bottom: 18px;
        padding: 16px;
        background: #f8f8f8;
        border-left: 3px solid #000;
        border-radius: 4px;
    }
    
    .sp__meta-row {
        font-size: 12px;
        margin-bottom: 6px;
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .sp__meta-row:last-child {
        margin-bottom: 0;
    }
    
    .sp__guarantees {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 16px 0;
    }
    
    .sp__guarantee {
        display: flex;
        align-items: center;
        font-size: 11px;
        gap: 10px;
        justify-content: flex-start;
        padding: 12px 16px;
        background: #f8f8f8;
        border-left: 3px solid #000;
        border-radius: 4px;
    }
    
    .sp__guarantee svg {
        width: 18px;
        height: 18px;
    }
    
    .sp__details {
        margin-top: 50px;
        padding-top: 40px;
    }
    
    .sp__tabs-nav {
        gap: 20px;
        margin-bottom: 30px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 2px;
    }
    
    .sp__tabs-nav::-webkit-scrollbar {
        display: none;
    }
    
    .sp__tab-btn {
        font-size: 11px;
        padding: 12px 0;
        white-space: nowrap;
        letter-spacing: 1px;
    }
    
    .sp__tab-content {
        font-size: 14px;
        line-height: 1.7;
    }
    
    .sp__specs-table {
        font-size: 13px;
    }
    
    .sp__specs-table th,
    .sp__specs-table td {
        padding: 12px 0;
        font-size: 12px;
    }
    
    .sp__specs-table th {
        width: 45%;
    }
    
    /* Modal & Lightbox Mobile */
    .sp__modal-content {
        padding: 32px 24px;
        max-width: 90%;
    }
    
    .sp__modal-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .sp__share-links {
        gap: 12px;
    }
    
    .sp__share-link {
        width: 44px;
        height: 44px;
    }
    
    .sp__share-link svg {
        width: 18px;
        height: 18px;
    }
    
    .sp__lightbox-nav {
        width: 40px;
        height: 40px;
    }
    
    .sp__lightbox-nav--prev {
        left: 12px;
    }
    
    .sp__lightbox-nav--next {
        right: 12px;
    }
    
    .sp__lightbox-close {
        top: 16px;
        right: 16px;
        padding: 6px;
    }
    
    .sp__lightbox-image {
        max-width: 95%;
        max-height: 85vh;
    }
    
    /* Variation Price Mobile */
    .woocommerce-variation-add-to-cart {
        margin-top: 20px !important;
        padding-top: 20px !important;
        gap: 18px !important;
    }
    
    .woocommerce-variation-add-to-cart .woocommerce-variation-price .price {
        font-size: 26px !important;
    }
    
    .woocommerce-variation-add-to-cart .woocommerce-variation-price .price del {
        font-size: 20px !important;
    }
}

/* Mobile Small (320px - 479px) */
@media (max-width: 479.98px) {
    .product-detail-page {
        padding: 25px 12px 40px;
    }
    
    .sp__wrapper {
        gap: 30px;
    }
    
    .sp__badges {
        top: 8px;
        right: 8px;
        gap: 5px;
    }
    
    .sp__badge {
        padding: 3px 6px;
        font-size: 7px;
    }
    
    .sp__zoom-hint {
        width: 28px;
        height: 28px;
        bottom: 10px;
        right: 10px;
    }
    
    .sp__thumbs-wrapper {
        gap: 6px;
        margin-top: 10px;
    }
    
    .sp__thumbs-nav {
        width: 24px;
        height: 24px;
    }
    
    .sp__thumbs-nav svg {
        width: 12px;
        height: 12px;
    }
    
    .sp__thumb {
        width: 56px;
        height: 56px;
    }
    
    .sp__category {
        font-size: 8px !important;
        margin-bottom: 10px !important;
        letter-spacing: 1.5px !important;
    }
    
    .sp__title {
        font-size: 22px !important;
        margin-bottom: 16px !important;
        padding-bottom: 16px !important;
        letter-spacing: -0.3px !important;
    }
    
    .sp__title::after {
        width: 40px !important;
    }
    
    .sp__rating {
        padding: 10px 14px !important;
        margin-bottom: 16px !important;
        gap: 8px !important;
    }
    
    .sp__star {
        width: 14px !important;
        height: 14px !important;
    }
    
    .sp__rating-text {
        font-size: 12px !important;
    }
    
    .sp__price {
        padding: 16px 0 !important;
        margin-bottom: 16px !important;
    }
    
    .sp__price .price {
        font-size: 24px !important;
        gap: 10px !important;
    }
    
    .sp__price .price del {
        font-size: 18px !important;
    }
    
    .sp__short-desc {
        padding: 18px 16px 18px 14px !important;
        margin-bottom: 20px !important;
        font-size: 13px !important;
        line-height: 1.65 !important;
    }
    
    .sp__short-desc::after {
        font-size: 80px !important;
        top: -10px !important;
        right: 10px !important;
    }
    
    .sp__short-desc p:first-child {
        font-size: 15px !important;
    }
    
    .sp__stock {
        padding: 9px 14px !important;
        margin-bottom: 20px !important;
        font-size: 11px !important;
        letter-spacing: 0.5px !important;
    }
    
    .sp__stock svg {
        width: 14px !important;
        height: 14px !important;
    }
    
    .sp__cart {
        margin-bottom: 16px !important;
    }
    
    .sp__cart form.cart {
        gap: 18px !important;
    }
    
    .sp__cart .variations tr {
        margin-bottom: 18px !important;
        gap: 12px !important;
    }
    
    .sp__cart .variations label {
        font-size: 11px !important;
        margin-bottom: 8px !important;
        letter-spacing: 0.5px !important;
    }
    
    .sp__cart .variations .variation-radios {
        gap: 6px !important;
    }
    
    .sp__cart .variations .variation-radio-label {
        min-width: 50px;
        height: 40px;
        padding: 0 14px;
        font-size: 12px;
    }
    
    .sp__cart .variations .variation-radio.variation-color .variation-radio-label {
        width: 40px;
        height: 40px;
    }
    
    .sp__cart .quantity .qty {
        width: 50px;
        height: 44px;
        font-size: 13px;
    }
    
    .sp__cart .single_add_to_cart_button,
    .sp__cart button[type="submit"],
    .woocommerce-variation-add-to-cart button.single_add_to_cart_button {
        height: 52px !important;
        font-size: 13px !important;
        letter-spacing: 1.5px !important;
    }
    
    .sp__actions {
        gap: 6px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }
    
    .sp__action {
        flex: 1 1 calc(50% - 3px);
        padding: 10px 8px;
        font-size: 9px;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 3px;
    }
    
    .sp__action svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
    
    .sp__action span {
        display: block;
        margin-right: 0;
        font-size: 9px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    
    .sp__meta {
        margin-bottom: 16px;
        padding: 14px;
        background: #f8f8f8;
        border-left: 3px solid #000;
        border-radius: 4px;
    }
    
    .sp__meta-row {
        font-size: 11px;
        margin-bottom: 5px;
        flex-wrap: wrap;
    }
    
    .sp__meta-row:last-child {
        margin-bottom: 0;
    }
    
    .sp__guarantees {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 14px 0;
    }
    
    .sp__guarantee {
        display: flex;
        align-items: center;
        font-size: 10px;
        gap: 8px;
        padding: 10px 14px;
        background: #f8f8f8;
        border-left: 3px solid #000;
        border-radius: 4px;
    }
    
    .sp__guarantee svg {
        width: 16px;
        height: 16px;
    }
    
    .sp__details {
        margin-top: 40px;
        padding-top: 35px;
    }
    
    .sp__tabs-nav {
        gap: 16px;
        margin-bottom: 25px;
    }
    
    .sp__tab-btn {
        font-size: 10px;
        padding: 10px 0;
        letter-spacing: 0.5px;
    }
    
    .sp__tab-content {
        font-size: 13px;
        line-height: 1.65;
    }
    
    .sp__specs-table th,
    .sp__specs-table td {
        padding: 10px 0;
        font-size: 11px;
    }
    
    .sp__specs-table th {
        width: 50%;
    }
    
    .sp__modal-content {
        padding: 28px 20px;
        max-width: 95%;
    }
    
    .sp__modal-title {
        font-size: 15px;
        margin-bottom: 18px;
    }
    
    .sp__share-links {
        gap: 10px;
    }
    
    .sp__share-link {
        width: 40px;
        height: 40px;
    }
    
    .sp__share-link svg {
        width: 16px;
        height: 16px;
    }
    
    .sp__lightbox-nav {
        width: 36px;
        height: 36px;
    }
    
    .sp__lightbox-nav--prev {
        left: 10px;
    }
    
    .sp__lightbox-nav--next {
        right: 10px;
    }
    
    .sp__lightbox-close {
        top: 12px;
        right: 12px;
        padding: 4px;
    }
    
    .sp__lightbox-close svg {
        width: 20px;
        height: 20px;
    }
    
    .woocommerce-variation-add-to-cart {
        margin-top: 18px !important;
        padding-top: 18px !important;
        gap: 16px !important;
    }
    
    .woocommerce-variation-add-to-cart .woocommerce-variation-price .price {
        font-size: 24px !important;
    }
    
    .woocommerce-variation-add-to-cart .woocommerce-variation-price .price del {
        font-size: 18px !important;
    }
}

/* ============================================
   RELATED PRODUCTS SECTION
   ============================================ */

.sp__related {
    width: 100%;
    padding: 80px 20px;
    background-color: #ffffff;
    direction: ltr;
    margin-top: 80px;
    border-top: 2px solid #f0f0f0;
}

.sp__related-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.sp__related-title {
    font-size: 32px;
    font-weight: 600;
    color: #000000;
    text-align: center !important;
    margin: 0 auto 60px auto !important;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 100%;
    display: block;
    position: relative;
}

.sp__related-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: #000000;
}

.sp__related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    width: 100%;
}

.sp__related-item {
    position: relative;
    width: 100%;
}

.sp__related-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.sp__related-link:hover {
    transform: translateY(-8px);
}

.sp__related-image-wrapper {
    width: 100% !important;
    height: 422px !important;
    position: relative;
    overflow: hidden;
    background-color: #f5f5f5;
    margin-bottom: 15px !important;
}

.sp__related-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.sp__related-image--main {
    opacity: 1;
}

.sp__related-image--gallery {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.sp__related-item:hover .sp__related-image--main {
    opacity: 0;
}

.sp__related-item:hover .sp__related-image--gallery {
    opacity: 1;
}

.sp__related-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
    background-color: #000000;
    color: #ffffff;
}

.sp__related-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.sp__related-item:hover .sp__related-overlay {
    opacity: 1;
}

.sp__related-view {
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 24px;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.sp__related-item:hover .sp__related-view {
    background: #ffffff;
    color: #000000;
}

.sp__related-content {
    text-align: center;
}

.sp__related-product-title {
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.sp__related-link:hover .sp__related-product-title {
    color: #808080;
}

.sp__related-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

.sp__related-price del {
    color: #999999;
    font-weight: 400;
    margin-right: 5px;
}

.sp__related-price ins {
    text-decoration: none;
    color: #000000;
}

/* Related Products Responsive */
@media (max-width: 1199.98px) {
    .sp__related {
        padding: 70px 20px;
    }
    
    .sp__related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .sp__related-image-wrapper {
        height: 350px !important;
    }
}

@media (max-width: 991.98px) {
    .sp__related {
        padding: 60px 20px;
    }
    
    .sp__related-title {
        font-size: 28px;
        margin-bottom: 40px !important;
    }
    
    .sp__related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .sp__related-image-wrapper {
        height: 360px !important;
    }
    
    .sp__related-view {
        font-size: 12px !important;
        padding: 10px 20px !important;
    }
}

@media (max-width: 767.98px) {
    .sp__related {
        padding: 50px 15px;
        margin-top: 60px;
    }
    
    .sp__related-title {
        font-size: 24px;
        margin-bottom: 30px !important;
    }
    
    .sp__related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .sp__related-image-wrapper {
        height: 280px !important;
        margin-bottom: 12px !important;
    }
    
    .sp__related-product-title {
        font-size: 13px;
        margin-bottom: 5px;
    }
    
    .sp__related-view {
        font-size: 12px !important;
        padding: 10px 20px !important;
    }
    
    .sp__related-price {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .sp__related {
        padding: 40px 10px;
        margin-top: 50px;
    }
    
    .sp__related-title {
        font-size: 20px;
        margin-bottom: 25px !important;
    }
    
    .sp__related-image-wrapper {
        height: 240px !important;
        margin-bottom: 10px !important;
    }
    
    .sp__related-product-title {
        font-size: 12px;
    }
    
    .sp__related-price {
        font-size: 12px;
    }
    
    .sp__related-view {
        font-size: 11px !important;
        padding: 8px 16px !important;
        letter-spacing: 1px !important;
    }
    
    .sp__related-badge {
        top: 8px;
        left: 8px;
        padding: 4px 8px;
        font-size: 9px;
    }
}

/* ============================================
   MOBILE STICKY BAR
   ============================================ */

.sp__mobile-sticky {
    display: none;
}

@media (max-width: 991.98px) {
    .sp__mobile-sticky {
        display: block;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 99999 !important;
        background: #fff;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        overflow: hidden;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .sp__mobile-sticky--visible {
        transform: translateY(0);
    }
    
    .sp__mobile-sticky-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 16px;
        gap: 12px;
    }
    
    .sp__mobile-sticky-info {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 1;
        min-width: 0;
    }
    
    .sp__mobile-sticky-image {
        width: 50px;
        height: 50px;
        object-fit: cover;
        border-radius: 10px;
        border: 2px solid #f0f0f0;
        flex-shrink: 0;
    }
    
    .sp__mobile-sticky-details {
        display: flex;
        flex-direction: column;
        gap: 2px;
        min-width: 0;
    }
    
    .sp__mobile-sticky-title {
        font-size: 13px;
        font-weight: 600;
        color: #000;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .sp__mobile-sticky-price {
        font-size: 14px;
        font-weight: 700;
        color: #000;
    }
    
    .sp__mobile-sticky-price del {
        font-size: 11px;
        color: #999;
        font-weight: 400;
    }
    
    .sp__mobile-sticky-price ins {
        text-decoration: none;
    }
    
    .sp__mobile-sticky-actions {
        flex-shrink: 0;
    }
    
    .sp__mobile-sticky-cart {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 20px;
        background: #000;
        color: #fff;
        border: none;
        border-radius: 12px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    
    .sp__mobile-sticky-cart:hover {
        background: #222;
        transform: scale(1.02);
    }
    
    .sp__mobile-sticky-cart:active {
        transform: scale(0.98);
    }
    
    .sp__mobile-sticky-cart svg {
        width: 18px;
        height: 18px;
    }
    
    .sp__mobile-sticky-progress {
        position: absolute;
        top: 0;
        left: 0;
        height: 3px;
        background: linear-gradient(90deg, #000, #444);
        width: 0;
        transition: width 0.1s ease;
    }
    
    /* Remove bottom padding - sticky bar handles its own spacing */
    body.single-product {
        padding-bottom: 0 !important;
    }
}

@media (max-width: 479.98px) {
    .sp__mobile-sticky-inner {
        padding: 10px 12px;
        gap: 10px;
    }
    
    .sp__mobile-sticky-image {
        width: 44px;
        height: 44px;
        border-radius: 8px;
    }
    
    .sp__mobile-sticky-title {
        font-size: 12px;
    }
    
    .sp__mobile-sticky-price {
        font-size: 13px;
    }
    
    .sp__mobile-sticky-cart {
        padding: 10px 16px;
        font-size: 12px;
        border-radius: 10px;
    }
    
    .sp__mobile-sticky-cart svg {
        width: 16px;
        height: 16px;
    }
}

/* ============================================
   ENHANCED SP__INFO RESPONSIVE DESIGN - MINIMAL & STYLISH
   ============================================ */

@media (max-width: 991.98px) {
    .sp__info {
        padding: 0 !important;
        background: transparent !important;
    }
    
    /* Minimal Category Tag */
    .sp__category {
        display: inline-block !important;
        font-size: 10px !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        color: #666 !important;
        letter-spacing: 2px !important;
        margin-bottom: 12px !important;
        position: relative !important;
    }
    
    .sp__category::before {
        display: none;
    }
    
    .sp__category::after {
        content: '';
        position: absolute;
        bottom: -4px;
        right: 0;
        width: 20px;
        height: 2px;
        background: #000;
    }
    
    /* Clean Title */
    .sp__title {
        font-size: 28px !important;
        line-height: 1.25 !important;
        font-weight: 700 !important;
        color: #000 !important;
        margin-bottom: 16px !important;
        padding-bottom: 16px !important;
        border-bottom: 1px solid #f0f0f0 !important;
        -webkit-text-fill-color: #000 !important;
        background: none !important;
    }
    
    .sp__title::after {
        display: none !important;
    }
    
    /* Minimal Rating */
    .sp__rating {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin-bottom: 20px !important;
        box-shadow: none !important;
        gap: 10px !important;
    }
    
    .sp__stars {
        gap: 3px !important;
    }
    
    .sp__star {
        width: 16px !important;
        height: 16px !important;
    }
    
    .sp__rating-text {
        font-size: 13px !important;
        color: #666 !important;
        font-weight: 500 !important;
    }
    
    /* Clean Price - No Dark Background */
    .sp__price {
        background: transparent !important;
        padding: 0 0 20px 0 !important;
        border-radius: 0 !important;
        margin-bottom: 20px !important;
        border-bottom: 1px solid #f0f0f0 !important;
    }
    
    .sp__price .price {
        color: #000 !important;
        font-size: 28px !important;
        font-weight: 800 !important;
    }
    
    .sp__price .price del {
        color: #bbb !important;
        font-size: 18px !important;
    }
    
    .sp__price .price ins {
        color: #000 !important;
    }
    
    .sp__price .price ins::before {
        display: none !important;
    }
    
    /* Minimal Short Description */
    .sp__short-desc {
        background: #fafafa !important;
        border-left: none !important;
        border: 1px solid #f0f0f0 !important;
        border-radius: 12px !important;
        padding: 16px 18px !important;
        margin-bottom: 20px !important;
        box-shadow: none !important;
    }
    
    .sp__short-desc::before,
    .sp__short-desc::after {
        display: none !important;
    }
    
    .sp__short-desc p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        color: #444 !important;
        font-weight: 400 !important;
    }
    
    .sp__short-desc p:first-child {
        font-size: 14px !important;
        font-weight: 400 !important;
        color: #444 !important;
    }
    
    /* Minimal Stock Status */
    .sp__stock {
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        margin-bottom: 20px !important;
        font-size: 12px !important;
    }
    
    .sp__stock svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    /* Clean Inline Actions */
    .sp__actions {
        display: flex;
        flex-wrap: nowrap;
        gap: 8px;
        padding: 0;
        background: transparent;
        border: none;
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .sp__action {
        flex: 1;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px 8px;
        background: transparent;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        font-size: 11px;
        font-weight: 500;
        color: #333;
        box-shadow: none;
        min-height: auto;
        transition: all 0.2s ease;
    }
    
    .sp__action svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
    
    .sp__action span {
        display: none;
    }
    
    .sp__action:hover {
        background: #f5f5f5;
        border-color: #000;
        transform: none;
        box-shadow: none;
    }
    
    .sp__action--active {
        background: #000 !important;
        border-color: #000 !important;
        color: #fff !important;
    }
    
    /* Clean Meta - Horizontal Pills */
    .sp__meta {
        background: transparent !important;
        padding: 0 !important;
        border: none !important;
        box-shadow: none !important;
        margin-bottom: 20px !important;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .sp__meta-row {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 12px;
        background: #f5f5f5;
        border-radius: 20px;
        font-size: 11px;
        border: none;
        margin: 0;
    }
    
    .sp__meta-row:last-child,
    .sp__meta-row:first-child {
        padding: 8px 12px;
    }
    
    .sp__meta-label {
        font-weight: 600;
        color: #666;
    }
    
    .sp__meta-label::before {
        display: none;
    }
    
    .sp__meta-value {
        color: #000;
    }
    
    .sp__meta-value a {
        color: #000;
    }
    
    /* Minimal Horizontal Guarantees */
    .sp__guarantees {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        padding: 20px 0 0 0 !important;
        border-top: 1px solid #f0f0f0 !important;
        border-bottom: none !important;
    }
    
    .sp__guarantee {
        flex: 1 1 calc(33.333% - 8px);
        min-width: 90px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        padding: 16px 8px !important;
        background: transparent !important;
        border: 1px solid #f0f0f0 !important;
        border-radius: 12px !important;
        transition: all 0.2s ease !important;
    }
    
    .sp__guarantee::before {
        display: none;
    }
    
    .sp__guarantee:hover {
        background: #fafafa !important;
        transform: none;
        box-shadow: none;
    }
    
    .sp__guarantee svg {
        width: 24px !important;
        height: 24px !important;
        padding: 0 !important;
        background: transparent !important;
        color: #000 !important;
        stroke: #000 !important;
        border-radius: 0 !important;
    }
    
    .sp__guarantee span {
        font-weight: 500;
        font-size: 10px;
        color: #666;
        line-height: 1.3;
    }
}

@media (max-width: 767.98px) {
    .sp__title {
        font-size: 24px !important;
    }
    
    .sp__price .price {
        font-size: 26px !important;
    }
    
    .sp__action {
        padding: 10px 6px;
        border-radius: 6px;
    }
    
    .sp__action svg {
        width: 18px;
        height: 18px;
    }
    
    .sp__guarantee {
        flex: 1 1 calc(33.333% - 8px);
        padding: 14px 6px !important;
    }
    
    .sp__guarantee svg {
        width: 22px !important;
        height: 22px !important;
    }
    
    .sp__guarantee span {
        font-size: 9px;
    }
    
    .sp__meta-row {
        padding: 6px 10px;
        font-size: 10px;
    }
    
    .sp__short-desc {
        padding: 14px 16px !important;
        border-radius: 10px !important;
    }
    
    .sp__short-desc p {
        font-size: 13px !important;
    }
}

@media (max-width: 479.98px) {
    .sp__category {
        font-size: 9px !important;
        letter-spacing: 1.5px !important;
    }
    
    .sp__title {
        font-size: 22px !important;
        margin-bottom: 14px !important;
        padding-bottom: 14px !important;
    }
    
    .sp__price .price {
        font-size: 24px !important;
    }
    
    .sp__price .price del {
        font-size: 16px !important;
    }
    
    .sp__rating {
        margin-bottom: 16px !important;
    }
    
    .sp__short-desc {
        padding: 12px 14px !important;
        margin-bottom: 16px !important;
    }
    
    .sp__short-desc p {
        font-size: 12px !important;
    }
    
    .sp__stock {
        font-size: 11px !important;
        margin-bottom: 16px !important;
    }
    
    .sp__actions {
        gap: 6px;
        margin-bottom: 16px;
        padding-bottom: 16px;
    }
    
    .sp__action {
        padding: 10px 4px;
    }
    
    .sp__action svg {
        width: 16px;
        height: 16px;
    }
    
    .sp__meta {
        gap: 6px;
        margin-bottom: 16px !important;
    }
    
    .sp__meta-row {
        padding: 5px 8px;
        font-size: 9px;
        border-radius: 16px;
    }
    
    .sp__guarantees {
        gap: 6px !important;
        padding: 16px 0 0 0 !important;
    }
    
    .sp__guarantee {
        padding: 12px 4px !important;
        border-radius: 10px !important;
        gap: 6px;
    }
    
    .sp__guarantee svg {
        width: 20px !important;
        height: 20px !important;
    }
    
    .sp__guarantee span {
        font-size: 8px;
    }
}

/* ============================================
   FLOATING SUPPORT ABOVE STICKY BAR (SINGLE PRODUCT)
   ============================================ */

@media (max-width: 991.98px) {
    body.single-product .floating-support {
        bottom: 100px;
        transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    body.single-product .floating-support.floating-support--above-sticky {
        bottom: 100px;
    }
}

@media (max-width: 767.98px) {
    body.single-product .floating-support {
        bottom: 95px;
    }
}

@media (max-width: 479.98px) {
    body.single-product .floating-support {
        bottom: 85px;
        right: 12px;
    }
    
    body.single-product .floating-support--bottom-left {
        left: 12px;
    }
}