/* Global styles */
:root {
  --color-primary: #df0716; /* brand red */
  --color-text: #111111; /* near black */
  --color-heading: #090909; /* heading black */
  --color-background: #f7f7f8; /* light gray background */
  --color-surface: #ffffff; /* cards / header surface */
  --color-border-soft: #e3e3e6;
  --color-nav-bg: #df0716; /* red nav background */
  --color-nav-text: #ffffff; /* white nav text */
  --color-footer-bg: #000000;
  --color-footer-text: #ffffff;
  --color-button-bg: #df0716;
  --color-button-text: #ffffff;
  --max-width: 1200px;
}

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

html {
  font-size: 16px;
  height: 100%;
  /* Use footer background for the page root so any extra space below content matches the footer color */
  background-color: var(--color-footer-bg);
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

body.modal-open {
  overflow: hidden;
}

.form-status-banner {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  max-width: 320px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  background-color: #111111;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2000;
}

.form-status-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-status-banner.form-status-ok {
  background-color: #15803d; /* green */
}

.form-status-banner.form-status-error {
  background-color: #b91c1c; /* red */
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  line-height: 1.2;
  margin: 0 0 0.6rem;
}

p, li {
  color: var(--color-text);
  font-size: 0.98rem;
}

p {
  margin-bottom: 0.55rem;
}

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

a:hover {
  text-decoration: none;
}

.wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem;
}

/* Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-nav-bg);
  color: var(--color-nav-text);
  border-bottom: 1px solid var(--color-border-soft);
}

.navbar {
  width: 100%;
  margin: 0;
  padding: 0 2rem 0.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 1rem;
  height: 100px;
}

.navbar-brand {
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-nav-text);
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.15s ease, transform 0.15s ease;
}

.navbar-brand:hover,
.navbar-brand:focus,
.navbar-brand:active {
  text-decoration: none;
  color: var(--color-nav-text);
  transform: none;
  background-color: transparent;
}

.navbar-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-nav-text);
  font-size: 1.5rem;
}

.navbar-menu {
  display: flex;
  gap: 1.5rem;
  margin-left: auto; /* push menu + language switcher to the right */
}

.navbar-menu a {
  text-decoration: none;
}

.navbar-menu a:active {
  text-decoration: none;
}

.navbar-lang {
  position: relative;
  margin-left: 1rem;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-lang-toggle {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  color: var(--color-nav-text);
  font-size: 0.8rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.navbar-lang-toggle:hover,
.navbar-lang-toggle:focus {
  background-color: rgba(0, 0, 0, 0.18);
}

.navbar-lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.25rem);
  min-width: 8rem;
  background-color: #ffffff;
  color: #111111;
  border-radius: 6px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  padding: 0.25rem 0;
  display: none;
  z-index: 1200;
}

.navbar-lang.is-open .navbar-lang-menu {
  display: block;
}

.navbar-lang-menu a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  color: #111111; /* dark text on white dropdown */
  text-decoration: none;
}

.navbar-lang-menu a:hover,
.navbar-lang-menu a:focus {
  background-color: rgba(0, 0, 0, 0.06);
}

.navbar-lang-menu a.is-current {
  font-weight: 600;
}

/* Buttons */
.button,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
  background-color: var(--color-button-bg);
  color: var(--color-button-text);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
  opacity: 0.9;
}

/* Layout */
main {
  padding: 0 0 2.5rem;
  flex: 1 0 auto;
  background-color: var(--color-background);
}

.home-banner {
  position: relative;
  margin-bottom: 2rem;
}

.banner-slider {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none; /* prevent hidden slides from catching clicks */
}

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

/* Desktop banner backgrounds (default) */
.banner-slide-1 {
  background-image: url('/pics/banner/banner1-1.jpg?v=20260212i');
}

.banner-slide-2 {
  background-image: url('/pics/banner/banner2.jpg?v=20260212i');
}

