/* PRODUCT PAGE STYLES */

/* Product Section */
.product-section {
  padding: 60px 20px;
  background: #fff;
}

.product-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Product Images - Left Side */
.product-images {
  position: sticky;
  top: 100px;
}

.main-image {
  width: 100%;
  max-width: 760px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.product-main-slider .slick-slide {
  outline: none;
}

.product-main-slider .slick-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.image-thumnails {
  margin-top: 20px;
}

.product-thumb-slider .slick-slide {
  padding: 0 4px;
}

.product-thumb-slider img {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 8px;
  width: 100%;
  height: auto;
  display: block;
}

.product-thumb-slider .slick-current img,
.product-thumb-slider .slick-active img {
  border-color: #fcd884;
}

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

.product-details h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
  line-height: 1.2;
}

.product-price {
  margin-bottom: 25px;
}

.product-price h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 28px;
  font-weight: 700;
}

.product-description {
  margin-bottom: 30px;
}

.product-description p {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

/* Shipping Timeline */
.shipping-timeline {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 25px;
  border: 1px solid #fcd884;
  border-left: 4px solid #fcd884;
}

.shipping-timeline h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.shipping-timeline p {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Product Actions */
.product-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.btn-secondary {
  width: 100%;
  max-width: 250px;
  background: transparent;
  color: #1a1a1a;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid #1a1a1a;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-secondary:hover {
  background: #1a1a1a;
  color: #fff;
}

/* Product Features */
.product-features {
  margin-top: 25px;
}

.product-features ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-features li {
  width: 50%;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  color: #555;
  margin-bottom: 12px;
  padding-left: 0;
}

/* Product Info Section */
.product-info-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.product-info-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.info-tabs h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-align: center;
}

.info-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-content h3 {
  font-family: 'Raleway', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 30px;
  margin-bottom: 15px;
}

.info-content h3:first-child {
  margin-top: 0;
}

.info-content p {
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #555;
}

/* Related Products */
.related-products {
  padding: 60px 20px;
  background: #fff;
}

.related-products h2 {
  font-family: 'Raleway', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 40px;
  text-align: center;
}

/* RESPONSIVE STYLES */

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

  .product-images {
    position: relative;
    top: 0;
  }

  .main-image {
    width: 100%;
    height: auto;
    /* aspect-ratio: 1 / 1; */
    max-width: 600px;
    margin: 0 auto;
  }

  .product-details h1 {
    font-size: 2rem;
  }

  .product-price h2 {
    font-size: 1.75rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .product-section {
    padding: 40px 15px;
  }

  .product-container {
    gap: 30px;
  }

  .main-image {
    width: 350px;
    max-width: 100%;
  }

  .product-details {
    padding: 0;
  }

  .product-details h1 {
    font-size: 1.75rem;
    margin-bottom: 15px;
  }

  .product-price h2 {
    font-size: 1.5rem;
  }

  .product-description p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .shipping-timeline {
    padding: 15px;
  }

  .shipping-timeline h3 {
    font-size: 1rem;
  }

  .shipping-timeline p {
    font-size: 0.9rem;
  }

  .btn-secondary {
    width: 100%;
    max-width: unset;
    text-align: center;
    padding: 12px 25px;
    font-size: 0.95rem;
  }

  .product-features li {
    font-size: 0.95rem;
  }

  .product-info-section {
    padding: 40px 15px;
  }

  .info-tabs h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .info-content {
    padding: 25px 20px;
  }

  .info-content h3 {
    font-size: 1.1rem;
    margin-top: 25px;
  }

  .info-content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .related-products {
    padding: 40px 15px;
  }

  .related-products h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
}