/* ===================================
   BUILTIN COMMERCE - GLOBAL ELEGANT DESIGN
   =================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
font-family: 'Poppins', sans-serif; 
color: #1a1a1a; 
background: #fafafa; 
line-height: 1.6;
}

/* ===== HEADER GLOBAL ===== */
.commerce-header { 
background: white; 
border-bottom: 2px solid #e63946; 
padding: 14px 25px; 
position: sticky; 
top: 0; 
z-index: 100; 
box-shadow: 0 2px 10px rgba(230,57,70,0.06); 
}
.header-wrap { 
max-width: 1300px; 
margin: 0 auto; 
display: flex; 
justify-content: space-between; 
align-items: center; 
}
.store-logo { 
font-size: 19px; 
font-weight: 800; 
color: #e63946; 
text-decoration: none; 
letter-spacing: -0.5px; 
}
.header-actions { display: flex; gap: 28px; align-items: center; }
.header-nav { display: flex; gap: 30px; list-style: none; }
.header-nav a { 
color: #555; 
text-decoration: none; 
font-weight: 500; 
font-size: 12px; 
letter-spacing: 0.5px; 
transition: 0.3s ease; 
text-transform: uppercase; 
}
.header-nav a:hover { color: #e63946; }
.cart-btn { 
background: #e63946; 
color: white; 
padding: 9px 18px; 
border-radius: 5px; 
text-decoration: none; 
font-weight: 600; 
font-size: 12px; 
letter-spacing: 0.3px; 
transition: all 0.3s ease; 
position: relative;
}
.cart-btn:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(230,57,70,0.3); }
.cart-counter { 
position: absolute; 
top: -8px; 
right: -8px; 
background: #1a1a1a; 
color: white; 
border-radius: 50%; 
width: 22px; 
height: 22px; 
display: flex; 
align-items: center; 
justify-content: center; 
font-size: 11px; 
font-weight: 700; 
}

