﻿/*
 * HTB Bathrooms — main stylesheet
 * Font: Plus Jakarta Sans  |  Brand: blue #1565c0, gold #f5a800
 */


/* -- Reset */

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

@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }
body { animation: pageFadeIn 0.35s ease both; }

::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: var(--light, #f9fafb); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--dark, #1c1c1e); }


/* -- Design tokens */
:root {
  --black:     #0a0a0a;
  --dark:      #111827;
  --mid:       #8892a4;
  --border:    rgba(255,255,255,0.10);
  --light:     #111d2e;
  --white:     #ffffff;
  --teal:      #1565c0;
  --cyan:      #4a8fd4;
  --gold:      #f5a800;
  --accent:    #f5a800;
  --blue-dark: #0d47a1;
  --nav-bg:    #0a0a0a;
  --card:      #141e30;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.6), 0 4px 16px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  color: #c8cdd6;
  background: #0a0f18;
  line-height: 1.65;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }


/* -- Top bar */
.top-bar {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 0.5rem 5%;
  display: flex;
  justify-content: flex-end;
  gap: 1.8rem;
  align-items: center;
}

.top-bar a {
  color: rgba(255,255,255,0.75);
  transition: color 0.15s;
}

.top-bar a:hover { color: var(--gold); }


/* -- Navigation */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--nav-bg);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

nav.nav-hidden {
  transform: translateY(-100%);
}

nav.nav-disabled {
  display: none;
}

html.snipcart-cart--opened nav,
html.snipcart-cart--opened .top-bar {
  display: none;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 5%;
  height: 108px;
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo img { height: 100px; width: auto; }

.nav-logo-text .word-tile  { color: var(--cyan); font-weight: 700; }
.nav-logo-text .word-arena { color: var(--gold); font-weight: 700; }

.nav-search {
  flex: 1;
  max-width: 460px;
  display: flex;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  overflow: visible;
  position: relative;
  background: rgba(255,255,255,0.07);
}

.nav-search input {
  flex: 1;
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
  font-family: inherit;
  border: none;
  outline: none;
  color: var(--white);
  background: transparent;
  border-radius: 6px 0 0 6px;
}

.nav-search input::placeholder { color: rgba(255,255,255,0.4); }

.nav-search button {
  padding: 0 1rem;
  background: var(--teal);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.15s;
  border-radius: 0 6px 6px 0;
}

.nav-search button:hover { background: var(--blue-dark); }

/* -- Search dropdown */
.search-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.13);
  z-index: 9999;
  overflow: hidden;
  min-width: 340px;
}

.search-result {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid var(--border);
  transition: background 0.12s;
  color: var(--dark);
  text-decoration: none;
}

.search-result:hover { background: #f0f2f5; }

.search-result-img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-result-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.search-result-img i { font-size: 1.4rem; color: var(--border); }

.search-result-info {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
}

.search-result-name {
  font-weight: 600;
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-meta { font-size: 0.76rem; color: var(--mid); }

.search-view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 0.9rem;
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 600;
  background: var(--light);
  border-top: 1px solid var(--border);
  transition: background 0.12s;
  text-decoration: none;
}

.search-view-all:hover { background: #e8f0fb; }

.search-no-results {
  padding: 1.1rem 0.9rem;
  font-size: 0.85rem;
  color: var(--mid);
  text-align: center;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
  font-size: 0.875rem;
  margin-left: auto;
  flex-shrink: 0;
}

.nav-links a {
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  transition: color 0.15s;
}

.nav-links a:hover { color: var(--gold); }

/* -- dropdown */
.nav-has-dropdown { position: relative; }

.nav-chevron { font-size: 10px; }

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: none;
  border-radius: 10px;
  min-width: 160px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  padding: 0.5rem 0;
  list-style: none;
  margin-top: 8px;
}

.nav-has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
}

.nav-dropdown li a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.88rem;
  color: var(--dark);
  white-space: nowrap;
}

.nav-dropdown li a:hover { background: #f0f2f5; color: var(--teal); }
.nav-has-dropdown:hover .nav-dropdown { display: block; }

.nav-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--white);
  margin-left: auto;
}

/* -- active nav link */
.nav-links a.active { color: var(--gold); font-weight: 600; }


/* -- Buttons */
.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: inherit;
  border-radius: 6px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.btn:hover { opacity: 0.88; }
.btn-dark    { background: var(--teal); color: var(--white); }
.btn-gold    { background: var(--gold); color: var(--white); }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--dark);
  margin-left: 0.6rem;
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  opacity: 1;
}

.slide-content .btn-outline { border-color: var(--white); color: var(--white); }
.slide-content .btn-outline:hover { background: rgba(255,255,255,0.15); opacity: 1; }


/* -- Hero slider */
.hero-wrap {
  position: relative;
  height: 620px;
}

.slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--light);
}

