/* Site-wide 2026 visual rebuild. Additive overrides only — theme app.css untouched. */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Roboto:wght@400;500;700&display=swap');

:root {
  --idx-ink: #120b1e;
  --idx-accent: #d92a2a;
  --idx-accent-soft: rgba(217, 42, 42, 0.16);
  --idx-accent-2: #2e9b3d;
  --idx-accent-2-soft: rgba(46, 155, 61, 0.16);
  --idx-muted: #6b6577;
}

#home-version-1 {
  font-family: 'Roboto', sans-serif;
}

#home-version-1 h1,
#home-version-1 h2,
#home-version-1 h3,
#home-version-1 h4,
#home-version-1 .tim-btn {
  font-family: 'Outfit', sans-serif;
}

/* ---------- Buttons: solid fill everywhere, guaranteed contrast in light or dark sections ---------- */
#home-version-1 .tim-btn.tim-btn-bgt {
  background: var(--idx-accent);
  border: 1px solid var(--idx-accent);
  color: #ffffff !important;
  border-radius: 999px;
  padding: 14px 30px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 250ms ease, background 200ms ease;
}

#home-version-1 .tim-btn.tim-btn-bgt:hover {
  background: #b31f1f;
  border-color: #b31f1f;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 16px 28px -14px rgba(217, 42, 42, 0.55);
}

#home-version-1 .tim-btn.tim-btn-bgt:active {
  transform: translateY(-1px) scale(0.98);
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="1"].is-visible { transition-delay: 0ms; }
[data-reveal="2"].is-visible { transition-delay: 90ms; }
[data-reveal="3"].is-visible { transition-delay: 180ms; }
[data-reveal="4"].is-visible { transition-delay: 270ms; }

/* ---------- Section kicker labels ---------- */
#home-version-1 .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--idx-accent-2);
  margin-bottom: 14px;
}

#home-version-1 .section-kicker::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--idx-accent-2);
  display: inline-block;
}

#home-version-1 .section-title h2 {
  text-transform: none;
  letter-spacing: -1px;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
}

/* ---------- Hero ---------- */
#home-version-1 #banner-one .swiper-slide {
  position: relative;
}

#home-version-1 #banner-one .swiper-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(18, 11, 30, 0.35) 0%, rgba(18, 11, 30, 0.82) 100%);
  pointer-events: none;
}

#home-version-1 #banner-one .slider-content {
  z-index: 1;
  max-width: 720px;
  width: calc(100% - 40px);
  padding: 0 20px;
  box-sizing: border-box;
}

#home-version-1 #banner-one .slider-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffd9b3;
  opacity: 0.9;
}

#home-version-1 #banner-one .slider-content h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.02;
  font-size: clamp(38px, 6vw, 76px);
}

#home-version-1 #banner-one .slider-content p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.85);
}

#home-version-1 #banner-one .slider-content .tim-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 16px 32px;
  border-radius: 999px;
  background: var(--idx-accent);
  border-color: var(--idx-accent);
  color: #ffffff !important;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 250ms ease, background 200ms ease;
  box-shadow: 0 14px 30px -12px rgba(217, 42, 42, 0.55);
}

#home-version-1 #banner-one .slider-content .tim-btn:hover {
  background: #b31f1f;
  border-color: #b31f1f;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -14px rgba(217, 42, 42, 0.7);
}

#home-version-1 #banner-one .slider-content .tim-btn:active {
  transform: translateY(-1px) scale(0.98);
}

/* ---------- Product / service cards ---------- */
#home-version-1 #product {
  padding-top: 110px;
  padding-bottom: 110px;
}

#home-version-1 #product ul.products li.product {
  border-radius: 18px;
  overflow: hidden;
}

#home-version-1 #product ul.products li.product .product-thumb {
  border-radius: 18px;
  overflow: hidden;
  background: #faf5f0;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 350ms ease;
}

#home-version-1 #product ul.products li.product .product-thumb img {
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

#home-version-1 #product ul.products li.product:hover .product-thumb {
  transform: translateY(-8px);
  box-shadow: 0 24px 40px -20px rgba(217, 42, 42, 0.5);
}

#home-version-1 #product ul.products li.product:hover .product-thumb img {
  transform: scale(1.06);
}

#home-version-1 #product ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  margin-top: 16px;
}

#home-version-1 #product ul.products li.product .woocommerce-loop-product__title a {
  transition: color 200ms ease;
}

