/* =========================================
   GLOBAL SHARED STYLES
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #000000;
  line-height: normal;
  -webkit-font-smoothing: antialiased;
}

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

:root {
  --color-black: #000;
  --color-white: #fff;
  --color-border: #000;
  --color-gold-accent: #a18e4f;
}

/* ===== Top Contact Bar ===== */
.top-bar {
    background-color: transparent;
    border-bottom: 1.5px solid #fdfbfb;
    box-shadow: 0px -1px 4px 0px rgba(0, 0, 0, 1);
    padding: 20px 10px;
}

.top-bar-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact-info {
    display: flex;
    gap: 22px;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.contact-item img { width: 22px; height: 22px; }

.contact-item a {
    color: #000;
    text-decoration: underline;
    white-space: nowrap;
}

.contact-item a:hover { color: #a18e4f; }

.social-links { display: flex; gap: 10px; align-items: center; }
.social-links img { width: 25px; height: 25px; cursor: pointer; transition: opacity 0.3s, transform 0.2s; }

/* ===== Main Header ===== */
.main-header {
    background: linear-gradient(to right, rgba(15, 19, 26, 0.8), rgba(15, 19, 26, 0.75));
    box-shadow: -1px 4px 4px 0px rgba(0, 0, 0, 0.3), 1px 2px 4px 0px rgba(0, 0, 0, 0.3);
    padding: 10px 82px;
    transition: all .3s ease;
}

.header-content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section { display: flex; gap: 8px; align-items: center; }
.logo-text { display: flex; flex-direction: column; width: 134px; }

.company-name {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    line-height: 24px;
}

.company-name .highlight { color: #ffffff; }

.tagline {
    font-size: 16px;
    line-height: 19px;
    font-style: italic;
    color: #e0e0e0;
    font-weight: 400;
}

.logo-accent { width: 30px; height: 32.397px; }

.main-nav { display: flex; gap: 183px; align-items: center; }
.nav-links { display: flex; gap: 30px; align-items: center; }

.nav-links a {
    position: relative;
    font-size: 17px;
    line-height: 21px;
    font-weight: 400;
    color: #ffffff;
    transition: all 0.4s ease;
    display: inline-block;
}

.nav-links a:hover {
    color: #ffffff;
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8),
                 0 0 20px rgba(255, 255, 255, 0.4),
                 0 0 30px rgba(255, 255, 182, 0.3);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        rgba(255, 255, 182, 0.8),
        rgba(255, 255, 255, 0.8),
        transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
    filter: blur(1px);
}

.nav-links a:hover::after { transform: scaleX(1); }

.nav-links a:hover::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0; height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    animation: lightBurst 0.6s ease-out;
    z-index: -1;
}

@keyframes lightBurst {
    0%   { width: 0; height: 0; opacity: 0.5; }
    100% { width: 100px; height: 100px; opacity: 0; }
}

.nav-buttons { display: flex; gap: 12px; }

.nav-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    font-size: 17px;
    font-weight: 400;
    line-height: 17.5px;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
}

.btn-quote {
    background: linear-gradient(to right, rgba(178, 153, 96, 0.6), #090401);
    border: 1px solid #ffffff;
    border-radius: 8px;
    padding: 10px 10px;
    color: #ffffff;
    box-shadow: 0px 0px 4px 0px rgba(9, 4, 1, 0.6);
}

.btn-quote:hover { opacity: 0.9; }

.btn-contact {
    background-color: #000000;
    border: 1px solid #ffffff;
    border-radius: 8px;
    padding: 9px 10px;
    color: #ffffff;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25),
                inset 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.btn-contact:hover { background-color: #1a1a1a; }

/* ===== Newsletter ===== */
.newsletter {
    background-color: #ccd3e2;
    padding: clamp(2rem, 8vw, 6.25rem) clamp(1rem, 5vw, 13.75rem);
    min-height: 496px;
    position: relative;
}

.newsletter-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #e9ebee;
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    min-height: 296px;
}

.newsletter-content { padding: 32px; max-width: 659px; z-index: 2; }

.newsletter-content h3 {
    font-family: 'Figtree', sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
    line-height: 32px;
    margin-bottom: 12px;
}

.newsletter-content h4 {
    font-family: 'Figtree', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    line-height: 24px;
    margin-bottom: 12px;
}

.newsletter-content p {
    font-family: 'Figtree', sans-serif;
    font-size: 15.5px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.65);
    line-height: 24px;
    margin-bottom: 32px;
}

.newsletter-form { display: flex; gap: 12px; align-items: flex-start; }

.form-group { display: flex; flex-direction: column; gap: 8px; width: 342px; }

.form-group input {
    background-color: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.39);
    border-radius: 8px;
    padding: 16px;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    line-height: 16px;
    color: #000000;
    height: 48px;
}

