* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  header {
    background-color: #2874f0;
    padding: 10px 20px;
    color: rgb(192, 20, 20);
  }
  
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
  }
  
  .logo {
    font-size: 24px;
    font-weight: bold;
    color: rgb(203, 177, 30);
  }
  
  .search-box {
    display: flex;
    flex: 1;
    max-width: 500px;
    margin: 0 20px;
  }
  search-box input {
    width: 100%;
    padding: 8px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
  }
  
  .search-box button {
    padding: 8px 12px;
    background-color: #ff9f00;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
  }
  
  
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.slider-container {
  width: 100%;
  overflow: hidden;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(-200%);
  }
  75% {
    transform: translateX(-300%);
  }
  100% {
      transform: translateX(0);
    }
  }
  
  .slider {
    animation: slide 10s infinite;
  }
  p{
    text-align: center;
  }

  .button-group {
  text-align: center;
  margin-top: 10px;
}

.button-group .btn {
  display: inline-block;
  margin: 5px;
}




  .nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
  }
  
  .nav-links li a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
    transition: background 0.3s;
  }
  nav-links li a:hover {
    background-color: rgba(255,255,255,0.2);
    border-radius: 4px;
  }
  
  .right-icons a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    font-size: 14px;
  }
  
  .right-icons i {
    margin-right: 5px;
  }
  
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .search-box {
      margin: 10px 0;
      width: 100%;
    }
  
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin: 10px 0;
      }
    
      .right-icons {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        gap: 15px;
      }
    }
    .category-navbar {
        background-color: #62b643;
        padding: 10px 20px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        overflow-x: auto;
        white-space: nowrap;
      }
      
      .category-navbar ul {
        list-style: none;
        display: flex;
        gap: 15px;
        padding: 0;
        margin: 0;
      }
      
      .category-navbar ul li a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
        padding: 8px 16px;
        background: #f1f1f1;
        border-radius: 20px;
        transition: background 0.3s;
      }
      
      .category-navbar ul li a:hover {
        background-color: #2874f0;
        color: white;
      }

      .products-section {
        padding: 40px 20px;
        background-color: #f9f9f9;
      }
      
      .section-title {
        text-align: center;
        font-size: 28px;
        margin-bottom: 30px;
        color: #333;
      }
      
      .product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
      }
      
      .product-card {
        background: #fff;
        border-radius: 10px;
        padding: 15px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        text-align: center;
        transition: transform 0.2s;
      }
      
      .product-card:hover {
        transform: translateY(-5px);
      }

      .product-card img {
        width: 100%;
        max-height: 180px;
        object-fit: contain;
        margin-bottom: 10px;
      }
      
      .product-card h3 {
        font-size: 18px;
        margin-bottom: 5px;
        color: #444;
      }
      
      .product-card p {
        font-size: 16px;
        color: #2874f0;
        margin-bottom: 10px;
      }
      
      .product-card button {
        background-color: #ff6f00;
        color: white;
        border: none;
        padding: 10px 16px;
        border-radius: 4px;
        cursor: pointer;
        font-weight: bold;
        transition: background 0.3s;
      }
      
      .product-card button:hover {
        background-color: #e65100;
      }
      
      
      featured-section {
        padding: 40px 20px;
        background-color: #bd2d2d;
      }
      
      .featured-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
      }
      
      .featured-card {
        background-color: #f4f4f4;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
      }
      
      .featured-card:hover {
        transform: translateY(-5px);
      }
      
      .featured-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
      }
      
      .featured-card .content {
        padding: 15px;
      }
      
      .featured-card h3 {
        margin-bottom: 8px;
        color: #333;
      }
      
      .price {
        color: #2874f0;
        font-weight: bold;
        margin-bottom: 10px;
      }
      
      .features {
        list-style: none;
        padding-left: 15px;
        margin-bottom: 15px;
      }
      
      .features li {
        font-size: 14px;
        margin-bottom: 5px;
        position: relative;
      }
      
      .features li::before {
        content: "✔";
        color: green;
        position: absolute;
        left: -15px;
      }
      
      .btn {
        display: inline-block;
        background-color: #ff6f00;
        color: rgb(140, 39, 39);
        padding: 8px 14px;
        border-radius: 4px;
        text-decoration: none;
        font-size: 14px;
        transition: background 0.3s ease;
      }
      
      .btn:hover {
        background-color: #e65100;
      }
      
      
      .category-section {
        padding: 40px 20px;
        background: #b3b14f;
      }
      
      .category-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
        margin-top: 20px;
      }
      
      .category-card {
        background: rgb(173, 14, 14);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
        text-align: center;
        transition: transform 0.3s;
      }
      
      .category-card:hover {
        transform: scale(1.02);
      }
      
      .category-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
      }
      .category-card h3 {
        margin: 10px 0;
        color: #333;
      }
      
      .cat-btn {
        background-color: #2874f0;
        color: rgb(219, 28, 28);
        padding: 8px 14px;
        text-decoration: none;
        display: inline-block;
        margin-bottom: 12px;
        border-radius: 4px;
        transition: background 0.3s;
      }
      
      .cat-btn:hover {
        background-color: #1a5cd8;
      }
      
      .product-modal {
        position: fixed;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.7);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 999;
      }
      
      .modal-content {
        background: rgb(26, 13, 125);
        padding: 25px;
        border-radius: 10px;
        max-width: 400px;
        width: 90%;
        position: relative;
      }
      
      .close-btn {
        position: absolute;
        top: 8px; right: 12px;
        font-size: 24px;
        cursor: pointer;
      }
      .modal-content ul {
        list-style: none;
        padding-left: 0;
        margin: 15px 0;
      }
      
      .modal-content ul li::before {
        content: "✔ ";
        color: green;
      }
      
      
      .big-promo-section {
        position: relative;
        width: 100%;
        height: 550px;
        overflow: hidden;
      }
      
      .big-promo {
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        display: none;
        align-items: center;
        justify-content: center;
      }
      
      .big-promo.active {
        display: flex;
      }
      
      .promo-content {
        color: rgb(20, 173, 194);
        background: rgba(0, 0, 0, 0.5);
        padding: 40px;
        border-radius: 10px;
        text-align: center;
        max-width: 600px;
      }
      
      .promo-content h1 {
        font-size: 42px;
        margin-bottom: 10px;
      }
      .promo-content p {
        font-size: 20px;
        margin-bottom: 20px;
      }
      
      .promo-content a {
        background-color: #ff6f00;
        color: rgb(180, 48, 48);
        padding: 12px 24px;
        border-radius: 4px;
        font-weight: bold;
        text-decoration: none;
        font-size: 16px;
      }
      
      .promo-nav {
        position: absolute;
        top: 50%;
        width: 100%;
        display: flex;
        justify-content: space-between;
        transform: translateY(-50%);
        padding: 0 20px;
      }
      
      .promo-prev, .promo-next {
        font-size: 36px;
        color: white;
        background: rgba(0,0,0,0.5);
        padding: 10px;
        border-radius: 50%;
        cursor: pointer;
      }
      
      @media (max-width: 768px) {
        .big-promo-section {
          height: 320px;
        }
        .promo-content h1 {
          font-size: 24px;
        }
      
        .promo-content p {
          font-size: 14px;
        }
      
        .promo-content {
          padding: 20px;
        }
      }
      .recommended-section {
        padding: 40px 20px;
        background-color: #b53737;
      }
      
      .recommended-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
      }
      
      .recommended-card {
        background: #fff;
        border-radius: 10px;
        padding: 15px;
        text-align: center;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transition: transform 0.2s;
      }
      
      .recommended-card:hover {
        transform: translateY(-5px);
      }
      
      .recommended-card img {
        width: 100%;
        max-height: 180px;
        object-fit: contain;
        margin-bottom: 10px;
      }
      
      .recommended-card h3 {
        font-size: 18px;
        margin-bottom: 5px;
        color: #444;
      }
      
      .recommended-card .price {
        font-size: 16px;
        color: #2874f0;
        font-weight: bold;
      }
      
      .recommended-card .reason {
        font-size: 13px;
        color: #777;
        margin: 8px 0 10px;
        font-style: italic;
      }
      
      .recommended-card button {
        background-color: #ff6f00;
        color: rgb(207, 213, 21);
        border: none;
        padding: 8px 16px;
        border-radius: 4px;
        cursor: pointer;
        font-weight: bold;
        transition: background 0.3s;
      }
      .recommended-card button:hover {
        background-color: #e65100;
      }
      
      
      .testimonial-section {
        padding: 50px 20px;
        background: #ad12af;
        text-align: center;
      }
      
      .testimonial-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 30px;
      }
      
      .testimonial-card {
        background: #b70a0a;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
      }
      
      .testimonial-card:hover {
        transform: translateY(-6px);
      }
      
      .testimonial-card img {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #2874f0;
        margin-bottom: 10px;
      }
      .testimonial-card h3 {
        margin: 10px 0 6px;
        color: #333;
        font-size: 18px;
      }
      
      .review-text {
        font-size: 14px;
        color: #666;
        font-style: italic;
        margin-bottom: 12px;
      }
      
      .stars {
        color: #ffc107;
        font-size: 18px;
      }
      
      
      .best-sellers-section {
        padding: 50px 20px;
        background-color: #ba6a0f;
      }
      
      .best-sellers-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
      }
      
      .best-card {
        background-color: #e72525;
        border-radius: 10px;
        text-align: center;
        padding: 20px;
        position: relative;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
      }
      
      .best-card:hover {
        transform: translateY(-5px);
      }
      
      .best-card img {
        width: 100%;
        height: 160px;
        object-fit: contain;
        margin-bottom: 10px;
      }
      
      .badge {
        position: absolute;
        top: 10px;
        left: 10px;
        background: #ff5722;
        color: rgb(202, 43, 43);
        padding: 4px 10px;
        font-size: 12px;
        border-radius: 20px;
        font-weight: bold;
      }
      
      .best-card h3 {
        font-size: 16px;
        color: #333;
        margin: 10px 0 5px;
      }
      
      .best-card .price {
        font-size: 15px;
        color: #2874f0;
        font-weight: bold;
        margin-bottom: 10px;
      }
      
      view-btn {
        display: inline-block;
        padding: 8px 16px;
        background-color: #2874f0;
        color: white;
        text-decoration: none;
        border-radius: 4px;
        font-weight: bold;
        transition: background 0.3s;
      }
      
      .view-btn:hover {
        background-color: #0f5ddf;
      }
      
      .app-download-section {
        background: #f1f7ff;
        padding: 60px 20px;
      }
      
      .app-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: auto;
        gap: 40px;
      }
      
      .app-image img {
        width: 280px;
        height: auto;
      }
      
      .app-content {
        max-width: 500px;
      }
      
      .app-content h2 {
        font-size: 30px;
        margin-bottom: 15px;
        color: #333;
      }
      
      .app-content p {
        font-size: 16px;
        color: #555;
        margin-bottom: 25px;
      }
      
      .download-buttons {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
      }
      
      .store-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        background-color: #2874f0;
        color: rgb(56, 185, 41);
        padding: 10px 16px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        transition: background 0.3s;
      }
      
      .store-btn:hover {
        background-color: #1a5ddc;
      }
      
      .store-btn img {
        width: 22px;
        height: 22px;
      }
      blog-section {
        padding: 60px 20px;
        background-color: #0e82a9;
        text-align: center;
      }
      
      .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
        margin-top: 30px;
      }
      
      .blog-card {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
      }
      
      .blog-card:hover {
        transform: translateY(-5px);
      }
      
      .blog-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
      }
      .blog-content {
        padding: 20px;
        text-align: left;
      }
      
      .blog-content h3 {
        font-size: 18px;
        margin-bottom: 10px;
        color: #333;
      }
      
      .blog-content .meta {
        font-size: 13px;
        color: #777;
        margin-bottom: 10px;
      }
      
      .blog-content p {
        font-size: 14px;
        color: #555;
        margin-bottom: 15px;
      }
      
      .read-more {
        font-weight: bold;
        color: #2874f0;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.3s;
      }
      .read-more:hover {
        color: #0f5ddf;
      }
      
      electric-section {
        background-color: #12a3c4;
        padding: 50px 20px;
      }
      
      .electric-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
      }
      
      .electric-card {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        padding: 20px;
        text-align: center;
        transition: transform 0.3s;
      }
      
      .electric-card:hover {
        transform: translateY(-5px);
      }
      
      .electric-card img {
        width: 100%;
        height: 160px;
        object-fit: contain;
        margin-bottom: 15px;
      }
      
      .electric-card h3 {
        font-size: 17px;
        color: #333;
        margin-bottom: 8px;
      }
      
      .electric-card .price {
        font-size: 16px;
        color: #2874f0;
        font-weight: bold;
        margin-bottom: 15px;
      }
      
      .electric-card .buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
      }
      
      .electric-card button {
        background-color: #ff6f00;
        color: rgb(226, 37, 37);
        border: none;
        padding: 8px 14px;
        border-radius: 5px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s;
      }
      .electric-card button:hover {
        background-color: #e65100;
      }
      
      .electric-card a {
        background-color: #2874f0;
        color: rgb(172, 87, 87);
        padding: 8px 14px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: background 0.3s;
      }
      
      .electric-card a:hover {
        background-color: #0f5ddf;
      }
      .power-deals-section {
        background-color: #9c652d;
        padding: 50px 20px;
      }
      
      .power-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
      }
      
      .power-card {
        background: #cd2929;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        padding: 20px;
        text-align: center;
        transition: transform 0.3s;
      }
      
      .power-card:hover {
        transform: translateY(-5px);
      }
      
      .power-card img {
        width: 100%;
        height: 160px;
        object-fit: contain;
        margin-bottom: 15px;
      }
      .power-card h3 {
        font-size: 16px;
        color: #333;
        margin-bottom: 8px;
      }
      
      .power-card .price {
        font-size: 15px;
        color: #2874f0;
        font-weight: bold;
        margin-bottom: 15px;
      }
      
      .power-card .buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
      }
      
      .power-card button {
        background-color: #ff6f00;
        color: rgb(149, 32, 32);
        border: none;
        padding: 8px 14px;
        border-radius: 5px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s;
      }
      .power-card button:hover {
        background-color: #e65100;
      }
      
      .power-card a {
        background-color: #2874f0;
        color: rgb(233, 91, 91);
        padding: 8px 14px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: background 0.3s;
      }
      
      .power-card a:hover {
        background-color: #0f5ddf;
      }
      
      .fashion-section {
        background-color: #c51b53;
        padding: 50px 20px;
      }
      
      .fashion-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
      }
      
      .fashion-card {
        background: #ffffff;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        padding: 20px;
        text-align: center;
        transition: transform 0.3s;
      }
      
      .fashion-card:hover {
        transform: translateY(-5px);
      }
      
      .fashion-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 6px;
        margin-bottom: 15px;
      }
      .fashion-card h3 {
        font-size: 16px;
        color: #333;
        margin-bottom: 8px;
      }
      
      .fashion-card .price {
        font-size: 15px;
        color: #e91e63;
        font-weight: bold;
        margin-bottom: 15px;
      }
      
      .fashion-card .buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
      }
      
      .fashion-card button {
        background-color: #ff4081;
        color: white;
        border: none;
        padding: 8px 14px;
        border-radius: 5px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s;
      }

      .fashion-card button:hover {
        background-color: #d81b60;
      }
      
      .fashion-card a {
        background-color: #3f51b5;
        color: white;
        padding: 8px 14px;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: background 0.3s;
      }
      
      .fashion-card a:hover {
        background-color: #303f9f;
      }
      .festival-section {
        background: linear-gradient(to right, #fff8e1, #ffecb3);
        padding: 60px 20px;
      }
      
      .festival-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
      }
      
      .festival-card {
        background: #fffdf5;
        border: 2px solid #ffca28;
        border-radius: 12px;
        box-shadow: 0 4px 14px rgba(255, 152, 0, 0.2);
        padding: 20px;
        text-align: center;
        transition: transform 0.3s;
      }
      
      .festival-card:hover {
        transform: translateY(-6px);
      }
      
      .festival-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 15px;
      }
      .festival-card h3 {
        font-size: 17px;
        color: #bf360c;
        margin-bottom: 8px;
      }
      
      .festival-card .price {
        font-size: 16px;
        color: #d84315;
        font-weight: bold;
        margin-bottom: 15px;
      }
      
      .festival-card .buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
      }
      
      .festival-card button {
        background-color: #f57f17;
        color: rgb(215, 206, 25);
        border: none;
        padding: 8px 14px;
        border-radius: 6px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s;
      }
      .festival-card button:hover {
        background-color: #ef6c00;
      }
      
      .festival-card a {
        background-color: #e65100;
        color: rgb(22, 142, 163);
        padding: 8px 14px;
        text-decoration: none;
        border-radius: 6px;
        font-weight: bold;
        transition: background 0.3s;
      }
      
      .festival-card a:hover {
        background-color: #bf360c;
      }
      
      .billion-section {
        background: linear-gradient(to right, #7f0d81, #bbdefb);
        padding: 60px 20px;
        text-align: center;
      }
      
      .billion-banner img {
        max-width: 100%;
        border-radius: 12px;
        margin-bottom: 30px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
      }
      
      .billion-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
      }
      
      .billion-card {
        background: rgb(240, 12, 12);
        border: 2px solid #2196f3;
        border-radius: 12px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        transition: transform 0.3s;
      }
      
      .billion-card:hover {
        transform: translateY(-6px);
      }
      .billion-card img {
        width: 100%;
        height: 170px;
        object-fit: contain;
        margin-bottom: 15px;
      }
      
      .billion-card h3 {
        font-size: 16px;
        color: #0d47a1;
        margin-bottom: 8px;
      }
      
      .billion-card .price {
        font-size: 16px;
        color: #1b5e20;
        font-weight: bold;
        margin-bottom: 15px;
      }
      
      .billion-card .price span {
        font-size: 14px;
        color: #888;
        text-decoration: line-through;
        margin-left: 8px;
      }
      
      .billion-card .buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
      }
      .billion-card button {
        background-color: #ff9800;
        color: rgb(189, 189, 27);
        border: none;
        padding: 8px 14px;
        border-radius: 6px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s;
      }
      
      .billion-card button:hover {
        background-color: #f57c00;
      }
      
      .billion-card a {
        background-color: #0d47a1;
        color: rgb(225, 167, 31);
        padding: 8px 14px;
        text-decoration: none;
        border-radius: 6px;
        font-weight: bold;
        transition: background 0.3s;
      }
      
      .billion-card a:hover {
        background-color: #08306b;
      }
      
      .budget-section {
        background-color: #f4f9ff;
        padding: 60px 20px;
      }
      
      .budget-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
      }
      
      .budget-card {
        background: #aa0dbc;
        border: 2px solid #03a9f4;
        border-radius: 12px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s;
      }
      
      .budget-card:hover {
        transform: translateY(-6px);
      }
      
      .budget-card img {
        width: 100%;
        height: 160px;
        object-fit: contain;
        margin-bottom: 15px;
        border-radius: 8px;
      }
      .budget-card h3 {
        font-size: 16px;
        color: #01579b;
        margin-bottom: 8px;
      }
      
      .budget-card .price {
        font-size: 15px;
        color: #2e7d32;
        font-weight: bold;
        margin-bottom: 15px;
      }
      
      .budget-card .buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
      }
      
      .budget-card button {
        background-color: #0288d1;
        color: rgb(118, 5, 122);
        border: none;
        padding: 8px 14px;
        border-radius: 6px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s;
      }
      
      .budget-card button:hover {
        background-color: #0277bd;
      }
      
      .budget-card a {
        background-color: #1e88e5;
        color: rgb(199, 41, 41);
        padding: 8px 14px;
        text-decoration: none;
        border-radius: 6px;
        font-weight: bold;
        transition: background 0.3s;
      }
      
      .budget-card a:hover {
        background-color: #1565c0;
      }
      
      
      .trending-fashion-section {
        background: #fef6ff;
        padding: 60px 20px;
      }
      
      .trending-flex {
        display: flex;
        flex-direction: column;
        gap: 30px;
      }
      
      .trend-card {
        display: flex;
        flex-direction: row;
        background-color: #b6cc10;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: transform 0.3s;
      }
      
      .trend-card:hover {
        transform: scale(1.02);
      }
      
      .trend-img {
        flex: 1;
        max-width: 200px;
        overflow: hidden;
      }

      .trend-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      
      .trend-content {
        flex: 2;
        padding: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      
      .trend-content h3 {
        font-size: 18px;
        color: #4a148c;
        margin-bottom: 10px;
      }
      
      .trend-content .price {
        font-size: 16px;
        color: #2e7d32;
        font-weight: bold;
        margin-bottom: 12px;
      }
      
      .trend-buttons {
        display: flex;
        gap: 10px;
      }
      

      .trend-buttons button {
        background-color: #ab47bc;
        color: rgb(0, 14, 64);
        padding: 8px 16px;
        border: none;
        border-radius: 6px;
        font-weight: bold;
        cursor: pointer;
      }
      
      .trend-buttons button:hover {
        background-color: #8e24aa;
      }
      
      .trend-buttons a {
        background-color: #4a148c;
        color: white;
        padding: 8px 16px;
        text-decoration: none;
        border-radius: 6px;
        font-weight: bold;
      }
      
      .trend-buttons a:hover {
        background-color: #38006b;
      }
      
      @media screen and (max-width: 768px) {
        .trend-card {
          flex-direction: column;
        }
        .trend-img {
          max-width: 100%;
        }
      }
      
      .wfh-section {
        background: #d3c41a;
        padding: 60px 20px;
      }
      
      .wfh-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 25px;
      }
      
      .wfh-card {
        background: rgb(201, 131, 26);
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
        text-align: center;
      }
      
      .wfh-card:hover {
        transform: translateY(-5px);
      }
      
      .wfh-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 12px;
      }
      
      .wfh-card h3 {
        font-size: 16px;
        color: #1a237e;
        margin-bottom: 8px;
      }
      
      .wfh-card .price {
        font-size: 15px;
        color: #2e7d32;
        font-weight: bold;
        margin-bottom: 12px;
      }
      
      .wfh-card .buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
      }
      
      .wfh-card button {
        background-color: #3949ab;
        color: rgb(238, 19, 19);
        border: none;
        padding: 8px 14px;
        border-radius: 6px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s;
      }
      .wfh-card button:hover {
        background-color: #283593;
      }
      
      .wfh-card a {
        background-color: #00acc1;
        color: rgb(216, 42, 182);
        padding: 8px 14px;
        text-decoration: none;
        border-radius: 6px;
        font-weight: bold;
        transition: background 0.3s;
      }
      
      .wfh-card a:hover {
        background-color: #00838f;
      }
      .smart-home-section {
        background-color: #0e7aa8;
        padding: 60px 20px;
      }
      
      .smart-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
      }
      
      .smart-card {
        background: #d32626;
        border: 2px solid #00bcd4;
        border-radius: 14px;
        padding: 18px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
      }
      
      .smart-card:hover {
        transform: translateY(-6px);
      }
      
      .smart-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
      }
      
      .smart-card h3 {
        font-size: 16px;
        color: #00796b;
        margin-bottom: 6px;
      }
      
      .smart-card .price {
        font-size: 15px;
        font-weight: bold;
        color: #2e7d32;
        margin-bottom: 12px;
      }
      
      .smart-card .buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
      }
      
      .smart-card button {
        background-color: #00acc1;
        color: rgb(242, 169, 13);
        padding: 8px 14px;
        border: none;
        border-radius: 6px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s;
      }
      
      .smart-card button:hover {
        background-color: #00838f;
      }
      
      .smart-card a {
        background-color: #00796b;
        color: rgb(240, 27, 27);
        padding: 8px 14px;
        text-decoration: none;
        border-radius: 6px;
        font-weight: bold;
        transition: background 0.3s;
      }
      
      .smart-card a:hover {
        background-color: #004d40;
      }
      .tools-section {
        background: #c1b42d;
        padding: 60px 20px;
      }
      
      .tools-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 25px;
      }
      
      .tool-card {
        background-color: #21cdc4;
        border: 2px solid #ffeb3b;
        border-radius: 12px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
      }
      
      .tool-card:hover {
        transform: translateY(-6px);
      }
      
      .tool-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 12px;
      }
      .tool-card h3 {
        font-size: 16px;
        color: #212121;
        margin-bottom: 8px;
      }
      
      .tool-card .price {
        font-size: 15px;
        color: #1b5e20;
        font-weight: bold;
        margin-bottom: 12px;
      }
      
      .tool-card .buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
      }
      
      .tool-card button {
        background-color: #fbc02d;
        color: black;
        padding: 8px 14px;
        border: none;
        border-radius: 6px;
        font-weight: bold;
        cursor: pointer;
      }
      

      .tool-card button:hover {
        background-color: #f9a825;
      }
      
      .tool-card a {
        background-color: #424242;
        color: rgb(222, 198, 13);
        padding: 8px 14px;
        text-decoration: none;
        border-radius: 6px;
        font-weight: bold;
      }
      
      .tool-card a:hover {
        background-color: #212121;
      }
      
      .winter-section {
        background-color: #be862c;
        padding: 60px 20px;
      }
      
      .winter-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
      }
      
      .winter-card {
        background: rgb(77, 80, 0);
        border: 2px solid #ff9800;
        border-radius: 14px;
        padding: 18px;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      
      .winter-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 18px rgba(0,0,0,0.12);
      }
      
      .winter-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
      }

      .winter-card h3 {
        font-size: 16px;
        color: #bf360c;
        margin-bottom: 6px;
      }
      
      .winter-card .price {
        font-size: 15px;
        font-weight: bold;
        color: #2e7d32;
        margin-bottom: 12px;
      }
      
      .winter-card .buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
      }
      
      .winter-card button {
        background-color: #ef6c00;
        color: rgb(65, 145, 0);
        padding: 8px 14px;
        border: none;
        border-radius: 6px;
        font-weight: bold;
        cursor: pointer;
      }
      
      .winter-card button:hover {
        background-color: #e65100;
      }
      
      .winter-card a {
        background-color: #b05134;
        color: rgb(234, 70, 70);
        padding: 8px 14px;
        text-decoration: none;
        border-radius: 6px;
        font-weight: bold;
      }
      
      .winter-card a:hover {
        background-color: #3e2723;
      }
      .steals-section {
        background: #fff3e0;
        padding: 60px 20px;
      }
      
      .steals-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 24px;
      }
      
      .steal-card {
        background: #1e0057;
        border: 2px solid #ffa726;
        border-radius: 14px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      
      .steal-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
      }
      
      .steal-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 12px;
      }
      
      .steal-card h3 {
        font-size: 16px;
        color: #e65100;
        margin-bottom: 6px;
      }
      
      .steal-card .price {
        font-size: 15px;
        font-weight: bold;
        color: #2e7d32;
        margin-bottom: 12px;
      }
      
      .steal-card .buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
      }
      
      .steal-card button {
        background-color: #fb8c00;
        color: rgb(100, 0, 96);
        padding: 8px 14px;
        border: none;
        border-radius: 6px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s ease;
      }
      
      .steal-card button:hover {
        background-color: #ef6c00;
      }
      
      .steal-card a {
        background-color: #5d4037;
        color: white;
        padding: 8px 14px;
        text-decoration: none;
        border-radius: 6px;
        font-weight: bold;
        transition: background 0.3s ease;
      }
      
      .steal-card a:hover {
        background-color: #3e2723;
      }
      .recently-viewed-section {
        background-color: #1bd997;
        padding: 60px 20px;
      }
      
      .recent-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 24px;
      }
      
      .recent-card {
        background: rgb(159, 41, 41);
        border: 2px solid #cfd8dc;
        border-radius: 14px;
        padding: 18px;
        text-align: center;
        box-shadow: 0 6px 12px rgba(0,0,0,0.06);
        transition: transform 0.3s ease;
      }
      
      .recent-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.12);
      }
      
      .recent-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 10px;
      }
      
      .recent-card h3 {
        font-size: 15px;
        color: #37474f;
        margin-bottom: 6px;
      }
      
      .recent-card .price {
        font-size: 14px;
        font-weight: bold;
        color: #2e7d32;
        margin-bottom: 12px;
      }
      
      .recent-card .buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
      }
      
      .recent-card button {
        background-color: #00796b;
        color: rgb(211, 154, 31);
        padding: 8px 12px;
        border: none;
        border-radius: 6px;
        font-weight: bold;
        cursor: pointer;
      }
      .recent-card button:hover {
        background-color: #004d40;
      }
      
      .recent-card a {
        background-color: #546e7a;
        color: rgb(241, 210, 33);
        padding: 8px 12px;
        text-decoration: none;
        border-radius: 6px;
        font-weight: bold;
      }
      
      .recent-card a:hover {
        background-color: #263238;
      }
      
      .new-arrivals-section {
        background: #2192a1;
        padding: 60px 20px;
      }
      
      .arrivals-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 25px;
      }
      
      .arrival-card {
        background: rgb(199, 50, 50);
        border: 2px solid #4dd0e1;
        border-radius: 14px;
        padding: 20px;
        text-align: center;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      
      .arrival-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
      }
      
      .arrival-card img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 12px;
      }
      
      .arrival-card h3 {
        font-size: 16px;
        color: #006064;
        margin-bottom: 6px;
      }
      
      .arrival-card .price {
        font-size: 15px;
        color: #2e7d32;
        font-weight: bold;
        margin-bottom: 12px;
      }
      
      .arrival-card .buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
      }
      .arrival-card button {
        background-color: #00acc1;
        color: white;
        padding: 8px 14px;
        border: none;
        border-radius: 6px;
        font-weight: bold;
        cursor: pointer;
      }
      
      .arrival-card button:hover {
        background-color: #00838f;
      }
      
      .arrival-card a {
        background-color: #004d40;
        color: rgb(189, 9, 9);
        padding: 8px 14px;
        text-decoration: none;
        border-radius: 6px;
        font-weight: bold;
      }
      
      .arrival-card a:hover {
        background-color: #00251a;
      }
      .deals-slider-section {
        padding: 50px 20px;
        background-color: #fbbc57;
        overflow-x: hidden;
      }
      
      .deals-slider {
        display: flex;
        overflow-x: auto;
        gap: 18px;
        padding: 10px 0;
        scroll-snap-type: x mandatory;
      }
      
      .deals-slider::-webkit-scrollbar {
        display: none; /* Hide scrollbar */
      }
      
      .deal-card {
        flex: 0 0 220px;
        background: rgb(169, 48, 48);
        border: 2px solid #ffa726;
        border-radius: 14px;
        padding: 16px;
        scroll-snap-align: start;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
        text-align: center;
      }
      
      .deal-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.12);
      }
      
      .deal-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 10px;
      }
      
      .deal-card h3 {
        font-size: 15px;
        color: #bf360c;
        margin-bottom: 6px;
      }
      
      .deal-card .price {
        font-weight: bold;
        font-size: 14px;
        color: #2e7d32;
        margin-bottom: 10px;
      }
      
      .deal-card .buttons {
        display: flex;
        flex-direction: column;
        gap: 6px;
      }
      .deal-card button {
        background-color: #fb8c00;
        color: rgb(212, 219, 34);
        padding: 7px;
        border: none;
        border-radius: 6px;
        font-weight: bold;
        cursor: pointer;
      }
      
      .deal-card button:hover {
        background-color: #e65100;
      }
      
      .deal-card a {
        background-color: #6d4c41;
        color: rgb(158, 33, 158);
        padding: 7px;
        text-decoration: none;
        border-radius: 6px;
        font-weight: bold;
      }
      
      .deal-card a:hover {
        background-color: #3e2723;
      }
      
      
      .brands-section {
        padding: 60px 20px;
        background: #7d0000;
        text-align: center;
      }
      
      .brands-section h2 {
        font-size: 26px;
        color: #111827;
        margin-bottom: 10px;
      }
      
      .brands-section .section-subtitle {
        font-size: 15px;
        color: #6b7280;
        margin-bottom: 30px;
      }
      
      .brands-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 20px;
        justify-items: center;
      }
      
      .brand-card {
        background: rgb(145, 23, 116);
        border-radius: 12px;
        padding: 16px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100px;
        width: 100%;
      }
      
      .brand-card:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      }
      
      .brand-card img {
        max-width: 100px;
        max-height: 50px;
        object-fit: contain;
        filter: grayscale(30%);
      }
