﻿/* ===== CONSOLIDATED THEME VARIABLES ===== */


/* ===== BASE RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none;
  /* Custom cursor enabled globally */
}

/* Smooth Transitions for Theme Changes */
*,
*::before,
*::after {
  transition: background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* Disable transitions during page load */
.preload * {
  transition: none !important;
}

/* ===== VARIABLES ===== */
:root {
  --cursor-color: #a4161a;
}

/* ===== BODY ===== */
body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  /* Light weight for Lato */
  text-transform: none;
  /* Reset text transform */
  background: #ffffff;
  color: #222222;
  letter-spacing: 0.05em;
  line-height: 1.6;
  overflow-x: hidden;
}

/* --- CUSTOM CURSOR STYLES --- */
.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--cursor-color);
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 10002;
  pointer-events: none;
  transition: transform 0.1s;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(164, 22, 26, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 10001;
  pointer-events: none;
  transition: width 0.2s, height 0.2s, background-color 0.2s, transform 0.15s ease-out;
}

/* Hide custom cursor on touch devices */
@media (hover: none) and (pointer: coarse) {

  .cursor-dot,
  .cursor-outline {
    display: none !important;
  }

  * {
    cursor: auto !important;
  }
}

.flickity-button {
  background: transparent !important;
}

.flickity-button:hover {}

/* Announcement Bar */
.announcement-bar {
  background: #f5f5f5;

  color: #000000;
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: clamp(14px, 1vw, 15px);
  font-weight: 500;
  border-bottom: 1px solid #dddddd;
  letter-spacing: 0.1em;
}



.marquee {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 28s linear infinite;
}

.marquee span {
  padding-right: 5rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* Header */
.header {
  background: #ffffff;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-btn {
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  color: #000000;
}

.logo img {
  height: 46px;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 3rem;
  font-size: 11px !important;
}

.nav-links a,
.category-title {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s;
  text-transform: uppercase;
}

.nav-links a:hover,
.category-title:hover {}

/* Desktop Mega Menu */
.dropdown {
  position: static;
}

.category-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  height: 100%;
}

.dropdown-content {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  position: absolute;
  top: 100%;
  /* Connects directly to bottom of parent */
  left: 50px;
  width: 90%;
  /* Full width relative to parent or handled via JS? No, parent is .dropdown */
  min-width: 250px;
  /* Ensure minimum width */
  background: #f5f5f5;
  padding: 2.5rem 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  z-index: 999;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: all 0.2s ease;
}

/* Invisible bridge to prevent menu from closing when moving mouse */
.dropdown-content::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2.4rem 3rem;
}

.mega-item h4 {
  color: #000000;
  margin-bottom: 1rem;
  font-size: clamp(15px, 1.05vw, 16.5px);
  font-weight: 700;
}

.mega-item a {
  display: block;
  color: #333333;
  padding: 0.55rem 0;
  font-size: clamp(13.5px, 0.95vw, 15px);
  text-decoration: none;
  transition: all 0.25s;
}

.mega-item a:hover {
  color: black;
  padding-left: 6px;
}

.nav-icons {
  display: flex;
  gap: 1.8rem;
}

.nav-icons a,
#nav-user-link00 {
  color: #000000 !important;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.nav-icons a:hover {

  transform: scale(1.12);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #ffffff;
  color: black;
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
  padding: 90px 24px 100px;
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  color: black;
  cursor: pointer;
}

.mobile-menu a {
  display: block;
  font-size: 12px;
  padding: 14px 0;
  margin: 0.4rem 0;
  color: black;
  text-decoration: none;
}

.content-text {
  color: white;
}

.mobile-submenu-toggle {
  display: block;
  font-size: 12px;
  padding: 14px 0;
  margin: 0.4rem 0;
  color: black;
  text-decoration: none;
}

.mobile-menu a:hover,
.mobile-submenu-toggle:hover {
  color: black;
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), margin 0.45s ease;
  margin-left: 24px;
  font-size: clamp(16px, 4.3vw, 19px);
}

.mobile-submenu.active {
  max-height: 6000px;
  margin: 0.6rem 0 1.6rem 24px;
}

.mobile-submenu a {
  color: black;
  padding: 11px 0;
  font-size: 14px;
}

