/* ================================================================
   SINGLE PRODUCT PAGE MODERNIZATION - SPECIFIC STYLE
   ================================================================ */

.single-product .product_title {
    font-size: 34px !important;
    font-weight: 800 !important;
    color: #1a1a2e !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.5px !important;
    line-height: 1.2 !important;
}

.single-product .summary .price {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin-bottom: 30px !important;
}

/* Variation Swatches (Selection Chips) */
.variations_form .tawcvs-swatches .swatch {
    border-radius: 10px !important;
    border: 1.5px solid #e2e8f0 !important;
    padding: 10px 18px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #475569 !important;
    background: #fff !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    min-width: 70px !important;
    height: auto !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02) !important;
}

.variations_form .tawcvs-swatches .swatch.selected {
    border-color: #fcb800 !important;
    background: #fffdf5 !important;
    color: #000 !important;
    box-shadow: 0 4px 12px rgba(252, 184, 0, 0.15) !important;
}

/* Buttons Layout */
.single-product .summary form.cart,
.single-product .summary .woocommerce-variation-add-to-cart {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    align-items: center !important;
    margin-top: 35px !important;
}

.single-product .summary .woocommerce-variation-add-to-cart {
    margin-top: 20px !important;
}

.single-product .summary .quantity input.qty {
    height: 54px !important;
    border-radius: 12px !important;
    border: 1.5px solid #e2e8f0 !important;
    background: #f8fafc !important;
}


.single-product .summary .single_add_to_cart_button,
.single-product .summary .buy-now-button {
    height: 54px !important;
    border-radius: 14px !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
    flex: 1 !important;
    min-width: 160px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

/* Add to Cart */
.single-product .summary .single_add_to_cart_button {
    background: #1e293b !important;
    color: #fff !important;
}

/* Buy Now */
.single-product .summary .buy-now-button {
    background: #fcb800 !important;
    color: #000 !important;
    box-shadow: 0 4px 15px rgba(252, 184, 0, 0.25) !important;
}

/* HIDE REDUNDANT THEME BUTTONS */
.martfury-buy-now-button,
.summary .martfury-buy-now,
.summary .buy_now_button,
.mf-buy-now {
    display: none !important;
}

.product-instagram,
.mf-product-instagram {
    display: none !important;
}

/* Hide Wishlist Button */
.single-product .mf-wishlist-button,
.single-product .yith-wcwl-add-to-wishlist,
.single-product .summary .wishlist-button,
.single-product .summary .mf-product-compare {
    display: none !important;
}

/* Share Icons */
.single-product .summary .social-links {
    margin-top: 40px !important;
    padding-top: 25px !important;
    border-top: 1px solid #f1f5f9 !important;
    display: flex !important;
    gap: 12px !important;
}

.single-product .summary .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 16px;
}

.single-product .summary .social-links a:hover {
    background: #fcb800 !important;
    color: #000 !important;
}

@media (max-width: 768px) {
    .single-product .summary form.cart {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .single-product .summary .quantity {
        width: 100% !important;
    }

    .single-product .summary .single_add_to_cart_button,
    .single-product .summary .buy-now-button {
        width: 100% !important;
    }
}