/* Final Product Page Styles - Correct File Method */

.product-layout-container {
    padding-top: 20px;
}

/* Row 1: Breadcrumbs */
.woocommerce-breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
}
.woocommerce-breadcrumb a {
    color: #ff6b00;
}

/* Row 2: Title */
.single-product .product_title {
    margin-bottom: 10px;
}

/* Row 3: Header Meta (Actions & SKU) */
.product-header-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}
.product-actions-top {
    display: flex;
    gap: 20px;
}
.product-actions-top a,
.product-actions-top .yith-wcwl-add-to-wishlist a {
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}
.product-sku {
    font-size: 14px;
    color: #888;
}

/* Row 4: Main Content Grid */
.product-main-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 320px;
    gap: 30px;
    margin-bottom: 30px;
}

/* Column 1: Gallery */
.product-gallery-column .woocommerce-product-gallery {
    border: none;
    padding: 0;
}

/* Column 2: Attributes */
.product-attributes-column .shop_attributes {
    border: none;
    font-size: 14px;
    margin: 0;
}
.product-attributes-column .shop_attributes th,
.product-attributes-column .shop_attributes td {
    border: none;
    padding: 8px 0;
}
.product-attributes-column .shop_attributes th {
    color: #888;
    font-weight: 500;
    padding-right: 15px;
}
.product-attributes-column .shop_attributes td p {
    color: #ff6b00; /* Orange theme color */
    font-weight: 500;
    margin: 0;
}

/* Column 3: Purchase Box */
.purchase-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.purchase-box .price {
    color: #c00; /* Red theme color */
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}
.purchase-box .cart {
    margin-bottom: 15px;
}
.purchase-box .single_add_to_cart_button {
    width: 100%;
    background-color: #ff6b00 !important;
    color: #fff !important;
    padding: 12px !important;
    border-radius: 5px !important;
    border: none !important;
}
.purchase-box h4 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.purchase-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}
.purchase-box .delivery-info li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}
.purchase-box .useful-info a {
    color: #333;
    text-decoration: none;
    line-height: 1.8;
}

/* Tabs, Brands, Related */
.woocommerce-tabs,
.product-page-brands,
.related.products {
    margin-top: 40px;
}
.related.products ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}