
:root { --bg: #fff5f5; --text: #2d3748; --accent: #fc8181; --border: #fed7d7; --nav-bg: #fff; }
body { background: var(--bg); color: var(--text); font-family: 'Poppins', sans-serif; margin: 0; padding: 0; }
a { color: var(--text); text-decoration: none; font-weight: 600; }
a:hover { color: var(--accent); }
header { padding: 20px 40px; background: var(--nav-bg); display: flex; justify-content: space-between; align-items: center; border-radius: 0 0 20px 20px; box-shadow: 0 4px 6px rgba(252, 129, 129, 0.1); margin-bottom: 20px; position: sticky; top: 0; z-index: 100;}
.logo { font-size: 28px; font-weight: 900; color: var(--accent); letter-spacing: -1px; }
nav ul { list-style: none; display: flex; gap: 25px; margin: 0; padding: 0; }
.cart-btn { background: var(--accent); color: #fff; border: none; padding: 10px 25px; border-radius: 20px; font-weight: bold; cursor: pointer; }

/* Hero */
.hero { height: 70vh; background-size: cover; background-position: top; background-attachment: fixed; margin: 0 20px; border-radius: 30px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(252, 129, 129, 0.8), rgba(253, 101, 133, 0.6)); }
.hero-content { position: relative; z-index: 1; text-align: center; color: white; }
.hero-content h1 { font-size: 4rem; font-weight: 900; margin: 0 0 10px; text-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.hero-content p { font-size: 1.3rem; font-weight: 500; }
.hero-btn { display: inline-block; background: #fff; color: var(--accent); padding: 15px 40px; border-radius: 30px; font-weight: bold; margin-top: 20px; box-shadow: 0 4px 10px rgba(0,0,0,0.1); }

/* Grid */
.container { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 50px; color: var(--text); }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 40px; }
.product { background: #fff; border-radius: 25px; padding: 15px; text-align: center; box-shadow: 0 10px 15px -3px rgba(252, 129, 129, 0.1); transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.product:hover { transform: translateY(-10px) scale(1.02); }
.product a { display: block; }
.product img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 15px; margin-bottom: 15px; }
.product h2 { font-size: 1.1rem; margin: 0 0 5px; font-weight: 700; }
.product .price { color: var(--accent); font-weight: 800; font-size: 1.2rem; margin-bottom: 15px; }
.add-to-cart { width: 100%; background: var(--bg); color: var(--text); border: none; padding: 10px 20px; border-radius: 20px; font-weight: bold; cursor: pointer; transition: all 0.2s; box-sizing: border-box;}
.add-to-cart:hover { background: var(--accent); color: white; }

/* Product Page Options */
.product-single { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 1100px; margin: 40px auto; padding: 30px; background: #fff; border-radius: 30px; box-shadow: 0 10px 20px rgba(252, 129, 129, 0.1); }
.product-single img { width: 100%; border-radius: 20px; }
.product-single-info h1 { font-size: 2.2rem; margin-top: 0; color: var(--text); font-weight: 800; }
.product-single-info .price { font-size: 1.8rem; font-weight: 800; color: var(--accent); margin: 15px 0; }
.category-badge { display: inline-block; background: var(--bg); color: var(--accent); padding: 5px 15px; border-radius: 25px; font-size: 0.85rem; font-weight: bold; margin-bottom: 10px; text-transform: uppercase; }

/* Pages */
.page-content { max-width: 800px; margin: 60px auto; padding: 50px; background: #fff; border-radius: 30px; box-shadow: 0 10px 20px rgba(252, 129, 129, 0.1); }
.page-content h1 { color: var(--accent); font-weight: 900; }
input, textarea { width: 100%; padding: 15px; border-radius: 15px; border: 2px solid var(--border); box-sizing: border-box; margin-bottom: 20px; font-family: inherit; }
input:focus, textarea:focus { outline: none; border-color: var(--accent); }
.submit-btn { background: var(--accent); color: white; padding: 15px 40px; border: none; border-radius: 25px; font-weight: bold; cursor: pointer; width: 100%; }

/* Forms & Radios */
.radio-group { padding: 15px; border: 2px solid var(--border); border-radius: 15px; margin-bottom: 15px; display: flex; align-items: center; gap: 10px; cursor: pointer; background: #fff;}
.radio-group input[type="radio"] { width: auto; margin: 0; }
.cc-fields { padding: 20px; background: #fff; border-radius: 15px; margin-bottom: 20px; border: 2px solid var(--border); }

footer { text-align: center; padding: 40px; color: #a0aec0; margin-top: 40px; border-top: 2px solid var(--border); }
        