.slides {
  position: relative;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  height: 100%;
  background: var(--light) center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

/* -- placeholder slide backgrounds */
.slide:nth-child(1) { background: linear-gradient(120deg,#e8e0d4,#c9bba8); }
.slide:nth-child(2) { background: linear-gradient(120deg,#d0dde4,#a8becb); }
.slide:nth-child(3) { background: linear-gradient(120deg,#e2d8cc,#b8a898); }

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.1) 100%);
  z-index: 0;
}

.slide-content { max-width: 520px; position: relative; z-index: 1; }

.slide-content h2 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.slide-content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.4rem;
}

.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--dark);
  z-index: 10;
  transition: background 0.15s;
}

.slider-prev:hover,
.slider-next:hover { background: var(--white); }

.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }


/* -- Category grid */
.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: #0a0f18;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 5%;
}

.cat-box {
  background: var(--black);
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  border: none;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.cat-box:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.cat-thumb {
  height: 280px;
  overflow: hidden;
  background: var(--light) center/cover no-repeat;
  transition: transform 0.45s ease;
}

.cat-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.cat-box:hover .cat-img,
.cat-box:hover .cat-thumb { transform: scale(1.07); }

/* overlay gradient on cat-box */
.cat-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
  transition: background 0.3s ease;
  pointer-events: none;
}

.cat-box:hover::after {
  background: linear-gradient(to top, rgba(21,101,192,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}

.cat-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  letter-spacing: 0.01em;
}

.cat-label i { color: var(--gold); font-size: 0.85rem; }


/* -- Sections */
.section { padding: 60px 5%; }
.section + .section { border-top: 1px solid rgba(255,255,255,0.06); }
.section-bg { background: rgba(255,255,255,0.03); }

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.8rem;
}

.section-head h2::after { display: none; }

.section-head h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  border-left: 4px solid var(--gold);
  padding-left: 0.65rem;
}

.section-head a {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
}


/* -- Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem;
}

.product-card {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  text-align: center;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}

.product-thumb {
  height: 180px;
  background: var(--light);
  overflow: hidden;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* -- swatch placeholders */
.product-thumb { background: #0d1826; }

.product-info { padding: 0.65rem 0.75rem 0.8rem; }

.product-info h3 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.product-info p {
  font-size: 0.78rem;
  color: var(--mid);
}

.product-code {
  font-size: 0.7rem;
  color: var(--mid);
  margin-bottom: 0.2rem;
}

.product-meta { font-size: 0.78rem; color: var(--mid); }

.product-price {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold);
  margin-top: 0.4rem;
}

/* -- view product overlay */
.product-thumb::after {
  content: 'View Product';
  position: absolute;
  inset: 0;
  background: rgba(21,101,192,0.88);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.22s ease;
  z-index: 2;
}
.product-card:hover .product-thumb::after { opacity: 1; }

/* -- product card as link */
a.product-card { text-decoration: none; display: block; color: inherit; }


/* -- Info strip */
.info-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  background: #111827;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.info-item {
  padding: 1.5rem 5%;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.info-item:last-child { border-right: none; }

.info-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
}

.info-text p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}


/* -- Contact */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  max-width: 1000px;
}

.contact-info h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 0.88rem;
  color: var(--mid);
  margin-bottom: 0.5rem;
}

.contact-info strong { color: var(--white); }

form { display: flex; flex-direction: column; gap: 0.65rem; }

form input,
form textarea,
form select {
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  font-size: 0.88rem;
  font-family: inherit;
  color: var(--white);
  background: #141e30;
  outline: none;
  transition: border-color 0.15s;
}

form input:focus,
form textarea:focus,
form select:focus { border-color: var(--gold); }

form textarea { resize: vertical; min-height: 90px; }