#home-version-1 #product ul.products li.product .woocommerce-loop-product__title a:hover {
  color: var(--idx-accent);
}

#home-version-1 #product ul.products li.product .product-thumb::before {
  background: linear-gradient(180deg, rgba(18, 11, 30, 0) 40%, rgba(18, 11, 30, 0.55) 100%);
}

#home-version-1 #product ul.products li.product .product-thumb .add_to_cart_button {
  position: absolute !important;
  bottom: 20px !important;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  background: #ffffff;
  border: none;
  color: var(--idx-ink) !important;
  padding: 10px 28px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.4);
  transition: opacity 250ms ease, transform 250ms ease;
}

#home-version-1 #product ul.products li.product:hover .product-thumb .add_to_cart_button {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

#home-version-1 #product ul.products li.product .product-thumb .add_to_cart_button:hover {
  background: var(--idx-accent);
  color: #ffffff !important;
}

/* ---------- Video-intro CTA ---------- */
#home-version-1 #video-intro {
  position: relative;
  padding: 160px 0;
}

#home-version-1 #video-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(217, 42, 42, 0.35) 0%, rgba(12, 7, 22, 0.88) 70%);
}

#home-version-1 #video-intro .intro-video {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

#home-version-1 #video-intro .intro-video h5 {
  font-family: 'Outfit', sans-serif;
  letter-spacing: 1px;
  color: #ffd9b3;
  text-transform: uppercase;
  font-size: 14px;
}

#home-version-1 #video-intro .intro-video h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -1.5px;
  font-size: clamp(30px, 4vw, 52px);
}

#home-version-1 #video-intro .intro-video p {
  opacity: 0.85;
  line-height: 1.6;
}

#home-version-1 #video-intro .intro-video .tim-btn {
  margin-top: 12px;
}

/* ---------- Brand carousel ---------- */
#home-version-1 #logo-carousel {
  padding: 70px 0;
}

#home-version-1 #logo-carousel .brand-logo img {
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 300ms ease, opacity 300ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

#home-version-1 #logo-carousel .swiper-slide:hover .brand-logo img {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-4px);
}

/* ---------- Accessibility ---------- */
#home-version-1 a:focus-visible,
#home-version-1 button:focus-visible {
  outline: 2px solid var(--idx-accent);
  outline-offset: 3px;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Nav ---------- */
#home-version-1 .header .top-header {
  background: rgba(10, 6, 20, 0.35);
  backdrop-filter: blur(6px);
  padding: 6px 0;
}

#home-version-1 .header .top-header a {
  transition: color 200ms ease, opacity 200ms ease;
  opacity: 0.75;
}

#home-version-1 .header .top-header a:hover {
  opacity: 1;
  color: var(--idx-accent);
}

#home-version-1 .header .header-inner {
  background: linear-gradient(180deg, rgba(10, 6, 20, 0.55) 0%, rgba(10, 6, 20, 0.2) 100%);
  backdrop-filter: blur(10px);
  transition: background 250ms ease, box-shadow 250ms ease, padding 250ms ease;
}

/* Scrolled state: invert to a solid light header so it reads over any section, not just the hero */
#home-version-1 .header.headroom--pinned.hide-topbar .header-inner {
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: 0 8px 24px -16px rgba(18, 11, 30, 0.35);
  backdrop-filter: blur(10px);
}

#home-version-1 .header.headroom--pinned.hide-topbar #main-header-menu > li a {
  color: var(--idx-ink) !important;
}

#home-version-1 .header.headroom--pinned.hide-topbar #main-header-menu > li.active a,
#home-version-1 .header.headroom--pinned.hide-topbar #main-header-menu > li:hover a {
  color: var(--idx-accent) !important;
}

#home-version-1 .header.headroom--pinned.hide-topbar .head-btn {
  border-color: var(--idx-accent);
  color: var(--idx-accent) !important;
}

#home-version-1 .header.headroom--pinned.hide-topbar .head-btn:hover {
  background: var(--idx-accent);
  color: #fff !important;
}

#home-version-1 .header.headroom--pinned.hide-topbar #main-header-menu > li:after,
#home-version-1 .header.headroom--pinned.hide-topbar #main-header-menu > li:before {
  background: var(--idx-accent) !important;
}

#home-version-1 .header-inner .tim-container {
  position: relative;
}

#home-version-1 #site-logo {
  line-height: normal;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

#home-version-1 #site-logo .site-logo-svg {
  height: 50px;
  width: auto;
  display: block;
}

