/* acnusik.com — Main Stylesheet */
:root {
  --primary: #1a1a2e;
  --accent: #e94560;
  --accent-hover: #c73750;
  --bg: #f8f9fa;
  --white: #fff;
  --border: #e0e0e0;
  --text: #333;
  --text-light: #666;
  --star: #f5a623;
  --green: #27ae60;
  --blue: #3498db;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
img { max-width: 100%; height: auto; }

/* Header */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; height: 60px; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); text-decoration: none; letter-spacing: -0.5px; }
.site-nav a { color: var(--text-light); text-decoration: none; margin-left: 1.5rem; font-size: .95rem; }
.site-nav a:hover { color: var(--accent); }

/* Hero (index) */
.hero { text-align: center; padding: 4rem 1rem; background: linear-gradient(135deg, var(--primary), #16213e); color: var(--white); }
.hero h1 { font-size: 2.2rem; margin-bottom: .5rem; }
.hero p { font-size: 1.1rem; opacity: .85; }

/* Products Grid (index) */
.products-section { max-width: 1200px; margin: 2rem auto; padding: 0 1rem; }
.products-section h2 { text-align: center; font-size: 1.8rem; margin-bottom: 2rem; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 1.5rem; }
.product-card { background: var(--white); border-radius: 12px; overflow: hidden; transition: transform .2s, box-shadow .2s; border: 1px solid var(--border); }
.product-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.1); }
.product-card a { text-decoration: none; color: inherit; }
.card-image { height: 220px; display: flex; align-items: center; justify-content: center; padding: 1rem; background: var(--bg); }
.card-image img { max-height: 200px; object-fit: contain; }
.card-body { padding: 1.2rem; }
.card-body h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: .3rem; }
.card-price { font-size: 1.3rem; font-weight: 700; color: var(--accent); }
.card-variants { font-size: .85rem; color: var(--text-light); margin-top: .2rem; }

/* Product Page */
.product-page { max-width: 1200px; margin: 2rem auto; padding: 0 1rem; }
.product-container { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
@media (max-width: 768px) { .product-container { grid-template-columns: 1fr; } }

/* Gallery */
.product-gallery { position: relative; height: 400px; background: var(--white); overflow: hidden; border-radius: 12px; }
.product-gallery img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; padding: 1rem; transition: opacity .3s; opacity: 0; }
.product-gallery img.active { opacity: 1; }
.gallery-nav { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.gallery-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,.25); cursor: pointer; }
.gallery-dot.active { background: var(--accent); }
.gallery-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.85); border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1.2rem; z-index: 2; box-shadow: 0 1px 4px rgba(0,0,0,.15); display: flex; align-items: center; justify-content: center; }
.gallery-prev { left: 8px; }
.gallery-next { right: 8px; }

/* Product Info */
.product-info { background: var(--white); padding: 1.5rem; border-radius: 12px; }
.product-cat { display: inline-block; padding: .2rem .8rem; border-radius: 20px; font-size: .8rem; font-weight: 600; margin-bottom: .5rem; }
.cat-moving { background: #dbeafe; color: #1e40af; }
.cat-jumbo { background: #fef3c7; color: #92400e; }
.cat-mattress { background: #d1fae5; color: #065f46; }
.product-title { font-size: 1.5rem; color: var(--primary); margin-bottom: .8rem; }
.product-price { display: flex; align-items: baseline; gap: .8rem; margin-bottom: .8rem; }
.price-current { font-size: 1.8rem; font-weight: 700; color: var(--accent); }
.price-free { font-size: .85rem; color: var(--green); font-weight: 600; }
.product-rating { margin-bottom: 1rem; }
.stars { color: var(--star); font-size: 1rem; }
.count { color: var(--text-light); font-size: .85rem; }
.product-specs { list-style: none; margin-bottom: 1.2rem; }
.product-specs li { padding: .3rem 0; font-size: .93rem; color: var(--text); border-bottom: 1px solid var(--border); }
.product-specs li:last-child { border-bottom: none; }
.btn-buy { display: inline-block; background: var(--accent); color: var(--white); padding: .8rem 2rem; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 1rem; transition: background .2s; margin-bottom: 1rem; }
.btn-buy:hover { background: var(--accent-hover); }

/* Product Description */
.product-description { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); }
.product-description h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: .5rem; }
.product-description p { color: var(--text-light); font-size: .93rem; margin-bottom: .8rem; }
.bullet-list { list-style: disc; padding-left: 1.2rem; color: var(--text-light); font-size: .93rem; }
.bullet-list li { padding: .15rem 0; }

/* A+ Content */
.aplus-wrapper { background: var(--white); padding: 3rem 2rem; margin-top: 2rem; }
.aplus-inner { max-width: 1200px; margin: 0 auto; }
.aplus-heading { font-size: 1.6rem; color: var(--primary); margin-bottom: .5rem; text-align: center; }
.aplus-subtitle { color: var(--text-light); text-align: center; margin-bottom: 1.5rem; }
.aplus-hero { margin-bottom: 1.5rem; border-radius: 8px; overflow: hidden; }
.aplus-hero img { width: 100%; display: block; }
.aplus-grid-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 768px) { .aplus-grid-2col { grid-template-columns: 1fr; } }
.aplus-item { display: flex; gap: 1rem; padding: 1rem; border-radius: 8px; background: var(--bg); }
.aplus-item-icon img { width: 80px; height: 80px; object-fit: contain; flex-shrink: 0; border-radius: 8px; }
.aplus-item-text h4 { font-size: .95rem; color: var(--primary); margin-bottom: .3rem; }
.aplus-item-text p { font-size: .85rem; color: var(--text-light); line-height: 1.5; }

/* Reviews */
.reviews-section { background: var(--white); padding: 3rem 2rem; margin-top: 2rem; }
.reviews-inner { max-width: 1200px; margin: 0 auto; }
.reviews-inner h2 { text-align: center; font-size: 1.8rem; color: var(--primary); margin-bottom: 2rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.review-card { background: var(--bg); padding: 1.5rem; border-radius: 10px; border: 1px solid var(--border); }
.review-stars { color: var(--star); margin-bottom: .5rem; font-size: .95rem; }
.review-title { font-weight: 700; margin-bottom: .5rem; color: var(--primary); }
.review-text { color: var(--text-light); font-size: .93rem; line-height: 1.6; margin-bottom: .75rem; font-style: italic; }
.review-meta { font-size: .85rem; color: var(--text-light); display: flex; justify-content: space-between; }
.review-verified { color: var(--green); font-weight: 600; }

/* Footer */
.site-footer { background: var(--primary); color: rgba(255,255,255,.7); text-align: center; padding: 2rem; margin-top: 3rem; font-size: .9rem; }
.site-footer p { margin-bottom: .3rem; }
