
/* styles.css - simplified demo clone */
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:'Proxima Nova','Inter',Arial,Helvetica,sans-serif;color:#333;background:#fafafa;line-height:1.4}
.topbar{background:#5b1b58;color:#fff;padding:8px 20px;font-size:12px}
.topbar-inner{width:80%;margin:0 auto;display:flex;justify-content:space-between}
.site-header{background:#fff;border-bottom:1px solid #e6e6e6;position:relative;z-index:1200}
.header-inner{width:80%;margin:0 auto;display:flex;align-items:center;justify-content:space-between;padding:10px 20px}
.logo{display:flex;align-items:center;gap:12px}
.logo img{height:72px}
.brand-name{font-family:'Playfair Display',Georgia,serif;color:#5b1b58;font-size:18px}
/* global heading typography */
h1,h2,h3,h4,h5,h6{font-family:'Playfair Display',Georgia,serif}
.search-zip{font-size:13px;color:#777}
.header-actions{display:flex;align-items:center;gap:12px}
.icon{width:28px;height:28px;opacity:0.9}
.hamburger{display:none;background:#fff;border:1px solid #ddd;padding:8px;border-radius:4px}

.primary{background:#f5f1f6;border-top:1px solid #ece4ef;border-bottom:1px solid #ece4ef;box-shadow:0 2px 8px rgba(0,0,0,0.03);position:relative;z-index:1300}
.nav-inner{width:100%;margin:0 auto;padding:10px 20px;display:flex;gap:18px;flex-wrap:nowrap;align-items:center;justify-content:center;overflow:visible}
.nav-inner a{padding:8px 12px;color:#4a4050;font-weight:600;border-radius:4px;line-height:1;display:inline-flex;align-items:center;text-decoration:none;white-space:nowrap}
.nav-inner a:hover{background:rgba(91,27,88,0.08);color:#2f2731}
.dropdown{position:relative}
.dropdown-content{display:none;position:absolute;top:100%;left:0;background:#fff;box-shadow:0 4px 8px rgba(0,0,0,0.1);min-width:220px;border-radius:4px;overflow:hidden;z-index:1400}
.dropdown-content a{padding:10px 14px;display:block;color:#333;text-decoration:none}
.dropdown:hover .dropdown-content{display:block}

/* hero */
.hero{width:100%;margin:20px 0;padding:0}
.hero-slider{position:relative;border-radius:0;overflow:hidden;height:520px;z-index:100}
.hero-slide{position:relative}
.hero-slide img{width:100%;height:100%;display:block;object-fit:cover}
.hero-cta{position:absolute;right:36px;top:40px;background:rgba(255,255,255,0.95);padding:20px 26px;border-radius:3px;text-align:center;box-shadow:0 4px 18px rgba(0,0,0,0.08)}
/* slider animation */
.hero-slide{opacity:0;visibility:hidden;position:absolute;left:0;top:0;width:100%;transition:opacity .6s ease}
.hero-slide.active{opacity:1;visibility:visible;position:relative}
/* hero nav */
.hero-nav{position:absolute;top:50%;transform:translateY(-50%);background:rgba(255,255,255,0.85);border:0;border-radius:50%;width:40px;height:40px;display:flex;align-items:center;justify-content:center;font-size:26px;cursor:pointer;box-shadow:0 2px 8px rgba(0,0,0,0.15)}
.hero-prev{left:12px}
.hero-next{right:12px}
.hero-nav:hover{background:#fff}
/* progress bar */
.hero-progress{position:absolute;left:0;bottom:0;height:4px;width:100%;background:rgba(255,255,255,0.6)}
.hero-progress-fill{height:100%;width:0;background:#c24a2b}
.hero-cta h2{font-family:Georgia,serif;color:#c24a2b;font-size:28px;margin-bottom:6px}
.btn-primary{display:inline-block;background:#c24a2b;color:#fff;padding:10px 14px;border-radius:4px;font-weight:700}

/* sections */
.section{max-width:1200px;margin:30px auto;padding:0 20px}
.section, .hero, .rewards, .site-footer{scroll-margin-top:100px}
.section-title{display:flex;align-items:center;justify-content:center;gap:12px;color:#2f2731;font-weight:700;padding:16px 0;text-transform:uppercase;letter-spacing:1.8px;font-family:'Playfair Display',Georgia,serif;font-size:24px}
.section-title:before,.section-title:after{content:"";flex:1;height:1px;background:linear-gradient(to right, rgba(91,27,88,0), rgba(91,27,88,0.25))}
.section-title:after{background:linear-gradient(to left, rgba(91,27,88,0), rgba(91,27,88,0.25))}
.section-title{position:relative}
.section-title span,.section-title{z-index:1}
.section-title::selection{background:transparent}
/* section more link */
.section-more{display:flex;justify-content:center;margin-top:6px}
.section-more a{color:#c24a2b;font-weight:700;text-decoration:none;border-bottom:2px solid rgba(194,74,43,0.2);padding-bottom:2px}
.section-more a:hover{border-bottom-color:#c24a2b}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:18px}
.product{background:#fff;border-radius:4px;overflow:hidden;border:1px solid #eee;padding:12px;text-align:center}
.img-wrap{width:100%;aspect-ratio:4/3;display:block;overflow:hidden;border-bottom:1px solid #f4f4f4}
.img-wrap img{width:100%;height:100%;display:block;object-fit:cover}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.small-product .img-wrap{aspect-ratio:4/3}

/* rewards */
.rewards{max-width:1200px;margin:30px auto;padding:18px 20px;background:#fff;border-top:1px solid #eee;border-bottom:1px solid #eee}
.rewards .inner{display:flex;align-items:center;justify-content:space-between}

/* footer */
.site-footer{background:#2b2b2b;color:#ddd;padding:30px 20px;margin-top:28px}
.footer-banners{max-width:1200px;margin:0 auto;display:flex;gap:18px;padding-bottom:18px}
.footer-banners img{height:80px;object-fit:cover;border-radius:2px}
.footer-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(4,1fr);gap:20px;padding-top:10px}
.footer-inner h5{color:#fff;margin-bottom:10px}
.footer-inner a{display:block;color:#cfcfcf;margin-bottom:8px;font-size:13px;text-decoration:none}
.newsletter{display:flex;gap:8px;margin:10px 0}
.newsletter input{padding:8px;flex:1;border:1px solid #ccc;border-radius:2px}
.newsletter button{padding:8px 12px;border:none;background:#444;color:#fff;border-radius:2px}
.socials a{display:inline-flex;align-items:center;justify-content:center;width:32px;height:32px;margin-right:10px;color:#cfcfcf}
.socials a:hover{color:#fff}
.socials svg{width:22px;height:22px;display:block}
.call{margin-top:14px;font-weight:700;font-size:20px}

/* extended footer */
.footer-extended{max-width:1200px;margin:20px auto;color:#aaa;padding-top:18px;border-top:1px solid rgba(255,255,255,0.03);display:flex;align-items:center;justify-content:space-between}
.footer-extended p{max-width:900px;line-height:1.4}
.footer-extended .bbb{height:60px}

/* drawer (mobile) */
.drawer{position:fixed;left:-320px;top:0;height:100%;width:300px;background:#fff;box-shadow:4px 0 18px rgba(0,0,0,0.2);z-index:2000;padding:20px;transition:left .28s ease}
.drawer.open{left:0}
.drawer-close{background:#eee;border:0;padding:6px 8px;border-radius:4px;float:right}
.drawer-nav{margin-top:30px;display:flex;flex-direction:column;gap:8px}
.drawer-nav a{padding:10px 8px;border-bottom:1px solid #f2f2f2;color:#333}
.drawer-group strong{display:block;margin-top:12px}

/* overlay */
.overlay{position:fixed;left:0;top:0;width:100%;height:100%;background:rgba(0,0,0,0.4);opacity:0;visibility:hidden;transition:opacity .2s;z-index:1500}
.overlay.show{opacity:1;visibility:visible}

/* responsive */
@media (max-width:1000px){
  .grid{grid-template-columns:repeat(2,1fr)}
  .grid-4{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:720px){
  .nav-inner{display:none}
  .hamburger{display:inline-block}
  .header-actions .icon{display:none}
  .hero-cta{right:14px;left:14px}
  .hero-slider{height:320px}
  .footer-inner{grid-template-columns:1fr}
  .footer-banners{flex-direction:column;gap:12px}
  .footer-extended{flex-direction:column;align-items:flex-start;gap:12px}
}
