@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

*,*::before,*::after{margin:0;padding:0;box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  font-family:'Inter',sans-serif;
  color:#333;
  background:#fff;
  -webkit-font-smoothing:antialiased;
  line-height:1.6;
}

h1,h2,h3,h4,h5,h6{font-family:'Poppins',sans-serif;color:#14213D}

a{text-decoration:none;color:inherit}

img{max-width:100%;display:block}

button{cursor:pointer;font-family:inherit;border:none;background:none}

/* NAV */
.nav{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  height:72px;
  background:#fff;
  border-bottom:1px solid #e0e0e0;
  display:flex;
  align-items:center;
}
.nav-inner{
  max-width:1200px;
  width:100%;
  margin:0 auto;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.nav-links{display:flex;align-items:center;gap:28px}
.nav-links a{
  font-size:14px;
  font-weight:500;
  color:#14213D;
  text-transform:uppercase;
  letter-spacing:.5px;
  position:relative;
  padding-bottom:4px;
}
.nav-links a::after{
  content:'';position:absolute;
  bottom:0;left:0;
  width:0;height:2px;
  background:#FF6B35;
  transition:width .3s;
}
.nav-links a:hover::after{width:100%}
.nav-links a:hover{color:#FF6B35}
.nav-actions{display:flex;align-items:center;gap:12px}
.nav-btn{
  width:40px;height:40px;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;
  transition:background .2s;
}
.nav-btn:hover{background:#f5f5f5}
.nav-btn svg{width:20px;height:20px;color:#14213D}
.cart-badge{
  position:absolute;
  top:-4px;right:-4px;
  width:20px;height:20px;
  background:#FF6B35;
  color:#fff;
  font-size:11px;
  font-weight:700;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.cart-btn{position:relative}

/* MOBILE MENU */
.mobile-toggle{display:none}
.mobile-menu{
  display:none;
  position:fixed;
  top:72px;right:0;
  width:320px;
  height:calc(100vh - 72px);
  background:#14213D;
  padding:24px;
  overflow-y:auto;
  z-index:99;
}
.mobile-menu.open{display:block}
.mobile-menu a{
  display:block;
  color:#fff;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.2);
  font-weight:500;
}
.mobile-menu a:hover{color:#FF6B35}
.menu-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  z-index:98;
}
.menu-overlay.open{display:block}

/* ANNOUNCEMENT BAR */
.announce{
  background:#14213D;
  color:#fff;
  text-align:center;
  font-size:14px;
  padding:10px 48px;
  position:relative;
  margin-top:72px;
}
.announce-close{
  position:absolute;
  right:12px;top:50%;
  transform:translateY(-50%);
  color:#fff;
  cursor:pointer;
}

/* HERO */
.hero{
  min-height:calc(100dvh - 112px);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:40px 24px;
  position:relative;
}
.hero-title{
  font-size:clamp(32px,5vw,70px);
  font-weight:700;
  color:#14213D;
  text-transform:uppercase;
  line-height:1.05;
  letter-spacing:-1px;
  max-width:900px;
  margin-bottom:16px;
}
.hero-sub{
  font-size:clamp(16px,2vw,22px);
  color:#333;
  max-width:650px;
  margin-bottom:32px;
}
.hero-btns{display:flex;gap:16px;flex-wrap:wrap;justify-content:center}

/* CUBES */
.cube-row{
  display:flex;
  gap:8px;
  margin-bottom:32px;
  perspective:480px;
}
.cube{
  width:clamp(40px,10vw,72px);
  height:clamp(40px,10vw,72px);
  position:relative;
  transform-style:preserve-3d;
}
.cube-face{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Poppins',sans-serif;
  font-weight:700;
  font-size:clamp(24px,6vw,48px);
  color:#14213D;
  border:2px solid #14213D;
  background:#fff;
  backface-visibility:hidden;
}
.scroll-arrow{
  position:absolute;
  bottom:24px;
  animation:bounce 2s infinite;
  color:#999;
}
@keyframes bounce{0%,100%{transform:translateY(0)}50%{transform:translateY(8px)}}

/* BUTTONS */
.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:#FF6B35;
  color:#fff;
  font-weight:600;
  font-size:16px;
  padding:16px 36px;
  border-radius:999px;
  transition:background .2s;
}
.btn-primary:hover{background:#e55a2b}
.btn-navy{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:#14213D;
  color:#fff;
  font-weight:600;
  font-size:15px;
  padding:12px 28px;
  border-radius:8px;
  transition:background .2s;
}
.btn-navy:hover{background:#FF6B35}
.btn-outline{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:2px solid #14213D;
  color:#14213D;
  font-weight:600;
  font-size:16px;
  padding:14px 32px;
  border-radius:999px;
  transition:all .2s;
}
.btn-outline:hover{background:#14213D;color:#fff}

/* SECTIONS */
.section{max-width:1200px;margin:0 auto;padding:80px 24px}
.section-title{
  font-size:clamp(28px,4vw,48px);
  font-weight:600;
  text-transform:uppercase;
  text-align:center;
  margin-bottom:12px;
}
.section-accent{
  width:60px;height:4px;
  background:#FF6B35;
  margin:0 auto 48px;
}

/* FEATURED */
.featured-grid{display:flex;flex-direction:column;gap:64px}
.featured-row{
  display:flex;
  align-items:center;
  gap:48px;
}
.featured-row.reverse{flex-direction:row-reverse}
.featured-img{
  width:50%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:12px;
  box-shadow:0 4px 20px rgba(0,0,0,.1);
  transition:transform .3s;
}
.featured-img:hover{transform:scale(1.02)}
.featured-text{width:50%}
.featured-text h3{
  font-size:24px;
  font-weight:600;
  margin-bottom:4px;
}
.featured-text .price{
  font-size:32px;
  font-weight:700;
  color:#FF6B35;
  margin-bottom:4px;
}
.featured-text .compare{
  color:#999;
  text-decoration:line-through;
  font-size:16px;
  margin-bottom:16px;
}
.featured-text p{color:#333;margin-bottom:24px}

/* CAROUSEL */
.carousel-section{
  background:#14213D;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.carousel-title{
  position:absolute;
  top:32px;left:0;right:0;
  text-align:center;
  color:#fff;
  font-size:clamp(28px,4vw,48px);
  font-weight:600;
  text-transform:uppercase;
  z-index:10;
}
.carousel-cards{
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:40px 24px;
  -ms-overflow-style:none;
  scrollbar-width:none;
}
.carousel-cards::-webkit-scrollbar{display:none}
.carousel-card{
  flex:0 0 240px;
  height:320px;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 30px rgba(0,0,0,.4);
  scroll-snap-align:center;
  transition:transform .3s;
  cursor:pointer;
}
.carousel-card:hover{transform:translateY(-6px)}
.carousel-card-img{height:70%}
.carousel-card-img img{width:100%;height:100%;object-fit:cover}
.carousel-card-label{
  height:30%;
  background:#14213D;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:600;
  font-size:13px;
  text-transform:uppercase;
  text-align:center;
  padding:8px;
}
.carousel-btns{
  position:absolute;
  bottom:40px;
  display:flex;
  gap:20px;
  z-index:10;
}

/* BEST SELLERS */
.best-bg{background:#f5f5f5}
.best-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  margin-bottom:32px;
}
.best-scroll{display:flex;gap:20px;overflow-x:auto;padding-bottom:12px;scroll-snap-type:x mandatory}
.best-scroll::-webkit-scrollbar{display:none}
.product-card{
  flex:0 0 280px;
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 2px 12px rgba(0,0,0,.08);
  scroll-snap-align:start;
  transition:transform .3s,box-shadow .3s;
}
.product-card:hover{transform:translateY(-4px);box-shadow:0 8px 30px rgba(0,0,0,.12)}
.card-img{aspect-ratio:1/1;overflow:hidden;position:relative;background:#f8f8f8}
.card-img img{width:100%;height:100%;object-fit:cover;transition:transform .3s}
.product-card:hover .card-img img{transform:scale(1.03)}
.card-badge{
  position:absolute;
  top:12px;left:12px;
  background:#FF6B35;
  color:#fff;
  font-size:11px;
  font-weight:600;
  padding:4px 10px;
  border-radius:999px;
}
.card-digital{
  position:absolute;
  top:12px;right:12px;
  background:#14213D;
  color:#fff;
  font-size:11px;
  font-weight:600;
  padding:4px 10px;
  border-radius:999px;
}
.card-info{padding:16px}
.card-cat{font-size:12px;color:#999;text-transform:uppercase;letter-spacing:.5px;margin-bottom:4px}
.card-title{font-weight:600;color:#14213D;font-size:15px;margin-bottom:2px}
.card-sub{font-size:13px;color:#666;margin-bottom:12px}
.card-price-row{display:flex;align-items:center;gap:8px;margin-bottom:12px}
.card-price{font-size:20px;font-weight:700;color:#FF6B35}
.card-compare{font-size:14px;color:#999;text-decoration:line-through}
.card-actions{display:flex;align-items:center;gap:8px}
.card-qty-btn{
  width:32px;height:32px;
  border:1px solid #ddd;
  border-radius:6px;
  display:flex;align-items:center;justify-content:center;
  transition:background .2s;
}
.card-qty-btn:hover{background:#f5f5f5}

/* BULK */
.bulk-section{background:#14213D;padding:80px 24px}
.bulk-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;gap:64px}
.bulk-img{width:50%;border-radius:16px;overflow:hidden}
.bulk-img img{width:100%;height:auto;object-fit:cover}
.bulk-text{width:50%}
.bulk-text h2{color:#fff;font-size:clamp(24px,3vw,40px);margin-bottom:20px}
.bulk-text p{color:rgba(255,255,255,.8);margin-bottom:32px}
.bulk-list{list-style:none;margin-bottom:32px}
.bulk-list li{display:flex;align-items:flex-start;gap:12px;color:rgba(255,255,255,.9);margin-bottom:16px}
.bulk-list li svg{color:#FF6B35;flex-shrink:0;margin-top:2px}

/* TRUST + FAQ */
.trust-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:32px;margin-bottom:80px;text-align:center}
.trust-item svg{width:40px;height:40px;color:#14213D;margin-bottom:8px}
.trust-item h4{font-weight:600;color:#14213D;margin-bottom:4px}
.trust-item p{font-size:14px;color:#333}

.faq-item{border-bottom:1px solid #ddd}
.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:20px 0;
  font-size:18px;
  font-weight:600;
  color:#14213D;
  text-align:left;
  cursor:pointer;
  transition:color .2s;
}
.faq-q:hover{color:#FF6B35}
.faq-q svg{flex-shrink:0;transition:transform .3s}
.faq-q.open svg{transform:rotate(180deg)}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease,padding .3s;
}
.faq-a.open{
  max-height:300px;
  padding-bottom:20px;
}
.faq-a p{color:#333;line-height:1.7}

/* NEWSLETTER */
.news-bg{background:#f5f5f5}
.news-inner{max-width:500px;margin:0 auto;text-align:center}
.news-inner h2{font-size:clamp(22px,3vw,32px);margin-bottom:12px}
.news-inner p{color:#333;margin-bottom:24px}
.news-form{display:flex;gap:12px}
.news-form input{
  flex:1;
  border:1px solid #14213D;
  border-radius:8px;
  padding:14px 16px;
  font-size:15px;
  outline:none;
}
.news-form input:focus{box-shadow:0 0 0 2px rgba(255,107,53,.3)}
.news-disclaimer{font-size:12px;color:#999;margin-top:16px}

/* SHOP PAGE */
.page-header{
  background:#14213D;
  text-align:center;
  padding:80px 24px 60px;
  margin-top:72px;
}
.page-header h1{color:#fff;font-size:clamp(28px,4vw,48px);text-transform:uppercase}
.page-header p{color:rgba(255,255,255,.7);margin-top:8px}
.page-header a{color:#FF6B35;font-size:14px}

.shop-bar{
  background:#f5f5f5;
  border-bottom:1px solid #e0e0e0;
  padding:16px 24px;
}
.shop-search{max-width:1200px;margin:0 auto;display:flex;gap:8px}
.shop-search .search-wrap{flex:1;position:relative;max-width:500px}
.shop-search input{
  width:100%;
  border:1px solid #ccc;
  border-radius:8px;
  padding:10px 14px 10px 36px;
  font-size:14px;
  outline:none;
}
.shop-search input:focus{border-color:#FF6B35}
.shop-search svg{position:absolute;left:10px;top:50%;transform:translateY(-50%);width:16px;height:16px;color:#999}
.shop-search .btn-primary{padding:10px 20px;font-size:14px}

.filter-row{max-width:1200px;margin:0 auto;padding:24px 24px 0;display:flex;flex-wrap:wrap;gap:8px}
.filter-btn{
  padding:8px 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:500;
  background:#f0f0f0;
  color:#14213D;
  transition:all .2s;
}
.filter-btn:hover{background:#e0e0e0}
.filter-btn.active{background:#FF6B35;color:#fff}

.product-grid{
  max-width:1200px;
  margin:0 auto;
  padding:24px;
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:24px;
}
.no-results{text-align:center;padding:80px 24px}
.no-results h2{color:#14213D;margin-bottom:8px}
.no-results p{color:#999;margin-bottom:24px}

/* PRODUCT PAGE */
.breadcrumb{
  background:#f5f5f5;
  border-bottom:1px solid #e0e0e0;
  padding:10px 24px;
  margin-top:72px;
  font-size:14px;
  color:#999;
}
.breadcrumb a{color:#666}
.breadcrumb a:hover{color:#FF6B35}
.breadcrumb span{color:#14213D;font-weight:500}

.product-detail{max-width:1200px;margin:0 auto;padding:40px 24px;display:flex;gap:48px;flex-wrap:wrap}
.product-gallery{flex:1;min-width:300px}
.product-gallery .main-img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:16px;box-shadow:0 4px 20px rgba(0,0,0,.1)}
.product-info{flex:1;min-width:300px}
.product-info .cat{font-size:13px;color:#999;text-transform:uppercase;letter-spacing:1px;margin-bottom:4px}
.product-info h1{font-size:clamp(24px,3vw,40px);margin-bottom:4px}
.product-info .subtitle{font-size:18px;color:#333;margin-bottom:16px}
.price-row{display:flex;align-items:center;gap:12px;margin-bottom:16px}
.price-main{font-size:36px;font-weight:700;color:#FF6B35}
.price-compare{font-size:18px;color:#999;text-decoration:line-through}
.badge-row{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:16px}
.badge-item{background:rgba(255,107,53,.1);color:#FF6B35;font-size:13px;font-weight:600;padding:4px 12px;border-radius:999px}
.digital-notice{background:#eff6ff;border:1px solid #bfdbfe;border-radius:8px;padding:16px;display:flex;gap:12px;margin-bottom:16px}
.digital-notice svg{color:#2563eb;flex-shrink:0;margin-top:2px}
.digital-notice .dn-title{font-weight:600;color:#1e40af;font-size:14px}
.digital-notice .dn-text{font-size:13px;color:#3b82f6}
.sku{font-size:14px;color:#999;margin-bottom:24px}
.added-msg{color:#16a34a;font-weight:600;margin-bottom:8px;display:none}
.added-msg.show{display:block}
.section-block{margin-top:48px}
.section-block h2{font-size:22px;margin-bottom:16px}
.benefits-list{list-style:none;display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:12px}
.benefits-list li{display:flex;align-items:flex-start;gap:8px}
.benefits-list li svg{color:#FF6B35;flex-shrink:0;margin-top:2px}
.details-table{border-radius:12px;overflow:hidden;background:#f5f5f5}
.details-row{display:flex;padding:12px 20px}
.details-row:nth-child(odd){background:#fff}
.details-row .dt-label{width:35%;font-weight:600;color:#14213D;font-size:14px}
.details-row .dt-value{width:65%;color:#333;font-size:14px}

/* RELATED */
.related-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:20px}
.related-card{background:#fff;border-radius:12px;overflow:hidden;box-shadow:0 2px 12px rgba(0,0,0,.08);cursor:pointer;transition:transform .3s}
.related-card:hover{transform:translateY(-4px)}
.related-card img{width:100%;aspect-ratio:1/1;object-fit:cover}
.related-card .rc-info{padding:12px}
.related-card .rc-title{font-weight:600;color:#14213D;font-size:14px}
.related-card .rc-price{color:#FF6B35;font-weight:700;margin-top:4px}

/* CART PAGE */
.cart-page{max-width:1200px;margin:0 auto;padding:40px 24px;margin-top:72px}
.cart-page h1{font-size:32px;margin-bottom:32px}
.cart-layout{display:flex;gap:32px;flex-wrap:wrap}
.cart-items{flex:1;min-width:300px;display:flex;flex-direction:column;gap:16px}
.cart-item{background:#fff;border-radius:16px;padding:16px;display:flex;align-items:center;gap:16px;box-shadow:0 2px 12px rgba(0,0,0,.06)}
.cart-item-img{width:80px;height:80px;border-radius:8px;overflow:hidden;background:#f5f5f5;flex-shrink:0}
.cart-item-img img{width:100%;height:100%;object-fit:cover}
.cart-item-info{flex:1;min-width:0}
.cart-item-info .cii-title{font-weight:600;color:#14213D;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.cart-item-info .cii-cat{font-size:13px;color:#999}
.cart-item-info .cii-price{color:#FF6B35;font-weight:700}
.cart-qty{display:flex;align-items:center;gap:8px;flex-shrink:0}
.cart-summary{width:100%;max-width:360px;background:#fff;border-radius:16px;padding:24px;box-shadow:0 2px 12px rgba(0,0,0,.06);height:fit-content;position:sticky;top:88px}
.cart-summary h3{font-size:18px;margin-bottom:20px}
.summary-row{display:flex;justify-content:space-between;margin-bottom:10px;font-size:15px}
.summary-row.total{font-size:20px;font-weight:700;border-top:1px solid #e0e0e0;padding-top:16px;margin-top:16px}
.summary-row .total-price{color:#FF6B35}

/* CHECKOUT */
.checkout-page{max-width:1200px;margin:0 auto;padding:40px 24px;margin-top:72px}
.breadcrumb-checkout{font-size:14px;color:#999;margin-bottom:32px}
.breadcrumb-checkout a{color:#14213D}
.breadcrumb-checkout span.active{font-weight:600;color:#14213D}
.checkout-layout{display:flex;gap:40px;flex-wrap:wrap}
.checkout-main{flex:1;min-width:300px}
.checkout-box{background:#fff;border-radius:16px;padding:24px;margin-bottom:20px;box-shadow:0 2px 8px rgba(0,0,0,.06)}
.checkout-box h3{font-size:18px;margin-bottom:16px}
.field-row{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-bottom:12px}
.field-row.full{grid-template-columns:1fr}
.field-row input,.field-row select{
  width:100%;
  border:1px solid #ccc;
  border-radius:8px;
  padding:12px 16px;
  font-size:15px;
  outline:none;
}
.field-row input:focus,.field-row select:focus{border-color:#FF6B35}
.shipping-option{border:2px solid #ccc;border-radius:12px;padding:16px;display:flex;align-items:center;justify-content:space-between;cursor:pointer;margin-bottom:8px;transition:border-color .2s}
.shipping-option.active{border-color:#FF6B35;background:#fff7f4}
.shipping-option input{margin-right:12px}
.shipping-label{flex:1}
.shipping-label .sl-title{font-weight:600;color:#14213D}
.shipping-label .sl-sub{font-size:14px;color:#666}
.shipping-price{font-weight:700;color:#14213D}
.payment-fields .field-row{grid-template-columns:1fr}
.payment-fields .field-row.half{grid-template-columns:1fr 1fr}
.decline-msg{background:#fef2f2;border:1px solid #fecaca;border-radius:8px;padding:16px;margin-bottom:16px;display:none}
.decline-msg.show{display:flex;gap:12px}
.decline-msg svg{color:#dc2626;flex-shrink:0;margin-top:2px}
.decline-msg .dm-title{font-weight:600;color:#991b1b}
.decline-msg .dm-text{font-size:14px;color:#dc2626}
.notice-box{background:#f5f5f5;border-radius:8px;padding:16px;margin-bottom:20px;font-size:14px;color:#666}
.checkbox-row{display:flex;align-items:flex-start;gap:12px;margin-bottom:16px;cursor:pointer}
.checkbox-row input{width:18px;height:18px;flex-shrink:0;margin-top:2px;accent-color:#FF6B35}
.checkbox-row span{font-size:14px;color:#333}
.checkbox-row a{color:#FF6B35}
.checkbox-row a:hover{text-decoration:underline}
.trust-img{display:flex;justify-content:center;margin-bottom:20px}
.trust-img img{height:36px}
.btn-row{display:flex;gap:12px}
.btn-row .btn-primary,.btn-row .btn-outline{flex:1;padding:16px;font-size:16px}

/* CHAT */
.chat-btn{
  position:fixed;
  bottom:24px;right:24px;
  width:56px;height:56px;
  background:#FF6B35;
  color:#fff;
  border-radius:50%;
  box-shadow:0 4px 20px rgba(0,0,0,.2);
  z-index:1000;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .2s;
}
.chat-btn:hover{background:#e55a2b}
.chat-btn svg{width:24px;height:24px}
.chat-window{
  display:none;
  position:fixed;
  bottom:92px;right:24px;
  width:360px;max-width:calc(100vw - 48px);
  height:460px;
  max-height:calc(100vh - 120px);
  background:#fff;
  border-radius:20px;
  box-shadow:0 8px 40px rgba(0,0,0,.2);
  z-index:1000;
  flex-direction:column;
  overflow:hidden;
  border:1px solid #e0e0e0;
}
.chat-window.open{display:flex}
.chat-header{
  background:#14213D;
  color:#fff;
  padding:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.chat-body{flex:1;overflow-y:auto;padding:16px;display:flex;flex-direction:column;gap:12px;background:#f8f8f8}
.chat-msg{display:flex;gap:8px;align-items:flex-start}
.chat-msg.user{flex-direction:row-reverse}
.chat-bubble{max-width:80%;padding:12px 16px;border-radius:18px;font-size:14px;line-height:1.5}
.chat-bubble.bot{background:#fff;color:#333;border-bottom-left-radius:4px}
.chat-bubble.user{background:#FF6B35;color:#fff;border-bottom-right-radius:4px}
.chat-avatar{width:32px;height:32px;border-radius:50%;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.chat-avatar.bot{background:#14213D;color:#fff}
.chat-avatar.user{background:#FF6B35;color:#fff}
.chat-input{padding:12px;display:flex;gap:8px;background:#fff;border-top:1px solid #e0e0e0}
.chat-input input{flex:1;border:1px solid #ccc;border-radius:999px;padding:10px 16px;font-size:14px;outline:none}
.chat-input button{width:40px;height:40px;background:#FF6B35;color:#fff;border-radius:50%;display:flex;align-items:center;justify-content:center}
.quick-replies{display:flex;flex-wrap:wrap;gap:6px;padding:0 12px 12px}
.quick-replies button{font-size:12px;background:#f0f0f0;color:#14213D;padding:6px 12px;border-radius:999px}
.quick-replies button:hover{background:#e0e0e0}

/* FOOTER */
.footer{background:#14213D;color:#fff;padding:60px 24px 32px}
.footer-inner{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:40px}
.footer-col h4{font-size:16px;font-weight:600;margin-bottom:16px;color:#fff}
.footer-col a{display:block;color:rgba(255,255,255,.7);font-size:14px;margin-bottom:10px;transition:color .2s}
.footer-col a:hover{color:#fff}
.footer-col p{color:rgba(255,255,255,.7);font-size:14px;margin-bottom:8px;line-height:1.6}
.footer-col .email-link{color:#FF6B35}
.footer-bottom{max-width:1200px;margin:40px auto 0;padding-top:24px;border-top:1px solid rgba(255,255,255,.2);display:flex;justify-content:space-between;align-items:center;flex-wrap:gap}
.footer-bottom p{color:rgba(255,255,255,.5);font-size:13px}
.footer-bottom img{height:32px;opacity:.7}

/* LEGAL PAGES */
.legal-content{max-width:800px;margin:0 auto;padding:60px 24px}
.legal-content .updated{color:#999;font-size:14px;margin-bottom:32px}
.legal-content section{margin-bottom:32px}
.legal-content h2{font-size:22px;margin-bottom:12px}
.legal-content p,.legal-content li{color:#333;line-height:1.7}
.legal-content ul,.legal-content ol{padding-left:24px;margin:8px 0}
.legal-content li{margin-bottom:6px}
.legal-content a{color:#FF6B35}
.legal-content a:hover{text-decoration:underline}

/* RESPONSIVE */
@media(max-width:768px){
  .nav-links{display:none}
  .mobile-toggle{display:block}
  .hero-title{font-size:32px}
  .featured-row,.featured-row.reverse{flex-direction:column}
  .featured-img,.featured-text{width:100%}
  .bulk-inner{flex-direction:column}
  .bulk-img,.bulk-text{width:100%}
  .cart-layout{flex-direction:column}
  .field-row{grid-template-columns:1fr}
  .best-header{flex-direction:column;align-items:flex-start;gap:12px}
  .chat-window{width:calc(100vw - 48px);right:24px}
  .footer-bottom{flex-direction:column;gap:12px;text-align:center}
}
