:root {
  --blue: #2f6fed;
  --blue-dark: #1d4fbf;
  --text: #1a2233;
  --muted: #6b7280;
  --line: #e6e9ef;
  --bg-top: #eef2f7;
  --red: #e53950;
  --radius: 999px;
}

* {
  box-sizing: border-box;
}

html {
    overflow-y: scroll;
    overflow-x: hidden;
}

body {
    overflow-y: hidden;
    min-height: 100vh;
    background-color: #fff;
    color: #333;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
}
.bounce-in-up {
    animation: bounceInUp 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.bounce-in-left {
    animation: bounceInLeft 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {

    .bounce-in-up,
    .bounce-in-left {
        animation: none;
    }
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

body {
  margin: 0;
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
}

main {
  min-height: 50vh;
  padding-bottom: 30px;
}

@media (max-width: 380px) {
  .header-inner {
    padding: 12px;
    row-gap: 10px;
  }

  .logo span {
    font-size: 20px;
  }

  .icon-btn {
    width: 36px;
    height: 36px;
  }

  .badge {
    min-width: 16px;
    height: 16px;
    font-size: 10px;
  }

  .nav-inner {
    padding: 10px 12px;
    gap: 8px;
  }

  .all-cats {
    font-size: 14px;
  }
}

.features {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon-circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 1.5px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.icon-inner {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(20, 20, 30, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-inner svg {
  width: 30px;
  height: 30px;
}

.feature-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.feature-sub {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-mid);
}

@media (max-width: 900px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
}

@media (max-width: 480px) {
  .features {
    grid-template-columns: 1fr;
  }
}

/* Trending Section */
.trend-section {
  background: #ffffff;
  padding: 32px 4%;
}

.trend-section .section {
  max-width: 1320px;
  margin: 0 auto;
}

.trend-section .section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid #ececec;
  padding-bottom: 18px;
  margin-bottom: 24px;
}

.trend-section .section-title-wrap {
  position: relative;
}

.trend-section .section-title {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #1c2430;
  letter-spacing: -0.3px;
}

.trend-section .section-title-wrap::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  background: #2f6fed;
  margin-top: 8px;
}

.trend-section .nav-arrows {
  display: flex;
  gap: 8px;
}

.trend-section .nav-btn {
  width: 32px;
  height: 32px;
  border: 1px solid #ececec;
  background: #fff;
  color: #7a8291;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.trend-section .nav-btn:hover {
  background: #2f6fed;
  border-color: #2f6fed;
  color: #fff;
}

.trend-section .nav-btn svg {
  width: 14px;
  height: 14px;
}

.trend-section .grid-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid #ececec;
  border-left: 1px solid #ececec;
}

.trend-section .product-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border-right: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}

.trend-section .product-img {
  width: clamp(90px, 34%, 150px);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  background: #f4f4f5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trend-section .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.trend-section .product-card:hover .product-img img {
  transform: scale(1.06);
}

.trend-section .product-info {
  flex: 1;
  width: 0;
  min-width: 0;
}

.trend-section .stars {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}

.trend-section .stars svg {
  width: 13px;
  height: 13px;
}

.trend-section .product-name {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1c2430;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.trend-section .price-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 14px;
}

.trend-section .price-now {
  color: red;
  font-weight: 600;
  font-weight: 18px;
}

.trend-section .price-off {
  color: #7a8291;
  font-size: 12px;
}

.trend-section .price-old {
  color: #b7bcc4;
  text-decoration: line-through;
  font-size: 13px;
}

.trend-section .action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.trend-section .action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #ececec;
  background: #fff;
  color: #7a8291;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.trend-section .action-btn a {
  text-decoration: none;
}

.trend-section .action-btn svg {
  stroke: #000;
}

.trend-section .action-btn:hover {
  background: #f5f5f5;
  border-color: #f5f5f5;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .features-section .features {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .trend-section .grid-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

.promo-section {
    padding: 40px;
    background: #fff;
}

.promo-section .grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-section .card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
}

.promo-section .laptops {
    grid-row: 1 / 3;
    background: linear-gradient(120deg, #e9edf1 55%, #dbe1e7 100%);
    display: flex;
    align-items: stretch;
}

.promo-section .laptop-visual {
    width: 52%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.promo-section .laptop-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.promo-section .laptop-visual:hover img {
    transform: scale(1.06);
}

.promo-section .laptop-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(90deg,
            rgba(233, 237, 241, 0) 78%,
            rgba(233, 237, 241, 0.85) 100%);
}

.promo-section .laptop-copy {
    flex: 1;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 48px;
    position: relative;
    z-index: 3;
}

.promo-section .laptop-copy .eyebrow {
    font-size: 26px;
    font-weight: 300;
    color: #1c2430;
}

.promo-section .laptop-copy h1 {
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #1c2430;
    margin: 2px 0 14px;
    letter-spacing: -0.5px;
}

.promo-section .laptop-copy p {
    font-size: 14px;
    font-weight: 300;
    color: #5b6472;
    margin-bottom: 20px;
}

.promo-section .btn {
    display: inline-block;
    align-self: flex-end;
    padding: 10px 26px;
    border: 1.5px solid #2f6fed;
    color: #2f6fed;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.promo-section .btn:hover {
    background: #2f6fed;
    color: #fff;
}

.promo-section .promo {
    display: flex;
    align-items: center;
}

.promo-section .promo-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.promo-section .promo-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.promo-section .promo:hover .promo-bg img {
    transform: scale(1.08);
}

.promo-section .promo-copy {
    position: relative;
    z-index: 3;
    padding: 14px 18px;
    max-width: 58%;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.promo-section .promo-copy .tag {
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #5b6472;
}

.promo-section .promo-copy h2 {
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1c2430;
    margin: 2px 0 8px;
}

.promo-section .promo-copy .sub {
    font-size: 12px;
    font-weight: 300;
    color: #5b6472;
    margin-bottom: 6px;
}

.promo-section .promo-copy a.link {
    font-size: 12px;
    font-weight: 600;
    color: #2f6fed;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.promo-section .promo-copy a.link:hover {
    text-decoration: underline;
}

.promo-section .watch {
    justify-content: flex-end;
    padding-right: 0;
}

.promo-section .watch .promo-copy {
    margin-left: auto;
    text-align: right;
    margin-right: 20px;
}

.promo-section .phone {
    justify-content: flex-start;
}

.promo-section .phone .promo-copy {
    margin-right: auto;
    text-align: left;
    margin-left: 20px;
}

@media (max-width: 800px) {
    .promo-section .grid {
        grid-template-columns: 1fr;
    }

    .promo-section .laptops {
        grid-row: auto;
        flex-direction: column;
    }

    .promo-section .laptop-visual {
        width: 100%;
        height: 220px;
    }

    .promo-section .laptop-visual::after {
        background: linear-gradient(180deg,
                rgba(233, 237, 241, 0) 78%,
                rgba(233, 237, 241, 0.85) 100%);
    }

    .promo-section .laptop-copy {
        text-align: center;
        align-items: center;
        padding: 32px 24px;
    }

    .promo-section .btn {
        align-self: center;
    }

    .promo-section .promo-copy {
        max-width: 85%;
    }
}

@media (max-width: 600px) {
    .trend-section .grid-products {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .features-section .features {
        grid-template-columns: 1fr;
    }
}