.mobile-submenu-toggle {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-submenu-toggle::after {
  content: '›';
  font-size: 2.3rem;
  transition: transform 0.4s ease;
  color: black;
}

.mobile-submenu-toggle.active::after {
  transform: rotate(90deg);
}

/* Responsive */
@media (min-width: 992px) {
  .menu-btn {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .logo {
    position: static;
    transform: none;
  }
}

@media (max-width: 991px) {
  .menu-btn {
    display: block;
    cursor: pointer;
  }

  .nav-links {
    display: none;
  }

  /* Make search visible on mobile */
  .search-trigger {
    display: block !important;
    font-size: 1.2rem;
    color: #000000;
  }

  .nav-icons {
    gap: 10px;
  }

  .logo {
    position: absolute;
    left: 20%;
    transform: translateX(-50%);

  }

  .logo img {
    height: 40px;
  }
}

@media (max-width: 600px) {
  .menu-btn {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .logo {
    position: absolute;
    left: 30%;
    transform: translateX(-50%);

  }

  .language-switcher {

    margin-right: 0px !important;
  }

  .logo img {
    height: 35px;
  }
}



/* Professional Typography Improvements */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Abel', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: #000000;
}

p {
  line-height: 1.6;
  color: #444444;
}

/* Improved Section Spacing */
section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  section {
    padding: 0px 0px 60px 0px;
  }
}

/* Card/Block Improvements */
.card,
.product-card,
.deconstructed-card {
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.product-card:hover,
.deconstructed-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Social icons container */
.nav__social {

  display: none;

}



/* Responsive design for icons */
@media screen and (max-width: 767px) {

  .nav__social {
    display: flex;
    position: absolute;
    bottom: 0;
    gap: 15px;
    margin: 35px 2px;
    justify-content: center;
    border: 1px solid #4c7397;
    padding: 3px 9px;
  }

  .nav__social a:first-child {
    margin-left: 0px;

  }

  .nav__social a {
    font-size: 20px;
    margin-left: 20px;
  }

  .nav__social a {
    color: #425465;
    font-size: 24px;
    transition: color 0.3s;
  }

  .nav__social a:hover {
    color: #425465;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.overlay {
  position: absolute;
  inset: 0;
}

.hero-slider {
  width: 100%;
  height: 100vh;
  min-height: 400px;
  max-height: 800px;
  overflow: hidden;
  position: relative;
}

.carousel-cell {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-cell img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.carousel-cell .inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  width: 90%;
  max-width: 1200px;
}

.carousel-cell .subtitle {
  font-family: 'Roboto Slab', serif;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 1.2;
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.carousel-cell .title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.1875rem;
  margin-bottom: 2.5rem;
}

.carousel-cell .btn {
  display: inline-block;
  border: 1px solid #fff;
  padding: 0.875rem 1.125rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.1875rem;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.flickity-button:hover {
  background: transparent;
}

.flickity-button:focus {
  box-shadow: 0 0 0 5px rgb(14 29 51 / 0%);
}

.carousel-cell .btn:hover {
  background: #fff;
  color: #000;
}

.flickity-prev-next-button {
  width: 5rem;
  height: 5rem;
  background: transparent;
  border: transparent;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

.flickity-prev-next-button.previous {
  left: 1rem;
}

.flickity-prev-next-button.next {
  right: 1rem;
}

.flickity-prev-next-button .flickity-button-icon {
  fill: white;
  width: 50%;
  height: 50%;
}

.flickity-page-dots {
  bottom: 1rem;
  position: absolute;
  width: 100%;
  text-align: center;
}

.flickity-page-dots .dot {
  width: 5rem;
  height: 3px;
  opacity: 1;
  background: rgba(233, 233, 233, 0.5);
  border-radius: 0;
  margin: 0 0.5rem;
  display: inline-block;
}

.flickity-page-dots .dot.is-selected {
  background: rgb(255, 255, 255);
}

@media (max-width: 1200px) {
  .flickity-page-dots .dot {
    width: 4rem;
  }
}

@media (max-width: 768px) {
  .flickity-page-dots .dot {
    width: 3rem;
  }

  .hero-slider {
    height: 80vh;
    min-height: 240px;
    max-height: 365px;
  }

  .carousel-cell .title {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .carousel-cell .subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
  }

  .flickity-prev-next-button {
    width: 3rem;
    height: 3rem;
  }

  .flickity-prev-next-button.previous {
    left: 0.5rem;
  }

  .flickity-prev-next-button.next {
    right: 0.5rem;
  }

  .flickity-page-dots {
    bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  .flickity-page-dots .dot {
    width: 2rem;
  }

  .hero-slider {
    height: 70vh;
    min-height: 117px;
    max-height: 200px;
  }

  .carousel-cell .title {
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
  }

  .carousel-cell .subtitle {
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  }

  .carousel-cell .btn {
    padding: 0.75rem 1rem;
    font-size: 0.7rem;
  }

  .flickity-prev-next-button {
    width: 2.5rem;
    height: 2.5rem;
  }

  .flickity-page-dots {
    bottom: 0.3rem;
  }
}

.nav__dropdown {
  margin: 0px !important;
}

a {
  text-decoration: none;
}

.floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: sans-serif;
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}


.text_icon {
  margin-top: 8px;
  color: #888888;
  font-size: 13px;
}


/* Modified to have more space */
.carousel {
  width: 100%;
  padding: 0;
}

.section-header-clean {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 4rem;
}

.section-header-clean p {
  color: #444444;
  font-size: 1.1rem;
  margin-top: 10px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.section-header-clean h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  /* Regular weight for cleaner look */
  letter-spacing: 0.2rem;
  color: #000000 !important;
  margin: 0;
  text-transform: uppercase;
}

.carousel-viewport {
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  margin: 0 auto;
  /* PC: 4 Blocks */
  max-width: calc(4 * 280px + 3 * 24px);
  width: 100%;
}

.carousel-track {
  display: flex;
  gap: 24px;
}

.deconstructed-card {
  position: relative;
  width: 280px;
  height: 400px;
  flex-shrink: 0;
  cursor: pointer;
  /* Smooth return transition */
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
}

.card-layer {
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
}

.card-image {
  overflow: hidden;
  z-index: 1;
  pointer-events: auto;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 2s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-frame {
  z-index: 3;
}

.frame-path {
  fill: none;
  stroke: rgba(0, 0, 0, 0.05);
  stroke-width: 1.5;
  stroke-dasharray: 1520;
  stroke-dashoffset: 1520;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-content {
  z-index: 2;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  transform-style: preserve-3d;
}

.fragment-meta {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: white;
  /* Darker text for visibility on light cards */
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.meta-line {
  width: 30px;
  height: 2px;
  background: white;
}

.product-grid {
  padding: 20px;
}

.cta-link {
  margin-top: auto;
  text-decoration: none;
  color: white;
  position: relative;
}

.cta-box {
  position: absolute;
  inset: -5px -10px;
  background: black;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 4px;
}

.cta-text {
  position: relative;
  font-weight: 700;
  opacity: 0;
  transition: 0.4s;
}

/* Hover States */
.deconstructed-card:hover .frame-path {
  stroke-dashoffset: 0;
  stroke: #ffffff;
}

.deconstructed-card:hover img {
  transform: scale(1.08);
}

.deconstructed-card:hover .cta-box {
  transform: scaleX(1);
}

.deconstructed-card:hover .cta-text {
  opacity: 1;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.carousel-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #f3f3f3;
  color: #000000;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  transition: 0.3s;
}


/* --- BREAKPOINTS --- */

/* Tablet: 3 Blocks */
@media (max-width: 1250px) and (min-width: 769px) {


  .carousel-viewport {
    max-width: calc(3 * 280px + 2 * 24px);
  }
}

/* Mobile: 2 Blocks */
@media (max-width: 768px) {

  .carousel-viewport {
    max-width: 100%;
    padding: 0 10px;
    width: 100%;
  }

  .deconstructed-card {
    width: calc(50vw - 22px);
    /* ensure 2 cards fit with gap and padding */
    height: calc((50vw - 22px) * 1.4);
    /* maintaining aspect ratio */
  }

  .carousel-track {
    gap: 12px;
  }

  .content-text {
    font-size: 1.1rem;
  }
}



.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

/* Header */
.main-header {
  margin-bottom: 40px;
}

.main-header h1 {
  font-size: 3rem;
  font-weight: 900;
}

.main-header p {
  font-weight: 700;
  color: #999999;
  font-size: 0.8rem;
}

/* --- THE GRID LOGIC --- */

/* Mobile: 2 Columns, 2 Rows */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  /* INCREASED GAP */
}

/* Tablet: 3 Columns */
@media (min-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    /* INCREASED GAP */
  }
}

/* PC: 4 Columns, 1 Row */
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    /* INCREASED GAP */
  }
}

/* Card Styling */
.product-card {
  text-align: left;
  /* Centers the description text */
  display: flex;
  flex-direction: column;
}

.image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  /* Strict Portrait Format */
  background-size: cover;
  background-position: center;
  border-top-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

/* Placeholders for your images */
.img-1 {
  background-image: url('https://images.unsplash.com/photo-1527864550417-7fd91fc51a46?q=80&w=600');
}

.img-2 {
  background-image: url('https://images.unsplash.com/photo-1523275335684-37898b6baf30?q=80&w=600');
}

.img-3 {
  background-image: url('https://images.unsplash.com/photo-1505740420928-5e560c06d30e?q=80&w=600');
}

.img-4 {
  background-image: url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?q=80&w=600');
}

.image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(0, 0, 0, 0.8));
}

.overlay-text {
  position: absolute;
  bottom: 20px;
  width: 100%;
  /* Needed for centering */
  left: 0;
  color: white;
  z-index: 2;
  padding: 0 10px;
}

.overlay-text h2 {
  font-size: clamp(1rem, 4vw, 1.1rem);
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}

.overlay-text span {
  font-size: 0.9rem;
  opacity: 0.8;
}

.description {
  margin-top: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #444444;
  padding: 0 10px;
  display: block;
  opacity: 0.9;
  min-height: 40px;
}

/* Hover Effect */
.product-card:hover .image-wrapper {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Scoped Container to avoid global CSS conflicts */
.vortex-alpha-99 {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #f8f9fa;
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#nexus-core-z {
  width: max-content;
}

.orbit-cell {
  width: 200px;
  height: 300px;
  background-position: 50% 50%;
  display: inline-block;
  background-size: cover;
  position: absolute;
  z-index: 1;
  top: 75%;
  transform: translate(0, -50%);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transition:
    left 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    top 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    width 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    height 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s ease,
    box-shadow 0.3s ease,
    border-radius 0.6s ease;
}

/* --- HOVER EFFECT FOR THUMBNAILS --- */
.orbit-cell:nth-child(n+3):hover {
  transform: translate(0, -60%);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

/* Active Background Image */
.orbit-cell:nth-child(1),
.orbit-cell:nth-child(2) {
  left: 0;
  top: 0;
  transform: translate(0, 0);
  border-radius: 0;
  width: 100%;
  height: 100%;
  box-shadow: none;
}

/* Thumbnail Staggering */
.orbit-cell:nth-child(3) {
  left: 60%;
}

.orbit-cell:nth-child(4) {
  left: calc(60% + 230px);
}

.orbit-cell:nth-child(5) {
  left: calc(60% + 460px);
}

.orbit-cell:nth-child(n+6) {
  left: calc(60% + 690px);
  opacity: 0;
}

.orbit-cell .nebula-txt-box {
  position: absolute;
  top: 50%;
  left: 100px;
  width: 450px;
  text-align: left;
  color: #fff;
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  transform: translate(0, -50%);
  display: none;
  z-index: 100;
}

.orbit-cell:nth-child(2) .nebula-txt-box {
  display: block;
}

.orbit-cell .stella-title {
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 800;
  opacity: 0;
  animation: fx_slide_up 0.8s ease-in-out 0.2s 1 forwards;
}

.orbit-cell .stella-info {
  margin: 15px 0 25px;
  font-size: 20px;
  opacity: 0;
  line-height: 1.6;
  animation: fx_slide_up 0.8s ease-in-out 0.4s 1 forwards;
}

.orbit-cell button {
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid #fff;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0;
  animation: fx_slide_up 0.8s ease-in-out 0.6s 1 forwards;
}

@keyframes fx_slide_up {
  from {
    opacity: 0;
    transform: translate(0, 50px);
    filter: blur(20px);
  }

  to {
    opacity: 1;
    transform: translate(0, 0);
    filter: blur(0);
  }
}

.pulse-controls {
  position: absolute;
  bottom: 40px;
  left: 100px;
  z-index: 222;
  display: flex;
  gap: 15px;
}

.pulse-controls button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.2);
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.pulse-controls button:hover {
  background: #fff;
  color: #000;
}

@media screen and (max-width: 1024px) {
  .orbit-cell {
    width: 180px;
    height: 260px;
    top: 75%;
  }

  .orbit-cell:nth-child(3) {
    left: 55%;
    opacity: 1;
  }

  .orbit-cell:nth-child(4) {
    left: calc(55% + 200px);
    opacity: 1;
  }

  .orbit-cell:nth-child(n+5) {
    opacity: 0;
    left: calc(55% + 400px);
  }

  .orbit-cell .nebula-txt-box {
    left: 50px;
    width: 400px;
  }
}

@media screen and (max-width: 768px) {
  .orbit-cell {
    width: 140px;
    height: 200px;
    top: 71%;
  }

  .vortex-alpha-99 {
    height: 75vh;
  }

  .orbit-cell:nth-child(3) {
    left: 15%;
    opacity: 1;
  }

  .orbit-cell:nth-child(4) {
    left: calc(15% + 155px);
    opacity: 1;
  }

  .orbit-cell:nth-child(n+5) {
    opacity: 0;
    transform: translate(150px, -50%);
  }

  .orbit-cell .nebula-txt-box {
    top: 35%;
    left: 30px;
    width: 80%;
  }

  .orbit-cell .stella-title {
    font-size: 38px;
  }

  .orbit-cell .stella-info {
    font-size: 16px;
  }

  .pulse-controls {
    left: 50%;
    transform: translateX(-50%);
    bottom: 13px;
  }
}


/* Center the modal using a wrapper */
.center-wrapper {
  min-height: 40vh;
  display: flex;
  justify-content: center;
  align-items: center;

}

.ob-modal {
  border-radius: 20px;
  background: var(--svc-card-bg);
  border: 1px solid #000000;
  box-shadow: var(--svc-card-shadow);
  transform-style: preserve-3d;
  transition: var(--svc-transition);
  cursor: pointer;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  font-size: 14px;
  height: 464px;
  overflow: hidden;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 280px;
  z-index: 1000;
}

.ob-modal.ob-show {
  display: flex;
  opacity: 0;
  transform: translateY(72px);
}

.ob-modal.ob-reveal {
  opacity: 1;
  transform: translateY(0);
}

.ob-modal .ob-body {
  align-items: center;
  display: flex;
  flex: 1;
  text-align: center;
}

.ob-modal .ob-body .ob-prev,
.ob-modal .ob-body .ob-next {
  align-self: stretch;
  background: none;
  border: 0;
  margin-top: 40px;
  color: #000000;
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 24px;
  opacity: 1;
  outline: none;
  padding: 16px;
  transform: scale(1);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), color 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1000;
}

.ob-modal .ob-body .ob-prev:hover,
.ob-modal .ob-body .ob-prev:active,
.ob-modal .ob-body .ob-next:hover,
.ob-modal .ob-body .ob-next:active {
  color: #222222;
  transform-origin: center;
  transform: scale(1.25);
}

.ob-modal .ob-body .ob-prev:disabled,
.ob-modal .ob-body .ob-next:disabled {
  opacity: 0;
}

.ob-modal .ob-body .ob-prev {
  order: 1;
}

.ob-modal .ob-body .ob-next {
  order: 3;
}

.ob-modal .ob-body .ob-slides {
  flex: 1;
  align-self: stretch;
  position: relative;
  margin: 0 -16px;
  padding: 0;
  order: 2;
}

.ob-modal .ob-body .ob-slides .ob-slide {
  position: absolute;
  list-style-type: none;
  width: 100%;
  /* Ensure slide takes full width */
  left: 0;
  /* Force left alignment within relative parent */
}

.ob-modal .ob-body .ob-media {
  border-radius: 132px;
  height: 132px;
  margin: 32px auto;
  width: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.ob-modal .ob-body .ob-star {
  font-size: 24px;
  margin: 2px;
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  color: #ffd700;
}

.ob-modal .ob-body .ob-star-empty {
  font-size: 24px;
  margin: 2px;
  color: #ddd;
}

.ob-modal .ob-body .ob-slide {
  text-align: center;
  padding: 0 20px;
}

.ob-modal .ob-body h3 {
  font-size: 15px;
  line-height: 1.4em;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #000000;
  text-align: center;
  margin-top: 15px;
}

.ob-modal .ob-body p {
  line-height: 1.6em;
  font-size: 13px;
  margin-top: 16px;
  padding-top: 0;
  color: #000000;
  text-align: center;
  max-width: 100%;
  /* Constrain to container */
  margin-left: auto;
  margin-right: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Center stars */
.ob-media {
  display: flex;
  justify-content: center;
  width: 100%;
}

.ob-modal .ob-pagination {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.ob-modal .ob-pagination .ob-dot {
  background: rgb(0 0 0 / 5%);
  border-radius: 8px;
  height: 8px;
  margin: 0 4px;
  transform: scale(0.75);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  width: 8px;
}

.ob-modal .ob-pagination .ob-dot.ob-active {
  background: #000000;
  transform: scale(1);
  transition-delay: 0.4s;
}

.ob-modal .ob-footer {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  padding: 0;

}

.ob-modal .ob-footer .ob-btn {
  border-bottom-left-radius: 17px;
  border-bottom-right-radius: 17px;

  height: 40px;
  background: #000000;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffffff;
  flex: 1;
  font-size: 12px;
  margin: 0;
  outline: 0;
  padding: 12px;
  transition: opacity 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  width: 100%;
}

.ob-modal .ob-footer .ob-btn:hover {}

.ob-modal .ob-footer .ob-btn:active {}

.ob-modal .ob-footer .ob-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

/* Contrast Fix for Next Button */
.ob-footer-next {
  background: #000000;
  color: rgb(255, 255, 255);
  border: none;
  padding: 12px 30px;
  font-size: 14px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 700;
}

.ob-footer-next:hover {
  background: #e63946;
  color: black;
}

.ob-modal .ob-slides {
  margin: 0;
}

.ob-modal .ob-slides .ob-slide {
  opacity: 0;
  position: absolute;
  transform: translateX(-72px);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.ob-modal .ob-slides .ob-slide.ob-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition-delay: 0.4s;
}

.ob-modal .ob-slides .ob-slide.ob-active~.ob-slide {
  opacity: 0;
  transform: translateX(72px);
}

.ob-modal .ob-slides .ob-slide.ob-active .ob-star {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

.ob-modal .ob-slides .ob-slide.ob-active .ob-media.ob-review1 .ob-star:nth-child(1),
.ob-modal .ob-slides .ob-slide.ob-active .ob-media.ob-review1 .ob-star:nth-child(2),
.ob-modal .ob-slides .ob-slide.ob-active .ob-media.ob-review1 .ob-star:nth-child(3),
.ob-modal .ob-slides .ob-slide.ob-active .ob-media.ob-review1 .ob-star:nth-child(4),
.ob-modal .ob-slides .ob-slide.ob-active .ob-media.ob-review1 .ob-star:nth-child(5) {
  transition-delay: 0.6s;
}

.ob-modal .ob-slides .ob-slide.ob-active .ob-media.ob-review2 .ob-star:nth-child(1),
.ob-modal .ob-slides .ob-slide.ob-active .ob-media.ob-review2 .ob-star:nth-child(2),
.ob-modal .ob-slides .ob-slide.ob-active .ob-media.ob-review2 .ob-star:nth-child(3) {
  transition-delay: 0.6s;
}

.ob-modal .ob-slides .ob-slide.ob-active .ob-media.ob-review3 .ob-star:nth-child(1),
.ob-modal .ob-slides .ob-slide.ob-active .ob-media.ob-review3 .ob-star:nth-child(2),
.ob-modal .ob-slides .ob-slide.ob-active .ob-media.ob-review3 .ob-star:nth-child(3),
.ob-modal .ob-slides .ob-slide.ob-active .ob-media.ob-review3 .ob-star:nth-child(4) {
  transition-delay: 0.6s;
}


.viewport-wrapper {
  margin-top: 100px;
  perspective: 3000px;
  /* Enhanced depth for large screens */
  width: 100%;
  display: flex;
  justify-content: center;
}

.interactive-cluster {
  position: relative;
  /* Responsive Size: Grows based on screen size */
  width: 75vmin;
  height: 75vmin;
  max-width: 800px;
  /* Cap it so it doesn't get ridiculously huge on 4K */
  max-height: 800px;
  transform-style: preserve-3d;
  transition: transform 0.3s var(--slow-ease);
}

/* Background Circles */
.parallax-bg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* Gap scales with screen size */
  gap: 5vmin;
  width: 100%;
  height: 100%;
  transition: transform 0.3s var(--slow-ease);
}

.item {
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s var(--slow-ease), filter 1.2s ease;
}

/* Specific product circles */
.c1 {
  background-color: var(--deep-bg);
  background-image: url('../../WCU/1.jpg');
}

.c2 {
  background-color: var(--accent-red);
  background-image: url('../../WCU/2.jpg');
}

.c3 {
  background-color: var(--accent-red);
  background-image: url('../../WCU/3.jpg');
}

.c4 {
  background-color: var(--accent-red);
  background-image: url('../../WCU/4.jpg');
}

/* Center Card - Floating higher */
.floating-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(100px);
  width: 68%;
  /* Reduced slightly more to show images better */
  pointer-events: none;
}

.glass-card {
  background: #000000;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 15%;
  color: white;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s var(--slow-ease),
    box-shadow 0.3s var(--slow-ease);
}


/* Typography Scales with screen */
.glass-card h2 {
  font-size: clamp(1rem, 3.5vmin, 2.2rem);
  font-weight: 900;
  color: #ffffff;
  font-style: italic;
  margin-bottom: 5%;
}

.glass-card p {
  font-size: clamp(0.6rem, 2vmin, 0.95rem);
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.8;
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 600px) {
  .interactive-cluster {
    width: 85vw;
    height: 85vw;
  }

  .parallax-bg {
    gap: 15px;
  }
}



canvas {
  inset: 0;
  width: 100%;
  height: 100%;
}

.lil-gui {
  display: none !important;
}


.page-wrapper {
  width: 100%;
}

.delivery-block {
  display: flex;
  width: 100%;
  min-height: 500px;
  /* INCREASED HEIGHT */
  align-items: center;

  font-family: 'Lato', sans-serif;
  margin-bottom: 2px;
  /* Tiny separator */
}


/* --- TEXT SIDE (35% Width) --- */
.text-side {
  flex: 7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 50px;
  /* INCREASED PADDING */
  color: var(--text-main);
}

.inner-content {
  width: 100%;
  max-width: 400px;
  text-align: left;
  /* Text sentences face left */
}

/* Pushes the text block in the second section to the far right edge */
.reverse-layout .text-side {
  align-items: flex-end;
}

/* --- IMAGE SIDE (65% Width) --- */
.image-side {
  flex: 5;
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: auto;
}

.image-side img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  /* Ensures no gaps on the edges */
}

/* Typography */
.text-side h1 {
  font-size: clamp(1.3rem, 3vw, 2.5rem);
  font-weight: 700;
  font-style: italic;
  margin: 0 0 15px 0;
  line-height: 1.1;
  text-transform: uppercase;
  color: #000000;
}

.text-side p {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  /* LARGER TEXT */
  color: #000000;
  line-height: 1.8;
  /* MORE BREATHING ROOM */
  color: #888888;
  margin: 0;
  letter-spacing: 0.03em;
}

@media (max-width: 1000px) {
  .image-side {
    flex: 9;
  }

}

/* --- MOBILE RESPONSIVE (Resets to balanced view) --- */
@media (max-width: 768px) {
  .delivery-block {
    min-height: auto;
  }

  .text-side {
    flex: 1;
    /* Back to equal or specific ratio for mobile */
    padding: 20px !important;
  }

  .image-side {
    flex: 1.2;
  }

  .text-side h1 {
    font-size: 14px;
  }

  .text-side p {
    font-size: 9px;
  }
}

/* --- BRAND CONTENT STYLES --- */
.sm-footer-links li {
  margin-bottom: 20px;
}

.sm-accordion-header h3 {}

.sm-site-footer {
  background-color: #ffffff;
  /* LIGHTER */
  padding: 80px 20px 40px;
  /* MORE SPACE */
  font-family: 'Abel', sans-serif;
  /* CONSISTENT FONT */
  color: black;
  letter-spacing: 0.05em;
}

.sm-site-footer .sm-container {
  max-width: 1200px;
  margin: 0 auto;
}

.sm-footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.sm-footer-section {
  flex: 1 1 300px;
  margin-bottom: 30px;
  padding-right: 30px;
}

/* --- FOOTER BOTTOM LOGIC --- */
.sm-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 30px;
  border-top: 1px solid #e1e3e4;
}

.sm-social-media {
  text-align: right;
}

.sm-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  justify-content: flex-end;
}

.sm-social-icons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  background-color: #000000;
  color: #ffffff !important;
  border-radius: 50%;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.sm-social-icons a:hover {
  transform: translateY(-3px);
}

/* --- MOBILE FIXES (< 900px) --- */
@media screen and (max-width: 900px) {
  .sm-site-footer {
    padding: 10px 15px 20px;
  }

  .sm-footer-content {
    margin-bottom: 0;
  }

  .sm-footer-section {
    margin-bottom: 0;
    padding-right: 0;
    width: 100%;
  }

  .sm-accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #e1e3e4;
    cursor: pointer;
  }

  .sm-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }

  .sm-accordion-content p,
  .sm-accordion-content ul {
    padding: 15px 0 20px 0;
    margin: 0;
  }

  .sm-footer-bottom {
    margin-top: 20px;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 25px;
  }

  .sm-social-media {
    text-align: left;
  }

  .sm-social-icons {
    justify-content: flex-start;
  }
}