/* -- Newsletter */
.footer-newsletter { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1.8rem 5%; }
.footer-newsletter-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.footer-newsletter h4 { font-size: 0.95rem; font-weight: 700; color: #fff; margin: 0 0 0.25rem; }
.footer-newsletter p { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin: 0; }
.newsletter-form { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.newsletter-form input[type="email"] { padding: 0.55rem 0.9rem; border: 1px solid rgba(255,255,255,0.15); border-radius: 7px; font-size: 0.84rem; font-family: inherit; width: 230px; outline: none; background: rgba(255,255,255,0.08); color: #fff; }
.newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form .btn { white-space: nowrap; background: var(--teal); color: #fff; border: none; font-size: 0.84rem; padding: 0.55rem 1.1rem; }
.newsletter-form .btn:hover { background: var(--teal-dark, #0e4fa3); }
#newsletter-success { color: rgba(255,255,255,0.8); font-size: 0.82rem; font-weight: 600; margin-top: 0.4rem; }

/* -- Recently viewed */
#recently-viewed { display: block; }
.recently-viewed-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1rem; margin-top: 1.2rem; }
.rv-card { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; text-decoration: none; color: var(--white); background: var(--card); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 0.8rem; transition: box-shadow 0.15s; text-align: center; }
.rv-card:hover { box-shadow: var(--shadow-md); }
.rv-thumb { width: 90px; height: 90px; border-radius: 7px; overflow: hidden; background: var(--light); display: flex; align-items: center; justify-content: center; }
.rv-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rv-thumb i { font-size: 2rem; color: var(--border); }
.rv-name { font-size: 0.8rem; font-weight: 600; line-height: 1.3; }
.rv-price { font-size: 0.75rem; color: var(--mid); }

/* -- Wishlist */
.card-wishlist-btn { position: absolute; top: 0.6rem; right: 0.6rem; background: rgba(255,255,255,0.12); border: none; border-radius: 50%; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.15s, background 0.15s; z-index: 2; }
.card-wishlist-btn:hover, .card-wishlist-btn.wishlisted { color: #e53e3e; background: #fff; }
#wishlist-btn { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.55rem 1.1rem; border: 1px solid var(--border); border-radius: 8px; background: #fff; font-size: 0.85rem; cursor: pointer; color: var(--mid); transition: color 0.15s, border-color 0.15s; }
#wishlist-btn:hover, #wishlist-btn.wishlisted { color: #e53e3e; border-color: #e53e3e; }

/* -- Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; max-width: 1180px; margin: 0 auto; padding: 0 5% 3rem; }
.blog-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow 0.2s; display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.09); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; background: var(--light); display: flex; align-items: center; justify-content: center; color: var(--mid); font-size: 0.85rem; }
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.blog-card-tag { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--teal); }
.blog-card-body h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin: 0; line-height: 1.4; }
.blog-card-body p { font-size: 0.84rem; color: var(--mid); line-height: 1.6; margin: 0; flex: 1; }
.blog-card-footer { font-size: 0.78rem; color: var(--mid); padding: 0.75rem 1.25rem; border-top: 1px solid var(--border); }
.blog-article { max-width: 780px; margin: 0 auto; padding: 2rem 5% 4rem; }
.blog-article h1 { font-size: 2rem; font-weight: 800; color: var(--dark); margin-bottom: 0.5rem; }
.blog-article .blog-meta { font-size: 0.82rem; color: var(--mid); margin-bottom: 2rem; }
.blog-article h2 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin: 2rem 0 0.75rem; }
.blog-article p { font-size: 0.95rem; color: #444; line-height: 1.8; margin-bottom: 1rem; }
.blog-article ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.blog-article ul li { font-size: 0.95rem; color: #444; line-height: 1.8; margin-bottom: 0.3rem; }
.blog-article .blog-cta { background: var(--light); border-radius: 10px; padding: 1.5rem; margin-top: 2.5rem; text-align: center; }
.blog-article .blog-cta p { margin-bottom: 1rem; font-weight: 600; color: var(--dark); }

/* -- Footer */
footer {
  background: #0a0f18;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  border-top: 3px solid var(--gold);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 5%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col h4 {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.9rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.45rem; }
.footer-col a { color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  margin-left: 0.8rem;
  transition: color 0.15s;
}

.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

.footer-bottom .newsletter-form { flex-basis: auto; }
.footer-bottom .newsletter-form input[type="email"] { width: 180px; }

/* -- footer social icons */
.footer-social {
  display: flex;
  gap: 0.8rem;
}

.footer-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: background 0.15s;
}

.footer-social a:hover { background: var(--gold); color: var(--white) !important; }


/* -- Page hero */
.page-hero {
  background: #0d1826;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0.75rem 5%;
}

.page-hero h1 {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.15rem;
  letter-spacing: -0.02em;
}

.page-hero p {
  font-size: 0.8rem;
  color: var(--mid);
}


/* -- Breadcrumb */
.breadcrumb-bar {
  padding: 0.6rem 5%;
  font-size: 0.78rem;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #0d1826;
}

.breadcrumb-bar a { color: rgba(255,255,255,0.5); transition: color 0.15s; }
.breadcrumb-bar a:hover { color: var(--gold); }
.breadcrumb-bar i { font-size: 0.6rem; }
.breadcrumb-bar span { color: var(--white); font-weight: 500; }


/* -- Filter bar */
.filter-bar {
  padding: 1.2rem 5%;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}

.filter-btn {
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  font-family: inherit;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  background: #141e30;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.filter-btn:hover,
.filter-btn.active { border-color: var(--teal); background: var(--teal); color: var(--white); }


/* -- Products layout */
.products-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  align-items: start;
  min-height: 60vh;
}


/* -- Filter sidebar */
.filter-sidebar {
  border-right: 1px solid var(--border);
  padding: 1.8rem 1.4rem;
  position: sticky;
  top: 68px;
  max-height: calc(100vh - 68px);
  overflow-y: auto;
}

.filter-toggle-btn {
  display: none !important;
  align-items: center;
  gap: 0.5rem;
  background: var(--dark);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 0.6rem 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 1rem;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.sidebar-search {
  position: relative;
  margin-bottom: 1.2rem;
}

.sidebar-search input {
  width: 100%;
  padding: 0.5rem 2.2rem 0.5rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: inherit;
  color: var(--white);
  background: #0d1826;
  box-sizing: border-box;
}

.sidebar-search input:focus { outline: none; border-color: var(--teal); }

.sidebar-search i {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mid);
  font-size: 0.8rem;
  pointer-events: none;
}

.clear-filters {
  font-size: 0.75rem;
  color: var(--teal);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.clear-filters:hover { text-decoration: underline; }

.filter-group {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.filter-group:last-child { border-bottom: none; }

.filter-group-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 0.4rem 0;
  user-select: none;
}

.filter-group-title i { font-size: 0.7rem; color: var(--mid); }

.filter-group-body { padding-top: 0.6rem; }
.filter-group-body.collapsed { display: none; }

.filter-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.65);
  padding: 0.25rem 0;
  cursor: pointer;
}

.filter-check input { accent-color: var(--teal); cursor: pointer; }
.filter-check.sub { padding-left: 1rem; color: var(--mid); }

.filter-sub-group { padding-left: 0.5rem; border-left: 2px solid var(--border); margin: 0.3rem 0 0.6rem; }

/* -- Colour swatches */
.colour-swatches { display: flex; flex-wrap: wrap; gap: 0.5rem; padding-top: 0.4rem; }

.colour-swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.15s, transform 0.15s;
}

.colour-swatch:hover  { transform: scale(1.1); }
.colour-swatch.active { border-color: var(--teal); outline: 2px solid var(--teal); outline-offset: 2px; }


/* -- Products main */
.products-main { padding: 1.5rem 2rem 3rem; }

/* -- Sort bar */
.sort-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.results-count { font-size: 0.85rem; color: var(--mid); font-weight: 500; }

/* -- filter chips */
.filter-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.filter-chip {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--teal); color: #fff;
  font-size: 0.75rem; font-weight: 600;
  padding: 0.28rem 0.65rem; border-radius: 20px;
  cursor: pointer; border: none; transition: background 0.15s;
}
.filter-chip:hover { background: #0e4fa3; }
.filter-chip i { font-size: 0.65rem; }

.sort-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.83rem;
  color: var(--mid);
}

.sort-select {
  padding: 0.4rem 0.7rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.83rem;
  font-family: inherit;
  color: var(--white);
  background: #141e30;
  cursor: pointer;
  outline: none;
}

.sort-select:focus { border-color: var(--gold); }


/* -- No results */
.no-results {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--mid);
}

.no-results i  { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.no-results p  { margin-bottom: 1.2rem; }


/* -- Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.pagination button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 0.75rem;
  font-size: 0.88rem;
  font-family: inherit;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  background: #141e30;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.pagination button:hover:not(:disabled) {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--white);
}

.pagination button.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.pagination button:disabled {
  opacity: 0.35;
  cursor: default;
}

.pagination .pag-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  color: #aaa;
  font-size: 1rem;
  letter-spacing: 0.1em;
  user-select: none;
}

.page-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: #141e30;
  font-size: 0.83rem;
  font-family: inherit;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  transition: border-color 0.15s, background 0.15s;
}

.page-btn:hover  { border-color: var(--teal); color: var(--teal); }
.page-btn.active { background: var(--teal); border-color: var(--teal); color: var(--white); }
.page-ellipsis   { color: var(--mid); font-size: 0.85rem; padding: 0 0.2rem; }


/* -- Size buttons */
.product-option { margin-bottom: 1.2rem; }

.option-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.size-btns { display: flex; flex-wrap: wrap; gap: 0.4rem; }

.size-btn {
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  font-size: 0.82rem;
  font-family: inherit;
  background: #141e30;
  cursor: pointer;
  color: var(--white);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
}

.size-btn:hover  { border-color: var(--teal); color: var(--teal); }
.size-btn.active { border-color: var(--teal); background: var(--teal); color: var(--white); }


/* -- Coverage calculator */
.coverage-calc {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 1.2rem;
  overflow: hidden;
}

.calc-header {
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  background: var(--light);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  user-select: none;
  border-radius: 10px 10px 0 0;
}

.calc-header i { color: var(--teal); }
.calc-chevron  { margin-left: auto; font-size: 0.7rem; color: var(--mid); }

.calc-body { display: none; padding: 1rem; }
.calc-body.open { display: block; }

.calc-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}

.calc-field label {
  display: block;
  font-size: 0.75rem;
  color: var(--mid);
  margin-bottom: 0.25rem;
}

.calc-field input,
.calc-field select {
  width: 100%;
  padding: 0.45rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.83rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
}

.calc-field input:focus,
.calc-field select:focus { outline: none; border-color: var(--teal); }

.calc-result {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0.8rem;
  background: #f0f5fb;
  border: 1px solid #c8daee;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--dark);
}

.calc-result strong { color: var(--teal); font-size: 1rem; }
.calc-result .btn   { padding: 0.35rem 0.9rem; font-size: 0.78rem; margin-left: auto; flex-shrink: 0; }


/* -- Quantity + cart */
.purchase-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}

.qty-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.qty-btn {
  width: 36px;
  height: 40px;
  background: var(--light);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: var(--dark);
  transition: background 0.15s;
  flex-shrink: 0;
}

.qty-btn:hover { background: var(--border); }

.qty-wrap input {
  width: 56px;
  height: 40px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--dark);
}