.banner-slide-3 {
  background-image: url('/pics/banner/banner3.png?v=20260212i');
}

.banner-slide-4 {
  background-image: url('/pics/banner/banner4.jpg?v=20260212i');
}

.banner-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.1));
  color: #ffffff;
}

.banner-kicker {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.banner-title {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.banner-subtitle {
  max-width: 34rem;
  margin-bottom: 1.25rem;
  color: #f5f5f5;
}

.banner-actions {
  display: flex;
  gap: 0.75rem;
}

.button.button-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.banner-dots {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.banner-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.banner-dot.is-active {
  width: 22px;
  background-color: #ffffff;
}

.partner-strip {
  background-color: #ffffff;
  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
  overflow: hidden;
}

.partner-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 0.8rem 2rem;
  width: max-content;
  animation: partner-scroll 25s linear infinite;
}

.partner-logo {
  width: 140px;
  min-width: 140px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes partner-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.home-categories {
  padding: 3rem 0 2.5rem;
}

.home-section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.category-card {
  position: relative;
  height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1));
}

.category-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 1.5rem 1.75rem 2.25rem;
  color: #ffffff;
  text-align: center;
}

.category-card-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.category-title {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.category-button {
  margin-top: 0.75rem;
}

.hero {
  padding: 2rem 0;
}

.hero-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  max-width: 40rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--color-border-soft);
  border-radius: 8px;
  padding: 1.25rem;
  background-color: var(--color-surface);
}

/* Home: key figures & why-choose section */
.stats-section {
  margin-top: 2.5rem;
}

.stats-strip {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  text-align: center;
}

.stat-number {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--color-primary);
}

.stat-label {
  font-size: 0.9rem;
}

.why-band {
  margin-top: 3rem;
  padding: 2.5rem 0 3rem;
  background-color: #ffffff;
  border-radius: 12px;
}

.why-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.section-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-underline {
  width: 3rem;
  height: 3px;
  background-color: var(--color-primary);
  margin: 0.25rem auto 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
}

.brands-band {
  margin-top: 3rem;
  padding: 2.5rem 0 3rem;
  background-color: #ffffff;
}

.brands-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.brand-item {
  text-align: center;
}

.brand-text {
  font-size: 0.95rem;
}

.why-item-title {
  margin-bottom: 0.5rem;
}

.why-item-text {
  font-size: 0.95rem;
}

.application-section {
  margin-top: 3rem;
}

.news-section {
  margin-top: 3.5rem;
  padding: 3rem 0 3.25rem;
  background-color: #ffffff;
}

.news-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.news-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sample-request-section {
  margin-top: 3.5rem;
  padding: 3.5rem 0 3.75rem;
  background-color: #ffffff;
}

.sample-request-form {
  margin-top: 0;
}

.sample-request-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.sample-request-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.sample-request-copy p {
  max-width: 32rem;
}

.sample-request-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sample-request-button {
  font-size: 1.05rem;
  padding: 0.9rem 1.9rem;
}

.sample-request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
}

.sample-request-form .form-field-full {
  grid-column: 1 / -1;
}

.sample-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1200;
}

.sample-modal-overlay.is-open {
  display: flex;
}

.sample-modal {
  background-color: #ffffff;
  border-radius: 14px;
  max-width: 640px;
  width: 100%;
  padding: 2rem 2.25rem 2.25rem;
  box-shadow: 0 18px 45px rgba(15, 35, 75, 0.18);
  max-height: 90vh;
  overflow-y: auto;
}

.sample-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}

.sample-modal-close {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #999999;
}

.sample-modal-intro {
  margin-bottom: 1.25rem;
}

.sample-modal-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.sample-modal-form .form-field {
  display: flex;
  flex-direction: column;
}

.sample-modal-form .form-field-full {
  grid-column: 1 / -1;
}

.sample-modal-form .form-actions {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}

.inquiry-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 1200;
}