.sm-site-footer h3 {
  font-size: 12px;

  margin: 0;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.sm-site-footer p {
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
}

.sm-site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sm-site-footer a {
  text-decoration: none;
  color: #666666;
  font-size: 14px;
  transition: 0.3s;
}

.sm-site-footer a:hover {

  padding-left: 5px;
}

.sm-accordion-icon {
  display: none;
  color: #000;
  font-weight: 300;
  font-size: 22px;
}

@media (max-width: 900px) {
  .sm-accordion-icon {
    display: block;
  }
}

/* User Dropdown Styles */
.user-menu {
  position: relative;
}

.user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  z-index: 1000;
  overflow: hidden;
}

.user-dropdown a {
  display: block;
  padding: 12px 20px;
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
  border-bottom: 1px solid #f0f0f0;
}

.user-dropdown a:last-child {
  border-bottom: none;
}

.user-dropdown a:hover {
  background: #000000;
  color: white !important;
}

/* Search Modal Styles */
.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  backdrop-filter: blur(5px);
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

.search-modal.active {
  display: flex;
}

.search-modal-content {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid #eee;
}

.search-input-wrapper i {
  color: #444444;
  margin-right: 12px;
  font-size: 18px;
}

.search-input-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  padding: 8px;
  font-family: inherit;
}

