    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --background: #ffffff;
      --foreground: #0f172a;
      --primary: #3b82f6;
      --primaryn: #8b5cf6;
      --primary-light: #60a5fa;
      --secondary: #8b5cf6;
      --secondary-light: #a78bfa;
      --primary-foreground: #ffffff;
      --muted: #f1f5f9;
      --muted-foreground: #64748b;
      --border: #e2e8f0;
      --hero-bg: #0f172a;
      --hero-foreground: #f8fafc;
      --destructive: #ef4444;
      --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
      --success: #22c55e;

      /* Backgrounds */
      --bg-dark: #020617;          /* Deepest Slate */
      --bg-card: rgba(30, 41, 59, 0.7);
      --bg-card-hover: rgba(139, 92, 246, 0.1);
      
      /* Text */
      --text-main: #f8fafc;
      --text-muted: #94a3b8;
      
      /* Accents */
      --gradient-main: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
      --gradient-glow: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
      
      /* UI */
      --radius-sm: 8px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --border-color: rgba(148, 163, 184, 0.1);
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--background);
      color: var(--foreground);
      line-height: 1.6;
    }

    /* Page Transition */
    .page-transition {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--gradient-primary);
      z-index: 9999;
      transform: translateY(-100%);
      animation: pageEnter 0.6s ease-out forwards;
    }

    @keyframes pageEnter {
      0% { transform: translateY(-100%); }
      40% { transform: translateY(0); }
      60% { transform: translateY(0); }
      100% { transform: translateY(100%); }
    }

    .page-content {
      opacity: 0;
      animation: fadeInContent 0.5s ease-out 0.4s forwards;
    }

    @keyframes fadeInContent {
      from { opacity: 0;transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .container {
      max-width: 1280px;  
      margin: 0 auto;
      padding: 0 1rem;
    }

    @media (min-width: 1024px) {
      .container {
        padding: 0 2rem;
      }
    }

    /* Header Styles */
    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      background-color: var(--background);
      border-bottom: 1px solid var(--border);
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }

    @media (min-width: 1024px) {
      .header-content {
        height: 80px;
      }
    }

.logo-container {
  display: flex;
  align-items: center;
   flex-direction: column;
}
.logo {
  height: 60px;
  width: auto;
}

    /*.logo {
      display: flex;
      flex-direction: column;
      align-items: center;
    }*/

    .logo-icon {
      width: 32px;
      height: 32px;
      background-color: var(--primary);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }

    @media (min-width: 1024px) {
      .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
      }
    }

    .logo-text {
      font-size: 8px;
      font-weight: 600;
      color: var(--primary);
      margin-top: 2px;
    }

    @media (min-width: 1024px) {
      .logo-text {
        font-size: 10px;
      }
    }

    .logo-subtext {
      font-size: 6px;
      color: var(--muted-foreground);
    }

    @media (min-width: 1024px) {
      .logo-subtext {
        font-size: 8px;
      }
    }

    /* Desktop Navigation */
    .nav-desktop {
      display: none;
      align-items: center;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .nav-desktop {
        display: flex;
      }
    }

    .nav-link {
      font-weight: 500;
      color: var(--foreground);
      text-decoration: none;
      transition: color 0.2s;
      position: relative;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gradient-primary);
      transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--primary);
    }

    .btn-primary {
      background: var(--gradient-primary);
      color: var(--primary-foreground);
      padding: 8px 24px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
    }

       .b .btn-primary {
      background: var(--gradient-primary);
      color: var(--primary-foreground);
      padding: 8px 24px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-block;
      transition: transform 0.2s, box-shadow 0.2s;
    }

   .b .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
      color: white;
    }

    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown-trigger {
      display: flex;
      align-items: center;
      gap: 4px;
      font-weight: 500;
      color: var(--foreground);
      background: none;
      border: none;
      cursor: pointer;
      font-size: 16px;
      font-family: inherit;
      transition: color 0.2s;
    }

    .nav-dropdown-trigger:hover {
      color: var(--primary);
    }

    .nav-dropdown-trigger svg {
      width: 16px;
      height: 16px;
      transition: transform 0.2s;
    }

    .nav-dropdown:hover .nav-dropdown-trigger svg {
      transform: rotate(180deg);
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      padding-top: 8px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.2s, visibility 0.2s;
    }

    .nav-dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
    }

    .dropdown-content {
      background: var(--background);
      border: 1px solid var(--border);
      border-radius: 8px;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      padding: 24px;
      min-width: 700px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }

    .dropdown-column h3 {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 12px;
      color: var(--foreground);
    }

    .dropdown-column ul {
      list-style: none;
    }

    .dropdown-column li {
      margin-bottom: 8px;
    }

    .dropdown-column a {
      font-size: 14px;
      color: var(--muted-foreground);
      text-decoration: none;
      transition: color 0.2s;
    }

    .dropdown-column a:hover {
      color: var(--primary);
    }


    /* Right Icons */
    .header-icons {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .icon-btn {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--muted-foreground);
      transition: color 0.2s;
      display: none;
    }

    @media (min-width: 1024px) {
      .icon-btn {
        display: block;
      }
    }

    .icon-btn:hover {
      color: var(--foreground);
    }

    .icon-btn svg {
      width: 20px;
      height: 20px;
    }

    .cart-btn {
      position: relative;
      display: block;
    }

    .cart-badge {
      position: absolute;
      top: -8px;
      right: -8px;
      background-color: var(--destructive);
      color: white;
      font-size: 10px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu-btn {
      display: block;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--foreground);
    }

    @media (min-width: 1024px) {
      .mobile-menu-btn {
        display: none;
      }
    }

    .mobile-menu-btn svg {
      width: 24px;
      height: 24px;
    }

    /* Mobile Menu 
    .mobile-menu-overlay {
      position: fixed;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.2);
      z-index: 100;
      display: none;
    }

    .mobile-menu-overlay.active {
      display: block;
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 320px;
      max-width: 85vw;
      height: 100%;
      background-color: var(--background);
      z-index: 101;
      overflow-y: auto;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .mobile-menu.active {
      transform: translateX(0);
    }

    .mobile-menu-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px;
      border-bottom: 1px solid var(--border);
    }

    .mobile-menu-close {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--foreground);
    }

    .mobile-menu-close svg {
      width: 24px;
      height: 24px;
    }

    .mobile-nav {
      padding: 16px;
    }

    .mobile-nav-link {
      display: block;
      padding: 12px 0;
      font-weight: 500;
      color: var(--foreground);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
    }

    .mobile-nav-link.active {
      color: var(--primary);
    }

    .mobile-accordion {
      border-bottom: 1px solid var(--border);
    }

    .mobile-accordion-trigger {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 12px 0;
      background: none;
      border: none;
      font-size: 16px;
      font-weight: 500;
      font-family: inherit;
      color: var(--foreground);
      cursor: pointer;
    }

    .mobile-accordion-trigger svg {
      width: 16px;
      height: 16px;
      transition: transform 0.2s;
    }

    .mobile-accordion-trigger.active svg {
      transform: rotate(180deg);
    }

    .mobile-accordion-content {
      display: none;
      padding-bottom: 16px;
      padding-left: 16px;
    }

    .mobile-accordion-content.active {
      display: block;
    }

    .mobile-accordion-content h4 {
      font-size: 14px;
      font-weight: 600;
      margin: 16px 0 8px;
      color: var(--foreground);
    }

    .mobile-accordion-content ul {
      list-style: none;
    }

    .mobile-accordion-content li {
      margin-bottom: 8px;
    }

    .mobile-accordion-content a {
      font-size: 14px;
      color: var(--muted-foreground);
      text-decoration: none;
    }

    .mobile-accordion-content a:hover {
      color: var(--primary);
    }

    .mobile-btn-primary {
      display: block;
      width: 100%;
      text-align: center;
      margin-top: 16px;
      padding: 12px;
    }*/

    /* Hero Section 
    .hero {
      background: linear-gradient(180deg, #0f172a 0%, #0a0f1a 100%);
      padding: 48px 0;
    }

    @media (min-width: 1024px) {
      .hero {
        padding: 80px 0;
      }
    }

    .hero-content {
      display: grid;
      gap: 32px;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
      }
    }

    .hero-text {
      text-align: center;
    }

    @media (min-width: 1024px) {
      .hero-text {
        text-align: left;
      }
    }

    .hero h1 {
      font-size: 1.875rem;
      font-weight: 700;
      color: var(--hero-foreground);
      line-height: 1.2;
      margin-bottom: 24px;
    }

    @media (min-width: 640px) {
      .hero h1 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .hero h1 {
        font-size: 3rem;
      }
    }

    @media (min-width: 1280px) {
      .hero h1 {
        font-size: 3.75rem;
      }
    }

    .hero-badge {
      display: inline-block;
      background-color: var(--primary);
      color: var(--primary-foreground);
      padding: 8px 16px;
      border-radius: 8px;
      margin-top: 8px;
    }

    .hero p {
      color: rgba(248, 250, 252, 0.7);
      font-size: 1rem;
      max-width: 512px;
      margin: 0 auto 32px;
    }

    @media (min-width: 1024px) {
      .hero p {
        font-size: 1.125rem;
        margin: 0 0 32px;
      }
    }

    .hero .btn-primary {
      padding: 12px 32px;
      font-size: 16px;
      font-weight: 600;
      box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.25);
    }

    .hero-image {
      display: flex;
      justify-content: center;
    }

    @media (min-width: 1024px) {
      .hero-image {
        justify-content: flex-end;
      }
    }

    .hero-image img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }*/

    /* Brands Section */
    .brands {
         background: linear-gradient(
        to bottom right,
        #0066CC,
        #7B2CBF,
        #0066CC
    );
      padding: 64px 0;
    }

    @media (min-width: 1024px) {
      .brands {
        padding: 96px 0;
      }
    }

    .brands-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .brands-header h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: white;
      margin-bottom: 12px;
    }

    @media (min-width: 1024px) {
      .brands-header h2 {
        font-size: 2.25rem;
      }
    }

    .brands-header p {
      color: rgba(255, 255, 255, 0.8);
    }

    .brands-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    @media (min-width: 640px) {
      .brands-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .brands-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 24px;
      }
    }

    
