@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
.montserrat {
  font-family: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* common */
.button1 {
  background-color: #ff6600;
  color: #ffffff;
  padding: 12px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button1:hover {
  background: #ff5500;
  transform: translateY(-2px);
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
}
.logo {
  color: #ff6600;
}
nav {
  display: flex;
  align-items: center;
  gap: 15px;
}
.nav ul {
  display: flex;
  list-style: none;
}
.nav ul li {
  margin: 0 11px;
}
.nav ul li a {
  text-decoration: none;
  color: #070707;
}
/* banner section */
.banner {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0)
    ),
    url("../assets/hero.jpg");
  background-size: cover;
  background-position: center;
  height: 80vh;
  margin-top: 16px;
  position: relative;
}
.banner-content {
  max-width: 1200px;
  margin: 0 auto;
  color: #ffffff;
}

.avatars {
  display: flex;
  align-items: center;
  padding-top: 135px;
}
.customer-span {
  background: #ffffff;
  color: #242a33;
  padding: 4px 8px;
  border-radius: 50px;
  font-weight: 600;
}
.banner-title {
  font-size: 64px;
  margin: 12px 0;
}
.banner-subtitle {
  font-size: 16px;
  margin-bottom: 40px;
  width: 474px;
}

/* product section */
.container {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  overflow: hidden;
}

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

/* Left Side - Product Images */
.product-images {
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-image {
  width: 100%;
  max-width: 550px;
  height: 550px;
  border-radius: 24px;
  border: 1px solid var(--Orange-orange-100, #ffd0b0);
  background: var(--Orange-orange-50, #fff0e6);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-thumbnails {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: #ff6b00;
  transform: scale(1.05);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Side - Product Details */
.product-details {
  padding: 20px 0;
}

.rating-section {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  margin-top: 18px;
}

.stars {
  display: flex;
  gap: 2px;
}

.star {
  width: 18px;
  height: 18px;
  color: #ffc107;
}

h1 {
  font-size: 40px;
  margin-bottom: 10px;
  color: #12151a;
}

.price-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.current-price {
  font-size: 32px;
  font-weight: bold;
  color: #6b2b00;
}

.original-price {
  font-size: 20px;
  color: #12151a;
  text-decoration: line-through;
}

.save-badge {
  background: #ff6b00;
  color: white;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
}

.description {
  margin-bottom: 21px;
}

.description h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #12151a;
}

.description p {
  color: #1d1f2c;
  line-height: 1.6;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.add-to-cart {
  width: 100%;
  padding: 12px;
  background: #ff6b00;
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.add-to-cart:hover {
  background: #ff5500;
  transform: translateY(-2px);
}

.payment-methods {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.info-item {
  border-bottom: 1px solid #ffd0b0;
  padding: 15px 0;
}

.info-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.info-header h4 {
  font-size: 16px;
  color: #4a4c56;
  font-weight: 500;
}

.info-toggle {
  font-size: 18px;
  color: #999;
  transition: transform 0.3s ease;
}

.info-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #666;
  line-height: 1.6;
  padding-top: 0;
}

.info-item.active .info-content {
  max-height: 200px;
  padding-top: 10px;
}

.info-item.active .info-toggle {
  transform: rotate(180deg);
}

/* pain point */
.container2 {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-top: 80px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.section:nth-child(even) {
  flex-direction: row-reverse;
}

.content {
  flex: 1;
  min-width: 300px;
}

.image-container {
  max-width: 100%;
}

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.h1 {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -1px;
  color: #fff;
}

h2 {
  font-size: 1.2em;
  font-weight: 400;
  margin-bottom: 30px;
  opacity: 0.9;
}

.pain-points {
  list-style: none;
  padding-left: 0;
  margin-top: 25px;
}

.pain-points li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
}

.pain-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #ff6600;
  font-size: 1.5em;
  line-height: 0.8;
}

.features {
  list-style: none;
  padding-left: 0;
  margin-top: 25px;
}

.features li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 18px;
  font-size: 1.05em;
}

.features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #d2691e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features li::after {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-weight: bold;
  font-size: 0.8em;
}
