* {
box-sizing: border-box;
}

body {
margin: 0;
font-family: "Playfair Display", serif;
background: linear-gradient(135deg, #f6f2eb, #eae6df);
color: #111;
}

.shop {
max-width: 1200px;
margin: auto;
padding: 60px 20px;
}

.shop h1 {
text-align: center;
font-size: 42px;
letter-spacing: 2px;
margin-bottom: 10px;
}

.subtitle {
text-align: center;
color: #7a6f5f;
font-size: 16px;
margin-bottom: 60px;
}

.products {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 40px;
}

.product {
background: #fff;
border-radius: 16px;
padding: 25px;
text-align: center;
box-shadow: 0 12px 30px rgba(0,0,0,0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product:hover {
transform: translateY(-6px);
box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.product img {
width: 100%;
height: 260px;
object-fit: contain;
margin-bottom: 20px;
}

.product h2 {
font-size: 20px;
margin-bottom: 10px;
}

.product p {
font-size: 14px;
color: #666;
}

.price {
display: block;
font-size: 20px;
font-weight: bold;
margin: 18px 0;
color: #b89b5e; /* Gold tone */
}

button {
padding: 12px 28px;
border: 1px solid #b89b5e;
background: transparent;
color: #111;
letter-spacing: 1px;
cursor: pointer;
border-radius: 30px;
transition: all 0.3s ease;
}

button:hover {
background: #b89b5e;
color: #fff;
}