/*--------------------------------
            Section 1
--------------------------------*/

.product-sec-1 {
  padding: 80px 0;
  background: #f8f9fb;
}

.product-sec-1-container {
  width: calc(100% - 40px);
  max-width: 1400px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

/*====================================
            LEFT
====================================*/

.product-sec-1-left {
  position: sticky;
  top: 120px;
}

.product-sec-1-image {
  width: 100%;
}

.product-sec-1-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 24px;

  transition: 0.4s;
}

.product-sec-1-image:hover img {
  transform: scale(1.01);
}

/*====================================
            RIGHT
====================================*/

.product-sec-1-right {
  display: flex;
  flex-direction: column;
}

/* Category */

.product-sec-1-category {
  width: fit-content;

  padding: 8px 18px;

  background: rgba(47, 128, 237, 0.08);

  color: #2f80ed;

  font-size: 0.9rem;

  font-weight: 600;

  border-radius: 999px;
}

/* Title */

.product-sec-1-title {
  margin-top: 18px;

  font-size: 2.6rem;

  font-weight: 700;

  line-height: 1.2;

  color: #222;
}

/* Description */

.product-sec-1-description {
  margin-top: 28px;

  color: #555;

  line-height: 1.9;

  font-size: 1rem;
}

/*====================================
            Features
====================================*/

.product-sec-1-features {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 16px 24px;

  margin-top: 35px;
}

.product-sec-1-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-sec-1-feature i {
  color: #22c55e;

  font-size: 1.05rem;

  flex-shrink: 0;
}

.product-sec-1-feature span {
  color: #444;

  line-height: 1.5;

  font-size: 0.96rem;
}

/*====================================
            Buttons
====================================*/

.product-sec-1-buttons {
  display: flex;

  gap: 18px;

  flex-wrap: wrap;

  margin-top: 45px;
}

.product-sec-1-btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 12px;

  min-width: 220px;

  height: 58px;

  padding: 0 34px;

  border-radius: 14px;

  text-decoration: none;

  font-weight: 600;

  font-size: 1rem;

  transition: 0.3s;
}

.product-sec-1-btn i {
  font-size: 1.1rem;
}

/* Primary */

.product-sec-1-btn-primary {
  background: #2f80ed;

  color: #fff;
}

.product-sec-1-btn-primary:hover {
  background: #1d6fd8;

  transform: translateY(-3px);

  box-shadow: 0 14px 30px rgba(47, 128, 237, 0.25);
}

/* WhatsApp */

.product-sec-1-btn-secondary {
  background: #25d366;

  color: #fff;
}

.product-sec-1-btn-secondary:hover {
  background: #1ebc59;

  transform: translateY(-3px);

  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.25);
}

/*====================================
        Responsive
====================================*/

@media (max-width: 1200px) {
  .product-sec-1-container {
    gap: 50px;
  }

  .product-sec-1-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .product-sec-1-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .product-sec-1-left {
    position: static;
  }

  .product-sec-1-image {
    max-width: 700px;
    margin: auto;
  }

  .product-sec-1-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .product-sec-1 {
    padding: 60px 0;
  }

  .product-sec-1-title {
    font-size: 1.8rem;
  }

  .product-sec-1-description {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .product-sec-1-features {
    grid-template-columns: 1fr;
  }

  .product-sec-1-buttons {
    flex-direction: column;
  }

  .product-sec-1-btn {
    width: 100%;
    min-width: auto;
  }
}

@media (max-width: 576px) {
  .product-sec-1-container {
    gap: 35px;
  }

  .product-sec-1-title {
    font-size: 1.5rem;
  }

  .product-sec-1-category {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  .product-sec-1-rating {
    flex-wrap: wrap;
  }

  .product-sec-1-feature span {
    font-size: 0.9rem;
  }

  .product-sec-1-btn {
    height: 54px;
    font-size: 0.95rem;
  }
}

/*====================================
        Image Animation
====================================*/

.product-sec-1-image img {
  animation: productImageFade 0.35s ease;
}

@keyframes productImageFade {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/*====================================
        Button Effects
====================================*/

.product-sec-1-btn {
  position: relative;
  overflow: hidden;
}

.product-sec-1-btn::before {
  content: "";

  position: absolute;

  top: 0;
  left: -130%;

  width: 100%;
  height: 100%;

  background: rgba(255, 255, 255, 0.18);

  transform: skewX(-25deg);

  transition: 0.55s;
}

.product-sec-1-btn:hover::before {
  left: 120%;
}

.product-sec-1-btn i {
  transition: 0.3s;
}

.product-sec-1-btn:hover i {
  transform: scale(1.15);
}

/*====================================
        Focus States
====================================*/

.product-sec-1-btn:focus-visible {
  outline: 3px solid #2f80ed;
  outline-offset: 3px;
}

/*====================================
        Smooth Transitions
====================================*/

.product-sec-1-image,
.product-sec-1-btn,
.product-sec-1-category {
  transition: all 0.3s ease;
}
