/* Contact Page Styles */
.contact-hero {
  height: 80vh;
}

.contact-section {
  padding: 100px 0;
  background-color: #111;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

/* Contact Form Styles */
.contact-form-container {
  background-color: #000;
  padding: 3rem;
  border-radius: 15px;
  border: 1px solid #333;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: #ffd700;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
  background-color: #222;
  border: 2px solid #333;
  border-radius: 8px;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ffd700;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
}

/* Contact Info Styles */
.contact-info-container {
  padding: 2rem 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  background-color: #ffd700;
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-text h4 {
  color: #ffd700;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-text p {
  color: #ccc;
  line-height: 1.6;
}

.social-section {
  padding-top: 2rem;
  border-top: 1px solid #333;
}

.social-section h4 {
  color: #ffd700;
  margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: #000;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #333;
  margin-bottom: 1rem;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: #ffd700;
}

.faq-question h3 {
  color: #fff;
  font-size: 1.2rem;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #ffd700;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

/* Form Success Message */
.form-success {
  background-color: #2d5a2d;
  color: #90ee90;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: center;
  display: none;
}

.form-error {
  background-color: #5a2d2d;
  color: #ff9090;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: center;
  display: none;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-container {
    padding: 2rem;
  }

  .contact-hero {
    height: 50vh;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  .contact-detail {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: 1.5rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
  }
}

/* Products Page Styles */
.products-hero {
  height: 60vh;
}

.category-nav {
  padding: 2rem 0;
  background-color: #111;
  border-bottom: 1px solid #333;
}

.category-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.category-btn {
  padding: 12px 30px;
  background-color: transparent;
  color: #fff;
  border: 2px solid #333;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.category-btn:hover,
.category-btn.active {
  background-color: #ffd700;
  color: #000;
  border-color: #ffd700;
}

.products-section {
  padding: 100px 0;
  background-color: #000;
}

.category-section {
  margin-bottom: 6rem;
}

.category-section:last-child {
  margin-bottom: 0;
}

.category-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #ffd700;
}

.category-description {
  text-align: center;
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.product-card {
  background-color: #111;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #333;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: #ffd700;
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.product-info {
  padding: 2rem;
}

.product-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #ffd700;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 1rem;
}

.product-description {
  color: #ccc;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.product-btn {
  width: 100%;
  justify-content: center;
}

/* Category filtering */
.category-section.hidden {
  display: none;
}

.product-card.hidden {
  display: none;
}

/* Price range indicator */
.price-range {
  display: inline-block;
  padding: 4px 12px;
  background-color: #333;
  color: #ffd700;
  border-radius: 15px;
  font-size: 0.9rem;
  margin-left: 1rem;
}

/* Responsive Design for Products Page */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .category-buttons {
    flex-direction: column;
    align-items: center;
  }

  .category-btn {
    width: 200px;
  }

  .category-title {
    font-size: 2.5rem;
  }

  .products-hero {
    height: 50vh;
  }
}

@media (max-width: 480px) {
  .product-info {
    padding: 1.5rem;
  }

  .category-title {
    font-size: 2rem;
  }

  .category-description {
    font-size: 1rem;
  }
}

/* Product Detail Page Styles */
.breadcrumb {
  padding: 1rem 0;
  background-color: #111;
  border-bottom: 1px solid #333;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.breadcrumb-nav a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
  color: #ffd700;
}

.breadcrumb-separator {
  color: #666;
}

.breadcrumb-current {
  color: #ffd700;
  font-weight: 500;
}

.product-hero {
  height: 50vh;
  position: relative;
}

.product-category {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 215, 0, 0.2);
  color: #ffd700;
  border: 1px solid #ffd700;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.product-details {
  padding: 100px 0;
  background-color: #111;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

/* Product Images */
.product-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-image {
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #333;
}

.main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.thumbnail-images {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.thumbnail {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: #ffd700;
  transform: scale(1.05);
}

/* Product Information */
.product-header {
  margin-bottom: 2rem;
}

.product-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.stars {
  display: flex;
  gap: 0.2rem;
}

.star {
  color: #333;
  font-size: 1.2rem;
}

.star.filled {
  color: #ffd700;
}

.rating-text {
  color: #ccc;
  font-size: 0.9rem;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.current-price {
  font-size: 2rem;
  font-weight: 600;
  color: #ffd700;
}

.original-price {
  font-size: 1.2rem;
  color: #666;
  text-decoration: line-through;
}

.discount {
  background-color: #ffd700;
  color: #000;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}

.product-description {
  margin-bottom: 2rem;
  line-height: 1.8;
  color: #ccc;
}

/* Fragrance Notes */
.fragrance-notes {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: #000;
  border-radius: 15px;
  border: 1px solid #333;
}

.fragrance-notes h3 {
  color: #ffd700;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.note-category h4 {
  color: #ffd700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
}

.note-category p {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Product Options */
.product-options {
  margin-bottom: 2rem;
}

.size-options,
.quantity-selector {
  margin-bottom: 1.5rem;
}

.size-options h4,
.quantity-selector h4 {
  color: #ffd700;
  margin-bottom: 1rem;
  font-family: "Inter", sans-serif;
  font-size: 1.1rem;
}

.size-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.size-btn {
  padding: 0.8rem 1.5rem;
  background-color: transparent;
  color: #fff;
  border: 2px solid #333;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.size-btn:hover,
.size-btn.active {
  background-color: #ffd700;
  color: #000;
  border-color: #ffd700;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quantity-btn {
  width: 40px;
  height: 40px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.quantity-btn:hover {
  background-color: #ffd700;
  color: #000;
}

#quantity {
  width: 60px;
  padding: 0.5rem;
  text-align: center;
  background-color: #222;
  color: #fff;
  border: 2px solid #333;
  border-radius: 8px;
  font-size: 1rem;
}

/* Purchase Actions */
.purchase-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.add-to-cart,
.buy-now {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-wishlist {
  background-color: transparent;
  color: #ffd700;
  border: 2px solid #ffd700;
  padding: 0.8rem 2rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-wishlist:hover {
  background-color: #ffd700;
  color: #000;
}

/* Product Features */
.product-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: #000;
  border-radius: 10px;
  border: 1px solid #333;
}

.feature-icon {
  font-size: 1.5rem;
}

.feature-text strong {
  color: #ffd700;
  display: block;
  margin-bottom: 0.2rem;
}

.feature-text p {
  color: #ccc;
  font-size: 0.9rem;
  margin: 0;
}

/* Product Tabs */
.product-tabs {
  padding: 100px 0;
  background-color: #000;
}

.tabs-navigation {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #333;
}

.tab-btn {
  padding: 1rem 2rem;
  background-color: transparent;
  color: #ccc;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  color: #ffd700;
  border-bottom-color: #ffd700;
}

.tab-panel {
  display: none;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.tab-panel.active {
  display: block;
}

.tab-panel h3 {
  color: #ffd700;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.tab-panel h4 {
  color: #ffd700;
  margin: 2rem 0 1rem 0;
  font-size: 1.3rem;
  font-family: "Inter", sans-serif;
}

.tab-panel ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.tab-panel li {
  margin-bottom: 0.5rem;
  color: #ccc;
}

/* Ingredients */
.ingredients-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.ingredient-category h4 {
  color: #ffd700;
  margin-bottom: 1rem;
}

.ingredient-category ul {
  list-style: none;
  padding: 0;
}

.ingredient-category li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #333;
  color: #ccc;
}

.certifications {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: #111;
  border-radius: 10px;
  border: 1px solid #333;
}

/* Reviews */
.reviews-summary {
  margin-bottom: 2rem;
  text-align: center;
}

.overall-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.rating-number {
  font-size: 3rem;
  font-weight: 600;
  color: #ffd700;
}

.total-reviews {
  color: #ccc;
  font-size: 0.9rem;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2rem;
}

.review {
  padding: 2rem;
  background-color: #111;
  border-radius: 15px;
  border: 1px solid #333;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.verified {
  color: #4caf50;
  font-size: 0.8rem;
}

.review-text {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.review-date {
  color: #666;
  font-size: 0.9rem;
}

/* Shipping Options */
.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.shipping-option {
  padding: 1.5rem;
  background-color: #111;
  border-radius: 10px;
  border: 1px solid #333;
}

.shipping-option h4 {
  color: #ffd700;
  margin-bottom: 0.5rem;
  font-family: "Inter", sans-serif;
}

.shipping-option p {
  color: #ccc;
  margin: 0;
}

/* Related Products */
.related-products {
  padding: 100px 0;
  background-color: #111;
}

.related-products .products-grid {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive Design for Product Detail */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .notes-grid {
    grid-template-columns: 1fr;
  }

  .product-features {
    grid-template-columns: 1fr;
  }

  .ingredients-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .product-title {
    font-size: 2rem;
  }

  .current-price {
    font-size: 1.5rem;
  }

  .tabs-navigation {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .tab-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .related-products .products-grid {
    grid-template-columns: 1fr;
  }

  .size-buttons {
    flex-direction: column;
  }

  .size-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .breadcrumb-nav {
    font-size: 0.8rem;
    flex-wrap: wrap;
  }

  .product-hero {
    height: 40vh;
  }

  .hero-title {
    font-size: 2rem;
  }

  .thumbnail-images {
    flex-wrap: wrap;
  }

  .purchase-actions {
    position: sticky;
    bottom: 0;
    background-color: #000;
    padding: 1rem;
    border-top: 1px solid #333;
    margin: 0 -1rem;
  }
}
