/*
 Theme Name: Akasco
 Theme URI: https://akasco.com
 Author: Akasco
 Description: Custom WooCommerce theme built from scratch.
 Version: 1.0
*/

/* GLOBAL TYPOGRAPHY */
body {
    font-family: 'Inter', sans-serif;
}

/* FIX OVERLAP — Push content below sticky header */
header.sticky + * {
    margin-top: 160px !important;
}

/* PRODUCT PAGE BACKGROUND */
.single-product .site-main,
.single-product #primary {
    background: #f7f7f7;
    padding: 40px 0;
}

/* PRODUCT CARD */
.single-product .product {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 50px;
}

/* MOBILE */
@media (max-width: 768px) {
    .single-product .product {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

/* GALLERY */
.single-product .woocommerce-product-gallery__image img {
    border-radius: 12px;
}
.single-product .flex-control-thumbs li img {
    border-radius: 8px;
    border: 1px solid #eee;
}

/* TITLE */
.single-product .product_title {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    margin-bottom: 12px;
    color: #111;
}

/* PRICE */
.single-product .price {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 20px;
}

/* ADD TO CART BUTTON */
.single-product .single_add_to_cart_button {
    background: #111;
    color: #fff;
    padding: 14px 28px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
}

/* SHORT DESCRIPTION */
.single-product .woocommerce-product-details__short-description {
    color: #555;
    line-height: 1.7;
    margin-top: 20px;
}

/* TABS */
.single-product .woocommerce-tabs {
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 24px;
}
