/* ============================================================
   IK PLUS STORE – Premium Industrial Luxury Design System
   Fonts: Bebas Neue (display) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,300&display=swap');

/* ── CSS Variables ─────────────────────────────────────── */
:root {
  --red:        #c8102e;
  --red-dark:   #a50d25;
  --red-glow:   rgba(200,16,46,0.35);
  --ink:        #0a0d12;
  --ink-mid:    #0f1419;
  --ink-light:  #1a2030;
  --slate:      #8a96a3;
  --silver:     #c8cdd4;
  --off-white:  #f4f2ef;
  --white:      #ffffff;
  --surface:    #f7f6f3;
  --border:     rgba(255,255,255,0.07);
  --font-disp:  'Bebas Neue', 'Impact', sans-serif;
  --font-body:  'DM Sans', 'Helvetica Neue', sans-serif;
  --radius:     10px;
  --radius-lg:  18px;
  --shadow-sm:  0 4px 16px rgba(0,0,0,0.08);
  --shadow-md:  0 10px 35px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
  --transition: 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #1a1a1a;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-disp); letter-spacing: 0.03em; line-height: 1.1; }

/* ── Utility ───────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2.2rem;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1.6rem; height: 2px;
  background: var(--red);
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

/* ── Scroll-reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible        { opacity: 1; transform: translateY(0); }
.reveal-delay-1        { transition-delay: 0.1s; }
.reveal-delay-2        { transition-delay: 0.2s; }
.reveal-delay-3        { transition-delay: 0.3s; }
.reveal-delay-4        { transition-delay: 0.4s; }

/* ── HEADER ────────────────────────────────────────────── */
header {
  background: var(--ink);
  position: sticky;
  top: 0; z-index: 1000;
  border-bottom: 1px solid var(--border);
}
header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.9rem 2rem;
}
.logo { display: flex; align-items: center; }
.logo-img {
  height: 52px; width: auto; max-width: 200px;
  transition: transform var(--transition), opacity var(--transition);
}
.logo-img:hover { transform: scale(1.04); opacity: 0.9; }
.nav-menu { display: flex; list-style: none; gap: 0.25rem; align-items: center; }
.nav-menu li a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver);
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}
.nav-menu li a:hover, .nav-menu li a.active {
  color: var(--white);
  background: rgba(200,16,46,0.15);
}
.nav-menu li:last-child a {
  background: var(--red);
  color: white;
  padding: 0.55rem 1.4rem;
}
.nav-menu li:last-child a:hover { background: var(--red-dark); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px; height: 20px;
  background: transparent; border: none;
  cursor: pointer; z-index: 1001;
}
.hamburger span { width: 100%; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 999;
  backdrop-filter: blur(4px);
}
.nav-overlay.active { opacity: 1; visibility: visible; }

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%; height: 100vh; min-height: 740px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10,13,18,0.35) 0%,
    rgba(10,13,18,0.5) 50%,
    rgba(10,13,18,0.88) 100%);
  z-index: 1;
}
.hero-content-wrapper {
  position: relative; z-index: 2;
  text-align: center;
  color: white;
  padding: 0 2rem;
  max-width: 1000px; width: 100%;
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}
.hero-content-wrapper.fade-away { opacity: 0; transform: translateY(-70px); }

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  display: block;
  width: 2.5rem; height: 1px;
  background: var(--red);
  opacity: 0.7;
}

.heading-with-bg {
  font-family: var(--font-disp);
  font-size: 7rem;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 0.95;
  margin-bottom: 1.6rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.animated-tagline {
  position: relative;
  height: 2.4rem;
  margin: 0 0 2.8rem;
  overflow: hidden;
}
.tagline-item {
  position: absolute; width: 100%; left: 0;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.7s ease, transform 0.7s ease;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
}
.tagline-item.active { opacity: 1; transform: translateY(0); }
.tagline-item.out    { opacity: 0; transform: translateY(-100%); }

.cta-button {
  display: inline-flex;
  align-items: center; gap: 0.7rem;
  background: var(--red);
  color: white;
  padding: 1.05rem 2.6rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 6px 28px var(--red-glow);
  border: none; cursor: pointer;
}
.cta-button:hover { background: var(--red-dark); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(200,16,46,0.45); }
.cta-button.cta-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  color: white; box-shadow: none;
}
.cta-button.cta-outline:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-3px); }
.hero-cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-family: var(--font-body);
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.4; }
  50%       { transform: scaleY(1.4); opacity: 0.9; }
}