/* ===== FOOTER GLOBAL ===== */
.commerce-footer { 
background: #1a1a1a; 
color: white; 
padding: 80px 25px 30px; 
margin-top: 80px;
}
.footer-wrap { 
max-width: 1300px; 
margin: 0 auto; 
display: grid; 
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
gap: 50px; 
margin-bottom: 50px; 
}
.footer-col h4 { 
font-size: 13px; 
font-weight: 700; 
margin-bottom: 16px; 
color: white; 
letter-spacing: 0.5px; 
text-transform: uppercase; 
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col p { font-size: 13px; line-height: 1.7; opacity: 0.8; }
.footer-col a { 
color: #ff9999; 
text-decoration: none; 
font-size: 13px; 
transition: 0.3s; 
}
.footer-col a:hover { color: #e63946; }
.footer-bottom { 
border-top: 1px solid rgba(255,255,255,0.12); 
padding-top: 25px; 
text-align: center; 
color: #888; 
font-size: 12px; 
}
.powered-by { margin-top: 10px; }
.powered-by a { color: #ff9999; text-decoration: none; }

/* ===== PAGE SECTIONS GLOBAL ===== */
.page-header { 
background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%); 
color: white; 
padding: 80px 25px; 
text-align: center; 
}
.page-header h1 { 
font-family: 'Playfair Display', serif; 
font-size: 48px; 
font-weight: 700; 
margin-bottom: 12px; 
}
.page-header p { 
font-size: 16px; 
opacity: 0.9; 
}
.page-content { 
max-width: 1300px; 
margin: 0 auto; 
padding: 100px 25px; 
background: white;
}
.section-wrap { 
max-width: 1300px; 
margin: 0 auto; 
padding: 0 25px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
.header-wrap { flex-wrap: wrap; }
.header-nav { gap: 15px; }
.page-header { padding: 50px 25px; }
.page-header h1 { font-size: 32px; }
.page-content { padding: 60px 20px; }
.footer-wrap { gap: 30px; }
}



/* Product Page */
.woocommerce-page .product { max-width: 1300px; margin: 0 auto; }
.woocommerce div.product { background: transparent; padding: 0; }
.woocommerce div.product .product_title { 
font-family: 'Playfair Display', serif; 
font-size: 38px; 
font-weight: 700; 
color: #1a1a1a; 
margin-bottom: 20px; 
}
.woocommerce div.product .price { 
font-size: 24px; 
color: #1a1a1a; 
font-weight: 700; 
margin-bottom: 20px; 
}
.woocommerce div.product form.cart button.button { 
background: #e63946; 
color: white; 
padding: 14px 40px; 
font-size: 16px; 
font-weight: 700; 
border: none; 
border-radius: 6px; 
cursor: pointer; 
transition: all 0.3s ease; 
text-transform: uppercase;
}
.woocommerce div.product form.cart button.button:hover { 
background: #c62828; 
transform: translateY(-2px); 
box-shadow: 0 8px 25px rgba(230,57,70,0.3);
}

/* Checkout Page */
.woocommerce form.checkout { 
display: grid; 
grid-template-columns: 1.5fr 1fr; 
gap: 60px; 
background: white;
}
.woocommerce form.checkout .form-row { margin-bottom: 20px; }
.woocommerce form.checkout .form-row label { 
font-weight: 600; 
font-size: 14px; 
margin-bottom: 8px; 
display: block; 
color: #1a1a1a;
}
.woocommerce form.checkout input,
.woocommerce form.checkout select,
.woocommerce form.checkout textarea { 
width: 100%; 
padding: 12px; 
border: 1px solid #e0e0e0; 
border-radius: 6px; 
font-size: 14px;
}
.woocommerce form.checkout input:focus,
.woocommerce form.checkout select:focus,
.woocommerce form.checkout textarea:focus { 
outline: none; 
border-color: #1a1a1a; 
box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}
#order_review { 
background: white; 
padding: 30px; 
border: 1px solid #e0e0e0; 
border-radius: 6px; 
position: sticky; 
top: 200px;
}
#order_review table { width: 100%; margin-bottom: 20px; }
#order_review table th,
#order_review table td { padding: 12px 0; border-bottom: 1px solid #f0f0f0; font-size: 14px; }
#order_review .order-total { border-top: 2px solid #e63946; padding-top: 20px; }
#order_review .order-total strong { color: #e63946; font-size: 18px; }
#payment { padding: 25px 0; border-top: 1px solid #e0e0e0; margin-top: 25px; }
#payment .payment_methods { margin-bottom: 25px; }
#payment .payment_methods li { list-style: none; padding: 12px 0; border-bottom: 1px solid #e0e0e0; }
#payment .payment_methods label { display: flex; align-items: center; cursor: pointer; }
#payment .payment_methods input { margin-right: 10px; }
#place_order { 
background: #e63946; 
color: white; 
width: 100%; 
padding: 16px; 
border: none; 
border-radius: 6px; 
font-size: 16px; 
font-weight: 700; 
cursor: pointer; 
transition: all 0.3s ease; 
text-transform: uppercase;
}
#place_order:hover { 
background: #c62828; 
transform: translateY(-2px); 
box-shadow: 0 8px 25px rgba(230,57,70,0.3);
}

@media (max-width: 1024px) {
.woocommerce form.checkout { grid-template-columns: 1fr; gap: 40px; }
#order_review { position: static; }
}

@media (max-width: 768px) {
.woocommerce form.checkout { gap: 30px; }
#order_review { padding: 20px; }
}

/* ===== WOOCOMMERCE PAGES ===== */

