59RP4ruY
“`html
body {
font-family: ‘Segoe UI’, Roboto, Arial, sans-serif;
background: #f9f9f9;
margin: 0;
padding: 20px;
color: #222;
}
.product-card {
max-width: 1100px;
margin: 0 auto;
background: #fff;
border-radius: 20px;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
padding: 30px 35px;
}
.product-title {
font-size: 28px;
font-weight: 700;
margin: 0 0 10px 0;
color: #111;
}
.price {
font-size: 26px;
font-weight: 700;
color: #b12704;
margin: 10px 0 20px;
}
.gallery {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin: 20px 0;
}
.gallery img {
width: 180px;
height: 180px;
object-fit: cover;
border-radius: 12px;
border: 1px solid #e0e0e0;
transition: transform 0.2s;
}
.gallery img:hover {
transform: scale(1.03);
}
.specs-table {
width: 100%;
border-collapse: collapse;
margin: 25px 0;
background: #fafafa;
border-radius: 12px;
overflow: hidden;
}
.specs-table td, .specs-table th {
padding: 12px 16px;
border-bottom: 1px solid #eaeaea;
vertical-align: top;
}
.specs-table tr:last-child td {
border-bottom: none;
}
.specs-table td:first-child {
font-weight: 600;
width: 40%;
background: #f0f0f0;
}
.description {
line-height: 1.7;
font-size: 16px;
margin: 20px 0;
}
.why-buy {
background: #f2f7fc;
padding: 20px 25px;
border-radius: 16px;
margin: 25px 0;
}
.why-buy h3 {
margin-top: 0;
font-size: 20px;
}
.why-buy ul {
padding-left: 20px;
margin: 10px 0 0;
}
.why-buy li {
margin-bottom: 8px;
}
.faq-section {
margin: 30px 0 10px;
}
.faq-item {
border-bottom: 1px solid #ddd;
padding: 14px 0;
}
.faq-question {
font-weight: 600;
font-size: 17px;
cursor: default;
}
.faq-answer {
margin-top: