/* ============================================================
   UMBER HOME — HOME DECOR STORE STYLESHEET
   ============================================================ */

:root {
  --primary:       #c9673d;
  --primary-dark:  #b0582f;
  --primary-light: #fdf3ef;
  --bg:            #faf6f0;
  --bg-white:      #ffffff;
  --bg-dark:       #1a1510;
  --text:          #1a1510;
  --muted:         #7a6e65;
  --border:        #e8e0d6;
  --charcoal:      #2c2520;
  --sand:          #e8dcd0;
  --success:       #5a7a56;
  --radius:        10px;
  --radius-lg:     18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--text); line-height: 1.65; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 88px 0; }
img { max-width: 100%; display: block; }
h2 { font-family: 'Playfair Display', serif; }

/* ANNOUNCE BAR */
.announce-bar { background: var(--charcoal); color: #e8dcd0; text-align: center; padding: 10px 24px; font-size: .8rem; letter-spacing: .3px; }

/* NAVBAR */
.navbar { position: sticky; top: 0; z-index: 1000; background: var(--bg); border-bottom: 1px solid var(--border); transition: box-shadow .3s; }
.navbar.scrolled { box-shadow: 0 4px 16px rgba(26,21,16,.08); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; height: 62px; }
.nav-logo { text-decoration: none; display: flex; align-items: center; gap: 6px; margin: 0 auto; }
.logo-main { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--text); }
.logo-dot { width: 5px; height: 5px; background: var(--primary); border-radius: 50%; }
.logo-sub { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 400; color: var(--muted); }
.nav-links { display: flex; list-style: none; gap: 6px; position: absolute; left: 50%; transform: translateX(-50%); }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .84rem; font-weight: 500; padding: 6px 12px; border-radius: 6px; transition: color .2s; letter-spacing: .2px; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-icon-btn { background: none; border: none; cursor: pointer; color: var(--muted); padding: 6px; transition: color .2s; }
.nav-icon-btn:hover { color: var(--text); }
.nav-cart { position: relative; color: var(--text); text-decoration: none; display: flex; align-items: center; padding: 6px; }
.cart-count { position: absolute; top: -2px; right: -4px; background: var(--primary); color: #fff; font-size: .6rem; font-weight: 800; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 5px; margin-right: 16px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* HERO */
.hero { padding: 64px 28px 48px; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.hero-badge { display: inline-block; background: var(--primary-light); border: 1px solid rgba(201,103,61,.2); color: var(--primary); padding: 6px 16px; border-radius: 100px; font-size: .75rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 24px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 700; line-height: 1.15; color: var(--text); margin-bottom: 20px; }
.hero p { color: var(--muted); font-size: 1rem; line-height: 1.75; margin-bottom: 32px; max-width: 440px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust-row { display: flex; gap: 20px; flex-wrap: wrap; }
.ht-item { display: flex; align-items: center; gap: 6px; font-size: .78rem; color: var(--muted); }
.ht-item svg { color: var(--success); }
.hero-img { width: 100%; height: 540px; object-fit: cover; border-radius: var(--radius-lg); }

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 48px; }
.section-label { display: inline-block; font-size: .72rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.section-header h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--text); margin-bottom: 14px; }
.section-header p { color: var(--muted); font-size: .97rem; max-width: 500px; margin: 0 auto; line-height: 1.75; }

/* CATEGORIES */
.categories { background: var(--bg); }
.cat-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.cat-tile { text-decoration: none; display: block; border-radius: var(--radius); overflow: hidden; transition: transform .3s, box-shadow .3s; }
.cat-tile:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(26,21,16,.12); }
.cat-img { height: 160px; overflow: hidden; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.cat-tile:hover .cat-img img { transform: scale(1.08); }
.cat-body { padding: 12px; background: var(--bg-white); text-align: center; }
.cat-name { display: block; font-size: .87rem; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.cat-count { font-size: .72rem; color: var(--muted); }

/* SHOP */
.shop { background: var(--bg-white); }
.shop-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 40px; flex-wrap: wrap; }
.shop-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.shop-filter { display: flex; gap: 6px; flex-wrap: wrap; }
.sf-btn { background: none; border: 1px solid var(--border); color: var(--muted); padding: 7px 16px; border-radius: 100px; font-family: inherit; font-size: .8rem; font-weight: 600; cursor: pointer; transition: all .2s; }
.sf-btn.active, .sf-btn:hover { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.product-card.hidden { display: none; }
.product-card { transition: transform .3s; }
.product-card:hover { transform: translateY(-4px); }
.product-img { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--bg); height: 300px; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-img img { transform: scale(1.06); }
.product-badge { position: absolute; top: 12px; left: 12px; font-size: .65rem; font-weight: 800; padding: 4px 10px; border-radius: 6px; letter-spacing: .5px; }
.badge-new { background: var(--charcoal); color: #fff; }
.badge-best { background: var(--primary); color: #fff; }
.badge-sale { background: #d94f4f; color: #fff; }
.product-actions { position: absolute; bottom: 12px; right: 12px; display: flex; gap: 6px; opacity: 0; transition: opacity .3s; }
.product-card:hover .product-actions { opacity: 1; }
.pa-btn { width: 36px; height: 36px; background: var(--bg-white); border: none; border-radius: 8px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text); transition: background .2s; box-shadow: 0 2px 8px rgba(0,0,0,.12); }
.pa-btn:hover { background: var(--primary); color: #fff; }
.product-body { padding: 16px 0 0; }
.product-material { font-size: .72rem; color: var(--muted); margin-bottom: 4px; letter-spacing: .3px; }
.product-body h3 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.product-price { font-size: .95rem; font-weight: 700; color: var(--text); }
.price-original { font-size: .85rem; color: var(--muted); text-decoration: line-through; margin-left: 8px; font-weight: 400; }
.shop-more { text-align: center; margin-top: 48px; }

/* LOOKBOOK */
.lookbook { background: var(--bg); }
.lookbook-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 16px; }
.room-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 320px; cursor: pointer; }
.room-card.room-wide { grid-column: span 2; min-height: 400px; }
.room-img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .6s; }
.room-card:hover .room-img { transform: scale(1.05); }
.room-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,21,16,.8) 40%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; color: #fff; }
.room-style { font-size: .72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.room-overlay h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 600; margin-bottom: 10px; }
.room-overlay p { font-size: .85rem; color: rgba(255,255,255,.75); line-height: 1.65; margin-bottom: 20px; max-width: 480px; }
.room-footer { display: flex; align-items: center; justify-content: space-between; }
.room-footer span { font-size: .8rem; color: rgba(255,255,255,.6); }
.room-cta { color: #fff; text-decoration: none; font-size: .84rem; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 2px; transition: border-color .2s; }
.room-cta:hover { border-color: #fff; }

/* FEATURED COLLECTION */
.featured { background: var(--sand); }
.featured-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.feat-img { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius-lg); }
.featured-text .section-label { margin-bottom: 12px; }
.featured-text h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 20px; color: var(--text); }
.featured-text p { color: var(--muted); font-size: .97rem; line-height: 1.8; margin-bottom: 24px; }
.feat-points { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.feat-points li { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--charcoal); font-weight: 600; }
.feat-points li svg { color: var(--success); flex-shrink: 0; }

/* VALUES */
.values { background: var(--bg-white); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.value-card { text-align: center; }
.value-icon { width: 52px; height: 52px; background: var(--primary-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary); margin: 0 auto 16px; }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: .98rem; font-weight: 600; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: .85rem; line-height: 1.7; }

/* TESTIMONIALS */
.testimonials { background: var(--bg); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.testi-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; transition: transform .3s, box-shadow .3s; }
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(26,21,16,.08); }
.testi-stars { display: flex; gap: 4px; margin-bottom: 14px; }
.testi-card blockquote { font-family: 'Playfair Display', serif; font-size: .92rem; color: var(--text); line-height: 1.75; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.testi-author strong { display: block; font-size: .88rem; }
.testi-author span { font-size: .75rem; color: var(--muted); }

/* NEWSLETTER */
.newsletter { background: var(--charcoal); padding: 56px 0; }
.newsletter-inner { display: flex; align-items: center; gap: 64px; flex-wrap: wrap; justify-content: space-between; }
.nl-text h2 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); color: #faf6f0; margin-bottom: 8px; }
.nl-text p { color: rgba(255,255,255,.55); font-size: .88rem; margin-bottom: 10px; }
.nl-discount { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: #c9a96e; font-weight: 600; }
.nl-discount svg { color: #c9a96e; }
.nl-form { display: flex; gap: 8px; flex-wrap: wrap; flex-shrink: 0; }
.nl-form input { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: #fff; padding: 11px 18px; border-radius: 8px; font-family: inherit; font-size: .88rem; width: 280px; transition: border-color .2s; }
.nl-form input::placeholder { color: rgba(255,255,255,.35); }
.nl-form input:focus { outline: none; border-color: var(--primary); }
.nl-form button { background: var(--primary); color: #fff; border: none; padding: 11px 24px; border-radius: 8px; font-family: inherit; font-size: .88rem; font-weight: 700; cursor: pointer; transition: background .2s; white-space: nowrap; }
.nl-form button:hover { background: var(--primary-dark); }

/* BUTTONS */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--charcoal); color: #fff; text-decoration: none; border: none; padding: 12px 28px; border-radius: 8px; font-family: inherit; font-size: .9rem; font-weight: 600; cursor: pointer; transition: background .2s, transform .2s; }
.btn-primary:hover { background: var(--bg-dark); transform: translateY(-2px); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; border: 1px solid var(--charcoal); color: var(--charcoal); text-decoration: none; padding: 12px 28px; border-radius: 8px; font-size: .9rem; font-weight: 600; transition: background .2s; }
.btn-ghost:hover { background: rgba(44,37,32,.06); }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; background: transparent; border: 1px solid var(--border); color: var(--text); text-decoration: none; padding: 11px 36px; border-radius: 8px; font-family: inherit; font-size: .88rem; font-weight: 600; cursor: pointer; transition: border-color .2s; }
.btn-outline:hover { border-color: var(--charcoal); }

/* FOOTER */
.footer { background: var(--bg-dark); color: #e8dcd0; padding: 64px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 48px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 5px; margin-bottom: 12px; }
.footer-logo .logo-main { color: #faf6f0; }
.footer-logo .logo-dot { background: var(--primary); }
.footer-logo .logo-sub { color: rgba(255,255,255,.45); }
.footer-brand p { color: rgba(255,255,255,.45); font-size: .85rem; line-height: 1.7; margin-bottom: 16px; }
.footer-contacts { font-size: .82rem; color: rgba(255,255,255,.4); line-height: 1.9; }
.footer-col h4 { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; color: rgba(255,255,255,.5); }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: rgba(255,255,255,.5); text-decoration: none; font-size: .85rem; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .79rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* BACK TO TOP */
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 42px; height: 42px; background: var(--charcoal); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; opacity: 0; pointer-events: none; transition: all .3s; z-index: 900; }
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--primary); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 40px; }
  .featured-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { position: static; transform: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 62px; left: 0; right: 0; background: var(--bg); border-bottom: 1px solid var(--border); padding: 16px; gap: 2px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .lookbook-grid { grid-template-columns: 1fr; }
  .room-card.room-wide { grid-column: span 1; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; gap: 28px; }
  .nl-form input { width: 100%; }
  .nl-form { width: 100%; flex-direction: column; }
}