.inquiry-modal-overlay.is-open {
  display: flex;
}

.inquiry-modal {
  background-color: #ffffff;
  border-radius: 14px;
  max-width: 720px;
  width: 100%;
  padding: 2rem 2.25rem 2.25rem;
  box-shadow: 0 18px 45px rgba(15, 35, 75, 0.18);
  max-height: 90vh;
  overflow-y: auto;
}

.inquiry-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 0.75rem;
}

.inquiry-modal-close {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: #999999;
}

.inquiry-modal-intro {
  margin-bottom: 1.25rem;
}

.inquiry-modal-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.25rem;
}

.inquiry-modal-form .form-field {
  display: flex;
  flex-direction: column;
}

.inquiry-modal-form .form-field-full {
  grid-column: 1 / -1;
}

.inquiry-modal-form .form-actions {
  grid-column: 1 / -1;
  margin-top: 0.5rem;
}

/* About: company profile & brands */
.company-profile {
  padding: 3.5rem 0;
  background-color: #ffffff;
}

.company-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: center;
}

.company-profile-media {
  position: relative;
}

.company-profile-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 35, 75, 0.2);
}

.company-profile-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 3px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  pointer-events: none;
}

.company-profile-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.company-profile-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.company-profile-content p {
  font-size: 0.98rem;
}

.company-profile-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.brands-section {
  padding: 3.5rem 0 3.5rem;
  background-color: #f0f2f7;
}

.brands-heading {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 2.5rem;
}

.brands-intro {
  font-size: 0.98rem;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.brand-card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 14px 32px rgba(15, 35, 75, 0.08);
  text-align: center;
}

.brand-name {
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.brand-tagline {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #777777;
  margin-bottom: 0.9rem;
}

.brand-card p {
  font-size: 0.94rem;
  margin-bottom: 0.7rem;
}

.brand-card a {
  color: var(--color-primary);
  text-decoration: none;
}

.brand-card a:hover {
  text-decoration: underline;
}

.brand-list {
  margin: 0.4rem 0 0.1rem;
  padding-left: 1.1rem;
  font-size: 0.94rem;
}

.brand-list li + li {
  margin-top: 0.25rem;
}

.brand-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  margin: 0 auto 1rem;
  background-color: #ffffff;
  border: 1px solid var(--color-border-soft);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.brand-icon-zoombo {
  background-image: url('/pics/icon/zoombo.png');
}

.brand-icon-bodeux {
  background-image: url('/pics/icon/bodeux.png');
}

.brand-icon-potobelo {
  background-image: url('/pics/icon/potobelo.png');
}

/* Footer */
.site-footer {
  background-color: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 1.75rem 0;
  margin-top: auto; /* stick footer to bottom when content is short */
}

.site-footer a {
  color: var(--color-footer-text);
}

.site-footer p {
  color: var(--color-footer-text);
}

.site-footer-inner {
  width: 90%;
  max-width: none;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
}

.footer-column h3 {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--color-footer-text);
}

.footer-column ul {
  list-style: none;
}

.footer-column li + li {
  margin-top: 0.25rem;
}

.footer-brand {
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-footer-text);
}

.footer-social {
  display: flex;
  flex-direction: column;
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 0.75rem;
  font-size: 0.75rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background-color: var(--color-nav-bg);
  color: var(--color-nav-text);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
  z-index: 1300;
}

.back-to-top.is-visible {
  display: flex;
}

.back-to-top-icon {
  font-size: 1.25rem;
  line-height: 1;
}

.footer-logo-tagline {
  margin-top: 0.75rem;
}