.search-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #444444;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.search-close:hover {
  background: #f0f0f0;
}

.search-results {
  padding: 20px;
  overflow-y: auto;
  max-height: calc(80vh - 100px);
}

.search-result-item {
  display: flex;
  gap: 16px;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  border: 1px solid #f0f0f0;
}

.search-result-item:hover {
  background: #f8f9fa;
  border-color: #e0e0e0;
}

.search-result-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.search-result-info {
  flex: 1;
}

.search-result-info h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: #222222;
}

.search-result-info p {
  margin: 0;
  color: #444444;
  font-size: 14px;
  line-height: 1.4;
}

.search-result-info .price {
  font-weight: bold;
  color: #e63946;
  margin-top: 6px;
  font-size: 15px;
}

.search-no-results {
  text-align: center;
  padding: 40px 20px;
  color: #444444;
}

.search-no-results i {
  font-size: 48px;
  color: #ddd;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .search-modal {
    padding-top: 50px;
  }

  .search-modal-content {
    width: 95%;
    max-height: 85vh;
  }

  .search-result-img {
    width: 60px;
    height: 60px;
  }

  .search-result-info h4 {
    font-size: 14px;
  }

  z-index: 1000;
  overflow: hidden;
}





/* Search Modal Styles */
.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  backdrop-filter: blur(5px);
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