/* Product Page - 2 Column Layout */
.product-page-wrapper { display: block; }
.woocommerce .product-display { 
display: grid; 
grid-template-columns: 1fr 1fr; 
gap: 60px; 
align-items: start;
}
.product-images { }
.product-images .woocommerce-product-gallery { margin: 0; }
.product-images img { 
max-width: 100%; 
height: auto; 
display: block; 
border-radius: 6px;
}
.product-summary { }
.woocommerce div.product .product_title { 
font-family: 'Playfair Display', serif; 
font-size: 38px; 
font-weight: 700; 
color: #1a1a1a; 
margin-bottom: 20px; 
margin-top: 0;
}
.woocommerce div.product .woocommerce-product-rating { margin-bottom: 20px; }
.woocommerce div.product .price { 
font-size: 28px; 
color: #e63946; 
font-weight: 700; 
margin-bottom: 20px; 
}
.woocommerce div.product .woocommerce-product-details__short-description { 
font-size: 15px; 
line-height: 1.8; 
color: #555; 
margin: 20px 0; 
}
.woocommerce div.product form.cart { margin: 30px 0; }
.woocommerce div.product form.cart .form-row { margin-bottom: 15px; }
.woocommerce div.product form.cart input[type="number"] { 
max-width: 120px; 
padding: 10px; 
border: 1px solid #e0e0e0; 
border-radius: 6px;
}
.woocommerce div.product form.cart button.button { 
background: #e63946; 
color: white; 
padding: 14px 40px; 
font-size: 16px; 
font-weight: 700; 
border: none; 
border-radius: 6px; 
cursor: pointer; 
transition: all 0.3s ease; 
text-transform: uppercase; 
letter-spacing: 0.5px;
}
.woocommerce div.product form.cart button.button:hover { 
background: #c62828; 
transform: translateY(-2px); 
box-shadow: 0 8px 25px rgba(230,57,70,0.3);
}
.woocommerce div.product .product-meta { 
margin-top: 30px; 
padding-top: 30px; 
border-top: 1px solid #e0e0e0; 
font-size: 14px;
}
.woocommerce #reviews { margin-top: 60px; padding-top: 60px; border-top: 1px solid #e0e0e0; }
.woocommerce .woocommerce-tabs { margin-top: 40px; }

/* Checkout Page - 2 Column Layout */
.woocommerce form.checkout { 
display: grid; 
grid-template-columns: 1.5fr 1fr; 
gap: 60px;
}
.woocommerce form.checkout .col-1 { }
.woocommerce form.checkout .col-2 { }
.woocommerce form.checkout_coupon { 
background: #f9f9f9; 
padding: 25px; 
border-radius: 6px; 
margin-bottom: 30px;
}
.woocommerce form.checkout .form-row { margin-bottom: 20px; }
.woocommerce form.checkout .form-row label { 
font-weight: 600; 
font-size: 14px; 
margin-bottom: 8px; 
display: block; 
color: #1a1a1a;
}
.woocommerce form.checkout input,
.woocommerce form.checkout select,
.woocommerce form.checkout textarea { 
width: 100%; 
padding: 12px; 
border: 1px solid #e0e0e0; 
border-radius: 6px; 
font-size: 14px;
}
.woocommerce form.checkout input:focus,
.woocommerce form.checkout select:focus,
.woocommerce form.checkout textarea:focus { 
outline: none; 
border-color: #1a1a1a; 
box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}
.woocommerce .woocommerce-billing-fields h3,
.woocommerce .woocommerce-shipping-fields h3,
.woocommerce .woocommerce-additional-fields h3 { 
font-size: 18px; 
font-weight: 700; 
margin: 30px 0 20px 0; 
color: #1a1a1a;
}
.woocommerce .woocommerce-billing-fields h3:first-child { margin-top: 0; }
#order_review { 
background: white; 
padding: 30px; 
border: 1px solid #e0e0e0; 
border-radius: 6px; 
position: sticky; 
top: 200px;
}
#order_review h3 { 
font-size: 18px; 
font-weight: 700; 
margin-bottom: 20px; 
color: #1a1a1a;
}
#order_review table { 
width: 100%; 
margin-bottom: 20px; 
border-collapse: collapse;
}
#order_review table th,
#order_review table td { 
padding: 12px 0; 
border-bottom: 1px solid #f0f0f0; 
font-size: 14px;
}
#order_review table th { font-weight: 700; color: #1a1a1a; }
#order_review .order-total { 
border-top: 2px solid #e63946; 
padding-top: 20px;
}
#order_review .order-total th,
#order_review .order-total td { padding: 15px 0; font-size: 15px; }
#order_review .order-total strong { color: #e63946; font-size: 18px; }
#payment { 
padding: 25px 0; 
border-top: 1px solid #e0e0e0; 
margin-top: 25px;
}
#payment h3 { 
font-size: 18px; 
font-weight: 700; 
margin-bottom: 20px; 
color: #1a1a1a;
}
#payment .payment_methods { margin-bottom: 25px; }
#payment .payment_methods li { 
list-style: none; 
padding: 12px 0; 
border-bottom: 1px solid #e0e0e0;
}
#payment .payment_methods li:last-child { border-bottom: none; }
#payment .payment_methods label { 
display: flex; 
align-items: center; 
cursor: pointer; 
font-weight: 500;
}
#payment .payment_methods input { margin-right: 10px; }
#place_order { 
background: #e63946; 
color: white; 
width: 100%; 
padding: 16px; 
border: none; 
border-radius: 6px; 
font-size: 16px; 
font-weight: 700; 
cursor: pointer; 
transition: all 0.3s ease; 
text-transform: uppercase; 
letter-spacing: 0.5px;
}
#place_order:hover { 
background: #c62828; 
transform: translateY(-2px); 
box-shadow: 0 8px 25px rgba(230,57,70,0.3);
}
.woocommerce-terms-and-conditions-checkbox-text { 
font-size: 13px; 
line-height: 1.6;
}