.qty-wrap input:focus { outline: none; }
.qty-unit { font-size: 0.8rem; color: var(--mid); padding: 0 0.5rem; }

#add-to-cart { min-width: 140px; }
#ask-question-btn { flex-shrink: 0; }


/* -- Nav account + wishlist buttons */
.nav-account-btn { background: none; border: none; cursor: pointer; color: rgba(255,255,255,0.78); font-size: 1.1rem; padding: 0.5rem 0.8rem; display: flex; align-items: center; flex-shrink: 0; transition: color 0.15s; }
.nav-account-btn:hover { color: var(--gold); }
.nav-wishlist-btn { color: rgba(255,255,255,0.78); font-size: 1.1rem; padding: 0.5rem 0.8rem; display: flex; align-items: center; flex-shrink: 0; transition: color 0.15s; }
.nav-wishlist-btn:hover { color: #e53e3e; }


/* -- Nav cart button */
.nav-cart-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  position: relative;
  padding: 0.5rem 0.8rem;
  flex-shrink: 0;
}

.nav-cart-btn:hover { color: var(--gold); }

.snipcart-items-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}


/* -- Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 1rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.83rem;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
}

.cookie-banner p { flex: 1; min-width: 200px; line-height: 1.5; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }

.cookie-actions { display: flex; gap: 0.6rem; flex-shrink: 0; flex-wrap: wrap; }

.cookie-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s;
}

.cookie-btn:hover { opacity: 0.85; }
.cookie-btn-accept  { background: var(--gold);  color: var(--white); }
.cookie-btn-decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); }


/* -- Back to top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 500;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateY(8px);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover { background: var(--teal); }


/* -- About page */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-logo {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}