.search-modal.active {
  display: flex;
}

.search-modal-content {
  background: white;
  border-radius: 12px;
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-input-wrapper {
  display: flex;
  align-items: center;
  padding: 20px;
  border-bottom: 2px solid #eee;
}

.search-input-wrapper i {
  color: #444444;
  margin-right: 12px;
  font-size: 18px;
}

.search-input-wrapper input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 18px;
  padding: 8px;
  font-family: inherit;
}

.search-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #444444;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.search-close:hover {
  background: #f0f0f0;
}

.search-results {
  padding: 20px;
  overflow-y: auto;
  max-height: calc(80vh - 100px);
}

.search-result-item {
  display: flex;
  gap: 16px;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  border: 1px solid #f0f0f0;
}

.search-result-item:hover {
  background: #f8f9fa;
  border-color: #e0e0e0;
}

.search-result-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.search-result-info {
  flex: 1;
}

.search-result-info h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  color: #222222;
}

.search-result-info p {
  margin: 0;
  color: #444444;
  font-size: 14px;
  line-height: 1.4;
}

.search-result-info .price {
  font-weight: bold;
  color: #e63946;
  margin-top: 6px;
  font-size: 15px;
}

.search-no-results {
  text-align: center;
  padding: 40px 20px;
  color: #444444;
}