.brand-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.1s;

  /* REMOVE UNDERLINE */
  text-decoration: none !important;
}

@media (min-width: 1024px) {
  .brand-card {
    padding: 32px;
  }
}

.brand-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.brand-card span {
  color: white;
  font-weight: 600;
  font-size: 1.125rem;

  /* REMOVE UNDERLINE */
  text-decoration: none !important;
}

@media (min-width: 1024px) {
  .brand-card span {
    font-size: 1.25rem;
  }
}


    /* Industry Solutions */
    .industry {
      padding: 64px 0;
      background-color: var(--background);
    }

    @media (min-width: 1024px) {
      .industry {
        padding: 96px 0;
      }
    }

    .industry-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .industry-header h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--foreground);
      margin-bottom: 12px;
    }

    @media (min-width: 1024px) {
      .industry-header h2 {
        font-size: 2.25rem;
      }
    }

    .industry-header p {
      color: var(--muted-foreground);
      max-width: 640px;
      margin: 0 auto;
    }

    .industry-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    @media (min-width: 640px) {
      .industry-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .industry-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .industry-card {
      position: relative;
      overflow: hidden;
      border-radius: 5px;
      cursor: pointer;
      aspect-ratio: 4 / 3;
    }

    .industry-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }

    .industry-card:hover img {
      transform: scale(1.1);
    }

    .industry-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    }

    .industry-card-icon {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 48px;
      height: 48px;
      background-color: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(8px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .industry-card-icon svg {
      width: 24px;
      height: 24px;
      color: white;
    }

    .industry-card-label {
      position: absolute;
      bottom: 24px;
      left: 24px;
      right: 24px;
    }

    .industry-card-label h3 {
      color: white;
      font-weight: 700;
      font-size: 1.125rem;
    }

    @media (min-width: 1024px) {
      .industry-card-label h3 {
        font-size: 1.25rem;
      }
    }

    /* News Section */
    .news {
      padding: 64px 0;
      background-color: var(--muted);
    }

    @media (min-width: 1024px) {
      .news {
        padding: 96px 0;
      }
    }

    .news-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .news-header h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--foreground);
      margin-bottom: 12px;
    }

    @media (min-width: 1024px) {
      .news-header h2 {
        font-size: 2.25rem;
      }
    }

    .news-header p {
      color: var(--muted-foreground);
      max-width: 640px;
      margin: 0 auto;
    }

    .news-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    @media (min-width: 768px) {
      .news-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .news-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .news-card {
      background-color: var(--background);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .news-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    .news-card-media {
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
    }

    .news-card-media img,
    .news-card-media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .news-card-media iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .news-card-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background-color: var(--primary);
      color: var(--primary-foreground);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
    }

    .news-card-badge.product {
      background-color: #10b981;
    }

    .news-card-badge.video {
      background-color: #ef4444;
    }

    .news-card-content {
      padding: 24px;
    }

    .news-card-date {
      font-size: 12px;
      color: var(--muted-foreground);
      margin-bottom: 8px;
    }

    .news-card-title {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--foreground);
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .news-card-description {
      font-size: 14px;
      color: var(--muted-foreground);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .news-card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 600;
      color: var(--primary);
      text-decoration: none;
      transition: gap 0.2s;
    }

    .news-card-link:hover {
      gap: 10px;
    }

    .news-card-link svg {
      width: 16px;
      height: 16px;
    }

    .news-view-all {
      text-align: center;
      margin-top: 48px;
    }

    .btn-outline {
      display: inline-block;
      padding: 12px 32px;
      border: 2px solid var(--primary);
      color: var(--primary);
      font-size: 14px;
      font-weight: 600;
      border-radius: 8px;
      text-decoration: none;
      transition: background-color 0.2s, color 0.2s;
    }

    .btn-outline:hover {
      background-color: var(--primary);
      color: var(--primary-foreground);
    }

    .prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px 15px;
  background: rgba(0,0,0,0.5);
  color: white;
  border-radius: 50%;
  font-size: 20px;
  user-select: none;
}