.form-group input::placeholder { color: #94a3b8; }

.form-group input:focus {
    outline: none;
    border-color: #8b5cf6;
}

.form-group small {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #64748b;
    line-height: 16px;
}

.btn-subscribe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #8b5cf6;
    border-radius: 8px;
    border: none;
    padding: 16px 16px;
    color: #ffffff;
    font-family: 'Figtree', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    height: 48px;
    min-width: 105px;
    cursor: pointer;
}

.btn-subscribe:hover { background-color: #7c3aed; }

.newsletter-visual {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.newsletter-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    overflow: hidden;
}

.newsletter-envelope {
    position: relative;
    width: 85%;
    right: -65px;
    max-width: 340px;
    z-index: 2;
}

/* ===== Footer ===== */
.footer {
    background-color: #ffffff;
    border-top: 1px solid #e5e7eb;
}

.footer-top {
    max-width: 1440px;
    margin: 0 auto;
    padding: 25px 49px;
    display: flex;
    gap: 69px;
}

.footer-brand { max-width: 429px; }

.brand-logo {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 32px;
}

.brand-img {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    object-fit: cover;
}

.brand-text { width: 134px; }

.brand-text h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    line-height: 1.2;
}

.brand-text h3 .highlight { color: #000000; }

.brand-text p {
    font-size: 16px;
    font-style: italic;
    color: #000000;
    font-weight: 400;
}

.brand-accent { width: 30px; height: 32.397px; }

.brand-desc {
    font-size: 16.5px;
    font-weight: 400;
    color: #000000;
    line-height: 20px;
}

.footer-columns { display: flex; gap: 70px; flex: 1; }

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 26px;
    align-items: center;
}

.footer-contact-col { align-items: flex-start; }

.footer-col h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 27px;
    color: #000000;
    position: relative;
    padding-left: 12px;
}

.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 23.5px;
    border-left: 3px solid #000000;
    background-color: #000000;
    border-radius: 999px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
}

