:root {
  --brand: #1c3f66;
  --brand-dark: #122a47;
  --accent: #b23a48;
  --bg: #f6f7f9;
  --card-bg: #ffffff;
  --text: #24272b;
  --muted: #6b7076;
  --border: #e2e5ea;
  --danger: #c0392b;
  --success: #1a7a4c;
  --radius: 10px;
  --shadow: 0 2px 10px rgba(0,0,0,0.06);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 8% 15%, rgba(28,63,102,0.10) 0%, transparent 40%),
    radial-gradient(circle at 92% 25%, rgba(178,58,72,0.09) 0%, transparent 38%),
    radial-gradient(circle at 20% 80%, rgba(178,58,72,0.07) 0%, transparent 35%),
    radial-gradient(circle at 85% 90%, rgba(28,63,102,0.08) 0%, transparent 40%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .brand, .section-title, .card-title { letter-spacing: -0.01em; }

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; margin: 0 auto; padding: 0 40px; }

/* ---------- Top bar ---------- */
.top-bar { background: var(--brand-dark); color: #cfd9e6; font-size: 12.5px; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-contact { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-contact a { color: #cfd9e6 !important; display: inline-flex; align-items: center; gap: 6px; }
.top-bar-contact a:hover { color: #fff !important; text-decoration: none; }
.top-bar-social { gap: 12px; }
.top-bar-social a { color: #cfd9e6 !important; display: inline-flex; }
.top-bar-social a:hover { color: var(--accent) !important; }

/* ---------- Header ---------- */
.site-header {
  background: var(--brand-dark);
  color: #fff;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.site-header .inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.header-brand-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { font-size: 22px; font-weight: 700; color: #fff !important; text-decoration: none; letter-spacing: 0.3px; }
.tagline { font-size: 11px; color: #b7c3d1; display: block; margin-top: -2px; }
.search-form { display: flex; flex: 1; max-width: 340px; }
.search-form input { flex: 1; padding: 8px 12px; border: none; border-radius: 6px 0 0 6px; font-size: 14px; }
.search-form button { border: none; background: var(--accent); color: #fff; padding: 0 14px; border-radius: 0 6px 6px 0; cursor: pointer; font-weight: 600; }
.nav-links { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

/* ---------- Main nav with dropdowns ---------- */
.main-nav { display: flex; align-items: center; gap: 24px; }
.nav-menu { display: flex; list-style: none; margin: 0; padding: 0; gap: 4px; align-items: center; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { display: flex; align-items: center; gap: 4px; padding: 10px 12px; color: #f0f2f5 !important; font-size: 15px; font-weight: 500; border-radius: 6px; }
.nav-menu > li > a:hover { background: rgba(255,255,255,0.08); text-decoration: none; }
.nav-menu .caret { font-size: 10px; opacity: 0.8; }

.dropdown-menu {
  list-style: none; margin: 0; padding: 8px; position: absolute; top: 100%; left: 0;
  background: #fff; min-width: 220px; border-radius: 8px; box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .18s ease; z-index: 200;
}
.has-dropdown:hover > .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 9px 12px; border-radius: 6px; color: var(--text) !important; font-size: 14px; }
.dropdown-menu a:hover { background: var(--bg); text-decoration: none; }

.nav-utility { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.nav-utility a { color: #f0f2f5 !important; font-size: 15px; }

.nav-toggle { display: none; flex-direction: column; justify-content: center; width: 34px; height: 34px; background: none; border: none; cursor: pointer; padding: 0; flex-shrink: 0; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; border-radius: 2px; margin: 3px 0; transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .top-bar-contact a span { display: none; }
  .site-header .inner { flex-direction: column; align-items: stretch; }
  .header-brand-row { width: 100%; }
  .tagline { font-size: 10px; max-width: 220px; }
  .search-form { max-width: 100%; width: 100%; }
  .nav-toggle { display: flex; }
  .main-nav {
    display: none; width: 100%; flex-direction: column; align-items: stretch;
    background: var(--brand-dark); margin: 0 -20px; padding: 6px 0 10px; width: calc(100% + 40px);
  }
  .main-nav.open { display: flex; }
  .nav-menu { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .nav-menu > li > a { padding: 12px 20px; border-radius: 0; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    background: rgba(0,0,0,0.15); border-radius: 0; display: none; margin: 0 0 4px;
  }
  .has-dropdown.open .dropdown-menu { display: block; }
  .dropdown-menu a { color: #f0f2f5 !important; padding: 10px 32px; }
  .dropdown-menu a:hover { background: rgba(255,255,255,0.08); }
  .nav-utility { flex-direction: column; align-items: stretch; padding: 10px 20px 0; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 8px; }
  .nav-utility a, .nav-utility form { padding: 8px 0; }
}

/* ---------- Footer ---------- */
.site-footer-main { margin-top: 60px; background: var(--brand-dark); color: #cfd6de; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 1fr 1.2fr 1.4fr; gap: 32px;
  padding: 48px 20px 36px;
}
.footer-col h3.footer-brand { color: #fff; font-size: 20px; margin: 0 0 12px; }
.footer-col h4 { color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: 0.04em; margin: 0 0 16px; }
.footer-col p.muted { color: #aab6c4; font-size: 13.5px; line-height: 1.6; }
.footer-social { margin-top: 14px; }
.footer-social a { width: 32px; height: 32px; background: rgba(255,255,255,0.08); color: #cfd6de; }
.footer-social a:hover { background: var(--accent); color: #fff; }

.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #cfd6de !important; font-size: 14px; }
.footer-links a:hover { color: #fff !important; text-decoration: none; padding-left: 3px; transition: padding-left .15s ease; }

.footer-link-more { color: var(--accent) !important; font-size: 13.5px; font-weight: 600; display: inline-block; margin-top: 4px; }
.footer-link-more:hover { text-decoration: none; opacity: 0.85; }

.footer-contact-list { list-style: none; margin: 0; padding: 0; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 13.5px; color: #cfd6de; }
.footer-contact-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer-contact-list a { color: #cfd6de !important; }
.footer-contact-list a:hover { color: #fff !important; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 0; text-align: center; font-size: 13px; color: #9aa8b8; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; padding: 36px 20px 24px; }
}

/* ---------- Buttons ---------- */
.btn { display: inline-block; padding: 10px 18px; border-radius: 6px; border: none; cursor: pointer; font-size: 14px; font-weight: 600; text-decoration: none; transition: opacity .15s ease; }
.btn:hover { opacity: 0.88; text-decoration: none; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-sm { padding: 6px 12px; font-size: 13px; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ---------- Segment banner ---------- */
.segment-strip { display: flex; gap: 14px; flex-wrap: wrap; margin: 20px 0 10px; }
.segment-chip { background: #fff; border: 1px solid var(--border); border-radius: 30px; padding: 8px 18px; font-size: 14px; font-weight: 600; color: var(--brand); }
.segment-chip.active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ---------- Cards / grid ---------- */
.section-title { font-size: 24px; margin: 34px 0 18px; font-weight: 700; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 22px; }
.card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.card-img { width: 100%; aspect-ratio: 1 / 1; background: #eef1f5; display: flex; align-items: center; justify-content: center; color: #9aa5b3; font-size: 13px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.card-title { font-weight: 600; font-size: 15px; }
.card-price { color: var(--brand); font-weight: 700; font-size: 16px; }
.card-cat { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; }
.card-fabric { color: var(--muted); font-size: 12px; }
.moq-tag { display: inline-block; background: #eef2f7; color: var(--brand); font-size: 11px; padding: 2px 8px; border-radius: 10px; width: fit-content; }

/* ---------- Hero ---------- */
.hero { background: linear-gradient(120deg, var(--brand), var(--brand-dark)); color: #fff; padding: 60px 0; text-align: center; border-radius: var(--radius); margin-top: 24px; }
.hero h1 { font-size: 34px; margin: 0 0 12px; }
.hero p { color: #dce4ee; font-size: 16px; margin-bottom: 22px; }
.hero .btn-accent { margin: 0 6px; }

/* ---------- Forms ---------- */
.form-wrap { max-width: 480px; margin: 40px auto; background: var(--card-bg); padding: 32px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-group { margin-bottom: 16px; }
label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
input[type=text], input[type=email], input[type=password], input[type=number],
input[type=tel], input[type=file], textarea, select {
  width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: 6px; font-size: 14px; font-family: inherit; background: #fff;
}
textarea { resize: vertical; min-height: 80px; }
.checkbox-row { display: flex; align-items: center; gap: 8px; }
.checkbox-row input { width: auto; }
.form-hint { font-size: 12px; color: var(--muted); margin-top: 4px; }
.form-row { display: flex; gap: 14px; }
.form-row .form-group { flex: 1; }

/* ---------- Alerts ---------- */
.alert { padding: 12px 16px; border-radius: 8px; margin: 16px 0; font-size: 14px; }
.alert-success { background: #e4f6ea; color: var(--success); border: 1px solid #bfe6cc; }
.alert-error { background: #fbe9e7; color: var(--danger); border: 1px solid #f1c3bc; }

/* ---------- Tables ---------- */
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); font-size: 14px; }
th { background: #eef1f5; font-weight: 700; }
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); }

/* ---------- Badges ---------- */
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: capitalize; }
.badge-pending, .badge-new { background: #fdf1d6; color: #916106; }
.badge-processing, .badge-reviewed { background: #dbe9fb; color: #1c5aa6; }
.badge-shipped, .badge-quoted { background: #e2e2fb; color: #4a3fb0; }
.badge-delivered, .badge-converted { background: #dff3e4; color: var(--success); }
.badge-cancelled, .badge-rejected { background: #fbe1de; color: var(--danger); }

/* ---------- Cart / checkout ---------- */
.cart-row { display: flex; align-items: center; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.cart-row img, .cart-row .ph { width: 70px; height: 70px; border-radius: 8px; object-fit: cover; background: #eef1f5; }
.cart-row .info { flex: 1; min-width: 160px; }
.cart-summary { margin-top: 20px; padding: 20px; background: #fff; border-radius: var(--radius); border: 1px solid var(--border); }
.qty-input { width: 64px; }
.variant-tag { display: inline-block; font-size: 12px; background: #eef1f5; color: var(--brand); padding: 2px 8px; border-radius: 10px; margin-right: 6px; }
.customization-note { font-size: 12px; color: var(--muted); font-style: italic; margin-top: 4px; }

/* ---------- Misc ---------- */
.muted { color: var(--muted); }
.flex-between { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }
.pagination { display: flex; gap: 8px; margin: 24px 0; }
.pagination a, .pagination span { padding: 6px 12px; border: 1px solid var(--border); border-radius: 6px; font-size: 14px; }
.pagination .active { background: var(--brand); color: #fff; border-color: var(--brand); }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; margin: 20px 0 30px; }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; }
.stat-card .num { font-size: 26px; font-weight: 800; color: var(--brand); }
.stat-card .label { color: var(--muted); font-size: 13px; margin-top: 4px; }

/* ---------- Price tier table ---------- */
.tier-table td, .tier-table th { padding: 6px 10px; font-size: 13px; }

/* ---------- Quote line-item form rows ---------- */
.quote-item-row { display: grid; grid-template-columns: 2fr 1fr 1fr 0.8fr 1.5fr auto; gap: 8px; margin-bottom: 10px; align-items: center; }
.quote-item-row input, .quote-item-row select { width: 100%; }
@media (max-width: 800px) {
  .quote-item-row { grid-template-columns: 1fr 1fr; }
}

/* ---------- Hero Image Slider ---------- */
.slider {
  position: relative;
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 560px;
}
.slider-track { position: relative; width: 100%; height: 100%; }
@media (max-width: 900px) {
  .slider { height: 420px; }
}
@media (max-width: 560px) {
  .slider { height: 340px; }
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-caption {
  position: absolute;
  left: 0; bottom: 0; top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 60px;
  max-width: 640px;
  background: linear-gradient(90deg, rgba(18,42,71,0.75) 0%, rgba(18,42,71,0.15) 80%, transparent 100%);
  color: #fff;
}
.slide-caption h1 { font-size: 32px; margin: 0 0 10px; }
.slide-caption p { margin: 0 0 18px; color: #e3e9f0; font-size: 15px; }
.slider-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  color: #fff;
  border: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 5;
}
.slider-nav:hover { background: rgba(0,0,0,0.55); }
.slider-nav.prev { left: 16px; }
.slider-nav.next { right: 16px; }
.slider-dots {
  position: absolute;
  bottom: 16px; left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.slider-dots .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}
.slider-dots .dot.active { background: #fff; }
@media (max-width: 700px) {
  .slider { height: 280px; }
  .slide-caption { padding: 0 24px; background: linear-gradient(180deg, rgba(18,42,71,0.15) 0%, rgba(18,42,71,0.85) 100%); }
  .slide-caption h1 { font-size: 24px; }
}

/* ---------- Welcome / About sections ---------- */
.welcome-section { margin-top: 40px; }
.about-teaser {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 30px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.about-teaser-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.about-teaser-stats .stat-card { text-align: center; }
@media (max-width: 800px) {
  .about-teaser { grid-template-columns: 1fr; }
  .about-teaser-stats { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Sale / trending tags on product cards ---------- */
.card-img { position: relative; }
.sale-tag, .trend-tag {
  position: absolute;
  top: 8px;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 4px;
  color: #fff;
  z-index: 2;
}
.sale-tag { left: 8px; background: var(--accent); }
.trend-tag { right: 8px; background: var(--brand); }
.price-strike { text-decoration: line-through; color: var(--muted); font-weight: 400; font-size: 13px; margin-right: 6px; }
.sale-banner { background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.testimonial-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.stars { margin-bottom: 10px; }
.star-filled { color: var(--accent); }
.star-empty { color: var(--border); }
.testimonial-message { font-style: italic; color: var(--text); margin: 0 0 14px; }
.testimonial-author { font-size: 14px; }

/* ---------- About page ---------- */
.about-hero { margin-top: 20px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-hero img { width: 100%; display: block; height: auto; }
.icon-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.icon-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); scroll-margin-top: 140px; }
.icon-card img { width: 56px; height: 56px; margin-bottom: 12px; }
.segment-card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.segment-card { display: block; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; box-shadow: var(--shadow); transition: transform .15s ease; }
.segment-card:hover { transform: translateY(-3px); text-decoration: none; }
.segment-card img { width: 64px; height: 64px; margin-bottom: 12px; border-radius: 50%; }
.segment-card .card-title { color: var(--brand); margin-bottom: 4px; }

/* ---------- Homepage: glass-effect sections ---------- */
.home-backdrop {
  position: relative;
  margin-top: 24px;
  padding: 40px 30px;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, #dfe8f2 0%, #eef2f7 45%, #f6e9ea 100%);
  overflow: hidden;
}
.home-backdrop::before, .home-backdrop::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
}
.home-backdrop::before { width: 340px; height: 340px; background: rgba(28,63,102,0.10); top: -120px; right: -80px; }
.home-backdrop::after { width: 280px; height: 280px; background: rgba(178,58,72,0.10); bottom: -100px; left: -60px; }

.glass-section {
  position: relative;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(18,42,71,0.15);
  padding: 32px;
  margin-bottom: 32px;
}
.glass-section:last-child { margin-bottom: 0; }

.section-with-image { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.section-with-image .section-text { flex: 1; min-width: 260px; }
.section-with-image .section-img { width: 220px; flex-shrink: 0; }
.section-with-image .section-img img { width: 100%; height: auto; display: block; }

.section-heading-row { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.section-heading-row img { width: 56px; height: 56px; flex-shrink: 0; }
.section-heading-row .section-title { margin: 0; }

@media (max-width: 700px) {
  .home-backdrop { padding: 24px 16px; }
  .glass-section { padding: 22px; }
  .section-with-image .section-img { width: 140px; margin: 0 auto; }
  .section-with-image { text-align: center; justify-content: center; }
}

/* ---------- Products page: sidebar + filters ---------- */
.products-layout { display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: start; }
.filter-sidebar {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; position: sticky; top: 90px; box-shadow: var(--shadow);
}
.filter-group { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.filter-group:last-of-type { border-bottom: none; margin-bottom: 16px; }
.filter-group h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); margin: 0 0 12px; }
.filter-list { list-style: none; margin: 0; padding: 0; }
.filter-list li { margin-bottom: 4px; }
.filter-list a { display: block; padding: 7px 10px; border-radius: 6px; font-size: 14px; color: var(--text); }
.filter-list a:hover { background: var(--bg); text-decoration: none; }
.filter-list a.active { background: var(--brand); color: #fff; font-weight: 600; }
.price-range-inputs { display: flex; align-items: center; gap: 8px; }
.price-range-inputs input { width: 100%; }
@media (max-width: 900px) {
  .products-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
}
@media (max-width: 700px) {
  .about-hero img { height: 220px; object-fit: cover; }
}

/* ---------- Homepage glass sections ---------- */
.glass-section {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(18, 42, 71, 0.12), 0 2px 8px rgba(18, 42, 71, 0.06);
  padding: 32px;
  margin: 30px 0;
}
.glass-section .section-title { margin-top: 0; }

.glass-section-flex { display: flex; align-items: center; gap: 34px; }
.glass-section-flex .glass-text { flex: 1.4; }
.glass-section-flex .glass-image { flex: 1; display: flex; justify-content: center; }
.glass-section-flex .glass-image img { width: 100%; max-width: 260px; height: auto; }
@media (max-width: 800px) {
  .glass-section-flex { flex-direction: column; }
  .glass-section-flex .glass-image { order: -1; max-width: 200px; }
}

.section-icon-badge { width: 60px; height: 60px; float: right; margin-left: 16px; }

/* Testimonial cards get the glass treatment too, with an avatar image */
.testimonial-card.glass-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 6px 24px rgba(18, 42, 71, 0.10);
}
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }

/* ---------- WhatsApp floating button ---------- */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px;
  background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 6px 18px rgba(0,0,0,0.3); z-index: 999; transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); text-decoration: none; color: #fff; }
@media (max-width: 700px) {
  .whatsapp-float { width: 50px; height: 50px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ---------- Scrolling offers marquee (below hero slider) ---------- */
.offers-marquee {
  background: var(--accent); color: #fff; overflow: hidden; white-space: nowrap;
  padding: 10px 0; font-weight: 600; font-size: 14px;
}
.offers-marquee-track {
  display: inline-block; padding-left: 100%;
  animation: marquee-scroll 28s linear infinite;
}
.offers-marquee-track span { margin: 0 40px; }
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ---------- Shop by Category (homepage) ---------- */
.shop-by-category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.category-tile {
  display: block; position: relative; border-radius: var(--radius); overflow: hidden;
  height: 160px; box-shadow: var(--shadow); text-align: center;
}
.category-tile .tile-bg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.category-tile .tile-bg img { width: 72px; height: 72px; }
.category-tile .tile-label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 10px;
  background: rgba(18,42,71,0.82); color: #fff; font-weight: 700; font-size: 15px;
}
.category-tile:hover { text-decoration: none; transform: translateY(-3px); transition: transform .15s ease; }

/* ---------- Gallery page ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 1/1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), transparent); color: #fff;
  display: flex; flex-direction: column; gap: 2px;
}
.gallery-cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; opacity: 0.85; }
.gallery-caption { font-size: 13px; font-weight: 600; }

/* ---------- Contact page ---------- */
.contact-info-row { display: flex; flex-direction: column; gap: 2px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.contact-info-row:last-of-type { border-bottom: none; }
.social-icons { display: flex; gap: 12px; }
.social-icons a {
  width: 36px; height: 36px; border-radius: 50%; background: var(--bg); color: var(--brand);
  display: flex; align-items: center; justify-content: center; transition: background .15s ease;
}
.social-icons a:hover { background: var(--brand); color: #fff; text-decoration: none; }
