/* Product Single Page */
.single-product .product .summary {
padding-left: 40px;
}
.single-product .product_title {
font-size: 28px;
font-weight: 700;
color: #1e293b;
margin-bottom: 16px;
}
.woocommerce-product-attributes {
background: #f8fafc;
border-radius: 8px;
padding: 20px;
margin: 24px 0;
}
.woocommerce-product-attributes th {
color: #64748b;
font-weight: 600;
width: 180px;
padding: 8px 0;
}
.woocommerce-product-attributes td {
color: #1e293b;
padding: 8px 0;
}
/* Hide price */
.single-product .price { display: none !important; }
/* Hide add to cart */
.single-product .cart { display: none !important; }
/* Custom inquiry button */
.product-inquiry-btn {
display: inline-block;
background: #1a56db;
color: #fff !important;
padding: 14px 32px;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
font-size: 16px;
margin: 20px 0;
transition: background 0.2s;
}
.product-inquiry-btn:hover {
background: #1e40af;
color: #fff !important;
}
/* Custom section after description */
.product-custom-section {
background: #f0f4ff;
border: 1px solid #bfdbfe;
border-radius: 8px;
padding: 24px;
margin: 30px 0;
}
.product-custom-section h3 {
color: #1a56db;
margin-bottom: 12px;
}
.product-custom-section ul {
list-style: none;
padding: 0;
}
.product-custom-section ul li {
padding: 6px 0;
padding-left: 20px;
position: relative;
}
.product-custom-section ul li:before {
content: “✓”;
color: #1a56db;
position: absolute;
left: 0;
font-weight: bold;
}
/* Product archive grid */
.woocommerce ul.products li.product {
border: 1px solid #e2e8f0;
border-radius: 8px;
overflow: hidden;
transition: box-shadow 0.2s;
}
.woocommerce ul.products li.product:hover {
box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
font-size: 16px;
font-weight: 600;
padding: 0 16px;
}
.woocommerce ul.products li.product .button {
background: #1a56db !important;
color: #fff !important;
border-radius: 4px;
margin: 0 16px 16px;
}