:root {
    --primary-color: #E75480; /* Pink */
    --primary-dark: #d0466e;
    --accent-color: #C9A34E; /* Gold */
    --accent-dark: #a38234;
    --bg-color: #FFFFF0; /* Ivory */
    --text-main: #333333;
    --text-light: #666666;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --header-height: 80px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); background-color: var(--bg-color); color: var(--text-main); line-height: 1.6; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); color: var(--primary-color); font-weight: 500; }
a { text-decoration: none; color: inherit; transition: 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }

/* Buttons */
.btn { display: inline-block; padding: 12px 28px; border-radius: 4px; font-family: var(--font-body); font-weight: bold; font-size: 0.95rem; text-transform: uppercase; cursor: pointer; text-align: center; transition: all 0.3s ease; border: 1px solid transparent; letter-spacing: 1px; }
.btn-primary { background: var(--primary-color); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-accent { background: var(--accent-color); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); }
.btn-outline { background: transparent; border-color: var(--accent-color); color: var(--accent-color); }
.btn-outline:hover { background: var(--accent-color); color: #fff; }

/* Header */
.main-header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); position: sticky; top: 0; z-index: 1000; height: var(--header-height); }
.header-container { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.logo { font-size: 2rem; font-family: var(--font-heading); color: var(--primary-color); font-weight: 700; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 0.95rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; position: relative; }
.nav-links a::after { content: ''; position: absolute; width: 0; height: 2px; bottom: -4px; left: 0; background-color: var(--accent-color); transition: width 0.3s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; color: var(--primary-color); }

/* Footer */
.main-footer { background: #222; color: #fff; padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-col h3 { color: var(--accent-color); font-size: 1.2rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col p { color: #ccc; font-size: 0.95rem; margin-bottom: 10px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #ccc; font-size: 0.95rem; }
.footer-links a:hover { color: var(--primary-color); }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #444; color: #888; font-size: 0.85rem; }

/* Shared Sections */
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 2.5rem; margin-bottom: 15px; }
.section-title .divider { width: 60px; height: 3px; background: var(--accent-color); margin: 0 auto; }
.section-padding { padding: 80px 0; }

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-links { position: fixed; top: var(--header-height); left: -100%; width: 100%; height: calc(100vh - var(--header-height)); background: #fff; flex-direction: column; align-items: center; justify-content: center; transition: left 0.3s ease; box-shadow: 0 4px 10px rgba(0,0,0,0.1); gap: 40px; }
    .nav-links.active { left: 0; }
    .mobile-toggle { display: block; }
}

/* Page Banner */
.page-banner { background: #fff; padding: 60px 0; text-align: center; border-bottom: 1px solid #eaeaea; }
.page-banner h1 { font-size: 2.8rem; margin-bottom: 10px; }
.page-banner p { color: var(--text-light); font-size: 1.1rem; }

/* Product Grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 30px; }
.product-card { background: #fff; border-radius: 4px; overflow: hidden; transition: transform 0.3s, box-shadow 0.3s; position: relative; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); }
.product-img-wrapper { position: relative; height: 320px; overflow: hidden; background: #f9f9f9; }
.product-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; position: absolute; }
.product-card:hover .product-img-wrapper img { transform: scale(1.05); }
.product-info { padding: 20px; text-align: center; }
.product-category { font-size: 0.8rem; color: var(--accent-color); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; display: block; }
.product-title { font-size: 1.1rem; color: var(--text-main); font-family: var(--font-body); font-weight: 500; margin-bottom: 10px; }
.product-price { font-size: 1.2rem; color: var(--primary-color); font-weight: 700; }

/* Product Detail */
.product-detail-layout { display: flex; gap: 50px; flex-wrap: wrap; margin-top: 40px; }
.product-detail-gallery { flex: 1; min-width: 300px; display: flex; flex-direction: column; gap: 20px; }
.main-img { width: 100%; height: 500px; object-fit: cover; border-radius: 4px; background: #fff; }
.thumb-list { display: flex; gap: 10px; overflow-x: auto; }
.thumb-list img { width: 80px; height: 80px; object-fit: cover; cursor: pointer; border-radius: 4px; border: 2px solid transparent; opacity: 0.6; transition: 0.3s; }
.thumb-list img.active, .thumb-list img:hover { border-color: var(--accent-color); opacity: 1; }

.product-detail-info { flex: 1; min-width: 300px; }
.product-detail-info h1 { font-size: 2.5rem; margin-bottom: 10px; }
.product-detail-info .price { font-size: 1.8rem; color: var(--accent-color); font-weight: bold; margin: 20px 0; }
.product-detail-info .desc { font-size: 1.05rem; color: var(--text-light); margin-bottom: 30px; line-height: 1.8; }
.whatsapp-btn { background: #25D366; color: #fff; border-color: #25D366; display: inline-flex; align-items: center; gap: 10px; font-size: 1.1rem; padding: 15px 30px; border-radius: 50px; }
.whatsapp-btn:hover { background: #1ebe57; border-color: #1ebe57; color:#fff; }

/* Contact Forms */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
@media(max-width:768px){ .contact-grid{ grid-template-columns: 1fr; } }
.modern-form .form-group { margin-bottom: 25px; }
.modern-form label { display: block; margin-bottom: 10px; font-weight: bold; font-family: var(--font-heading); color: var(--primary-color); }
.modern-form .form-control { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 4px; background: #fff; font-family: var(--font-body); font-size: 1rem; transition: 0.3s; }
.modern-form .form-control:focus { outline: none; border-color: var(--accent-color); box-shadow: 0 0 0 3px rgba(201,163,78,0.1); }
.info-box { background: #fff; padding: 40px; border-radius: 4px; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
.info-box h3 { font-size: 1.5rem; margin-bottom: 20px; color: var(--primary-color); }
.info-box p { font-size: 1.1rem; margin-bottom: 15px; color: var(--text-light); }
