*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Poppins, sans-serif;
}

body{
  background: ghostwhite;
  color: #111;
}

/* Shared wrappers */
.heading{
  text-align: center;
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  font-weight: 800;
  margin: 28px 0 14px;
}
.coupen_animi{
    display: none;
}

/* Carousel */
.banner{
  --banner-bg: #00ABEA;
  background: var(--banner-bg);
  width: min(96%, 1360px);
  margin: 24px auto 0;
  min-height: 520px;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 12px;
  position: relative;
  padding: 28px clamp(16px, 3vw, 44px);
  color: #fff;
  overflow: hidden;
}

.left-side h1{
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.watch-container{
  display: flex;
  justify-content: center;
  align-items: center;
}

.watch-image{
  width: min(100%, 520px);
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,.2));
  transition: opacity .3s ease-in-out;
}

.right-side{
  display: flex;
  justify-content: flex-start;
}

.desc_part{
  max-width: 320px;
}

.desc-only{
  font-size: .95rem;
  line-height: 1.45;
}

.shop-now-btn{
  cursor: pointer;
  display: inline-block;
  margin-top: 18px;
  padding: 11px 24px;
  background: #fff;
  color: #00ABEA;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 6px;
  border: 2px solid #fff;
  transition: all .25s ease;
}
.shop-now-btn:hover{
  background: transparent;
  color: #fff;
}

.left_arrow,
.right_arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: #fff;
  color: #00ABEA;
  border: 2px solid #00ABEA;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  user-select: none;
  z-index: 3;
}
.left_arrow{ left: 8px; }
.right_arrow{ right: 8px; }
.left_arrow p,
.right_arrow p{
  font-size: 20px;
  line-height: 1;
  margin: 0;
}

/* Categories */
.cat-grid-wrapper{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(95%, 1350px);
  margin: 18px auto 44px;
}

.cat-item-card{
  position: relative;
  border-radius: 18px;
  min-height: 220px;
  overflow: hidden;
  transition: transform .3s ease;
  cursor: pointer;
}
.cat-item-card:hover{ transform: translateY(-2px); }

.card-content{
  position: relative;
  z-index: 2;
  padding: 20px;
}

.title-top{
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  font-weight: 600;
  display: block;
}

.browse-btn{
  margin-top: 14px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 0;
  background: #fff;
  font-weight: 700;
  font-size: 11px;
  cursor: pointer;
}

.cat-item-card img{
  position: absolute;
  right: 0;
  bottom: 0;
  height: 78%;
  width: auto;
  object-fit: contain;
  z-index: 1;
  transition: transform .35s ease;
}
.cat-item-card:hover img{ transform: scale(1.05); }