.two-col h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.two-col p { color: var(--mid); margin-bottom: 0.8rem; font-size: 0.93rem; }

.img-placeholder {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  font-size: 0.82rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.value-card .icon {
  font-size: 1.8rem;
  color: var(--teal);
  margin-bottom: 0.8rem;
}

.value-card h3 { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.value-card p  { font-size: 0.85rem; color: var(--mid); }

.cta-strip {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 3rem 5%;
}

.cta-strip h2 { font-size: 1.4rem; font-weight: 700; margin-bottom: 0.6rem; }
.cta-strip p  { color: rgba(255,255,255,0.65); margin-bottom: 1.4rem; font-size: 0.93rem; }


/* -- Delivery page */
.delivery-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.delivery-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.delivery-card .icon { font-size: 1.8rem; color: var(--teal); margin-bottom: 0.8rem; }
.delivery-card h3    { font-size: 1rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem; }
.delivery-card .price { font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 0.5rem; }
.delivery-card p     { font-size: 0.84rem; color: var(--mid); }


/* -- FAQ page */
.faq-list { max-width: 700px; }

.faq-item {
  border-top: 1px solid var(--border);
  padding: 1.2rem 0;
}

.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-item h4 { font-size: 0.93rem; font-weight: 600; color: var(--white); margin-bottom: 0.4rem; }
.faq-item p  { font-size: 0.86rem; color: var(--mid); }


/* -- Map */
.map-embed {
  margin-top: 2.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}


/* -- Form success */
.form-success {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--teal);
}

.form-success i  { font-size: 2.5rem; display: block; margin-bottom: 0.8rem; }
.form-success p  { font-size: 0.95rem; color: var(--mid); }


/* -- video banner */

/* -- Quick links */
.quick-links {
  display: flex;
  align-items: center;
  gap: 0.5rem 1.2rem;
  padding: 0.75rem 5%;
  background: var(--light);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  font-size: 0.82rem;
}
.quick-links span { color: var(--mid); font-weight: 600; }
.quick-links a { color: var(--dark); font-weight: 500; text-decoration: none; display: flex; align-items: center; gap: 0.35rem; transition: color 0.15s; }
.quick-links a i { color: var(--teal); font-size: 0.78rem; }
.quick-links a:hover { color: var(--teal); }

/* -- New arrivals */
.new-arrivals { padding: 3.5rem 5% 2.5rem; }
.new-arrivals-scroll {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  padding-bottom: 0.8rem;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) var(--border);
}
.new-arrivals-scroll::-webkit-scrollbar { height: 4px; }
.new-arrivals-scroll::-webkit-scrollbar-track { background: var(--border); border-radius: 2px; }
.new-arrivals-scroll::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }
.new-arrivals-scroll .product-card { flex: 0 0 210px; }

/* -- Stats bar */
.stats-bar {
  background: var(--dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 1.2rem 5%;
  gap: 0;
}
.stat-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 0.6rem 0;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-size: 1.6rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 500; }

.video-banner {
  display: flex;
  justify-content: center;
  background: var(--white);
  padding: 2rem 0;
}

.video-banner video {
  width: 640px;
  max-width: 100%;
  height: auto;
  display: block;
}


/* -- Back to results */
.back-to-results {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--teal);
  text-decoration: none;
  padding: 0.5rem 5%;
  background: var(--light);
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}

.back-to-results:hover { text-decoration: underline; }
.back-to-results i { font-size: 0.7rem; }


/* -- Product badges */
.product-thumb { position: relative; }

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 0.2rem 0.55rem;
  border-radius: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