.search-no-results i {
  font-size: 48px;
  color: #ddd;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .search-modal {
    padding-top: 50px;
  }

  .search-modal-content {
    width: 95%;
    max-height: 85vh;
  }

  .search-result-img {
    width: 60px;
    height: 60px;
  }

  .search-result-info h4 {
    font-size: 14px;
  }

  .search-result-info p {
    font-size: 12px;
  }
}

/* ===== CUSTOM LANGUAGE SWITCHER ===== */
.language-switcher {
  position: relative;
  margin-right: 15px;
}

.lang-btn {
  background: none;
  border: 1px solid transparent;
  color: #000000;
  font-family: 'Abel', sans-serif;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 4px;
  transition: background 0.2s, border-color 0.2s;
}

.lang-btn:hover {
  background: #f8f9fa;
  border-color: #e0e0e0;
}

.lang-btn i.fa-globe {
  font-size: 16px;
}

.small-arrow {
  font-size: 10px;
  opacity: 0.7;
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 1001;
  overflow: hidden;
}

.lang-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.lang-option {
  padding: 10px 15px;
  cursor: pointer;
  font-size: 14px;
  color: #000000;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lang-option:hover {
  background: #f8f9fa;
}

.lang-option.active {
  background: #f0f0f0;
  font-weight: 600;
  color: #e63946;
}

/* Ensure no Google Translate artifacts remain */
.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

/* --- LANGUAGE SWITCHER STYLES --- */
.language-switcher {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 1rem;
  color: #000;
  padding: 5px;
  transition: opacity 0.3s;
}

.lang-btn:hover {
  opacity: 0.7;
}

.lang-btn .small-arrow {
  font-size: 0.7em;
  margin-top: 2px;
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1001;
}

.lang-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  padding: 10px 16px;
  cursor: pointer;
  font-size: 0.9rem;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.2s, color 0.2s;
  color: #444;
}

.lang-option:last-child {
  border-bottom: none;
}

.lang-option:hover {
  background: #f9f9f9;
  color: #000;
}

.lang-option.active {
  font-weight: 700;
  background: #f0f0f0;
  color: #000;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .language-switcher {
    margin-left: 0;
  }
}