.prev { left: 15px; }
.next { right: 15px; }

.prev:hover, .next:hover {
  background: rgba(0,0,0,0.7);
}

.four-box-wrapper {
 background: #1f0c7f;          
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #f4f4f4;
  
}

.four-box-section {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 25px auto;
  padding: 20px;
  
  justify-content: center;  
}

.four-box-section .box {
  flex: 1 1 calc(25% - 15px);
  background: #f4f4f4;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: black;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
}

/* ⭐ Image Always Fits — No Crop, No Zoom */
.four-box-section .box img {
  width: 100%;
  height: 160px;   
  object-fit: contain;   /* <<< full image always shown */
  background: white;     /* <<< clean padding area */
  padding: 5px;          /* <<< space so image doesn’t touch edges */
}

/* Hover */
.four-box-section .box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.four-box-section .box p {
  padding: 12px;
  font-weight: bold;
}

/* Tablet */
@media (max-width: 900px) {
  .four-box-section .box {
    flex: 1 1 calc(50% - 15px);
  }
  .four-box-section .box img {
    height: 150px;
  }
}

/* Mobile */
@media (max-width: 500px) {
  .four-box-section .box {
    flex: 1 1 100%;
  }
  .four-box-section .box img {
    height: 140px;
  }
}

/* Section wrapper */
.shop-by-use {
    text-align: center;
    margin: 60px 0;
}

.shop-by-use h2 {
    font-size: 15px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    color: #555;
    
}

/* GRID layout */
.use-grid {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

/* Card */
.use-card {
    width: 150px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Zoom effect */
.use-card:hover img {
    transform: scale(1.1);
}

/* Image */
.use-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s ease;
    filter: brightness(90%);
}

/* Text overlay */
.use-card span {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
    pointer-events: none;
}


/* SECTION */
.product-section {
    text-align: center;
    padding: 30px 20px;
}

.product-title {
    font-size: 28px;
    margin-bottom: 5px;
}

.product-subtitle {
    margin-bottom: 25px;
    color: #555;
}

/* GRID 
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* PRODUCT CARD 
.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    text-align: center;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 30px #1f0c7f;
}

/* IMAGE FIT ALWAYS PERFECT 
.product-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* ⭐ prevents zoom 
}

/* TEXT 
.product-name {
    font-size: 16px;
    margin: 10px 0;
    min-height: 40px;
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0;
}

.product-stars {
    color: gold;
    margin-bottom: 10px;
}

/* BUTTON 
.product-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #1445ff;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 15px;
}

.product-btn:hover {
    background: #002fc6;
}*/

/* -------------------- RESPONSIVE -------------------- */

/* Tablets: 2 columns */
@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-img {
        height: 160px;
    }
}

/* Mobile: 1 column */
@media (max-width: 550px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-img {
        height: 150px;
    }
}

/* SEE ALL PRODUCTS BUTTON */
.see-all-wrapper {
    text-align: center;
    margin-top: 30px;
    padding-bottom: 30px;
}

.see-all-btn {
    display: inline-block;
    background: #1445ff;
    color: #fff;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.see-all-btn:hover {
    background: #002fc6;
}


    /* Mobile responsiveness */
    @media (max-width: 768px) {
      .video-container {
        max-width: 100%;
        border-radius: 0;
      }
    }
  
   
.video-container {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen */
  display: flex;
  justify-content: center;
  align-items: center;
  background: black; /* prevents white empty space */
}

#adVideo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain; /* Keep original proportions */
  display: block;
}

/* BUTTON STYLE */
#unmuteBtn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 18px;
  border-radius: 10px;
  cursor: pointer;
  backdrop-filter: blur(5px);
  transition: 0.3s;
}

#unmuteBtn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: black;
}


/* allprod.css*?
/* Return Button*/
.return-btn {
  background: #0153FF;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
  transition: 0.3s ease;
  display:block;   /* stays left */
  margin-left: 0; 
}

.return-btn:hover {
  background: #003fcc;
  box-shadow: 0 3px 10px rgba(1, 83, 255, 0.3);
}




/* SECTION 
.product-section {
    text-align: center;
    padding: 30px 20px;
}

.product-title {
    font-size: 28px;
    margin-bottom: 5px;
}

.product-subtitle {
    margin-bottom: 25px;
    color: #555;
}

/* GRID 
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* PRODUCT CARD 
.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.5);
    text-align: center;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 30px #1f0c7f;
}

/* IMAGE FIT ALWAYS PERFECT 
.product-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* ⭐ prevents zoom 
}

/* TEXT 
.product-name {
    font-size: 16px;
    margin: 10px 0;
    min-height: 40px;
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0;
}

.product-stars {
    color: gold;
    margin-bottom: 10px;
}

/* BUTTON 
.product-btn {
    display: inline-block;
    padding: 8px 20px;
    background: #1445ff;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-size: 15px;
}

.product-btn:hover {
    background: #002fc6;
}

/* -------------------- RESPONSIVE -------------------- */

