/*
 Theme Name:   Storefront Child
 Theme URI:    http://example.com/storefront-child
 Description:  Child theme for Storefront
 Author:       Your Name
 Template:     storefront
 Version:      1.0.0
 Text Domain:  storefront-child
*/

/* Add your custom CSS below */
/* -------------------------------------
   GLOBAL CLEAN WHITE THEME
-------------------------------------- */

/* White background + black text everywhere */
body,
.site,
.site-content,
.site-header,
.site-footer {
    background: #ffffff !important;
    color: #000000 !important;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #000 !important;
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* Paragraphs */
p {
    line-height: 1.6;
    margin-bottom: 1.2em;
}

/* -------------------------------------
   LINKS
-------------------------------------- */
a, a:visited {
    color: #000 !important;
    text-decoration: none;
}
a:hover {
    opacity: 0.7;
}

/* -------------------------------------
   CLEAN BUTTONS
-------------------------------------- */
button,
.button,
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    background: #000 !important;
    color: #fff !important;
    padding: 12px 22px !important;
    border-radius: 4px !important;
    border: none !important;
    font-weight: 500 !important;
    transition: 0.2s ease;
}

button:hover,
.button:hover,
input[type="submit"]:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
    opacity: 0.85;
}

/* Ghost buttons (secondary) */
.woocommerce a.button.alt,
.woocommerce button.button.alt {
    background: #ffffff !important;
    color: #000 !important;
    border: 1px solid #000 !important;
}
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
    background: #000 !important;
    color: #fff !important;
}

/* -------------------------------------
   FORMS
-------------------------------------- */
input,
textarea,
select {
    border: 1px solid #e5e5e5 !important;
    border-radius: 4px !important;
    padding: 10px !important;
    background: #fff !important;
    color: #000 !important;
}

input:focus,
textarea:focus,
select:focus {
    outline: none !important;
    border-color: #000 !important;
}

/* -------------------------------------
   HEADER
-------------------------------------- */
.site-header {
    border-bottom: 1px solid #f0f0f0 !important;
    padding: 15px 0 !important;
}

/* Simplify header cart icon */
.site-header-cart a {
    color: #000 !important;
}

/* -------------------------------------
   FOOTER
-------------------------------------- */
.site-footer {
    background: #ffffff !important;
    color: #000 !important;
    border-top: 1px solid #eeeeee !important;
    padding: 40px 0 !important;
}

/* -------------------------------------
   PRODUCT GRID — MINIMAL STYLE
-------------------------------------- */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    border: 1px solid #f2f2f2 !important;
    border-radius: 6px !important;
    padding: 20px !important;
    background: #fff !important;
    transition: 0.2s ease;
}

.woocommerce ul.products li.product:hover {
    border-color: #000 !important;
}

/* Product titles */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #000 !important;
}

/* Prices */
.woocommerce ul.products li.product .price {
    color: #000 !important;
    font-weight: 600 !important;
}

/* -------------------------------------
   SINGLE PRODUCT PAGE
-------------------------------------- */
.woocommerce div.product .product_title {
    font-weight: 600 !important;
    font-size: 26px !important;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: #000 !important;
    font-weight: 600 !important;
}

/* -------------------------------------
   CART + CHECKOUT
-------------------------------------- */
.woocommerce-cart table.cart,
.woocommerce-checkout {
    border: 1px solid #f2f2f2 !important;
    border-radius: 6px !important;
    padding: 20px !important;
    background: #fff !important;
}

.woocommerce-cart table.cart th,
.woocommerce-cart table.cart td {
    border-color: #f2f2f2 !important;
    color: #000 !important;
}

/* -------------------------------------
   BREADCRUMBS
-------------------------------------- */
.storefront-breadcrumb {
    background: #fff !important;
    border-bottom: 1px solid #f8f8f8 !important;
    padding: 10px 0 !important;
}