#home-version-1 #main-header-menu > li a {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  transition: color 200ms ease;
}

#home-version-1 #main-header-menu > li.active a,
#home-version-1 #main-header-menu > li:hover a {
  color: var(--idx-accent);
}

#home-version-1 .head-btn {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, color 200ms ease;
}

#home-version-1 .head-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px -10px rgba(217, 42, 42, 0.5);
}

/* ---------- Trust / stats strip ---------- */
#home-version-1 #trust-strip {
  padding: 70px 0;
  background: #faf6f1;
  border-bottom: 1px solid rgba(217, 42, 42, 0.08);
}

#home-version-1 #trust-strip .trust-item {
  text-align: center;
}

#home-version-1 #trust-strip .trust-item .trust-number {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 3.5vw, 44px);
  color: var(--idx-ink);
  letter-spacing: -1px;
  line-height: 1;
}

#home-version-1 #trust-strip .trust-item .trust-label {
  margin-top: 8px;
  font-size: 14px;
  color: var(--idx-muted);
  letter-spacing: 0.3px;
}

/* ---------- Why-us feature grid ---------- */
#home-version-1 #why-us {
  padding: 110px 0;
}

#home-version-1 #why-us .why-card {
  padding: 34px 30px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px -22px rgba(18, 11, 30, 0.4);
  height: 100%;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 300ms ease;
}

#home-version-1 #why-us .why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px -20px rgba(217, 42, 42, 0.4);
}

#home-version-1 #why-us .why-card .why-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--idx-accent-2-soft);
  color: var(--idx-accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
}

#home-version-1 #why-us .why-card h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

#home-version-1 #why-us .why-card p {
  color: var(--idx-muted);
  line-height: 1.6;
  margin: 0;
}

/* ---------- Inner-page header (About/Popular/Brand/Contact/Store) ---------- */
#home-version-1 .page-header {
  position: relative;
}

#home-version-1 .page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(18, 11, 30, 0.45) 0%, rgba(18, 11, 30, 0.85) 100%);
  pointer-events: none;
}

#home-version-1 .page-header .tim-container {
  position: relative;
  z-index: 1;
}

#home-version-1 .page-header-title h2 {
  font-weight: 800;
  letter-spacing: -1.5px;
  text-transform: none;
  font-size: clamp(34px, 5vw, 56px);
}

#home-version-1 .page-header .breadcrumbs a {
  transition: color 200ms ease;
}

#home-version-1 .page-header .breadcrumbs a:hover {
  color: var(--idx-accent);
}

/* ---------- Brand grid page ---------- */
#home-version-1 .shop .card {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 300ms ease;
  box-shadow: 0 8px 24px -16px rgba(18, 11, 30, 0.35);
}

#home-version-1 .shop .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px -18px rgba(217, 42, 42, 0.45);
}

#home-version-1 .shop .card-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

/* ---------- Popular / Store product-two cards ---------- */
#home-version-1 ul.products.product-two li.product .product-thumb {
  border-radius: 16px;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 300ms ease;
}

#home-version-1 ul.products.product-two li.product:hover .product-thumb {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px -18px rgba(217, 42, 42, 0.45);
}

#home-version-1 ul.products.product-two li.product .product-thumb img {
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

#home-version-1 ul.products.product-two li.product:hover .product-thumb img {
  transform: scale(1.06);
}

#home-version-1 ul.products.product-two li.product .woocommerce-loop-product__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
}

#home-version-1 ul.products.product-two li.product .add_to_cart_button {
  transition: transform 200ms ease, color 200ms ease;
}

#home-version-1 ul.products.product-two li.product .add_to_cart_button:hover {
  transform: translateY(-2px);
  color: var(--idx-accent);
}

/* ---------- Footer ---------- */
#home-version-1 #footer {
  background: var(--idx-ink);
}

#home-version-1 #footer .footer-inner {
  padding: 90px 0 50px;
}

#home-version-1 .footer-about .footer-logo-link {
  display: inline-block;
  margin-bottom: 22px;
}

#home-version-1 .footer-about .footer-logo-link img {
  max-width: 170px;
  width: 100%;
}

#home-version-1 .footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  max-width: 320px;
}

#home-version-1 .footer-title,
#home-version-1 .footer-title-sm {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.3px;
}

#home-version-1 .footer-title-sm {
  font-size: 20px;
  margin-bottom: 22px;
  margin-top: 0;
}

#home-version-1 .footer-blog-inner .footer-title {
  font-size: 20px;
}