/* Tablets: 2 columns 
@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-img {
        height: 160px;
    }
}

/* Mobile: 1 column 
@media (max-width: 550px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-img {
        height: 150px;
    }
}

/* Search + Sort Controls 
.product-controls {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 20px auto;
    max-width: 900px;
    padding: 0 10px;
}

.product-controls input,
.product-controls select {
    flex: 1;
    padding: 10px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 6px;
}

/* Make controls stack on small screens 
@media (max-width: 600px) {
    .product-controls {
        flex-direction: column;
    }
}

/* end allprod.css*/



/* product1.css */

/* Return Button*/
.return-btn {
  background: #0153FF;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
  transition: 0.3s ease;
  display:block;   /* stays left */
  margin-left: 0; 
}

.return-btn:hover {
  background: #003fcc;
  box-shadow: 0 3px 10px rgba(1, 83, 255, 0.3);
}

/* SECTION */
.product-section {
    padding: 30px 20px;
}

/* Full-screen background wrapper */
.product-bg {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: #1f0c7f;
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

/* Main content wrapper */
.product-page {
    display: flex;
    gap: 200px;
    padding: 40px;
    border-radius: 10px;
    background: white;
}

/* -------- LEFT SIDE -------- */
.product-left h1 {
    text-align: justify;
}

.product-left {
    width: 450px;       /* fixed width for left panel */
    flex: 0 0 450px;    /* prevents stretching */
}

/* FIXED SIZE container */
.main-image {
    width: 100%;
    height: 350px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Image NEVER stretches the container */
.main-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: scale-down;   /* KEY: fits inside without stretching */
    object-position: center;
    display: block;
}



/* Image Zoom */
.main-image.zoom-active img {
    transform: scale(2.5);
    transform-origin: center center;
}

/* Thumbnails */
.thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.thumbnails img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: white;
    padding: 3px;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.thumbnails img:hover {
    border-color: #1f0c7f;
    transform: scale(1.05);
}

/* -------- RIGHT SIDE -------- */
.product-right h1 {
    text-align: justify;
    margin-top: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
} 

/* --- RIGHT SIDE CONTAINER FIXED WIDTH --- */
.product-right {
    width: 600px;      /* FIXED width so it never shrinks */
    flex: 0 0 600px;   /* Prevent flexbox from resizing it */
}

.info-box p {
    padding: 5px;
    border-radius: 5px;
    font-family: "Courier New", monospace;
    text-align: left; 
}

/* --- SPECS CONTAINER FIXED SIZE --- */
.specs {
    width: 100%;
    max-width: 600px;       /* Same width as right panel */
    
    margin-top: 20px;
    border-radius: 10px;
}

/* --- SCROLL BOX FOR CONTENT --- */
.specs-scroll {
    width: 100%;
    height: 250px;          /* FIXED height (never shrinks) */
    overflow-y: auto;
    overflow-x: auto;
    white-space: nowrap;    /* Horizontal scroll works ALWAYS */
}

/* Text inside specs */
.specs-scroll p {
    white-space: pre-wrap;  /* Allow natural line breaks */
    overflow-wrap: break-word;
}



.specs h3,
.specs p {
    font-family: "Courier New", monospace;
    text-align: left;
    margin-bottom: 20px;
}


/* -------- POPUP ZOOM VIEW -------- */
.popup {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
}

.popup-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.closePopup {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
}

.closePopup:hover {
    color: #ff4444;
}

/* -------- SPECIFICATIONS SECTION -------- */
.specifications-section {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 300px;
    column-gap: 120px;
    padding: 30px;
    border-radius: 10px;
}

.spec-left h2 {
    margin-bottom: 20px;
    font-size: 50px;
}

/* Rows inside spec panel */
.spec-row {
    display: flex;
    align-items: flex-start;
    padding: 8px 0;
    border-bottom: 1px solid #ccc;
    gap: 20px;
}

.spec-label {
    font-size: 20px;
    font-weight: bold;
    width: 180px;
    flex-shrink: 0;
    font-family: "Courier New", monospace;
    text-align: left;        /* ← forces left justify */
}

.spec-value {
    font-size: 20px;
    flex-grow: 1;
    text-align: left;        /* already left, but reinforced */
    color: gray;
    line-height: 1.4;
    font-family: "Courier New", monospace;
}


/* RIGHT SIDE TAGS */
.spec-right {
    margin-top: 40px;
    
}

.spec-right-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: "Courier New", monospace
}