/* Responsive */
@media (max-width: 1200px) {
.woocommerce .product-display { gap: 40px; }
.woocommerce form.checkout { gap: 40px; }
}

@media (max-width: 1024px) {
.woocommerce .product-display { grid-template-columns: 1fr; }
.woocommerce form.checkout { grid-template-columns: 1fr; gap: 40px; }
#order_review { position: static; }
}

@media (max-width: 768px) {
.woocommerce .product-display { gap: 30px; }
.woocommerce form.checkout { gap: 30px; }
#order_review { padding: 20px; }
}


/* ===== PRODUCT PAGE - FULL TEMPLATE ===== */

.product-page-wrapper { width: 100%; }

/* Main Grid Layout */
.product-main-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
	margin-bottom: 80px;
	}

/* LEFT: PRODUCT GALLERY */
.product-images-section {
position: relative;
}

.product-gallery-container {
display: flex;
flex-direction: column;
gap: 20px;
}

.product-main-image {
width: 100%;
aspect-ratio: 1;
background: #f5f5f5;
border-radius: 12px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
position: relative;
}

.product-main-img {
width: 100%;
height: 100%;
object-fit: cover;
}

.product-gallery-thumbs {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 12px;
}

.thumb-item {
width: 100%;
aspect-ratio: 1;
background: #f5f5f5;
border-radius: 8px;
overflow: hidden;
cursor: pointer;
border: 2px solid transparent;
transition: all 0.3s ease;
}

.thumb-item:hover, .thumb-item.active {
border-color: #e63946;
}

.thumb-item img {
width: 100%;
height: 100%;
object-fit: cover;
}

.wishlist-button {
position: absolute;
top: 20px;
right: 20px;
z-index: 10;
}