.footer-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.15rem 0;
  color: var(--color-footer-text);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.footer-slogan {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Forms */
form {
  display: grid;
  gap: 1rem;
  max-width: 32rem;
}

label {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  border: 1px solid #cccccc;
  font: inherit;
}

textarea {
  min-height: 8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 0 1rem 0.25rem;
    align-items: center;
    height: auto;
  }

  .navbar-brand {
    font-size: 1.8rem;
    flex: 0 0 auto;
  }

  .navbar-toggle {
    display: block;
    margin-left: auto;
    order: 2;
  }

  .navbar-menu {
    width: 100%;
    flex-direction: column;
    display: none;
    padding-top: 0.5rem;
    background-color: var(--color-nav-bg);
    padding-bottom: 0.75rem;
    margin-left: 0;
    flex-basis: 100%;
    order: 4;
  }

  .navbar-menu.is-open {
    display: flex;
  }

  .navbar-menu a {
    padding: 0.6rem 1rem;
    color: var(--color-nav-text);
    width: 100%;
  }
  
  .navbar-lang {
    margin-left: 0.35rem;
    margin-top: 0;
    order: 3;
  }
  
  .navbar-lang-menu {
    right: 0;
  }
  
  .navbar-lang-menu a {
    color: #111111 !important;
  }

  .hero > div[style*="display:flex"] {
    justify-content: flex-end !important;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    row-gap: 1.5rem;
  }

  .stats-strip {
    grid-template-columns: 1fr 1fr;
    row-gap: 1.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .sample-request-layout {
    grid-template-columns: 1fr;
  }

  .sample-request-form {
    grid-template-columns: 1fr;
  }

  .sample-modal {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .sample-modal-form {
    grid-template-columns: 1fr;
  }

  .inquiry-modal {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .inquiry-modal-form {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .category-grid {
    grid-template-columns: 1fr 1fr;
  }

  .category-card {
    height: 260px;
  }

  .banner-slider {
    height: 320px;
  }

  /* Mobile banner backgrounds (can be different crops/files if needed) */
  .banner-slide-1 {
    /* For now, mobile uses the same image as desktop; later you can swap to a dedicated -mobile file if desired. */
    background-image: url('/pics/banner/banner1-1.jpg?v=20260212i');
  }

  .banner-slide-2 {
    background-image: url('/pics/banner/banner2.jpg?v=20260212i');
  }

  .banner-slide-3 {
    background-image: url('/pics/banner/banner3.png?v=20260212i');
  }

  .banner-slide-4 {
    background-image: url('/pics/banner/banner4.jpg?v=20260212i');
  }

  .banner-overlay {
    padding: 0 1.5rem;
  }

  .banner-title {
    font-size: 1.8rem;
  }

  .banner-actions {
    flex-wrap: wrap;
  }

  .company-profile-layout {
    grid-template-columns: 1fr;
  }

  .company-profile {
    padding: 2.5rem 0;
  }

  .brand-grid {
    grid-template-columns: 1fr;
  }
}

/* Product gallery */
.product-gallery {
  margin-top: 2.5rem;
}

.product-gallery-title {
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-card {
  background-color: var(--color-surface);
  border-radius: 10px;
  border: 1px solid var(--color-border-soft);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.product-thumb {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  margin-bottom: 0.6rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-thumb-kettle {
  background-image: url('/pics/products/water-kettles/cat-water-kettles.jpg');
}

.product-thumb-pressure {
  background-image: url('/pics/products/pressure-cookers/BYLF1.jpg');
}

.product-thumb-cookware {
  background-image: url('/pics/products/cookware-sets/cs1-lsp.jpg');
}

.product-thumb-coffee {
  background-image: url('/pics/products/coffee-merch/gwjw600s.jpg');
}

.product-name {
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0.25rem 0 0;
  color: #333333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.product-card-link:hover .product-name {
  text-decoration: underline;
}

/* Company photo gallery */
.company-gallery {
  margin: 3rem 0 3.5rem;
}

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

.company-gallery-item {
  border-radius: 14px;
  overflow: hidden;
  background-color: #000;
}

.company-gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.company-gallery-item:hover img {
  transform: scale(1.04);
  opacity: 0.96;
}

@media (max-width: 1024px) {
  .company-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .company-gallery-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Company video section */
.company-video {
  margin-top: 1.75rem;
}

.company-video video {
  display: block;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(15, 35, 75, 0.18);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.product-card:hover .product-thumb {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }
}

/* Product detail layout */
.product-detail {
  padding: 2.5rem 0 3rem;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.product-detail-media {
  position: relative;
}

.product-detail-image {
  width: min(650px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.product-detail-note {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: #777777;
}

.product-detail-main h2 {
  margin-bottom: 0.5rem;
}

.product-detail-main p {
  margin-bottom: 0.5rem;
}

.product-spec-list,
.product-benefit-list {
  margin: 0.35rem 0 0.85rem;
  padding-left: 1.2rem;
}

.product-spec-list li,
.product-benefit-list li {
  margin-bottom: 0.25rem;
}

.product-detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.5rem 0 1.75rem;
}

.product-detail-meta-item {
  border-radius: 8px;
  border: 1px solid var(--color-border-soft);
  padding: 0.6rem 0.8rem;
  background-color: #ffffff;
}

.product-detail-meta-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #666666;
}

.product-detail-meta-value {
  font-weight: 600;
  font-size: 0.95rem;
}

.product-inquire-button {
  margin-top: 0.75rem;
  min-width: 0;
  font-size: 1.05rem;
  padding: 0.9rem 1.9rem;
}

.product-gallery {
  width: min(1200px, calc(100% - 3rem));
  margin-left: auto;
  margin-right: auto;
  padding: 0 0 3rem;
}

.product-gallery h2 {
  margin: 0 0 0.5rem;
}

.product-gallery-intro {
  margin: 0 0 1rem;
  color: #4b5563;
  max-width: 62rem;
}

.product-gallery-divider {
  border-top: 2px dashed #8f98aa;
  margin: 0.35rem 0 1rem;
}

.product-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.product-gallery-item {
  margin: 0;
  border: 1px solid var(--color-border-soft);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.product-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 900px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-meta {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .product-detail-meta {
    grid-template-columns: 1fr;
  }

  .product-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ accordion */
.faq-accordion {
  border-top: 1px solid #e3e6ef;
  border-bottom: 1px solid #e3e6ef;
}

.faq-item + .faq-item {
  border-top: 1px solid #e3e6ef;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 0.85rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  font-weight: 700;
  color: #9ca3af;
  transition: transform 0.15s ease, color 0.15s ease;
}

.faq-item.is-open .faq-question::after {
  content: "−";
  color: #4b5563;
}

.faq-answer {
  display: none;
  padding: 0 0 0.9rem 0;
  color: #4b5563;
}

.faq-item.is-open .faq-answer {
  display: block;
}

/* Contact Information card (contacts page) */
.contact-info-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.96rem;
}

.contact-info-row::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid var(--color-border-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--color-primary);
  background-color: #fff7f7;
}

.contact-info-email::before {
  content: "✉";
}

.contact-info-address::before {
  content: "📍";
}

.contact-info-phone::before {
  content: "📱";
}

.contact-info-landline::before {
  content: "☎";
}

.contact-info-main {
  font-weight: 600;
}

.contact-info-main {
  text-decoration: none;
}

.contact-info-main:hover {
  text-decoration: underline;
  color: var(--color-primary);
}

.contact-map {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ========== News Grid Styles ========== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.news-card {
  background: var(--color-surface);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.news-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.news-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: var(--color-background);
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card-title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.75rem;
  color: var(--color-heading);
}

.news-card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
  margin-bottom: 1rem;
  flex: 1;
}

.news-card-readmore {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.news-card:hover .news-card-readmore {
  transform: translateX(4px);
}

.news-load-more {
  text-align: center;
  margin-top: 3rem;
  padding-bottom: 2rem;
}

.news-load-more .button {
  min-width: 200px;
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}

.news-load-more .button:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}
