* {
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
body {
    margin: 0;
    padding: 0;
    text-decoration:none;
    padding-bottom: 20px;
    background:#fff;
}


 .products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 7px;
  margin-top: 70px;
  margin-bottom: 30px;
}

.product-card {
  margin-top: 15px;  
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  padding: 10px;
}

.product-card p{
 margin: 2px;
 
}




.image-wrapper {
  width: 100%;
  height: 200px; /* SAME height for all products */
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* OR cover */
}

.product-card h3 {
  flex-grow: 1;
}


.intro-slider {
  position: relative;
  height: 100%;
  overflow: hidden;
  display: none; /* hide by default */
}

.slide {
  position: absolute;
  top: 200px;
  left: auto;
  margin:0;
  padding:0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  padding-bottom: 400px;
  color:#4C71FF;
}

.kogo{
    margin-bottom:10px;
}

.intro-slider img {
  position: absolute;
  top: 150px; /* adjust spacing from top */
  left: 50%;
  transform: translateX(-50%);
  z-index: 1; /* ensure it's on top */
  width: 50%; /* adjust logo size */
}

.slide.active {
  opacity: 1;
}

.slide h2 {
  font-size: 2.5rem;
  animation: fadeInUp 1s;
  margin-bottom: 20px; /* reduce space below h2 */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide p {
  font-size: 1.2rem;
  animation: fadeInUp 1.5s;
   margin-top: 0; /* ensure no extra space above p */
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.get-started {
  margin-top: 40px;
  padding: 10px 20px;
  font-size: 1.2rem;
  background: #000;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  animation: fadeInUp 2s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.intro-slider {
  position: relative;
  width: 100%; /* mobile width */
  height: 100%; /* mobile height */
 
  background: #fff;

  
}

.slide {
  /* existing styles... */
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

.intro-slider h2 {
  font-family: 'roboto', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.intro-slider p {
  font-family: 'roboto', sans-serif;
  font-size: 1.2rem;
}

.intro-slider {
  width: 100%;
  height: 100vh; /* use full viewport height */
  margin: auto;
}

.slide {
  
  padding-bottom: 350px;
}

.slide h2 {
  font-size: 2rem; /* adjust font size */
}

.slide p {
  font-size: 1rem;
}

/* Optional: for smaller screens */
@media (max-width: 320px) {
  .slide h2 {
    font-size: 1.5rem;
  }
  .slide p {
    font-size: 0.9rem;
  }
}


.search-container {
    padding: 0;
    margin: 0;
    position: relative;
    background: #4C71FF;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 30px;

}

.search-container input[type="search"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 30px;
    background-color: #f0f0f0;
    margin-top: 30px;
    box-sizing: border-box;
    outline:none;
}



/* Responsive */
@media (max-width: 480px) {
    .search-container input[type="search"] {
        padding: 15px; /* Adjust padding for smaller screens */
    }
}

/* Responsive */
@media (max-width: 768px) {
    .search-container {
        padding: 10px;
    }
}

.search-container .search-icon {
    position: absolute;
    top: 82%;
    right: 20px;
    transform: translateY(-50%);
    background: url('img/search-icon.png') no-repeat center;
    background-size: 20px;
    width: 20px;
    height: 20px;
    opacity: 0.5;
    cursor:pointer;
}

.search-icon-btn {
    position: absolute;
    top: 82%;
    right: 8px;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;

}

.icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 20px;
    text-align: center;
}


.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap:5px;
    text-align: center;
    opacity: 0.9;
    font-size: 15px;
    z-index:2;
    text-decoration:none;
    padding:0px;
}

.footer-wrap{
  background:#000;
  grid-template-columns: repeat(5, 1fr);
  padding:10px 10px 10px 10px;
  width:100%;
  gap:15px;
  margin:0;
  text-align: center;
  color:#fff;
  bottom: 0px;
  position: fixed;
  width: 100%;
  border-top:2px solid #4C71FF;
   text-decoration:none;
   display:grid;
   z-index:2;
}

.icon-box {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f0f0f0;
    border: 1px solid #ddd;
    box-sizing: border-box;
    border-radius: 10px;
    padding: 5px;   
}

.icon-middle  {
   font-size: 20px; 
}

.icon-footer {
    width: 20%;
    display: ;
    justify-content: center;
    align-items: center;
    text-decoration:none;
    padding:5px;
    text-align:center;
}

.icon-box img {
    width: 50px; /* Adjust icon size */
    height: 40px;
    margin-bottom: 10px;
}

.icon-box icon {
    display: grid;
    font-size: 10px;
    text-align: center;
    text-decoration:none;
}

.icon-box p {
    display: grid;
    margin:10px;
    font-size: 10px;
    text-align: center;
}

.icon-footer p {
    display: grid;
    margin:3px;
    font-size: 10px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .icon-box {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .icon-box {
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .icon-footer {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .icon-footer {
        width: 100%;
    }
}

.icon-container p {
    margin: 3px 0 0 0;
    font-size: 13px;font-family: arial;

}

.icon-footer p {
    display: grid;
    margin: 3;
    font-size: 13px;
    text-align: center;
    color:#fff;
}

.bottom-nav {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    bottom: 0;
    left: 0; /* Add this */
    width: 100vw; /* Use vw instead of % */
    background: #000;
    color:#fff;
    padding: 5px;
    border-top: 2px solid #4C71FF;
    text-align: center;
    font-size:14px;
    box-sizing: border-box; /* Add this to include padding in width */
}

.nav-item i {
    width: 15px;
    height: 15px;
   
}

.nav-item a {
    text-decoration: none; /* Remove underline too */
    color: inherit; /* Inherit text color */
}

.nav-item i {
    color: #fff; /* Set icon color explicitly */
}

.nav-item i {
    margin-bottom: 0; /* Remove bottom margin */
}

.nav-item p {
    margin-top: 2px; /* Add a small top margin */
    margin-bottom: 0;
    font-weight: normal;
}

.active{
    color:#4C71FF;
}

.heading{
    font-size:24px;
    font-weight:bolder;
    margin:10px;
    padding:10px;
    text-align:left;
}

.trend-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 5px;
    padding:10px;
    
   
}

.trend-grid img{
    width:100%;
    height:auto;
    border-radius:5px;
    border:1px solid #4C71FF;
    
}


.trend-grid > div {
    display:flex;
    flex-direction:column;
    border-radius: 10px;
    background:#000;
    list-style:none;
    font-size:15px;
    color:#fff;
    font-family:arial,roboto,sans-serif;
    width:100%;
    padding:0;
   
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 5px;
    padding:10px;
}

.cart-button{
    background:#4C71FF;
    color:#fff;
    padding:5px;
    font-size:16px;
    border:none;
    outline:none;
    width:100%;
    bottom:0px;
    cursor: pointer;
}

.details-cart-button{
    background:#333333;
    border-radius: 7px;
    color:#fff;
    padding:5px;
    font-size:20px;
    border:none;
    outline:none;
    width:100%;
    bottom:0px;
    cursor: pointer;
    outline: none;
}

.store-grid img{
    width:100%;
    height:auto;
}

.cart{
    border-radius:50%;
    padding:10px;
    position:fixed;
    bottom:60px;
    right:20px;
    background:#4C71FF;
    width:40px;
    height:38px;
    margin:10px auto;
    color:#fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.alert{
    background:red;
    color:#fff;
    padding:5px auto;
    border-radius:50%;
    position:absolute;
    width:auto;
    font-size:13px;
    width:15px;
    height:13px;
    text-align:center;
    align-items:center;
    bottom:30px;
    right:13px;
    font-weight:bold;
}

.store-grid > div {
    display:flex;
    flex-direction:column;
    border-radius: 10px;
    list-style:none;
    font-size:15px;
    font-family:arial,roboto,sans-serif;
    width:100%;
    padding:5px;
    height:auto;
}

.space{
    margin-bottom:5px;
}
.trending{
    padding:10px;
}

.title{
  color:#000;
  font-family: 'roboto', sans-serif;
  margin: 25px;
  margin: 30px auto;
}

.top-bar{
  background:#4C71FF;
  padding:10px;
  margin:0;
  width:100% fit-content;
  top:0;
  left: 0;
  color:#fff;
  font-family: 'roboto', sans-serif;
}

.info{
  width:90%;
  padding:20px;
  align-items: center;
  background: off-white;
}

.info p{

  color:#999;
  font-size: 13px;
  margin-top: 5px;
  font-weight: bold;

}
.inputs{
  border:1px solid #ccc;
  outline: none;
  padding: 12px;
  background: ;
  color:#000;
  font-family: sans-serif, roboto;
  width: 90%;
  margin-top: 0px;

}

.inputs-select{
  border:1px solid #ccc;
  outline: none;
  padding: 12px;
  background: ;
  color:#000;
  font-family: sans-serif, roboto;
  width: 98%;
  margin-top: 0px;

}
.ads-area{
    margin-bottom:0px;
    background:#000;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;

}

.headers {
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background:#4C71FF;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  color: #fff;
}

.headers-content {
  width: 95%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background:#4C71FF;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  color: #fff;
}

.header-content {
  width: 95%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Icon buttons */
.icon-btn {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  position: relative;
  color: #fff;
}

/* Search Container */
.search-container {
 
}

/* Input */
.search-input {
  width: 100%;
  padding: 10px 40px 10px 15px; /* extra right padding for icon */
  border-radius: 7px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

.search-input:focus {
  border-color: black;
}

/* Search icon inside input */
.search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 16px;
  color: #777;
}

/* Cart badge */
.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: red;
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}

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

   .icon-btn{
    width:40px;height:40px;
    border:none;background:transparent;
    border-radius:10px;
    display:grid;place-items:center;
    cursor:pointer;
  }
  .icon-btn:active{transform:scale(0.98);}
  .search{
    flex:1;
    display:flex;align-items:center;gap:10px;
    background:#f5f6f8;
    border:1px solid var(--line);
    padding:10px 12px;
    border-radius:12px;
  }

   <style>
*{margin:0;padding:0;box-sizing:border-box;font-family:Arial,sans-serif;}
body{background:#f4f4f4;color:#333;}
.container{max-width:1200px;margin:20px auto;padding:15px;background:#fff;border-radius:12px;box-shadow:0 4px 10px rgba(0,0,0,0.08);} 
.product-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px;}

/* ===== FADE SLIDER ===== */
.slider{position:relative;width:100%;aspect-ratio:1/1;overflow:hidden;border-radius:12px;background:#eee;}
.slide{position:absolute;width:100%;height:100%;top:0;left:0;opacity:0;transition:opacity 0.8s ease-in-out;}
.slide img{width:100%;height:100%;object-fit:cover;}
.slide.active{opacity:1;z-index:1;}

.slider-buttons{position:absolute;top:50%;width:100%;display:flex;justify-content:space-between;transform:translateY(-50%);padding:0 10px;z-index:2;}
.slider-buttons button{background:rgba(0,0,0,0.5);color:#fff;border:none;padding:10px 14px;border-radius:50%;cursor:pointer;}

/* Dots */
.dots{text-align:center;margin-top:15px;}
.dot{height:10px;width:10px;margin:0 5px;background:#ccc;border-radius:50%;display:inline-block;cursor:pointer;}
.dot.active{background:#111;}

/* Product Info */
.product-info h1{margin-bottom:10px;font-size:26px;}
.sku{font-weight:bold;margin-bottom:10px;color:#777;font-size:14px;}
.price{font-size:24px;font-weight:bold;margin-bottom:20px;}
.description,.about{margin-bottom:20px;line-height:1.6;font-size:15px;}
.about ul{padding-left:20px;}
.add-to-cart{padding:14px 20px;background:#111;color:#fff;border:none;border-radius:8px;cursor:pointer;width:100%;font-size:16px;transition:0.3s;}
.add-to-cart:hover{background:#333;}

/* Feedback */
.feedback{margin-top:40px;}
.feedback h2{margin-bottom:15px;font-size:20px;}
.review{background:#f9f9f9;padding:15px;border-radius:10px;margin-bottom:10px;font-size:14px;}

/* Similar */
.similar-products{margin-top:40px;}
.similar-products h2{margin-bottom:15px;font-size:20px;}
.similar-scroll{display:flex;gap:15px;overflow-x:auto;padding-bottom:10px;}
.similar-item{min-width:160px;background:#fff;border-radius:12px;box-shadow:0 2px 6px rgba(0,0,0,0.08);padding:10px;text-align:center;}
.similar-img-container{width:100%;height:140px;overflow:hidden;border-radius:10px;}
.similar-img-container img{width:100%;height:100%;object-fit:cover;}
.similar-item p{margin-top:8px;font-size:14px;}

@media(max-width:992px){.product-grid{grid-template-columns:1fr;gap:30px;}}
@media(max-width:600px){.product-info h1{font-size:20px;} .price{font-size:20px;} .similar-item

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

       

        body {
            background-color: #f4f4f4;
            color: #333;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 20px auto;
            padding: 15px;
            background:;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);

        }

        .product-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 70px;
        }

        /* Slider */
        .slider {
            position: relative;
            width: 100%;
            overflow: hidden;
            border-radius: 12px;
        }

        .slides {
            height: 400px;
            display: flex;
            transition: transform 0.4s ease-in-out;
            touch-action: pan-y;
        }

        .slides img {
            width: 100%;
            flex-shrink: 0;
            border-radius: 12px;
        }

        .slider-buttons {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 10px;
        }

        .slider-buttons button {
            background: rgba(0,0,0,0.5);
            color: #fff;
            border: none;
            padding: 12px 16px;
            cursor: pointer;
            border-radius: 50%;
            font-size: 16px;
        }

        /* Product Info */
        .product-info h1 {
            margin-bottom: 10px;
            font-size: 26px;
        }

        .sku {
            font-weight: bold;
            margin-bottom: 15px;
            color: #777;
            font-size: 14px;
        }

        .description, .about {
            margin-bottom: 20px;
            line-height: 1.6;
            font-size: 15px;
        }

        .about ul {
            padding-left: 20px;
        }

        /* Feedback */
        .feedback {
            margin-top: 40px;
        }

        .feedback h2 {
            margin-bottom: 15px;
            font-size: 20px;
        }

        .review {
            background: #f9f9f9;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 10px;
            font-size: 14px;
        }

        /* Similar Products */
        .similar-products {
            margin-top: 40px;
        }

        .similar-products h2 {
            margin-bottom: 15px;
            font-size: 20px;
        }

        .similar-scroll {
            display: flex;
            gap: 15px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding-bottom: 10px;
        }

        .similar-scroll::-webkit-scrollbar {
            height: 6px;
        }

        .similar-item {
            width: 50%;
            flex: 0 0 auto;
            scroll-snap-align: start;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.08);
            padding: 10px;
            text-align: center;
        }

        .similar-item img {
            width: 100%;
            border-radius: 10px;
        }

        .similar-item p {
            font-size: 14px;
            margin-top: 8px;
        }

        /* Tablet */
        @media (max-width: 992px) {
            .product-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .product-info h1 {
                font-size: 22px;
            }
        }

        /* Mobile */
        @media (max-width: 600px) {
            .container {
                padding: 12px;
                margin: 10px;
                border-radius: 10px;
            }

            .product-info h1 {
                font-size: 20px;
            }

            .description, .about {
                font-size: 14px;
            }

            .slider-buttons button {
                padding: 10px 14px;
                font-size: 14px;
            }

            .similar-item {
                min-width: 140px;
            }
        }