.btn-wishlist {
background: white;
border: none;
width: 50px;
height: 50px;
border-radius: 50%;
font-size: 24px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 12px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

.btn-wishlist:hover {
background: #e63946;
color: white;
transform: scale(1.05);
}

/* RIGHT: PRODUCT INFO */
.product-info-section {
display: flex;
flex-direction: column;
gap: 28px;
}

/* Category Badge */
.product-category-badge {
display: inline-block;
background: #f5f5f5;
color: #999;
padding: 8px 16px;
border-radius: 6px;
font-size: 11px;
font-weight: 600;
letter-spacing: 1px;
text-transform: uppercase;
width: fit-content;
}

/* Title Section */
.product-title-section {
border-bottom: 1px solid #e5e5e5;
padding-bottom: 24px;
}

.product-title {
font-family: 'Playfair Display', serif;
font-size: 42px;
font-weight: 700;
color: #1a1a1a;
line-height: 1.2;
margin-bottom: 12px;
}

.product-variant-info {
font-size: 15px;
color: #999;
margin: 8px 0;
}

/* Rating Section */
.product-rating-section {
display: flex;
align-items: center;
gap: 20px;
padding: 16px 0;
border-bottom: 1px solid #e5e5e5;
}

.product-stars {
display: flex;
align-items: center;
gap: 8px;
}

.product-stars .star-rating {
display: flex;
gap: 2px;
font-size: 18px;
color: #ff6b35;
}

.reviews-link {
color: #999;
text-decoration: none;
font-size: 14px;
transition: 0.3s;
}

.reviews-link:hover {
color: #e63946;
}

/* Price Section */
.product-price-section {
display: flex;
align-items: baseline;
gap: 16px;
padding: 16px 0;
border-bottom: 1px solid #e5e5e5;
}

.price-label {
font-size: 11px;
font-weight: 600;
color: #999;
text-transform: uppercase;
letter-spacing: 1px;
}

.product-price {
font-family: 'Playfair Display', serif;
font-size: 36px;
font-weight: 700;
color: #e63946;
}

/* Action Section */
.product-action-section {
display: flex;
gap: 20px;
align-items: flex-end;
padding: 24px 0;
border-bottom: 1px solid #e5e5e5;
}

.quantity-selector {
display: flex;
flex-direction: column;
gap: 8px;
}

.quantity-selector label {
font-size: 11px;
font-weight: 600;
color: #999;
text-transform: uppercase;
letter-spacing: 1px;
}

.qty-input-group {
display: flex;
border: 1px solid #e5e5e5;
border-radius: 6px;
overflow: hidden;
width: fit-content;
}

.qty-btn {
background: #f5f5f5;
border: none;
width: 44px;
height: 44px;
cursor: pointer;
font-size: 18px;
color: #999;
transition: all 0.3s ease;
display: flex;
align-items: center;
justify-content: center;
}

.qty-btn:hover {
background: #e63946;
color: white;
}

.qty-input {
border: none;
background: white;
width: 60px;
text-align: center;
font-size: 14px;
padding: 0;
font-weight: 600;
}

.qty-input:focus {
outline: none;
}

/* Add to Cart Button */
.product-action-section .single_add_to_cart_button {
background: #e63946;
color: white;
border: none;
padding: 16px 48px;
border-radius: 6px;
font-size: 14px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
cursor: pointer;
transition: all 0.3s ease;
flex: 1;
max-width: 200px;
}

.product-action-section .single_add_to_cart_button:hover {
background: #d32f2f;
transform: translateY(-2px);
box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
}

/* Details Info */
.product-details-info {
display: flex;
flex-direction: column;
gap: 12px;
padding: 24px 0;
border-bottom: 1px solid #e5e5e5;
}

.detail-row {
display: grid;
grid-template-columns: 100px 1fr;
gap: 20px;
font-size: 14px;
}

.detail-label {
font-weight: 600;
color: #999;
text-transform: uppercase;
font-size: 11px;
letter-spacing: 1px;
}

.detail-value {
color: #555;
}

/* Total Price Section */
.product-total-section {
display: flex;
justify-content: space-between;
align-items: center;
padding: 24px 0;
background: #f5f5f5;
padding: 24px;
border-radius: 8px;
margin-top: 20px;
}

.total-label {
font-size: 11px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
color: #999;
}

.total-price {
font-family: 'Playfair Display', serif;
font-size: 32px;
font-weight: 700;
color: #e63946;
}

/* TABS SECTION */
.product-tabs-section {
margin: 60px 0;
border-top: 1px solid #e5e5e5;
padding-top: 40px;
}

.tabs-header {
display: flex;
gap: 40px;
border-bottom: 1px solid #e5e5e5;
margin-bottom: 32px;
}

.tab-button {
background: none;
border: none;
font-size: 14px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1px;
color: #999;
cursor: pointer;
padding: 16px 0;
position: relative;
transition: 0.3s ease;
}

.tab-button:hover, .tab-button.active {
color: #e63946;
}

.tab-button.active::after {
content: '';
position: absolute;
bottom: -1px;
left: 0;
right: 0;
height: 2px;
background: #e63946;
}

.tab-pane {
display: none;
animation: fadeIn 0.3s ease;
}

.tab-pane.active {
display: block;
}

@keyframes fadeIn {
from { opacity: 0; }
to { opacity: 1; }
}

.tab-pane p {
color: #555;
line-height: 1.8;
margin-bottom: 16px;
}

.attributes-table {
width: 100%;
border-collapse: collapse;
margin-top: 20px;
}

.attributes-table td {
padding: 12px 0;
border-bottom: 1px solid #e5e5e5;
font-size: 14px;
}

.attributes-table td:first-child {
font-weight: 600;
color: #999;
width: 200px;
}

/* RELATED PRODUCTS */
.related.products {
margin-top: 80px;
padding-top: 60px;
border-top: 1px solid #e5e5e5;
}

.related.products h2 {
font-family: 'Playfair Display', serif;
font-size: 32px;
margin-bottom: 32px;
}

/* REVIEWS SECTION */
.product-reviews-section {
margin-top: 60px;
padding-top: 40px;
border-top: 1px solid #e5e5e5;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
.product-main-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
	margin-bottom: 80px;
	}

.product-title {
font-size: 32px;
}

.product-price {
font-size: 28px;
}

.product-gallery-thumbs {
grid-template-columns: repeat(3, 1fr);
}
}