.card-earphone{ background: #b9e8ff; color: #111; }
.card-watch{ background: #9edbff; color: #111; }
.card-laptop{ background: #0088cc; color: #fff; }
.card-console{ background: #878fc1; color: #111; }
.card-oculus{ background: #6b61c2; color: #fff; }
.card-speaker{ background: #5450a7; color: #fff; }

/* Brands */
.brands-section{
  width: min(95%, 1320px);
  margin: 0 auto;
  padding: clamp(18px, 4vw, 40px) clamp(8px, 2.5vw, 22px);
  text-align: center;
}
.brands-section h2{
  margin-bottom: 8px;
  font-size: clamp(1.35rem, 4.3vw, 2.05rem);
}
.brands-section p{
  margin-bottom: 18px;
  color: #555;
  font-size: clamp(.9rem, 2.5vw, 1rem);
}
.brands-row{
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.8vw, 18px);
}
.brand-card{
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
}
.brand-card img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* New launches */
.prod-grid-wrapper{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  width: min(95%, 1350px);
  margin: 20px auto 36px;
}

.prod-item-box{
  width: 100%;
  min-height: 330px;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 12px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  transition: box-shadow .25s ease;
}
.prod-item-box:hover{
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}

.image-container{
  position: relative;
  height: 190px;
  overflow: hidden;
}

.image-container img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.hover-img{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .35s ease;
}
.prod-item-box:hover .hover-img{ opacity: 1; }
.prod-item-box:hover .main-img{ opacity: 0; }

.product-info{
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  background: ghostwhite;
  padding: 12px;
}
.product-title{
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price{
  font-size: 15px;
  font-weight: 700;
}

/* Blogs */
.blog-section{
  margin: 12px 0 26px;
}
.container{
  width: min(95%, 1140px);
  margin: 0 auto;
}
.section-header{
  text-align: center;
  margin-bottom: 28px;
}
.main-title{
  font-size: clamp(1.55rem, 4.2vw, 2.35rem);
  font-weight: 800;
}
.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.blog-card{
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,.05);
}
.blog-card-link{
  text-decoration: none;
  color: inherit;
  display: block;
}
.blog-image{
  height: 220px;
  overflow: hidden;
}
.blog-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.blog-card:hover .blog-image img{
  transform: scale(1.08);
}
.blog-content{
  padding: 22px;
}
.blog-title{
  font-size: 19px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-excerpt{
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 14px;
}
.read-more{
  color: #111;
  font-size: 14px;
  font-weight: 700;
}
.blog-card:hover .read-more{
  color: #00ABEA;
}

/* About */
.about-us{
  background: #f9f9f9;
  padding: 46px 20px;
  display: flex;
  justify-content: center;
}
.about-container{
  max-width: 820px;
  text-align: center;
}
.about-title{
  font-size: 25px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}
.about-text{
  font-size: 17px;
  line-height: 1.7;
  color: #555;
}
.link-uline{
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color .25s ease;
}
.link-uline:hover{ color: #6b5cff; }

/* Modal */
.modal-overlay{
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.modal-container{
  display: flex;
  width: min(92vw, 850px);
  min-height: 460px;
  background: #fff;
  position: relative;
  animation: fadeIn .3s ease-out;
}
@keyframes fadeIn{
  from{ opacity: 0; transform: translateY(-16px); }
  to{ opacity: 1; transform: translateY(0); }
}
.close-modal{
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.modal-section{
  flex: 1;
  overflow: hidden;
}
.modal-text{
  background: #fceceb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
}
.psst{ font-size: 16px; letter-spacing: 2px; color: #444; }
.promo-head{ font-size: clamp(2.1rem, 8vw, 4rem); font-weight: 800; color: #242e23; margin: 8px 0; }
.promo-desc{ font-size: 14px; color: #555; line-height: 1.5; margin-bottom: 18px; }
.modal-form input{
  width: 100%;
  padding: 13px;
  border: 1px solid #000;
  margin-bottom: 10px;
}
.continue-btn{
  width: 100%;
  padding: 13px;
  border: 0;
  background: #242e23;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.modal-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-card {
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: #000;
    text-align: center;
}

.testimonial-container {
    display: flex;
    gap: 20px;
    max-width: 1300px;
    width: 94%;
    position: relative;
    justify-self: center;
    padding-right: 60px; /* Space for the arrow */
}

.testimonial-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    flex: 1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 4%);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.02);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.user-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: #333;
}

.stars {
    color: #ffb400;
    font-size: 0.9rem;
    margin-top: 6px;
    letter-spacing: 2px;
}

.initials-badge {
    background-color: #d1e9f6;
    color: #3a5b6d;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
    flex-grow: 1;
}

.product-footer {
    border: 1.5px solid #f0f0f0;
    border-radius: 14px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-img-box {
    background-color: #d1e9f6;
    border-radius: 10px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-img-box img {
    width: 53px;
    height: 55px;
    object-fit: contain;
}

.product-name {
    font-size: 0.88rem;
    font-weight: 500;
    color: #444;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.next-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #34ace0;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(52, 172, 224, 0.4);
    cursor: pointer;
    border: none;
    font-size: 1.4rem;
    z-index: 10;
}

/* Responsive stack for smaller screens */
@media (max-width: 1024px) {
    .testimonial-container {
        flex-wrap: wrap;
        /*justify-content: center;*/
    }
    .testimonial-card {
        min-width: 300px;
        flex: none;
        width: 45%;
    }
}









/* Responsive */
@media (max-width: 1024px){
  .banner{
    grid-template-columns: 1fr;
    text-align: center;
    min-height: unset;
    padding: 34px 16px 24px;
  }
  .left-side, .right-side{
    display: flex;
    justify-content: center;
  }
  .desc_part{
    max-width: 480px;
  }
  .watch-image{
    width: min(88vw, 360px);
    max-height: 260px;
  }
  .left_arrow, .right_arrow{
    top: 22px;
    transform: none;
    width: 34px;
    height: 34px;
  }

  .cat-grid-wrapper{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brands-row{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .blog-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px){
  .cat-grid-wrapper{ grid-template-columns: 1fr; }

  .prod-grid-wrapper{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .prod-item-box{
    min-height: 280px;
    padding: 10px;
  }
  .image-container{ height: 120px; }
  .product-info{ padding: 10px; }
  .product-title{ font-size: 12px; }
  .product-price{ font-size: 13px; }

  .blog-grid{ grid-template-columns: 1fr; }

  .modal-container{
    flex-direction: column;
    min-height: unset;
  }
  .modal-image{
    height: 220px;
    order: -1;
  }
}

@media (max-width: 600px){
  .brands-row{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
}

@media (max-width: 360px){
  .brands-row{
    grid-template-columns: 1fr;
  }
}



/* Brands: horizontal scroll on small screens */
@media (max-width: 600px){
  .brands-section{
    width: 100% !important;
    padding: 18px 10px !important;
    overflow: hidden;
  }

  .brands-row{
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 2px 2px 8px !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    scrollbar-width: none; /* Firefox */
  }

  .brands-row::-webkit-scrollbar{
    display: none; /* Chrome/Safari */
  }

  .brand-card{
    flex: 0 0 150px !important;
    min-width: 150px !important;
    max-width: 150px !important;
    aspect-ratio: 1 / 1 !important;
    scroll-snap-align: start;
    border-radius: 10px !important;
    padding: 8px !important;
    background: #fff !important;
    border: 1px solid #e9e9e9 !important;
  }

  .brand-card img{
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    max-width: 100% !important;
  }
}

/* Extra small phones */
@media (max-width: 360px){
  .brand-card{
    flex: 0 0 135px !important;
    min-width: 135px !important;
    max-width: 135px !important;
  }
}
.product-link{
    text-decoration:none;
    color:inherit;
    display:block;
    transition:0.3s;
}

.product-link:hover{
    transform:translateY(-3px);
}

.product-name:hover{
    color:#0073ff;
}
.review-link {
    color: inherit; 
    text-decoration: none;
}

/* Optional: Gives users visual feedback that it is clickable */
.review-link:hover {
    /*text-decoration: underline;*/
    opacity: 0.8;
}
.product-name{
    color: black;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}





















/* ===== TABLET (≤1024px) ===== */
@media (max-width: 1024px) {
    .title {
        font-size: 1.9rem;
        margin-bottom: 40px;
    }

    .testimonial-container {
        gap: 16px;
        padding-right: 55px;
    }

    .testimonial-card {
        padding: 22px;
        border-radius: 16px;
    }

    .review-text {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }
}

/* ===== SMALL TABLET (≤768px) ===== */
@media (max-width: 768px) {
    .title {
        font-size: 1.6rem;
        margin-bottom: 32px;
    }

    .testimonial-container {
        gap: 14px;
        padding-right: 0;
        padding-bottom: 70px; /* Space for arrow below */
        flex-wrap: wrap;
        justify-content: center;
    }

    .testimonial-card {
        flex: 1 1 calc(50% - 14px);
        min-width: 280px;
        padding: 20px;
    }

    .next-arrow {
        right: 50%;
        top: auto;
        bottom: 0;
        transform: translateX(50%);
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }
}

/* ===== MOBILE (≤480px) ===== */
@media (max-width: 480px) {
    .title {
        font-size: 1.35rem;
        font-weight: 700;
        margin-bottom: 24px;
        padding: 0 16px;
    }

    .testimonial-container {
        /*flex-direction: column;*/
        /*gap: 16px;*/
        /*padding: 0 16px 70px 16px;*/
    }

    .testimonial-card {
        flex: 1 1 100%;
        min-width: 0;
        padding: 18px;
        border-radius: 14px;
    }

    .card-header {
        margin-bottom: 16px;
    }

    .user-name {
        font-size: 1rem;
    }

    .stars {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .initials-badge {
        width: 38px;
        height: 38px;
        font-size: 0.75rem;
    }

    .review-text {
        font-size: 0.875rem;
        line-height: 1.55;
        margin-bottom: 20px;
    }

    .product-footer {
        padding: 10px;
        gap: 12px;
        border-radius: 12px;
    }

    .product-img-box {
        width: 48px;
        height: 48px;
        border-radius: 8px;
    }

    .product-img-box img {
        width: 46px;
        height: 48px;
    }

    .product-name {
        font-size: 0.82rem;
    }

    .next-arrow {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
        bottom: 10px;
    }
}

/* ===== EXTRA SMALL (≤360px) ===== */
@media (max-width: 360px) {
    .title {
        font-size: 1.2rem;
    }

    .testimonial-card {
        padding: 16px;
    }

    .review-text {
        font-size: 0.85rem;
    }
}




