/*
 Theme Name:   Storefront Child
 Template:     storefront
 Version:      1.0.0
 Description:  Custom Apple-style product pages with WooCommerce.
*/

/* ====================================
   CUSTOM APPLE-STYLE DESIGN
   ==================================== */

/* REMOVE SIDEBAR ON PRODUCT PAGES */
.single-product .content-area {
    width: 100% !important;
    margin-right: 0 !important;
}
.single-product .widget-area,
.single-product #secondary {
    display: none !important;
}

/* BIG FULL-WIDTH PRODUCT IMAGE */
.single-product .woocommerce-product-gallery {
    width: 100% !important;
    max-width: 100% !important;
    float: none !important;
}
.single-product .woocommerce-product-gallery__image img {
    width: 100% !important;
}

/* APPLE FONTS */
body,
button,
input,
select,
textarea,
h1, h2, h3, h4, h5, h6 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

/* PRODUCT TITLE SIZE - BIG AND BOLD */
h1.product_title {
    font-size: 2.2rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.03em !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
}

/* PRICE SIZE */
.single-product .price {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: #1d1d1f !important;
}

/* ADD TO CART BUTTON STYLE */
.single-product .single_add_to_cart_button {
    background-color: #0071e3 !important;
    border-radius: 30px !important;
    padding: 15px 40px !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

/* CLEAN UP TABS - MORE APPLE-LIKE */
.woocommerce-tabs ul.tabs {
    border-bottom: 1px solid #d2d2d7 !important;
}
.woocommerce-tabs ul.tabs li a {
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

/* REMOVE BREADCRUMBS ON PRODUCT PAGES */
.single-product .storefront-breadcrumb {
    display: none !important;
}