* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Georgia', 'Times New Roman', serif; background: #faf7f2; color: #2d2420; line-height: 1.6; }
a { color: #8b5e3c; text-decoration: none; }
a:hover { text-decoration: underline; }

.shop-nav { background: #fff; border-bottom: 2px solid #e8ddd0; padding: 14px 0; position: sticky; top: 0; z-index: 100; }
.shop-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.shop-nav .shop-container { display: flex; align-items: center; justify-content: space-between; }
.shop-brand { font-size: 1.6rem; font-weight: 700; color: #6b3a2a; font-style: italic; letter-spacing: 1px; }
.shop-brand .powered-by { display: inline-block; font-weight: 300 !important; font-size: 0.6rem !important; color: #a08a78; opacity: 0.5; font-style: normal; margin-left: 6px; letter-spacing: 0; }
.shop-nav-links { display: flex; gap: 18px; align-items: center; font-size: 0.9rem; }
.shop-nav-links a { color: #6b3a2a; }

.shop-hero { background: linear-gradient(135deg, #d4a574, #8b5e3c); color: #fff; padding: 60px 0; text-align: center; }
.shop-hero h1 { font-size: 2.4rem; font-weight: 700; letter-spacing: 2px; margin-bottom: 8px; }
.shop-hero p { font-size: 1.05rem; opacity: 0.9; font-style: italic; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 24px; padding-bottom: 40px; }
.product-card { background: #fff; border: 1px solid #e8ddd0; border-radius: 10px; overflow: hidden; transition: box-shadow 0.2s; }
.product-card:hover { box-shadow: 0 4px 20px rgba(139,94,60,0.15); }
.product-img { width: 100%; height: 180px; background: linear-gradient(135deg, #e8ddd0, #d4a574); display: flex; align-items: center; justify-content: center; color: #6b3a2a; font-size: 2.5rem; font-weight: 700; font-style: italic; }
.product-body { padding: 16px; }
.product-body h3 { font-size: 1.05rem; margin-bottom: 6px; color: #2d2420; }
.product-body p { color: #7a6b5e; font-size: 0.85rem; margin-bottom: 10px; }
.product-price { font-size: 1.2rem; font-weight: 700; color: #6b3a2a; margin-bottom: 10px; }
.add-btn { width: 100%; padding: 10px; background: #8b5e3c; color: #fff; border: none; border-radius: 6px; cursor: pointer; font-size: 0.9rem; font-family: inherit; transition: background 0.15s; }
.add-btn:hover { background: #6b3a2a; }

h2 { font-style: italic; color: #6b3a2a; font-weight: 600; }

@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr; }
  .shop-hero h1 { font-size: 1.6rem; }
}