.footer-col ul li a {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    color: #000000;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover { color: #000000; }

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-contact {
    display: flex;
    gap: 12px;
    align-items: center;
}

.icon-box {
    border: 1px solid #000000;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img { width: 22px; height: 22px; }

.footer-contact .label {
    font-size: 12px;
    font-weight: 500;
    line-height: 15px;
    color: #555b66;
    margin-bottom: 8px;
}

.footer-contact .value {
    font-size: 13px;
    font-weight: 700;
    color: #000000;
    line-height: 16px;
}

.footer-contact .value a {
    display: inline-block;
    word-break: break-all;
    max-width: 150px;
}

.footer-bottom {
    max-width: 1440px;
    margin: 0 auto;
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    display: flex;
    gap: 12px;
    align-items: center;
    font-weight: 400;
    color: #000000;
}

.copyright span:first-child { font-size: 18px; }
.copyright span:last-child { font-size: 15px; line-height: 18px; }

.legal-links {
    display: flex;
    gap: 24px;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}

.legal-links a { transition: color 0.3s ease; }
.legal-links a:hover { color: #a18e4f; }

.dot {
    width: 6px;
    height: 6px;
    vertical-align: middle;
    background-color: #7d7d7d;
    border: 0.5px solid #000000;
    border-radius: 999px;
    display: inline-block;
}

/* ===== Device Warning Modal ===== */
.device-warning {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

.device-warning.active { opacity: 1; visibility: visible; }

.device-warning__content {
  background: #fff;
  padding: 32px 28px;
  border-radius: 28px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.35s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.device-warning.active .device-warning__content { transform: scale(1); }

.device-warning__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #000;
  font-family: var(--font-inter), sans-serif;
}

.device-warning__text {
  font-size: 15px;
  line-height: 1.4;
  color: #555;
  margin-bottom: 24px;
  font-family: var(--font-inter), sans-serif;
}

.device-warning__btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.2s ease;
  font-family: var(--font-inter), sans-serif;
}

.device-warning__btn:hover { background: #222; transform: translateY(-1px); }

.device-warning__note {
  margin-top: 16px;
  font-size: 12px;
  color: #888;
  font-family: var(--font-inter), sans-serif;
}

/* Responsive helpers */
@media (max-width: 1200px) {
    .main-header { padding: 10px 40px; }
    .header-content { gap: 50px; }
    .main-nav { gap: 50px; }
    .newsletter { padding: 80px 50px; }
    .footer-top { flex-direction: column; gap: 40px; }
    .footer-columns { flex-wrap: wrap; gap: 40px; }
}

@media (max-width: 768px) {
    .top-bar-content { flex-direction: column; gap: 15px; }
    .top-contact-info { flex-direction: column; gap: 10px; }
    .main-header { padding: 10px 20px; }
    .header-content { flex-direction: column; gap: 20px; }
    .main-nav { flex-direction: column; gap: 20px; width: 100%; }
    .nav-links { flex-direction: column; gap: 15px; text-align: center; }
    .nav-buttons { flex-direction: column; width: 100%; }
    .btn-quote, .btn-contact { width: 100%; }
    .newsletter { padding: 60px 20px; }
    .newsletter-content { padding: 24px; }
    .newsletter-form { flex-direction: column; width: 100%; }
    .form-group { width: 100%; }
    .btn-subscribe { width: 100%; }
    .footer-top { padding: 40px 30px; }
    .footer-columns { flex-direction: column; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
}

/* =========================================
   PRODUCTS PAGE SPECIFIC STYLES
   ========================================= */

/* Hero with animated background */
.products-hero {
  background: linear-gradient(-45deg, #fbfbfb, #ffffff, #f5f5f5, #fbfbfb);
  background-size: 400% 400%;
  animation: heroShift 15s ease infinite;
  text-align: center;
  padding: 60px 24px 48px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

@keyframes heroShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.products-hero__title {
  font-size: clamp(36px, 4vw, 55px);
  font-weight: 800;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 16px;
}

.products-hero__subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(0,0,0,0.6);
  max-width: 700px;
  margin: 0 auto;
}

.product-categories {
  padding: 64px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-categories__title {
  text-align: center;
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 700;
  margin-bottom: 12px;
}

.product-categories__subtitle {
  text-align: center;
  font-size: 16px;
  color: rgba(0,0,0,0.6);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* Category section – entrance animation base */
.category-section {
  margin-bottom: 64px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.category-section.revealed {
  opacity: 1;
  transform: translateY(0);
}

.category-section__title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(0,0,0,0.1);
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

/* Animated gold underline on reveal */
.category-section__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: var(--color-gold-accent, #a18e4f);
  transition: width 0.6s ease;
}

.category-section.revealed .category-section__title::after {
  width: 100%;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

/* =========================================
   PRODUCT CARD – SIMPLE LAYOUT (no flip)
   ========================================= */
.product-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.25s;
}

.product-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.product-card:not(.product-card--flip):hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.product-card h4 {
  font-size: 18px;
  font-weight: 600;
  padding: 16px 16px 0;
  color: #000;
}

.product-card p {
  font-size: 14px;
  color: rgba(0,0,0,0.65);
  line-height: 1.5;
  padding: 8px 16px 16px;
  flex: 1;
}

/* =========================================
   FLIP CARD – Indoor Low‑Power only
   ========================================= */
.product-card--flip {
  background: transparent;
  border: none;
  perspective: 1000px;
  height: 530px;              /* extra room for button */
}

.product-card--flip.product-card {
  overflow: visible;
}

.product-card--flip .product-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

/* No hover flip */
.product-card--flip .product-card__front,
.product-card--flip .product-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card--flip .product-card__front {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
}

.product-card--flip .product-card__front h4 {
  font-size: 18px;
  font-weight: 600;
  padding: 16px 16px 0;
  color: #000;
  background: #fff;
}

.product-card--flip .product-card__front p {
  padding: 8px 16px 0;
  margin: 0;
  font-size: 13px;
  color: rgba(0,0,0,0.65);
  line-height: 1.4;
}

.product-card--flip .product-card__back {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  transform: rotateY(180deg);
  padding: 0;
  justify-content: flex-start;
}

/* Scrollable back area */
.product-card__back-scroll {
  padding: 20px;
  overflow-y: auto;
  max-height: 100%;
  flex: 1;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(0,0,0,0.8);
}

.product-card__back-scroll p {
  margin-bottom: 10px;
}

.product-card__back-scroll p:last-child {
  margin-bottom: 0;
}

/* Flip buttons */
.flip-btn {
  position: absolute;
  z-index: 10;
  border: none;
  cursor: pointer;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  transition: background 0.2s;
}

.flip-btn:hover {
  background: rgba(0,0,0,0.85);
}

.flip-btn--open {
  bottom: 12px;
  right: 12px;
}

.flip-btn--close {
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  padding: 0;
}

/* Flipped state (triggered by JS) */
.product-card--flip.flipped .product-card__inner {
  transform: rotateY(180deg);
}

/* =========================================
   MANUAL IMAGE SLIDER (inside product card)
   ========================================= */
.slider {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.slider__slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #f5f5f5;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

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

/* Arrows */
.slider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  color: #000;
  font-size: 18px;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 5;
  transition: background 0.2s;
  line-height: 1;
}

.slider__arrow:hover {
  background: rgba(255,255,255,0.95);
}

.slider__arrow--prev {
  left: 8px;
}

.slider__arrow--next {
  right: 8px;
}

/* Dots */
.slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  z-index: 5;
}

.slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.slider__dot.active {
  background: #fff;
  transform: scale(1.3);
}


/* =========================================
   IMAGE LIGHTBOX (Zoom & Pan)
   ========================================= */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(4px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.2s;
}
.lightbox-close:hover {
  color: #ccc;
}

.lightbox-image-container {
  width: 90vw;
  height: 90vh;
  overflow: hidden;
  position: relative;
  cursor: grab;
  user-select: none;
}
.lightbox-image-container:active {
  cursor: grabbing;
}

.lightbox-image-container img {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: 0 0;        /* zoom from top‑left corner */
  pointer-events: none;         /* prevents image from interfering with drag */
}

.lightbox-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10001;
}

.lightbox-controls button {
  background: #fff;
  border: none;
  font-size: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-controls button:hover {
  background: #e0e0e0;
}

/* Prevent page scroll when lightbox is open */
body.lightbox-open {
  overflow: hidden;
}

/* Hover hint for slider images */
.slider {
  position: relative;
}

.slider-hint {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;                   
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 16px 16px 0 0;
}

.slider-hint.visible {
  opacity: 1;
}

.slider-hint span {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 18px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.3px;
}

/* Contact CTA */
.products-cta {
  text-align: center;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.products-cta.revealed {
  opacity: 1;
  transform: translateY(0);
}

.products-cta__text {
  font-size: 18px;
  color: rgba(0,0,0,0.7);
}

.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  background: #000;
  color: #fff;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
  animation: gentlePulse 2.5s ease-in-out infinite;
}

.btn--primary:hover { opacity: 0.9; }

/* ============================================
   SMART HOURS TOOLTIP – PREMIUM VERSION
   ============================================ */

/* ── Container ── */
.phone-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* ── Tooltip ── */
.hours-tooltip {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    background: #1a1a2e;
    color: #ffffff;
    padding: 16px 20px;
    border-radius: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    min-width: 240px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: auto;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ── Arrow ── */
.hours-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 7px solid transparent;
    border-bottom-color: #1a1a2e;
}

/* ── Show on hover ── */
.phone-container:hover .hours-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* ── Status row ── */
.hours-tooltip__status {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
}

/* ── Status text (base) ── */
.hours-tooltip__status-text {
    font-weight: 600;
    font-size: 14px;
}

/* ── Status text (open - GREEN) ── */
.hours-tooltip__status-text--open {
    color: #22c55e;
    font-weight: 700;
    font-size: 15px;
}

/* ── Status text (closed - RED) ── */
.hours-tooltip__status-text--closed {
    color: #ff0000;
    font-weight: 700;
    font-size: 15px;
}

/* ── Countdown timer text ── */
.hours-tooltip__countdown {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
    letter-spacing: 0.3px;
}

/* ── Sub-text for "Send us an Email" ── */
.hours-tooltip__sub-text {
    font-size: 13px;
    font-weight: 350;
    display: block;
    margin-top: 2px;
}

/* ── Rows ── */
.hours-tooltip__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 4px 0;
    width: 100%;
}

.hours-tooltip__icon {
    font-size: 15px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.hours-tooltip__label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.hours-tooltip__value {
    color: #ffffff;
    font-weight: 500;
    font-size: 13px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .hours-tooltip {
        min-width: 200px;
        padding: 14px 16px;
        font-size: 12px;
        left: 50%;
        transform: translateX(-50%) translateY(6px);
    }
    .hours-tooltip__status-text--open,
    .hours-tooltip__status-text--closed {
        font-size: 14px;
    }
    .hours-tooltip__sub-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hours-tooltip {
        min-width: 180px;
        padding: 12px 14px;
        font-size: 11px;
        left: 0;
        transform: translateX(0) translateY(6px);
    }
    .hours-tooltip::before {
        left: 20%;
    }
    .hours-tooltip__status-text--open,
    .hours-tooltip__status-text--closed {
        font-size: 13px;
    }
    .hours-tooltip__sub-text {
        font-size: 11px;
    }
}

/* ── Respect user's motion preferences ── */
@media (prefers-reduced-motion: reduce) {
    .hours-tooltip {
        transition: none !important;
    }
    .phone-container:hover .hours-tooltip {
        transform: translateX(-50%) translateY(0);
    }
}

/* ── Focus styles for keyboard users ── */
.phone-link:focus-visible {
    outline: 2px solid #22c55e;
    outline-offset: 2px;
    border-radius: 4px;
}

/* ── Smooth color transitions ── */
.hours-tooltip__status-text--open,
.hours-tooltip__status-text--closed {
    transition: color 0.3s ease;
}

@keyframes gentlePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,0,0,0.2); }
  50%      { box-shadow: 0 0 0 12px rgba(0,0,0,0); }
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   PREMIUM COOKIE CONSENT – PROFESSIONAL
   ============================================ */

/* ── Banner ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 24px;
    z-index: 999998;
    display: none;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
    display: block;
    animation: cookieSlideUp 0.5s ease;
}

@keyframes cookieSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-banner__content {
    flex: 1;
}

.cookie-banner__text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.cookie-banner__link {
    color: #a18e4f;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}

.cookie-banner__link:hover {
    color: #c9b16a;
}

.cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-banner__btn--primary {
    background: #a18e4f;
    color: #ffffff;
}

.cookie-banner__btn--primary:hover {
    background: #b8a35e;
}

.cookie-banner__btn--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cookie-banner__btn--outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-banner__btn--outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ── Modal ── */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    animation: cookieModalFadeIn 0.3s ease;
}

.cookie-modal.show {
    display: flex;
}

@keyframes cookieModalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.cookie-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.cookie-modal__panel {
    position: relative;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px 36px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
    animation: cookieModalPanelIn 0.4s ease;
}

@keyframes cookieModalPanelIn {
    from {
        transform: translateY(20px) scale(0.97);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.cookie-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cookie-modal__title {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.cookie-modal__close {
    background: rgba(255, 255, 255, 0.06);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-modal__close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.cookie-modal__description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 24px 0;
}

.cookie-modal__options {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 28px;
}

.cookie-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.2s;
}

.cookie-option:hover {
    background: rgba(255, 255, 255, 0.06);
}

.cookie-option--essential {
    opacity: 0.7;
    cursor: not-allowed;
}

.cookie-option__info {
    flex: 1;
}

.cookie-option__name {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.cookie-option__desc {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-option__status {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

.cookie-option__control {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 16px;
}

/* ── Toggle Switch ── */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    transition: background 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toggle-switch input:checked + .toggle-slider {
    background: #a18e4f;
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(20px);
}

.toggle-switch input:disabled + .toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.toggle-switch input:disabled + .toggle-slider::before {
    background: rgba(255, 255, 255, 0.5);
}

/* ── Modal Footer ── */
.cookie-modal__footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-modal__btn {
    padding: 10px 28px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-modal__btn--primary {
    background: #a18e4f;
    color: #ffffff;
}

.cookie-modal__btn--primary:hover {
    background: #b8a35e;
}

.cookie-modal__btn--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.cookie-modal__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .cookie-banner__actions {
        flex-wrap: wrap;
        justify-content: stretch;
    }

    .cookie-banner__btn {
        flex: 1;
        text-align: center;
        justify-content: center;
        min-width: 0;
        padding: 10px 16px;
        font-size: 12px;
    }

    .cookie-modal__panel {
        padding: 24px 20px;
        width: 95%;
    }

    .cookie-modal__title {
        font-size: 18px;
    }

    .cookie-option {
        padding: 12px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .cookie-option__control {
        margin-left: 0;
        width: 100%;
        justify-content: flex-end;
    }

    .cookie-modal__footer {
        flex-direction: column-reverse;
        gap: 8px;
    }

    .cookie-modal__btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 12px 16px;
    }

    .cookie-banner__text {
        font-size: 12px;
    }

    .cookie-banner__btn {
        font-size: 11px;
        padding: 8px 12px;
        flex: 1 1 auto;
    }

    .cookie-modal__panel {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .cookie-modal__title {
        font-size: 16px;
    }

    .cookie-modal__description {
        font-size: 13px;
    }
}

/* ── Placeholder for missing product images ── */
.image-placeholder {
  position: absolute;
  inset: 0;
  display: none; /* hidden by default */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  background: #f1f3f5;
  color: #495057;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
  z-index: 1;
  border-radius: 0; /* Inherit parent rounding */
}

/* Ensure the parent slider has relative positioning for the placeholder */
.slider__slides {
  position: relative;
}

/* Optional: make the text look polished */
.image-placeholder .icon {
  font-size: 32px;
  display: block;
}


/* ── Floating WhatsApp Button (Glass – More Visible) ── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px 12px 16px;
    
    /* ── Glass Effect (More Opaque & Vibrant) ── */
    background: rgba(37, 211, 102, 0.45);   /* Increased from 0.2 to 0.45 */
    backdrop-filter: blur(6px);              /* Slightly less blur to keep it sharper */
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.35); /* Slightly brighter border */
    
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25); /* Stronger shadow */
    text-decoration: none;
    
    transition: all 0.3s ease;
}

/* ── Solid Green (On Hover) ── */
.whatsapp-float:hover {
    background: #25D366;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border: 1px solid transparent;
    transform: scale(1.05);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

/* ── Icon (White) ── */
.whatsapp-float-icon {
    width: 28px;
    height: 28px;
    display: block;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover .whatsapp-float-icon {
    transform: scale(1.08);
}

/* ── Text (White) ── */
.whatsapp-float-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
}

/* ── Mobile Responsiveness ── */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        padding: 10px 16px 10px 12px;
        gap: 8px;
    }
    .whatsapp-float-icon {
        width: 22px;
        height: 22px;
    }
    .whatsapp-float-text {
        font-size: 13px;
    }
}



/* ── UNIVERSAL NOSCRIPT FALLBACK (All Screen Sizes) ── */
.noscript-fallback {
  display: flex; /* Always visible when JS is off */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Safari/iOS support */
  z-index: 999999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.noscript-fallback__content {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 24px;
  max-width: 500px; /* Slightly larger for desktop readability */
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.4s ease;
}

.noscript-fallback__title {
  font-size: 24px; /* Slightly larger for desktop */
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #000000;
  margin-bottom: 16px;
  line-height: 1.3;
}

.noscript-fallback__text {
  font-size: 17px; /* Slightly larger for desktop */
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  color: #333333;
  margin-bottom: 0;
}

/* ── RESPONSIVE: Optimize for smaller screens ── */
@media (max-width: 768px) {
  .noscript-fallback__content {
    padding: 30px 20px;
    max-width: 400px;
  }
  .noscript-fallback__title {
    font-size: 20px;
  }
  .noscript-fallback__text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .noscript-fallback__content {
    padding: 24px 16px;
    max-width: 340px;
  }
  .noscript-fallback__title {
    font-size: 18px;
  }
  .noscript-fallback__text {
    font-size: 14px;
  }
}