#home-version-1 .footer-contact .contact-details p a {
  transition: color 200ms ease;
}

#home-version-1 .footer-contact .contact-details p a:hover {
  color: var(--idx-accent-2);
}

#home-version-1 .footer-contact .contact-details i {
  color: var(--idx-accent-2);
}

#home-version-1 .footer-blog-inner ul li a {
  transition: color 200ms ease, padding-left 200ms ease;
  display: inline-block;
}

#home-version-1 .footer-blog-inner ul li a:hover {
  color: var(--idx-accent-2);
  padding-left: 4px;
}

#home-version-1 .socials.list-inline li a {
  transition: background 200ms ease, transform 200ms ease;
}

#home-version-1 .socials.list-inline li a:hover {
  background: var(--idx-accent-2);
  transform: translateY(-3px);
}

#home-version-1 .copyright-text {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

#home-version-1 .copyright-text a {
  transition: color 200ms ease;
}

#home-version-1 .copyright-text a:hover {
  color: var(--idx-accent-2);
}

/* ---------- Single product page ---------- */
#home-version-1 .single-product .quickview-slider .slick-slide img {
  border-radius: 16px;
}

#home-version-1 .single-product .product-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  font-size: clamp(26px, 3.5vw, 38px);
}

#home-version-1 .single-product .woocommerce-product-details__short-description h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.3px;
  margin-top: 20px;
}


/* ---------- Contact info cards ---------- */
#home-version-1 .contact-info .sin-cont-info {
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

#home-version-1 .contact-info .sin-cont-info:hover {
  transform: translateY(-4px);
}

#home-version-1 .contact-info h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.3px;
}

#home-version-1 .contact-info a {
  transition: color 200ms ease;
}

#home-version-1 .contact-info a:hover {
  color: var(--idx-accent);
}

/* ---------- Store page ---------- */
#home-version-1 .shop.site-main {
  padding-top: 70px;
  padding-bottom: 90px;
}

#home-version-1 .shop-widget {
  border: none;
  border-radius: 16px;
  background: #faf5f0;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px -18px rgba(18, 11, 30, 0.3);
}

#home-version-1 .shop-widget .widget-title-shop {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.3px;
}

#home-version-1 .shop-widget .form-control {
  border-radius: 10px;
  border: 1px solid rgba(18, 11, 30, 0.12);
}

#home-version-1 .shop-widget .form-control:focus {
  border-color: var(--idx-accent);
  box-shadow: 0 0 0 3px rgba(217, 42, 42, 0.12);
}

#home-version-1 .product-top-menu {
  background: #faf5f0;
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 10px;
}

#home-version-1 .product-select {
  border-radius: 8px;
  border: 1px solid rgba(18, 11, 30, 0.12);
}

#home-version-1 .tim-product-btn-vw label i {
  transition: color 200ms ease;
}

#home-version-1 .tim-product-btn-vw input:checked + i {
  color: var(--idx-accent);
}

/* Fixed-ratio product images: prevents mismatched card sizes from source images of different dimensions */
#home-version-1 ul.products.product-two li.product .product-thumb {
  aspect-ratio: 4 / 3;
  background: #faf5f0;
}

#home-version-1 ul.products.product-two li.product .product-thumb img.attachment-shop_catalog {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#home-version-1 ul.products.product-two li.product .product-description p {
  color: var(--idx-muted);
  line-height: 1.6;
}

#home-version-1 ul.products.product-two li.product .add_to_cart_button {
  color: var(--idx-accent);
  font-weight: 600;
}

/* ---------- Scrollbar ---------- */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--idx-accent) #f2ece5;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #f2ece5;
}

::-webkit-scrollbar-thumb {
  background: var(--idx-accent);
  border-radius: 999px;
  border: 3px solid #f2ece5;
}

::-webkit-scrollbar-thumb:hover {
  background: #b31f1f;
}

/* ---------- Top-header social icons ---------- */
#home-version-1 .site-social-link {
  display: inline-flex;
  gap: 8px;
}

#home-version-1 .site-social-link li {
  display: inline-flex;
  padding: 0;
}

#home-version-1 .site-social-link li a,
#home-version-1 .site-social-link li a i {
  color: #ffffff !important;
}

#home-version-1 .site-social-link li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-right: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 13px;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease, color 200ms ease;
}

#home-version-1 .site-social-link li a:hover {
  background: var(--idx-accent);
  border-color: var(--idx-accent);
  transform: translateY(-2px);
}