@media (max-width: 768px) {
.product-page-wrapper {
padding: 0 15px;
}

.product-title {
font-size: 24px;
}

.product-price {
font-size: 24px;
}

.product-action-section {
flex-direction: column;
}

.product-action-section .single_add_to_cart_button {
max-width: 100%;
width: 100%;
}

.product-gallery-thumbs {
grid-template-columns: repeat(2, 1fr);
}

.detail-row {
grid-template-columns: 1fr;
gap: 4px;
}

.product-total-section {
flex-direction: column;
gap: 12px;
text-align: center;
}
}




/* ===== RELATED PRODUCTS - ELEGANT LAYOUT ===== */
.related.products {
margin-top: 80px !important;
padding: 60px 0 !important;
}

.related.products h2 {
font-family: 'Playfair Display', serif !important;
font-size: 36px !important;
font-weight: 700 !important;
text-align: center !important;
color: #1a1a1a !important;
margin-bottom: 50px !important;
letter-spacing: -0.5px !important;
}

.related.products ul.products {
display: grid !important;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
gap: 40px !important;
list-style: none !important;
padding: 0 !important;
margin: 0 !important;
}

.related.products li.product {
margin: 0 !important;
padding: 0 !important;
background: white;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
transition: all 0.3s ease;
text-align: center;
}

.related.products li.product:hover {
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
transform: translateY(-4px);
}

.related.products li.product .product-image {
width: 100%;
background: #f9f9f9;
padding: 40px 20px;
display: flex;
align-items: center;
justify-content: center;
min-height: 280px;
overflow: hidden;
text-align: center;
}

.related.products li.product .product-image img {
max-width: 100%;
height: auto;
object-fit: contain;
}

.related.products li.product .product-info {
padding: 30px 20px 40px 20px;
}

.related.products li.product h3 {
font-family: 'Playfair Display', serif;
font-size: 20px;
font-weight: 700;
color: #e63946;
margin-bottom: 16px;
line-height: 1.3;
}

.related.products li.product .price {
font-size: 18px;
color: #e63946;
font-weight: 700;
margin-bottom: 16px;
display: block;
}

.related.products li.product .add_to_cart_button {
background: #1a1a1a !important;
color: white !important;
border: none !important;
padding: 12px 28px !important;
font-size: 13px !important;
font-weight: 700 !important;
text-transform: uppercase !important;
letter-spacing: 1px !important;
border-radius: 6px !important;
cursor: pointer !important;
transition: all 0.3s ease !important;
display: inline-block !important;
margin-bottom: 20px !important;
}

.related.products li.product .add_to_cart_button:hover {
background: #e63946 !important;
transform: scale(1.05);
}

@media (max-width: 768px) {
.related.products h2 {
font-size: 28px;
margin-bottom: 30px;
}

.related.products ul.products {
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
gap: 20px !important;
}

.related.products li.product .product-image {
width: 100%;
background: #f9f9f9;
padding: 40px 20px;
display: flex;
align-items: center;
justify-content: center;
min-height: 280px;
overflow: hidden;
text-align: center;
}

.related.products li.product .product-info {
padding: 30px 20px 40px 20px;
}
}