.product-badge-new     { background: var(--teal);  color: #fff; }
.product-badge-popular { background: var(--gold);  color: #fff; }
.product-badge-sale    { background: #e53e3e;      color: #fff; }
.product-badge-low     { background: #dd6b20;      color: #fff; }

/* -- stock status */
.stock-status { display:inline-flex; align-items:center; gap:0.35rem; font-size:0.82rem; font-weight:600; margin:0.4rem 0 0; }
.stock-in  { color:#276749; }
.stock-low { color:#dd6b20; }
.stock-out { color:#e53e3e; }

/* -- print product sheet button */
.btn-print-product { background: none; border: none; color: var(--mid); font-size: 0.8rem; font-family: inherit; cursor: pointer; padding: 0.5rem 0; display: flex; align-items: center; gap: 0.4rem; margin-top: 0.6rem; }
.btn-print-product:hover { color: var(--dark); }

/* -- share buttons */
.share-row { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.6rem; }
.share-label { font-size: 0.78rem; color: var(--mid); }
.share-btn { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; text-decoration: none; border: none; cursor: pointer; transition: opacity 0.15s, transform 0.15s; }
.share-btn:hover { opacity: 0.85; transform: scale(1.1); }
.share-wa   { background: #25d366; color: #fff; }
.share-fb   { background: #1877f2; color: #fff; }
.share-copy { background: var(--light); color: var(--mid); border: 1px solid var(--border); }


/* -- Trust badges */
.trust-badges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  color: var(--mid);
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.3rem 0.65rem;
  font-weight: 500;
}

.trust-badge i { color: var(--teal); font-size: 0.78rem; }


/* -- Sticky add-to-cart */
.sticky-atc {
  display: none !important;
}

.sticky-atc.visible { display: none !important; }

.sticky-atc-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.sticky-atc-name {
  font-weight: 600;
  color: var(--black);
  font-size: 0.95rem;
  flex: 1;
  min-width: 120px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-atc-price {
  font-weight: 700;
  color: var(--teal);
  font-size: 1rem;
  flex-shrink: 0;
}

.sticky-atc-btn { flex-shrink: 0; }


/* -- Floating buttons */

.instagram-btn {
  position: fixed;
  bottom: 9.5rem;
  right: 1.5rem;
  z-index: 500;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(0,0,0,0.25);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.instagram-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  color: #fff;
}

/* -- Instagram grid */
.ig-thumb {
  display: block;
  width: 260px;
  height: 260px;
  overflow: hidden;
}

.ig-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.ig-thumb:hover img {
  transform: scale(1.1);
}

.whatsapp-btn {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 500;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 14px rgba(0,0,0,0.25);
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  color: #fff;
}


/* -- Featured products */
.featured-section {
  padding: 3rem 5%;
  background: var(--light);
}

.featured-section .section-head { margin-bottom: 1.5rem; }


/* -- Reviews */
.social-reviews-section { background: var(--light); }

.social-reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 1100px) {
  .review-card { flex: 0 0 calc(50% - 0.6rem) !important; }
}

@media (max-width: 768px) {
  .social-reviews-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .review-card { flex: 0 0 calc(50% - 0.6rem) !important; }
}

@media (max-width: 480px) {
  .review-card { flex: 0 0 100% !important; }
}

.social-col { min-width: 0; }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 260px);
  grid-template-rows: repeat(3, 260px);
  gap: 20px;
  margin-top: 1rem;
}


.reviews-overall {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.reviews-score {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.review-stars { color: var(--gold); font-size: 1rem; }
.review-stars-sm { color: var(--gold); font-size: 0.82rem; margin-left: auto; flex-shrink: 0; }

.reviews-count { font-size: 0.88rem; color: var(--mid); }

.reviews-cta { font-size: 0.82rem; padding: 0.45rem 1rem; }

.reviews-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 1.2rem !important;
}

.reviews-loading { color: var(--mid); font-size: 0.88rem; }

.review-card {
  flex: 0 0 calc(33.333% - 0.85rem) !important;
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-meta { flex: 1; min-width: 0; }
.review-meta strong { display: block; font-size: 0.88rem; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-meta span   { font-size: 0.75rem; color: var(--mid); }

.review-text { font-size: 0.85rem; color: var(--mid); line-height: 1.65; margin: 0; }

/* -- Showroom banner */
.showroom-banner {
  background: linear-gradient(135deg, #0a0f18 0%, #0d2040 100%);
  color: var(--white);
  padding: 4rem 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.showroom-banner h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.showroom-banner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.5rem;
  font-size: 0.93rem;
  line-height: 1.6;
}

.showroom-banner strong { color: #fff; }

.showroom-stats {
  display: flex;
  gap: 0;
  margin-bottom: 1.4rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.showroom-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.8rem 0.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  line-height: 1.3;
}

.showroom-stat:last-child { border-right: none; }

.showroom-stat span {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.showroom-banner .showroom-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.4rem;
  flex-wrap: wrap;
}

.showroom-map {
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.1);
}

.showroom-map iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: none;
}

@media (max-width: 768px) {
  .showroom-banner { grid-template-columns: 1fr; gap: 2rem; }
  .sticky-atc-name { display: none; }
}


/* ============================================================
   HOMEPAGE REDESIGN COMPONENTS
   ============================================================ */

/* -- Hero split */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.hero-split-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 8% 5rem 5%;
  background: #0a0a0a;
}

.hero-location {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.6rem;
}

.hero-title .gold { color: var(--gold); }

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-badges {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
}

.hero-badge strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.hero-badge span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.hero-split-right {
  position: relative;
  overflow: hidden;
}

.hero-split-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* -- Marquee strip */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 0.8rem 0;
}

.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
}

.marquee-track span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #0a0a0a;
  padding: 0 2.5rem;
}

.marquee-track .sep { opacity: 0.35; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* -- Editorial category grid */
.cat-editorial {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.1fr;
  grid-template-rows: 280px 280px;
  gap: 6px;
  padding: 6px;
  background: #0a0f18;
}

.cat-editorial-large {
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.cat-editorial-wide {
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.cat-editorial-small {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}

.cat-editorial-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cat-editorial-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}

.cat-editorial-large:hover .cat-editorial-img,
.cat-editorial-wide:hover  .cat-editorial-img,
.cat-editorial-small:hover .cat-editorial-img { transform: scale(1.06); }

.cat-editorial-large::after,
.cat-editorial-wide::after,
.cat-editorial-small::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  transition: background 0.3s ease;
}

.cat-editorial-large:hover::after,
.cat-editorial-wide:hover::after,
.cat-editorial-small:hover::after {
  background: linear-gradient(to top, rgba(13,71,161,0.75) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
}

.cat-editorial-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.4rem 1.6rem;
  z-index: 2;
}

.cat-editorial-tag {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.35rem;
}

.cat-editorial-label h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.01em;
}

.cat-editorial-small .cat-editorial-label h3 { font-size: 1.05rem; }


/* -- Feature strip */
.feature-strip {
  background: #0d1826;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.feature-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  gap: 0.5rem;
}

.feature-item:last-child { border-right: none; }
.feature-item i        { font-size: 1.5rem; color: var(--gold); }
.feature-item strong   { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.feature-item span     { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.5; }


/* ============================================================
   END HOMEPAGE REDESIGN
   ============================================================ */


/* -- Responsive — global */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }

  /* Hero split */
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-split-left { padding: 4rem 5%; }
  .hero-split-right { height: 55vw; min-height: 260px; }

  /* Editorial cats */
  .cat-editorial { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .cat-editorial-large { grid-row: 1/2; grid-column: 1/3; }
  .cat-editorial-stack { flex-direction: row; }
  .cat-editorial-wide { grid-column: 1/3; grid-row: auto; }

  /* Feature strip */
  .feature-strip-inner { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .feature-item:last-child { border-bottom: none; }
}

@media (max-width: 680px) {
  .top-bar { display: none; }
  .nav-links { display: none; }
  .nav-menu-btn { display: block; min-height: 48px; }

  .categories { grid-template-columns: 1fr 1fr; }
  .cat-box { border-radius: 8px; overflow: hidden; }

  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1.2rem 1rem; }
  .stat-item:nth-child(3), .stat-item:last-child { border-bottom: none; }
  .stat-item h3 { font-size: 1.4rem; }
  .stat-item p { font-size: 0.9rem; }

  .contact-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }

  .hero-wrap { height: 360px; }
  .slide { padding: 1.2rem 1rem; }
  .slide-content { max-width: 100%; display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .slide-content h2 { font-size: 1.5rem; margin-bottom: 0; line-height: 1.1; font-weight: 700; }
  .slide-content p { font-size: 0.85rem; margin-bottom: 0; line-height: 1.3; }
  .slide-content .btn { width: 100%; text-align: center; box-sizing: border-box; padding: 0.7rem 1rem; font-size: 0.9rem; min-height: 44px; }

  .slider-prev { left: 0.4rem; width: 32px; height: 32px; }
  .slider-next { right: 0.4rem; width: 32px; height: 32px; }

  .ig-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 0.5rem; }
  .ig-thumb { width: 100%; height: auto; aspect-ratio: 1; border-radius: 4px; }
}

@media (max-width: 480px) {
  body { font-size: 0.95rem; }
  .product-grid { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 0.8rem; }
  .product-thumb { height: 110px; }
  .product-info h3 { font-size: 0.85rem; }
  .btn { font-size: 0.9rem; padding: 0.7rem 1rem; }

  /* Hero split */
  .hero-badges { gap: 1.5rem; }
  .hero-badge strong { font-size: 1.2rem; }

  /* Editorial cats */
  .cat-editorial { grid-template-columns: 1fr; grid-template-rows: 200px 180px 180px 200px; }
  .cat-editorial-large { grid-column: auto; grid-row: auto; }
  .cat-editorial-wide  { grid-column: auto; }
  .cat-editorial-stack { flex-direction: column; }

  /* Feature strip */
  .feature-strip-inner { grid-template-columns: 1fr; }
  .feature-item:nth-child(2) { border-right: none; }
}

@media (max-width: 420px) {
  .footer-top { grid-template-columns: 1fr; }
  .info-strip { grid-template-columns: 1fr; }
  .info-item { border-right: none; border-bottom: 1px solid var(--border); }
  .product-grid { grid-template-columns: 1fr; }
}


/* -- Responsive — inner pages */
@media (max-width: 768px) {
  .two-col          { grid-template-columns: 1fr; }
  .values-grid      { grid-template-columns: 1fr; }
  .delivery-cards   { grid-template-columns: 1fr; }
  .footer-bottom    { flex-direction: column; gap: 1rem; justify-content: flex-start; align-items: flex-start; }
  .footer-bottom .newsletter-form input[type="email"] { width: 100%; }
}


/* -- Responsive — products */
@media (max-width: 900px) {
  .products-layout { grid-template-columns: 1fr; }
  .filter-sidebar {
    position: static !important;
    max-height: none !important;
    border-right: none;
    border-bottom: 1px solid var(--border);
    display: none !important;
    padding: 1.5rem 5%;
  }
  .filter-sidebar.open { display: block !important; }
  .filter-toggle-btn { display: flex; padding: 0.75rem 1.2rem; font-size: 0.95rem; height: 44px; }
  .products-main { padding: 1.5rem 5% 3rem; }
  .product-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
  .product-card { border-radius: 8px; }
  .product-thumb { height: 120px; }
  .product-info { padding: 0.8rem; }
  .product-info h3 { font-size: 0.9rem; }
  .product-code { font-size: 0.7rem; }
  .product-meta { font-size: 0.75rem; }
  .product-price { font-size: 0.95rem; }
  .card-wishlist-btn { width: 38px; height: 38px; font-size: 0.8rem; }
}

@media (max-width: 600px) {
  .sort-bar { flex-direction: column; align-items: stretch; gap: 0.8rem; }
  .sort-bar label { font-size: 0.9rem; }
  .sort-select { padding: 0.7rem; font-size: 0.9rem; min-height: 44px; }
  .results-count { font-size: 0.9rem; }
  .product-grid { grid-template-columns: 1fr; gap: 0.9rem; }
  .product-thumb { height: 160px; }
  .filter-toggle-btn { width: 100%; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 1rem; }
  .calc-inputs { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .calc-field:last-child { grid-column: span 2; }
  .btn { padding: 0.8rem 1.2rem; min-height: 44px; font-size: 0.95rem; }

  form input,
  form textarea,
  form select { padding: 0.8rem 1rem; font-size: 0.95rem; min-height: 44px; }
  .newsletter-form input[type="email"] { min-height: 44px; padding: 0.7rem 1rem; font-size: 0.9rem; }
}


/* -- Category description bar */
.cat-desc-bar {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1.1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.6;
}
.cat-desc-bar strong { color: var(--dark); }

/* -- Gallery image hover zoom */
.product-gallery-main { overflow: hidden; }
.product-gallery-main img { transition: transform 0.4s ease; }
.product-gallery-main:hover img { transform: scale(1.35); }

/* -- Print styles */
@media print {
  .top-bar, nav, .breadcrumb-bar, .sticky-atc, .whatsapp-btn,
  .back-to-top, .cookie-banner, .related, footer,
  .back-to-results, #ask-question-btn, .lightbox,
  .product-gallery-thumbs, .coverage-calc, .purchase-row { display: none !important; }
  body { animation: none; background: #fff; color: #000; font-size: 11pt; }
  .product-detail { display: block; padding: 1rem 0; max-width: 100%; }
  .product-gallery { position: static; max-height: none; overflow: visible; }
  .product-gallery-main { min-height: auto; cursor: default; border: none; }
  .product-gallery-main img { display: block !important; height: auto; max-height: 60vh; width: auto; max-width: 100%; object-fit: contain; }
  .product-gallery-main:hover img { transform: none; }
  .product-detail-info h1 { font-size: 18pt; }
  .spec-table td { border-bottom: 1px solid #ccc; padding: 0.4rem 0; color: #000; }
  .spec-table td:first-child { color: #333; }
  .product-desc, .product-features { color: #333; }
}

/* -- Mobile nav */
@media (max-width: 680px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 0;
    gap: 0;
    z-index: 199;
    max-height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid var(--border); }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a { display: block; padding: 0.9rem 5%; font-size: 0.95rem; min-height: 44px; display: flex; align-items: center; }
  .nav-menu-btn { display: block; min-height: 44px; }
  .nav-has-dropdown .nav-dropdown {
    display: none;
    flex-direction: column;
    background: #f8f8f8;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--border);
  }
  .nav-has-dropdown .nav-dropdown.open { display: flex; }
  .nav-has-dropdown .nav-dropdown li { border-bottom: none; }
  .nav-has-dropdown .nav-dropdown li a { padding: 0.7rem 5% 0.7rem 10%; font-size: 0.9rem; color: var(--mid); }
  .nav-has-dropdown > a .nav-chevron { transition: transform 0.2s; }
  .nav-has-dropdown > a.dropdown-open .nav-chevron { transform: rotate(180deg); }
}