.tag-box {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.tag-item {
    background: #e9e9e9;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 900px) {
    .product-page {
        flex-direction: column;
        padding: 20px;
    }

    .product-left,
    .product-right {
        width: 100%;
    }

    .specifications-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


/* MAIN TAB CONTAINER */
/* TAB CONTAINER */
.tab-container {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto 40px;
    border: 1px solid black;
    border-radius: 12px;
    overflow: hidden;
}

/* TAB HEADER (flex container) */
/* FORCE-CENTER SPECIFICATIONS TITLE */
.tab-header {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.tab-title {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    width: 100% !important;

    padding: 12px 0 !important;
    font-size: 30px !important;
    font-weight: bold !important;
    font-family: "Courier New", monospace !important;

    background: white !important;
    cursor: default !important;
    text-align: center !important;

    border-bottom: 1px solid gray !important;
}



  
.tab-link {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 16px;
    cursor: pointer;
    border-right: 1px solid #e5e5e5;
    user-select: none;
}



.tab-link:last-child {
    border-right: none;
}

.tab-link.active {
    background: white;
    font-weight: bold;
    border-bottom: 2px solid white;
}

/* CONTENT AREA */
.tab-content-wrapper {
    background: white;
    padding: 20px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* TEXT STYLING EXACT LIKE SCREENSHOT */
.description-text {
    white-space: pre-wrap;
    font-family: "Courier New", monospace;
    font-size: 15px;
    line-height: 1.6;
    color: #222;
}






    /* Footer Styles 
    .footer {
      background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
      color: #f8fafc;
      padding: 64px 0 0;
    }

    .footer-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    @media (min-width: 768px) {
      .footer-content {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .footer-content {
        grid-template-columns: 2fr 1fr 1fr 2fr;
      }
    }

    .footer-brand h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 16px;
      color: #f8fafc;
    }

    .footer-brand p {
      color: #94a3b8;
      font-size: 14px;
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
      color: #94a3b8;
      font-size: 14px;
    }

    .footer-contact-item svg {
      width: 20px;
      height: 20px;
      color: var(--primary);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .footer-links h4 {
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #f8fafc;
      margin-bottom: 20px;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: #94a3b8;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .footer-newsletter h4 {
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #f8fafc;
      margin-bottom: 12px;
    }

    .footer-newsletter p {
      color: #94a3b8;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    @media (min-width: 640px) {
      .newsletter-form {
        flex-direction: row;
      }
    }

    .newsletter-input {
      flex: 1;
      padding: 12px 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      background-color: rgba(255, 255, 255, 0.05);
      color: #f8fafc;
      font-size: 14px;
      outline: none;
      transition: border-color 0.2s, background-color 0.2s;
    }

    .newsletter-input::placeholder {
      color: #64748b;
    }

    .newsletter-input:focus {
      border-color: var(--primary);
      background-color: rgba(255, 255, 255, 0.08);
    }

    .newsletter-btn {
      padding: 12px 24px;
      background-color: var(--primary);
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.2s;
      white-space: nowrap;
    }

    .newsletter-btn:hover {
      background-color: #2563eb;
    }

    .social-links {
      display: flex;
      gap: 12px;
      margin-top: 24px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background-color: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #94a3b8;
      text-decoration: none;
      transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    }

    .social-link:hover {
      background-color: var(--primary);
      color: white;
      border-color: var(--primary);
    }

    .social-link svg {
      width: 20px;
      height: 20px;
    }

    .footer-bottom {
      padding: 24px 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: center;
      text-align: center;
    }

    @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }
    }

    .footer-copyright {
      color: #64748b;
      font-size: 14px;
    }

    .footer-legal {
      display: flex;
      gap: 24px;
    }

    .footer-legal a {
      color: #64748b;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
    }

    .footer-legal a:hover {
      color: var(--primary);
    }*/



    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    @media (min-width: 1024px) {
      .container {
        padding: 0 2rem;
      }
    }

    /* Header Styles 
    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      background-color: var(--background);
      border-bottom: 1px solid var(--border);
    }

    .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }

    @media (min-width: 1024px) {
      .header-content {
        height: 80px;
      }
    }

    .logo {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .logo-icon {
      width: 32px;
      height: 32px;
      background-color: var(--primary);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
    }

    @media (min-width: 1024px) {
      .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
      }
    }

    .logo-text {
      font-size: 8px;
      font-weight: 600;
      color: var(--primary);
      margin-top: 2px;
    }

    @media (min-width: 1024px) {
      .logo-text {
        font-size: 10px;
      }
    }

    .logo-subtext {
      font-size: 6px;
      color: var(--muted-foreground);
    }

    @media (min-width: 1024px) {
      .logo-subtext {
        font-size: 8px;
      }
    }*/

    /* Desktop Navigation 
    .nav-desktop {
      display: none;
      align-items: center;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .nav-desktop {
        display: flex;
      }
    }

    .nav-link {
      font-weight: 500;
      color: var(--foreground);
      text-decoration: none;
      transition: color 0.2s;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--primary);
    }

    .nav-dropdown {
      position: relative;
    }

    .nav-dropdown-trigger {
      display: flex;
      align-items: center;
      gap: 4px;
      font-weight: 500;
      color: var(--foreground);
      background: none;
      border: none;
      cursor: pointer;
      font-size: 16px;
      font-family: inherit;
      transition: color 0.2s;
    }

    .nav-dropdown-trigger:hover {
      color: var(--primary);
    }

    .nav-dropdown-trigger svg {
      width: 16px;
      height: 16px;
      transition: transform 0.2s;
    }

    .nav-dropdown:hover .nav-dropdown-trigger svg {
      transform: rotate(180deg);
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      padding-top: 8px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.2s, visibility 0.2s;
    }

    .nav-dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
    }

    .dropdown-content {
      background: var(--background);
      border: 1px solid var(--border);
      border-radius: 8px;
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      padding: 24px;
      min-width: 700px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }

    .dropdown-column h3 {
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 12px;
      color: var(--foreground);
    }

    .dropdown-column ul {
      list-style: none;
    }

    .dropdown-column li {
      margin-bottom: 8px;
    }

    .dropdown-column a {
      font-size: 14px;
      color: var(--muted-foreground);
      text-decoration: none;
      transition: color 0.2s;
    }

    .dropdown-column a:hover {
      color: var(--primary);
    }*/


    /* Right Icons 
    .header-icons {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .icon-btn {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--muted-foreground);
      transition: color 0.2s;
      display: none;
    }

    @media (min-width: 1024px) {
      .icon-btn {
        display: block;
      }
    }

    .icon-btn:hover {
      color: var(--foreground);
    }

    .icon-btn svg {
      width: 20px;
      height: 20px;
    }

    .cart-btn {
      position: relative;
      display: block;
    }

    .cart-badge {
      position: absolute;
      top: -8px;
      right: -8px;
      background-color: var(--destructive);
      color: white;
      font-size: 10px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu-btn {
      display: block;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--foreground);
    }

    @media (min-width: 1024px) {
      .mobile-menu-btn {
        display: none;
      }
    }

    .mobile-menu-btn svg {
      width: 24px;
      height: 24px;
    }*/

    /* Mobile Menu */
    .mobile-menu-overlay {
      position: fixed;
      inset: 0;
      background-color: rgba(0, 0, 0, 0.2);
      z-index: 100;
      display: none;
    }

    .mobile-menu-overlay.active {
      display: block;
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 320px;
      max-width: 85vw;
      height: 100%;
      background-color: var(--background);
      z-index: 101;
      overflow-y: auto;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
    }

    .mobile-menu.active {
      transform: translateX(0);
    }

    .mobile-menu-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px;
      border-bottom: 1px solid var(--border);
    }

    .mobile-menu-close {
      background: none;
      border: none;
      cursor: pointer;
      color: var(--foreground);
    }

    .mobile-menu-close svg {
      width: 24px;
      height: 24px;
    }

    .mobile-nav {
      padding: 16px;
    }

    .mobile-nav-link {
      display: block;
      padding: 12px 0;
      font-weight: 500;
      color: var(--foreground);
      text-decoration: none;
      border-bottom: 1px solid var(--border);
    }

    .mobile-nav-link.active {
      color: var(--primary);
    }

    .mobile-accordion {
      border-bottom: 1px solid var(--border);
    }

    .mobile-accordion-trigger {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 12px 0;
      background: none;
      border: none;
      font-size: 16px;
      font-weight: 500;
      font-family: inherit;
      color: var(--foreground);
      cursor: pointer;
    }

    .mobile-accordion-trigger svg {
      width: 16px;
      height: 16px;
      transition: transform 0.2s;
    }

    .mobile-accordion-trigger.active svg {
      transform: rotate(180deg);
    }

    .mobile-accordion-content {
      display: none;
      padding-bottom: 16px;
      padding-left: 16px;
    }

    .mobile-accordion-content.active {
      display: block;
    }

    .mobile-accordion-content h4 {
      font-size: 14px;
      font-weight: 600;
      margin: 16px 0 8px;
      color: var(--foreground);
    }

    .mobile-accordion-content ul {
      list-style: none;
    }

    .mobile-accordion-content li {
      margin-bottom: 8px;
    }

    .mobile-accordion-content a {
      font-size: 14px;
      color: var(--muted-foreground);
      text-decoration: none;
    }

    .mobile-accordion-content a:hover {
      color: var(--primary);
    }

    .mobile-btn-primary {
      display: block;
      width: 100%;
      text-align: center;
      margin-top: 16px;
      padding: 12px;
    }

    /* Hero Section */
    .hero {
      /*background: linear-gradient(180deg, #0f172a 0%, #0a0f1a 100%);*/
      background-color: black;
      padding: 48px 0;
    }

    @media (min-width: 1024px) {
      .hero {
        padding: 80px 0;
      }
    }

    .hero-content {
      display: grid;
      gap: 32px;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
      }
    }

    .hero-text {
      text-align: center;
    }

    @media (min-width: 1024px) {
      .hero-text {
        text-align: left;
      }
    }

    .hero h1 {
      font-size: 1.875rem;
      font-weight: 700;
      color: var(--hero-foreground);
      line-height: 1.2;
      margin-bottom: 24px;
    }

    @media (min-width: 640px) {
      .hero h1 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .hero h1 {
        font-size: 3rem;
      }
    }

    @media (min-width: 1280px) {
      .hero h1 {
        font-size: 3.75rem;
      }
    }

    .hero-badge {
      display: inline-block;
      background-color: var(--primary);
      color: var(--primary-foreground);
      padding: 8px 16px;
      border-radius: 8px;
      margin-top: 8px;
    }

    .hero p {
      color: rgba(248, 250, 252, 0.7);
      font-size: 1rem;
      max-width: 512px;
      margin: 0 auto 32px;
    }

    @media (min-width: 1024px) {
      .hero p {
        font-size: 1.125rem;
        margin: 0 0 32px;
      }
    }

    .hero .btn-primary {
      padding: 12px 32px;
      font-size: 16px;
      font-weight: 600;
      box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.25);
    }

    .hero-image {
      display: flex;
      justify-content: center;
    }

    @media (min-width: 1024px) {
      .hero-image {
        justify-content: flex-end;
      }
    }

    .hero-image img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }

    /* Brands Section 
    .brands {
      background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
      padding: 64px 0;
    }

    @media (min-width: 1024px) {
      .brands {
        padding: 96px 0;
      }
    }

    .brands-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .brands-header h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: white;
      margin-bottom: 12px;
    }

    @media (min-width: 1024px) {
      .brands-header h2 {
        font-size: 2.25rem;
      }
    }

    .brands-header p {
      color: rgba(255, 255, 255, 0.8);
    }

    .brands-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    @media (min-width: 640px) {
      .brands-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .brands-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 24px;
      }
    }

*/
   
    /* News Section 
    .news {
      padding: 64px 0;
      background-color: var(--muted);
    }

    @media (min-width: 1024px) {
      .news {
        padding: 96px 0;
      }
    }

    .news-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .news-header h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--foreground);
      margin-bottom: 12px;
    }

    @media (min-width: 1024px) {
      .news-header h2 {
        font-size: 2.25rem;
      }
    }

    .news-header p {
      color: var(--muted-foreground);
      max-width: 640px;
      margin: 0 auto;
    }

    .news-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    @media (min-width: 768px) {
      .news-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .news-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .news-card {
      background-color: var(--background);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .news-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    .news-card-media {
      position: relative;
      aspect-ratio: 16 / 9;
      overflow: hidden;
    }

    .news-card-media img,
    .news-card-media video {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .news-card-media iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .news-card-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background-color: var(--primary);
      color: var(--primary-foreground);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
    }

    .news-card-badge.product {
      background-color: #10b981;
    }

    .news-card-badge.video {
      background-color: #ef4444;
    }

    .news-card-content {
      padding: 24px;
    }

    .news-card-date {
      font-size: 12px;
      color: var(--muted-foreground);
      margin-bottom: 8px;
    }

    .news-card-title {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--foreground);
      margin-bottom: 12px;
      line-height: 1.4;
    }

    .news-card-description {
      font-size: 14px;
      color: var(--muted-foreground);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .news-card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      font-weight: 600;
      color: var(--primary);
      text-decoration: none;
      transition: gap 0.2s;
    }

    .news-card-link:hover {
      gap: 10px;
    }

    .news-card-link svg {
      width: 16px;
      height: 16px;
    }

    .news-view-all {
      text-align: center;
      margin-top: 48px;
    }

    .btn-outline {
      display: inline-block;
      padding: 12px 32px;
      border: 2px solid var(--primary);
      color: var(--primary);
      font-size: 14px;
      font-weight: 600;
      border-radius: 8px;
      text-decoration: none;
      transition: background-color 0.2s, color 0.2s;
    }

    .btn-outline:hover {
      background-color: var(--primary);
      color: var(--primary-foreground);
    }*/

    /* Footer Styles 
    .footer {
      background: linear-gradient(180deg, #0f172a 0%, #020617 100%);
      color: #f8fafc;
      padding: 64px 0 0;
    }

    .footer-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    @media (min-width: 768px) {
      .footer-content {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .footer-content {
        grid-template-columns: 2fr 1fr 1fr 2fr;
      }
    }

    .footer-brand h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 16px;
      color: #f8fafc;
    }

    .footer-brand p {
      color: #94a3b8;
      font-size: 14px;
      line-height: 1.8;
      margin-bottom: 24px;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
      color: #94a3b8;
      font-size: 14px;
    }

    .footer-contact-item svg {
      width: 20px;
      height: 20px;
      color: var(--primary);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .footer-links h4 {
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #f8fafc;
      margin-bottom: 20px;
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: #94a3b8;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .footer-newsletter h4 {
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #f8fafc;
      margin-bottom: 12px;
    }

    .footer-newsletter p {
      color: #94a3b8;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    @media (min-width: 640px) {
      .newsletter-form {
        flex-direction: row;
      }
    }

    .newsletter-input {
      flex: 1;
      padding: 12px 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      background-color: rgba(255, 255, 255, 0.05);
      color: #f8fafc;
      font-size: 14px;
      outline: none;
      transition: border-color 0.2s, background-color 0.2s;
    }

    .newsletter-input::placeholder {
      color: #64748b;
    }

    .newsletter-input:focus {
      border-color: var(--primary);
      background-color: rgba(255, 255, 255, 0.08);
    }

    .newsletter-btn {
      padding: 12px 24px;
      background-color: var(--primary);
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.2s;
      white-space: nowrap;
    }

    .newsletter-btn:hover {
      background-color: #2563eb;
    }

    .social-links {
      display: flex;
      gap: 12px;
      margin-top: 24px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      border-radius: 8px;
      background-color: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #94a3b8;
      text-decoration: none;
      transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    }

    .social-link:hover {
      background-color: var(--primary);
      color: white;
      border-color: var(--primary);
    }

    .social-link svg {
      width: 20px;
      height: 20px;
    }

    .footer-bottom {
      padding: 24px 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: center;
      text-align: center;
    }

    @media (min-width: 768px) {
      .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
      }
    }

    .footer-copyright {
      color: #64748b;
      font-size: 14px;
    }

    .footer-legal {
      display: flex;
      gap: 24px;
    }

    .footer-legal a {
      color: #64748b;
      text-decoration: none;
      font-size: 14px;
      transition: color 0.2s;
    }

    .footer-legal a:hover {
      color: var(--primary);
    }*/

    /* Animation Styles */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-40px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(40px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(0.9);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes float {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-20px);
      }
    }

    @keyframes pulse {
      0%, 100% {
        opacity: 1;
      }
      50% {
        opacity: 0.7;
      }
    }

    @keyframes shimmer {
      0% {
        background-position: -200% 0;
      }
      100% {
        background-position: 200% 0;
      }
    }

    @keyframes rotate {
      from {
        transform: rotate(0deg);
      }
      to {
        transform: rotate(360deg);
      }
    }

    @keyframes bounceIn {
      0% {
        opacity: 0;
        transform: scale(0.3);
      }
      50% {
        transform: scale(1.05);
      }
      70% {
        transform: scale(0.9);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes slideInFromBottom {
      from {
        opacity: 0;
        transform: translateY(100px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes gradientShift {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }

    /* Scroll Animation Classes */
    .animate-on-scroll {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .animate-on-scroll.animated {
      opacity: 1;
      transform: translateY(0);
    }

    .animate-left {
      opacity: 0;
      transform: translateX(-60px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .animate-left.animated {
      opacity: 1;
      transform: translateX(0);
    }

    .animate-right {
      opacity: 0;
      transform: translateX(60px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .animate-right.animated {
      opacity: 1;
      transform: translateX(0);
    }

    .animate-scale {
      opacity: 0;
      transform: scale(0.85);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .animate-scale.animated {
      opacity: 1;
      transform: scale(1);
    }

    /* Stagger Animation Delays */
    .delay-1 { transition-delay: 0.1s; }
    .delay-2 { transition-delay: 0.2s; }
    .delay-3 { transition-delay: 0.3s; }
    .delay-4 { transition-delay: 0.4s; }
    .delay-5 { transition-delay: 0.5s; }
    .delay-6 { transition-delay: 0.6s; }

    /* Parallax Effect */
    .parallax-container {
      overflow: hidden;
      position: relative;
    }

    .parallax-bg {
      position: absolute;
      top: -50%;
      left: 0;
      right: 0;
      height: 200%;
      background-size: cover;
      background-position: center;
      will-change: transform;
    }

    /* Hero Parallax */
    .hero {
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(ellipse at 30% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                  radial-gradient(ellipse at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
      pointer-events: none;
      animation: pulse 4s ease-in-out infinite;
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .hero-text {
      animation: fadeInLeft 1s ease-out;
    }

    .hero-image {
      animation: fadeInRight 1s ease-out 0.3s both;
    }

    .hero-image img {
      animation: float 6s ease-in-out infinite;
      transition: transform 0.5s ease;
    }

    .hero-image img:hover {
      transform: scale(1.05) translateY(-10px);
    }

    .hero-badge {
      animation: bounceIn 0.8s ease-out 0.5s both;
      position: relative;
      overflow: hidden;
    }

    .hero-badge::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      animation: shimmer 2s infinite;
    }

    /* Enhanced Button Animations 
    .btn-primary {
      position: relative;
      overflow: hidden;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .btn-primary:hover::before {
      width: 300px;
      height: 300px;
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 35px -5px rgba(59, 130, 246, 0.4);
    }

    .btn-primary:active {
      transform: translateY(-1px);
    }*/

    /* Brand Cards Enhanced Animation */
    .brand-card {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .brand-card::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
      transform: rotate(45deg);
      transition: all 0.6s;
      opacity: 0;
    }

    .brand-card:hover::before {
      animation: shimmer 1.5s ease;
      opacity: 1;
    }

    .brand-card:hover {
      transform: translateY(-8px) scale(1.02);
      background-color: rgba(255, 255, 255, 0.25);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    /* Industry Cards Enhanced */
    .industry-card {
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .industry-card:hover {
      transform: translateY(-12px);
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    }

    .industry-card-icon {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .industry-card:hover .industry-card-icon {
      transform: scale(1.2) rotate(10deg);
      background-color: rgba(255, 255, 255, 0.3);
    }

    .industry-card-label h3 {
      transition: all 0.3s ease;
    }

    .industry-card:hover .industry-card-label h3 {
      transform: translateX(10px);
    }

    /* News Cards Enhanced */
    .news-card {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .news-card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 30px 50px -15px rgba(0, 0, 0, 0.2);
    }

    .news-card-media img,
    .news-card-media video {
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .news-card:hover .news-card-media img,
    .news-card:hover .news-card-media video {
      transform: scale(1.1);
    }

    .news-card-link {
      position: relative;
    }

    .news-card-link::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.3s ease;
    }

    .news-card:hover .news-card-link::after {
      width: 100%;
    }

    /* Brands Section Animation */
    .brands {
      background-size: 200% 200%;
      animation: gradientShift 8s ease infinite;
    }

   

    /* Newsletter Input Animation */
    .newsletter-input {
      transition: all 0.3s ease;
    }

    .newsletter-input:focus {
      transform: scale(1.02);
      box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    }

    /* Icon Button Animations */
    .icon-btn {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .icon-btn:hover {
      transform: scale(1.15);
    }

    .cart-badge {
      animation: pulse 2s infinite;
    }

    /* Nav Link Hover Animation */
    .nav-link {
      position: relative;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    /* Dropdown Animation */
    .dropdown-menu {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      transform: translateX(-50%) translateY(10px);
    }

    .nav-dropdown:hover .dropdown-menu {
      transform: translateX(-50%) translateY(0);
    }

    /* Loading Animation for Images */
    .lazy-image {
      opacity: 0;
      transition: opacity 0.5s ease;
    }

    .lazy-image.loaded {
      opacity: 1;
    }

    /* Scroll Progress Indicator 
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), #8b5cf6);
      z-index: 100;
      transition: width 0.1s ease;
    }*/

        /* Scroll Progress */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 0%;
      height: 3px;
      background: var(--gradient-primary);
      z-index: 1000;
      transition: width 0.1s;
    }

    /* Back to Top */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: var(--gradient-primary);
      color: white;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
      z-index: 99;
    }

    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
    }

    .back-to-top:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
    }

    .back-to-top svg {
      width: 24px;
      height: 24px;
    }

    /* Cursor Trail Effect */
    .cursor-glow {
      position: fixed;
      width: 300px;
      height: 300px;
      pointer-events: none;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
      transform: translate(-50%, -50%);
      z-index: 9999;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    body:hover .cursor-glow {
      opacity: 1;
    }

    /* Smooth Scroll */
    html {
      scroll-behavior: smooth;
    }

    /* Text Reveal Animation */
    .text-reveal {
      overflow: hidden;
    }

    .text-reveal span {
      display: inline-block;
      transform: translateY(100%);
      animation: textReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    @keyframes textReveal {
      to {
        transform: translateY(0);
      }
    }

    /* Counter Animation */
    .counter {
      display: inline-block;
    }








/* Featured Products Section */
    .featured-products {
      padding: 64px 0;
      background-color: #020617;
      overflow: hidden;
      position: relative;
      
        opacity: 0;
        transform: translateY(60px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

/* Section smooth appear */
.featured-products.parallax-active {
  opacity: 1;
  transform: translateY(0);
}


    @media (min-width: 1024px) {
      .featured-products {
        padding: 96px 0;
      }
    }

    .featured-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 40px;
    }

    .featured-header-text h2 {
      font-size: 1.5rem;
      font-weight: 700;
      color: white;
      margin-bottom: 8px;
    }

    @media (min-width: 1024px) {
      .featured-header-text h2 {
        font-size: 2.25rem;
      }
    }

    .featured-header-text p {
      color: var(--muted-foreground);
    }

    .text-gradient {
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .featured-nav {
      display: none;
      gap: 8px;
    }

    @media (min-width: 768px) {
      .featured-nav {
        display: flex;
      }
    }

    .featured-nav-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: var(--background);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .featured-nav-btn:hover {
      background: var(--gradient-primary);
      border-color: var(--primary);
    }

    .featured-nav-btn:hover svg {
      color: white;
    }

    .featured-nav-btn svg {
      width: 20px;
      height: 20px;
      color: var(--foreground);
      transition: color 0.3s ease;
    }
    
.featured-carousel-wrapper {
  position: relative;
  width: 100%;
}

.featured-carousel {
  overflow: hidden;
}

.featured-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s ease;
}

.featured-card {
  flex: 0 0 calc(25% - 18px); /* 4 cards per view */
      
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: 5px;
      overflow: hidden; transition: 0.3s;
      position: relative;
      
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.6s ease, transform 0.6s ease;
}

.featured-card.parallax-show {
  opacity: 1;
  transform: translateY(0);
}
    
    /* Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 24px;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-arrow:hover {
  background: rgba(0,0,0,0.85);
}

.carousel-arrow.left {
  left: -24px;
}

.carousel-arrow.right {
  right: -24px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .featured-card {
    flex: 0 0 calc(50% - 12px); /* 2 cards */
  }
}

@media (max-width: 640px) {
  .featured-card {
    flex: 0 0 100%; /* 1 card */
  }
}

    .featured-card:hover {
    transform: translateY(-5px); 
    border-color: var(--primary);
    }

.featured-card-image {
  position: relative;
  height: 200px;
  background: var(--muted);
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-card-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  will-change: transform;
  transition: transform 0.5s ease;
}

    .featured-card:hover .featured-card-image img {
      transform: scale(1.1);
    }

   /* .featured-card:hover .featured-card-image img {
      transform: scale(1.1);
    }*/

    .featured-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      background: var(--gradient-primary);
      color: white;
    }

    .featured-badge.featured {
      background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
    }

    .featured-badge.bestseller {
      background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    }

    .featured-card-content {
      padding: 20px;
    }

    .featured-category {
      display: block;
      font-size: 12px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      /*color: var(--primary);*/
      color: white;
      margin-bottom: 6px;
    }

    .featured-title {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--foreground);
      margin-bottom: 16px;
      transition: color 0.3s ease;
    }

    .featured-card:hover .featured-title {
      color: var(--primary);
    }

    .featured-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .featured-price {
      font-size: 1.25rem;
      font-weight: 700;
      background: var(--gradient-primary);
     /* background: white;*/
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .featured-btn {
      padding: 8px 20px;
      border-radius: 20px;
      background: var(--gradient-primary);
      color: white;
      font-size: 14px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .featured-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    }

    .featured-view-all {
      display: flex;
      justify-content: center;
      margin-top: 48px;
    }

    .btn-outline {
      padding: 12px 32px;
      border: 2px solid var(--primary);
      border-radius: 30px;
      background: transparent;
      color: var(--primary);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .btn-outline:hover {
      background: var(--gradient-primary);
      color: white;
      border-color: transparent;
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
    }
    
    
        /* Pagination 
    .pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-top: 48px;
    }

    .pagination-btn {
      padding: 10px 16px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--background);
      color: var(--foreground);
      font-size: 14px;
      cursor: pointer;
      transition: all 0.2s;
    }

    .pagination-btn:hover:not(:disabled) {
      background: var(--gradient-primary);
      color: white;
      border-color: transparent;
    }

    .pagination-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .pagination-number {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 500;
      border: 1px solid var(--border);
      background: var(--background);
      color: var(--foreground);
      cursor: pointer;
      transition: all 0.2s;
    }

    .pagination-number:hover,
    .pagination-number.active {
      background: var(--gradient-primary);
      color: white;
      border-color: transparent;
    }*/