    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: var(--background);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      line-height: 1.5;
    }

    h1, h2, h3, h4 {
      font-family: 'Space Grotesk', sans-serif;
      font-weight: 500;
    }

    /* Previous styles remain, updating colors and adding new styles... */
    .navbar {
      background: var(--primary);
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .check-price-btn {
      background: var(--accent);
      font-weight: 500;
    }

    .check-price-btn:hover {
      background: #e11d48;
    }

    .price {
      color: var(--accent);
    }

    .tab-btn.active {
      border-bottom-color: var(--primary);
      color: var(--primary);
    }

    /* New Footer Styles */
    .footer {
      background: var(--text);
      color: var(--surface);
      padding: 4rem 0 2rem;
      margin-top: 4rem;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 3rem;
    }

    .footer-section h3 {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      color: var(--secondary);
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: var(--surface);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--secondary);
    }

    .footer-bottom {
      text-align: center;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Tab Content Styles */
    .tab-content > div {
      display: none;
    }

    .tab-content > div.active {
      display: block;
      animation: fadeIn 0.5s ease forwards;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Enhanced Card Styles */
    .product-card {
      border: 1px solid var(--border);
      background: var(--surface);
    }

    .card-content {
      padding: 1.5rem;
    }

    .card-price {
      color: var(--accent);
      font-family: 'Space Grotesk', sans-serif;
    }
    

    .navbar {
      background: #2c3e50;
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 1rem;
      color: white;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem;
    }

    .search-container {
      background: white;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      margin: 2rem auto;
    }

    .search-box {
      display: flex;
      gap: 1rem;
    }

    .search-input {
      flex: 1;
      padding: 0.8rem;
      border: 2px solid #e1e1e1;
      border-radius: 8px;
      font-size: 1rem;
      transition: border-color 0.3s ease;
    }

    .check-price-btn {
      background: #e74c3c;
      color: white;
      border: none;
      padding: 0.8rem 2rem;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .product-container {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin: 2rem auto;
      background: white;
      padding: 2rem;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .product-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .gallery {
      position: relative;
    }

    .main-image {
      width: 100%;
      border-radius: 8px;
      margin-bottom: 1rem;
    }

    .thumbnail-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.5rem;
    }

    .thumbnail {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
      border-radius: 4px;
      cursor: pointer;
      transition: opacity 0.3s ease;
    }

    .thumbnail:hover {
      opacity: 0.8;
    }

    .product-info {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .price-section {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .price {
      font-size: 2rem;
      color: #e74c3c;
      font-weight: 600;
    }

    .original-price {
      text-decoration: line-through;
      color: #666;
    }

    .discount-badge {
      background: #e74c3c;
      color: white;
      padding: 0.4rem 0.8rem;
      border-radius: 4px;
      font-size: 0.9rem;
    }

    .tabs {
      margin-top: 2rem;
      border-bottom: 2px solid #e1e1e1;
    }

    .tab-buttons {
      display: flex;
      gap: 1rem;
    }

    .tab-btn {
      padding: 1rem 2rem;
      border: none;
      background: none;
      cursor: pointer;
      border-bottom: 2px solid transparent;
      margin-bottom: -2px;
      transition: all 0.3s ease;
    }

    .tab-btn.active {
      border-bottom-color: #e74c3c;
      color: #e74c3c;
    }

    .tab-content {
      padding: 2rem 0;
    }

    .price-history {
      height: 300px;
      background: #f8f9fa;
      border-radius: 8px;
      padding: 1rem;
      margin: 2rem 0;
    }

    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      margin: 2rem 0;
    }

    .comparison-table th,
    .comparison-table td {
      padding: 1rem;
      text-align: left;
      border-bottom: 1px solid #e1e1e1;
    }

    .comparison-table th {
      background: #f8f9fa;
      font-weight: 500;
    }

    .related-products {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .product-card {
      background: white;
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.3s ease;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .product-card:hover {
      transform: translateY(-5px);
    }

    .product-card img {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
    }

    .card-content {
      padding: 1rem;
    }

    .card-price {
      color: #e74c3c;
      font-weight: 600;
      margin-top: 0.5rem;
    }

    @media (max-width: 768px) {
      .search-box {
        flex-direction: column;
      }
      
      .tab-buttons {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 0.5rem;
      }
      
      .comparison-table {
        overflow-x: auto;
        display: block;
      }
   
    }

    :root {
      /* Modern color palette */
      --primary: #7c3aed;        /* Vibrant purple */
      --primary-light: #9461fb;
      --secondary: #2dd4bf;      /* Mint */
      --accent: #f43f5e;         /* Coral */
      --background: #fafafa;     /* Off-white */
      --surface: #ffffff;
      --text-primary: #18181b;   /* Almost black */
      --text-secondary: #71717a; /* Gray */
      --border: #e4e4e7;
      --gradient-start: #7c3aed;
      --gradient-end: #2dd4bf;

      
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      background: var(--background);
      color: var(--text-primary);
      font-family: 'Plus Jakarta Sans', sans-serif;
      line-height: 1.6;
    }

    h1, h2, h3, h4 {
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      letter-spacing: -0.02em;
    }

    .navbar {
      background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
      padding: 1.25rem 2rem;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .logo h1 {
      font-size: 1.5rem;
      font-weight: 600;
    }

    .search-container {
      background: var(--surface);
      border: 1px solid var(--border);
      backdrop-filter: blur(10px);
    }

    .search-input {
      font-family: 'Plus Jakarta Sans', sans-serif;
      border: 2px solid var(--border);
      font-size: 1rem;
      transition: all 0.3s ease;
    }

    .search-input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    }

    .check-price-btn {
      background: var(--primary);
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      letter-spacing: 0.02em;
      transition: all 0.3s ease;
    }

    .check-price-btn:hover {
      background: var(--primary-light);
      transform: translateY(-1px);
    }

    .product-container {
      border: 1px solid var(--border);
      backdrop-filter: blur(10px);
    }

    .price {
      font-family: 'Outfit', sans-serif;
      color: var(--primary);
      font-weight: 600;
    }

    .discount-badge {
      background: var(--accent);
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 500;
    }

    .tab-btn {
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      color: var(--text-secondary);
      transition: all 0.3s ease;
    }

    .tab-btn.active {
      color: var(--primary);
      border-bottom-color: var(--primary);
    }

    .tab-btn:hover {
      color: var(--primary-light);
    }

    .product-card {
      background: var(--surface);
      border: 1px solid var(--border);
      transition: all 0.3s ease;
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px -8px rgba(124, 58, 237, 0.15);
    }

    .card-content h4 {
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      color: var(--text-primary);
    }

    .card-price {
      color: var(--primary);
      font-family: 'Outfit', sans-serif;
      font-weight: 600;
    }

    .footer {
      background: var(--text-primary);
      color: var(--surface);
    }

    .footer h3 {
      color: var(--secondary);
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      letter-spacing: -0.01em;
    }

    .footer-links a {
      font-family: 'Plus Jakarta Sans', sans-serif;
      transition: all 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--secondary);
      transform: translateX(5px);
    }

    /* Price history chart styling */
    .price-history {
      background: linear-gradient(to bottom right, rgba(124, 58, 237, 0.05), rgba(45, 212, 191, 0.05));
      border: 1px solid var(--border);
    }

    /* Comparison table styling */
    .comparison-table th {
      background: linear-gradient(to right, rgba(124, 58, 237, 0.05), rgba(45, 212, 191, 0.05));
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
    }

    /* Enhanced animations */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .animate-fade-in {
      animation: fadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }    


    @keyframes loader {
      0% { transform: scale(0); }
      50% { transform: scale(1); }
      100% { transform: scale(0); }
  }
  
  .step-enter {
      animation: stepEnter 0.5s ease-out forwards;
  }
  
  @keyframes stepEnter {
      from {
          transform: translateX(20px);
          opacity: 0;
      }
      to {
          transform: translateX(0);
          opacity: 1;
      }
  }
  
  .progress-bar {
      transition: width 0.3s ease-in-out;
  }

  body { font-family: 'Poppins', sans-serif;       
  max-width: 1200px;
  margin: 0 auto !important ; }
  .thumbnail-active { border: 2px solid #DC2626; }
  .price-history-chart { height: 300px; }
  .fade-in { animation: fadeIn 0.3s ease-in; }
  @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
  }
  .footer {
background: var(--text);
color: var(--surface);
padding: 4rem 0 2rem;
margin-top: 4rem;
}

.footer-content {
max-width: 1200px;
margin: 0 auto; 
padding: 0 2rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
}

.footer-section h3 {
font-size: 1.2rem;
margin-bottom: 1.5rem;
color: var(--secondary);
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 0.8rem;
}

.footer-links a {
color: var(--surface);
text-decoration: none;
transition: color 0.3s ease;
}

.footer-links a:hover {
color: var(--secondary);
}

.footer-bottom {
text-align: center;
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}        
  .footer {
background: var(--text-primary);
color: var(--surface);
}

.footer h3 {
color: var(--secondary);
font-family: 'Outfit', sans-serif;
font-weight: 500;
letter-spacing: -0.01em;
}

.footer-links a {
font-family: 'Plus Jakarta Sans', sans-serif;
transition: all 0.3s ease;
}

.footer-links a:hover {
color: var(--secondary);
transform: translateX(5px);
}         


 
.loader-dot {
  animation: loader 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.loader-dot:nth-child(1) { animation-delay: -0.36s; }
.loader-dot:nth-child(2) { animation-delay: -0.24s; }
.loader-dot:nth-child(3) { animation-delay: -0.12s; }
.loader-dot:nth-child(4) { animation-delay: 0; }


/* 




body { font-family: 'Poppins', sans-serif;       
  max-width: 1200px;
  margin: 0 auto !important ; }
  .thumbnail-active { border: 2px solid #DC2626; }
  .price-history-chart { height: 300px; }
  .fade-in { animation: fadeIn 0.3s ease-in; }
  @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
  }
  .footer {
background: var(--text);
color: var(--surface);
padding: 4rem 0 2rem;
margin-top: 4rem;
}

.footer-content {
max-width: 1200px;
margin: 0 auto; 
padding: 0 2rem;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 3rem;
}

.footer-section h3 {
font-size: 1.2rem;
margin-bottom: 1.5rem;
color: var(--secondary);
}

.footer-links {
list-style: none;
}

.footer-links li {
margin-bottom: 0.8rem;
}

.footer-links a {
color: var(--surface);
text-decoration: none;
transition: color 0.3s ease;
}

.footer-links a:hover {
color: var(--secondary);
}

.footer-bottom {
text-align: center;
margin-top: 3rem;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}        
  .footer {
background: var(--text-primary);
color: var(--surface);
}

.footer h3 {
color: var(--secondary);
font-family: 'Outfit', sans-serif;
font-weight: 500;
letter-spacing: -0.01em;
}

.footer-links a {
font-family: 'Plus Jakarta Sans', sans-serif;
transition: all 0.3s ease;
}

.footer-links a:hover {
color: var(--secondary);
transform: translateX(5px);
}        
 */