.wishlist-section {
  background-color: #2b2b90;
  padding: 60px 20px;
  text-align: center;
}

.wishlist-section h2 {
  font-size: 26px;
  color: #1e293b;
  margin-bottom: 10px;
}

.wishlist-section .section-subtitle {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 30px;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}
.wishlist-card {
  background: rgb(107, 0, 77);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wishlist-card:hover {
  transform: translateY(-5px);
}

.wishlist-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.wishlist-info {
  padding: 16px;
}

.wishlist-info h3 {
  font-size: 16px;
  color: #111827;
  margin-bottom: 6px;
}

.wishlist-info .price {
  font-size: 14px;
  font-weight: bold;
  color: #059669;
  margin-bottom: 14px;
}

.wishlist-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wishlist-buttons button,
.wishlist-buttons a {
  padding: 8px 12px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}

.wishlist-buttons button {
  border: none;
  background-color: #3b82f6;
  color: rgb(207, 198, 20);
}

.wishlist-buttons button:hover {
  background-color: #2563eb;
}
.wishlist-buttons a {
  background-color: #6b7280;
  color: rgb(174, 38, 38);
}

.wishlist-buttons a:hover {
  background-color: #374151;
}

.wishlist-buttons .remove-btn {
  background-color: #ef4444;
  color: rgb(10, 146, 187);
}

.wishlist-buttons .remove-btn:hover {
  background-color: #b91c1c;
}

.view-product {
  display: inline-block;
  margin-top: 10px;
  background-color: #0284c7;
  color: rgb(165, 33, 33);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.view-product:hover {
  background-color: #0369a1;
}

.campaign-banner {
  width: 100%;
  height: 260px;
  background: linear-gradient(to right, #0ea5e9, #3b82f6);
  color: rgb(40, 48, 149);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border-radius: 12px;
  padding: 20px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.campaign-banner.back-to-college {
  background: linear-gradient(to right, #10b981, #22c55e);
}

.campaign-content {
  text-align: center;
  max-width: 700px;
}

.campaign-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: bold;
}

.campaign-content p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #cd1d9b;
}

.campaign-btn {
  padding: 10px 20px;
  background-color: #facc15;
  color: #1e293b;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.campaign-btn:hover {
  background-color: #eab308;
}

.ai-recommend {
  padding: 60px 20px;
  background-color: #e6551b;
  text-align: center;
}

.ai-recommend .section-title {
  font-size: 28px;
  color: #1e293b;
  margin-bottom: 10px;
}

.ai-recommend .section-subtitle {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 30px;
}

.ai-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.ai-card {
  background: rgb(226, 26, 26);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.ai-card:hover {
  transform: translateY(-6px);
}

.ai-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.ai-card h3 {
  font-size: 16px;
  color: #111827;
  margin: 10px 0 6px;
}

.ai-card .price {
  font-size: 15px;
  font-weight: bold;
  color: #10b981;
  margin-bottom: 12px;
}

.ai-actions {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.ai-actions a,
.ai-actions button {
  flex: 1;
  padding: 8px 10px;
  font-size: 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}

.ai-actions a {
  background-color: #0284c7;
  color: white;
}

.ai-actions button {
  background-color: #f59e0b;
  color: rgb(20, 179, 34);
  border: none;
}

.ai-actions a:hover {
  background-color: #0369a1;
}

.ai-actions button:hover {
  background-color: #d97706;
}
.support-strip-centered {
  background-color: #cbb41d;
  padding: 60px 20px;
  text-align: center;
  border-radius: 12px;
}

.support-title {
  font-size: 26px;
  color: #0f172a;
  margin-bottom: 40px;
  font-weight: 600;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.support-card {
  background-color: #240fde;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.support-card:hover {
  transform: translateY(-6px);
}
.support-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}

.support-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 6px;
}

.support-card p {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 10px;
}

.support-card a {
  font-size: 14px;
  color: #0284c7;
  font-weight: 500;
  text-decoration: none;
}


.support-card a:hover {
  color: #0369a1;
  text-decoration: underline;
}
.footer {
  background-color: #0f172a;
  color: white;
  padding: 50px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #facc15;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 14px;
}

.footer-section ul li a:hover {
  color: #38bdf8;
  text-decoration: underline;
}

.footer-section p {
  font-size: 14px;
  margin: 5px 0;
  color: #cbd5e1;
}

.social-icons a img {
  width: 32px;
  margin-right: 10px;
  transition: transform 0.2s ease;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 13px;
  color: #94a3b8;
  border-top: 1px solid #334155;
  margin-top: 30px;
}

/* ✅ Mobile Responsive Fix */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  .container, .section, .tool-section, .products, .row, .grid {
    width: 100% !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 10px !important;
    box-sizing: border-box;
  }

  .tool-card, .product, .box, .card {
    width: 95% !important;
    max-width: 400px;
    margin: 10px auto !important;
    box-sizing: border-box;
  }

  img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: auto;
  }
  h1, h2, h3, p {
    text-align: center !important;
    font-size: 1.2rem !important;
  }

  .btn, button {
    width: 100% !important;
    padding: 10px !important;
    font-size: 1rem !important;
    margin-top: 10px;
  }

  nav, header, footer {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center;
  }

  nav a {
    display: block !important;
    padding: 10px;
    width: 100%;
  }
}

/* 📱 Mobile Responsive Design */
@media screen and (max-width: 768px) {
  header h1, h2, h3 {
    font-size: 20px;
    text-align: center;
  }

  .product-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
  }

  .product-card {
    width: 90%;
    margin-bottom: 20px;
  }

  .buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  footer {
    font-size: 14px;
    padding: 10px;
  }
}