/* ── STATS BAR ─────────────────────────────────────────── */
.stats-bar { background: var(--ink); border-bottom: 1px solid var(--border); }
.stats-bar-inner {
  display: flex;
  max-width: 1280px; margin: 0 auto;
}
.stat-item {
  flex: 1;
  padding: 2.2rem 2rem;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(200,16,46,0.06); }
.stat-number { font-family: var(--font-disp); font-size: 3rem; color: var(--red); letter-spacing: 0.02em; line-height: 1; margin-bottom: 0.4rem; }
.stat-label  { font-size: 0.78rem; font-weight: 600; color: var(--slate); letter-spacing: 0.12em; text-transform: uppercase; }

/* ── ABOUT ─────────────────────────────────────────────── */
.about { padding: 8rem 2rem; background: var(--white); }
.about-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.about-media { position: relative; }
.about-image { width: 100%; aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; }
.about-media::before {
  content: '';
  position: absolute;
  top: 1.5rem; left: 1.5rem; right: -1.5rem; bottom: -1.5rem;
  background: var(--red);
  border-radius: var(--radius-lg);
  z-index: -1; opacity: 0.1;
}
.about-text h2 { font-size: 4.2rem; color: var(--ink); margin-bottom: 1.4rem; }
.about-text > p { font-size: 1.05rem; color: #555; line-height: 1.8; margin-bottom: 2.5rem; }
.about-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.about-list li {
  display: flex; align-items: center; gap: 0.9rem;
  font-size: 0.98rem; font-weight: 500; color: #333;
  padding: 0.85rem 1.2rem;
  background: var(--surface);
  border-radius: 8px;
  border-left: 3px solid var(--red);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-list li:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.about-list li::before {
  content: '';
  width: 18px; height: 18px; min-width: 18px;
  background: var(--red);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* ── WORK VIDEOS ───────────────────────────────────────── */
.work-videos { padding: 7rem 2rem; background: var(--ink); }
.work-videos .section-label { color: var(--red); }
.work-videos .section-label::before { background: var(--red); }
.work-videos h2 { font-size: 4rem; color: var(--white); margin-bottom: 0.8rem; }
.section-intro { font-size: 1.02rem; color: #666; max-width: 680px; margin-bottom: 3.5rem; line-height: 1.75; }
.work-videos .section-intro { color: var(--slate); }

.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.video-card {
  background: var(--ink-light);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,16,46,0.45);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.video-wrapper {
  position: relative;
  padding-bottom: 177.78%;
  height: 0; overflow: hidden; background: #000;
}
.video-wrapper video {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  pointer-events: none;
}
.play-button {
  width: 58px; height: 58px;
  background: rgba(200,16,46,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 24px rgba(200,16,46,0.5);
}
.video-card:hover .play-button { opacity: 1; transform: scale(1); }
.play-button::before {
  content: '';
  width: 0; height: 0;
  border-left: 16px solid white;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  margin-left: 4px;
}
.video-caption { padding: 0.9rem 1.1rem; font-size: 0.88rem; font-weight: 600; color: var(--silver); letter-spacing: 0.03em; }

/* ── FEATURED PRODUCTS ─────────────────────────────────── */
.featured-products { padding: 7rem 2rem; background: var(--surface); }
.featured-products h2 { font-size: 4rem; color: var(--ink); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.product-image-wrapper { position: relative; height: 270px; overflow: hidden; flex-shrink: 0; }
.product-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-image-wrapper img { transform: scale(1.07); }
.image-overlay {
  position: absolute; inset: 0;
  background: rgba(10,13,18,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.product-card:hover .image-overlay { opacity: 1; }
.view-details-btn {
  background: var(--red);
  color: white;
  padding: 0.75rem 1.8rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: 0 4px 18px rgba(200,16,46,0.4);
}
.view-details-btn:hover { background: white; color: var(--red); transform: translateY(-2px); }
.product-info { padding: 1.5rem 1.6rem 1.8rem; flex-grow: 1; display: flex; flex-direction: column; }
.product-info h3 { font-size: 1.55rem; color: var(--ink); margin-bottom: 0.3rem; }
.dimensions { font-size: 0.88rem; color: var(--slate); margin-bottom: 0.4rem; }
.price { font-family: var(--font-disp); font-size: 1.9rem; color: var(--red); letter-spacing: 0.03em; margin: 0.5rem 0 0.8rem; }
.price small { font-family: var(--font-body); font-size: 0.75rem; color: var(--slate); font-weight: 400; letter-spacing: 0; }
.product-info p:last-child { font-size: 0.92rem; color: #666; line-height: 1.65; margin-top: auto; }

.skeleton-card { border: none !important; box-shadow: none !important; pointer-events: none; }
.skeleton-image, .skeleton-text {
  position: relative;
  overflow: hidden;
  background-color: #2a2a2a !important; /* Darker background for dark mode */
}
.skeleton-image::after, .skeleton-text::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
  animation: shimmer 1.5s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

/* Force the VAT text to stay inline and scale down nicely */
.vat-inline-label {
    display: inline-block !important;
    font-size: 1.1rem !important; /* Slightly smaller so it doesn't fight with the main price numbers */
    color: #718096 !important; /* Subtle gray slate tone */
    font-weight: 500 !important;
    white-space: nowrap; /* Forces the entire phrase to stay tightly bound together */
}

/* ── TESTIMONIALS ──────────────────────────────────────── */
.testimonials { padding: 7rem 2rem; background: var(--ink); text-align: center; }
.testimonials h2 { font-size: 4rem; color: var(--white); margin-bottom: 0.8rem; }
.testimonials .section-label { color: var(--red); }
.testimonials .section-label::before { background: var(--red); }
.testimonials .section-intro { color: var(--slate); margin-bottom: 4rem; margin-left: auto; margin-right: auto; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem; max-width: 1100px; margin: 0 auto; text-align: left;
}
.testimonial-card {
  background: var(--ink-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: transform var(--transition), border-color var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 6rem; color: var(--red); opacity: 0.18;
  position: absolute; top: 0.2rem; left: 1.5rem; line-height: 1;
}
.testimonial-card:hover { transform: translateY(-6px); border-color: rgba(200,16,46,0.3); }
.stars { color: #f4c430; font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 0.9rem; }
.testimonial-text { font-size: 1rem; line-height: 1.75; color: var(--silver); margin-bottom: 1.5rem; }
.client-info { display: flex; align-items: center; gap: 0.9rem; }
.client-avatar {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-disp);
  font-size: 1.15rem; color: white; letter-spacing: 0;
}
.client-info h4 { font-family: var(--font-body); font-size: 0.93rem; font-weight: 700; color: var(--white); letter-spacing: 0; }
.client-info p  { font-size: 0.82rem; color: var(--slate); }

/* ── FOLLOW US ─────────────────────────────────────────── */
.follow-us { padding: 5.5rem 2rem; background: var(--surface); text-align: center; }
.follow-us h2 { font-size: 3.5rem; color: var(--ink); margin-bottom: 0.6rem; }
.follow-us p  { color: #666; margin-bottom: 2.5rem; font-size: 1rem; }
.social-icons-large { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }
.social-link-pill {
  display: flex; align-items: center; gap: 0.65rem;
  padding: 0.8rem 1.7rem;
  border-radius: 50px;
  background: var(--white);
  border: 2px solid #e8e8e8;
  color: #333;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.social-link-pill i { font-size: 1.25rem; color: var(--red); }
.social-link-pill:hover { background: var(--red); border-color: var(--red); color: white; transform: translateY(-4px); box-shadow: 0 10px 28px var(--red-glow); }
.social-link-pill:hover i { color: white; }

/* ── FOOTER ────────────────────────────────────────────── */
footer { background: var(--ink); color: var(--slate); padding: 5rem 2rem 0; border-top: 1px solid var(--border); }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem; padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo-img { height: 46px; margin-bottom: 1.5rem; }
.footer-brand p { font-size: 0.93rem; line-height: 1.7; color: var(--slate); margin-bottom: 1.8rem; }
.social-icons { display: flex; gap: 0.8rem; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--slate); font-size: 1.05rem;
  transition: all var(--transition);
}
.social-icons a:hover { background: var(--red); border-color: var(--red); color: white; transform: translateY(-3px); }
footer h4 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--silver); margin-bottom: 1.4rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.92rem; color: var(--slate); transition: color var(--transition), transform var(--transition); display: inline-block; }
.footer-links a:hover { color: var(--red); transform: translateX(4px); }
.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.92rem; color: var(--slate); }
.footer-contact-list li i { color: var(--red); font-size: 1rem; margin-top: 0.15rem; flex-shrink: 0; }
.footer-contact-list a { color: var(--slate); transition: color var(--transition); }
.footer-contact-list a:hover { color: var(--red); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.83rem;
  color: rgba(138,150,163,0.55);
}

/* ── FLOATING WHATSAPP ─────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem;
  z-index: 9999;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 35px rgba(37,211,102,0.6); animation: none; }
.whatsapp-float img { width: 32px; height: 32px; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 6px 40px rgba(37,211,102,0.75); }
}

/* ── ADDED-TO-CART ─────────────────────────────────────── */
.added-to-cart-overlay {
  position: fixed; inset: 0;
  background: rgba(10,13,18,0.8);
  display: none; justify-content: center; align-items: center; flex-direction: column;
  z-index: 9999;
  backdrop-filter: blur(8px);
}
.added-to-cart-overlay.active { display: flex; }
.added-to-cart-check {
  width: 130px; height: 130px;
  background: #22c55e;
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  box-shadow: 0 15px 50px rgba(34,197,94,0.5);
  transform: scale(0); opacity: 0;
}
.added-to-cart-check.show { animation: popIn 0.55s cubic-bezier(0.34,1.56,0.64,1) forwards; }
.added-to-cart-check::before { content: "✔"; color: white; font-size: 65px; font-weight: bold; line-height: 1; }
.added-to-cart-text { color: white; font-size: 1.5rem; font-weight: 700; margin-top: 1.5rem; text-shadow: 0 3px 10px rgba(0,0,0,0.5); opacity: 0; }
.added-to-cart-text.show { animation: fadeInText 0.5s ease 0.3s forwards; }
@keyframes popIn  { 0%{ transform:scale(0.4);opacity:0;} 50%{transform:scale(1.12);opacity:1;} 100%{transform:scale(1);opacity:1;} }
@keyframes fadeInText { from{opacity:0;transform:translateY(14px);} to{opacity:1;transform:translateY(0);} }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.products-hero {
  background: var(--ink);
  padding: 5rem 2rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.products-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 50%, rgba(200,16,46,0.08) 0%, transparent 65%);
}
.products-hero h1 { font-size: 5.5rem; color: var(--white); position: relative; z-index: 1; }
.products-hero p  { font-size: 1rem; color: var(--slate); max-width: 580px; margin: 0.8rem auto 0; position: relative; z-index: 1; }

.product-filters {
  display: flex; flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 0.75rem; margin-bottom: 2.5rem;
  padding: 0.5rem 0;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.product-filters::-webkit-scrollbar { display: none; }
.filter-btn {
  background: var(--white); color: #444;
  border: 2px solid #e8e8e8;
  padding: 0.6rem 1.5rem; border-radius: 50px;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0; white-space: nowrap;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--red); color: white; border-color: var(--red);
  transform: translateY(-2px); box-shadow: 0 6px 18px var(--red-glow);
}

/* ============================================================
   QUOTE PAGE
   ============================================================ */
.quote-hero {
  position: relative; height: 52vh; min-height: 380px;
  background-size: cover; background-position: center;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.quote-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,13,18,0.5) 0%, rgba(10,13,18,0.82) 100%); }
.quote-hero-content { position: relative; z-index: 2; color: white; padding: 0 2rem; }
.quote-hero h1 { font-size: 4.5rem; margin-bottom: 1rem; }
.quote-hero p  { font-size: 1.1rem; color: rgba(255,255,255,0.75); max-width: 580px; margin: 0 auto; }
.quote-section { padding: 6rem 2rem; background: var(--surface); }
.quote-form-wrapper { max-width: 780px; margin: 0 auto; background: var(--white); border-radius: var(--radius-lg); padding: 3.5rem; box-shadow: var(--shadow-lg); }
.form-group { margin-bottom: 1.6rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #444; margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.9rem 1.2rem;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-family: var(--font-body); font-size: 0.96rem; color: #222;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* ============================================================
   TOUCH + RESPONSIVE
   ============================================================ */
a, button { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }

@media (max-width: 1100px) {
  .videos-grid    { grid-template-columns: repeat(2, 1fr); }
  .products-grid  { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-inner    { gap: 3.5rem; }
}

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-container { padding: 0.9rem 1.5rem; }
  .nav-menu {
    position: fixed; top: 0; right: -100%;
    width: 80%; max-width: 300px; height: 100vh;
    background: var(--ink-mid);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2.5rem; padding: 5rem 2rem 2rem;
    transition: right 0.4s ease; z-index: 1000;
    border-left: 1px solid var(--border);
  }
  .nav-menu.active { right: 0; }
  .nav-menu li a { font-size: 1.45rem; padding: 0.8rem 1.5rem; display: block; text-align: center; }
  .nav-menu li:last-child a { display: block; }
  .stats-bar-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-media { order: -1; }
  .about-image { aspect-ratio: 3/2; }
  .videos-grid   { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr; gap: 2.5rem; }
  .heading-with-bg { font-size: 4.5rem; }
  .products-hero h1 { font-size: 3.8rem; }
  .about-text h2    { font-size: 3.2rem; }
  .work-videos h2   { font-size: 3rem; }
  .featured-products h2 { font-size: 3rem; }
  .testimonials h2  { font-size: 3rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form-wrapper { padding: 2rem 1.5rem; }
}

@media (max-width: 600px) {
  .heading-with-bg { font-size: 3.2rem; }
  .hero { min-height: 92vh; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stat-item { flex: 1 1 100%; }
}

/* ── Measurement / Dynamic Pricing Calculator ── */
.meas-calc {
  background: #f7f7f7;
  border: 1.5px solid #e4e4e4;
  border-radius: 16px;
  padding: 1.8rem 2rem 1.4rem;
  margin: 2rem 0 2.5rem;
}
.meas-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.3rem;
}
.meas-subtitle {
  font-size: 0.92rem;
  color: #777;
  margin: 0 0 1.8rem;
}
.meas-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1.4rem;
}
.meas-field { display: flex; flex-direction: column; gap: 0.5rem; }
.meas-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}
.meas-pill {
  background: #c8102e;
  color: #fff;
  padding: 0.15rem 0.7rem;
  border-radius: 20px;
  font-size: 0.88rem;
  font-weight: 700;
  min-width: 72px;
  text-align: center;
}
.meas-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #ddd;
  outline: none;
  cursor: pointer;
}
.meas-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #c8102e;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(200,16,46,0.35);
  transition: transform 0.12s;
}
.meas-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.meas-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #c8102e;
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(200,16,46,0.35);
}
.meas-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.76rem;
  color: #aaa;
}
.meas-summary {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 1rem 1.4rem;
  margin-top: 0.6rem;
}
.meas-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.42rem 0;
  border-bottom: 1px solid #f2f2f2;
}
.meas-summary-row:last-child { border-bottom: none; }
.meas-price-row { padding-top: 0.7rem; margin-top: 0.2rem; }
.meas-lbl { font-size: 0.93rem; color: #777; }
.meas-val { font-size: 0.93rem; font-weight: 600; color: #333; }
.meas-price { font-size: 1.45rem; font-weight: 800; color: #c8102e; }
.meas-note { font-size: 0.8rem; color: #aaa; margin: 0.9rem 0 0; font-style: italic; }

/* Cart item measurements display */
.cart-item-measurements {
  font-size: 0.82rem;
  color: #888;
  margin-top: 0.2rem;
}

@media (max-width: 600px) {
  .meas-row { grid-template-columns: 1fr; gap: 1.4rem; }
  .meas-calc { padding: 1.3rem 1.1rem 1rem; }
}

