/* Main container */
.shop-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header styles */
.shop-header {
  margin-bottom: 3em;
  text-align: center;
  padding: 2em 0;
  border-bottom: 1px solid #eee;
}

.shop-main-title {
  font-size: 2.5em;
  margin-bottom: 0.3em;
  color: #333;
}

.shop-subtitle {
  font-size: 1.2em;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Section styles */
.shop-featured-products,
.shop-category-section {
  margin-bottom: 0em;
  padding-bottom: 2em;
  border-bottom: 1px solid #f5f5f5;
}

.shop-section-title {
  font-size: 1.8em;
  margin-bottom: 1em;
  color: #333;
  position: relative;
  padding-bottom: 0.5em;
}

.shop-section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #2e99ce;
}

/* Carousel styles have been moved to product-carousel.css */

/* Category specific styles */
.shop-category-header {
  margin-bottom: 1.5em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2em;
}

.shop-category-image {
  flex: 0 0 auto;
  max-width: 300px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.shop-category-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.shop-category-image img:hover {
  transform: scale(1.03);
}

.shop-category-text {
  flex: 1 1 300px;
}

.shop-category-description {
  color: #666;
  margin-bottom: 1em;
  max-width: 800px;
  line-height: 1.6;
}

.shop-category-footer {
  text-align: center;
  margin-top: 1em;
}
/* Product Card styles have been moved to product-card.css */
/* Product inactive bar styles have been moved to product-card.css */
/* Product Image and Carousel */
.shop-product-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

/* Product Carousel */
.shop-product-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.shop-product-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: none;
}

.shop-product-slide.active {
  opacity: 1;
  z-index: 1;
  display: block;
}

/* Product card carousel styles have been moved to product-card.css */

.shop-product-info {
  width: 100%;
}

/* Product features - moved from product card styles */
.shop-product-features {
  margin: 0.5em 0 1em;
  text-align: left;
}

/* Product card styles (features, actions, buttons) have been moved to product-card.css */

.shop-see-all {
  display: inline-block;
  margin-top: 1em;
  color: #2e99ce;
  font-weight: 600;
  text-decoration: underline;
}
.shop-presale-box {
  background: #fff3e0;
  border: 2px solid #e65100;
  color: #e65100;
  padding: 1em;
  border-radius: 8px;
  margin-bottom: 1em;
  font-weight: bold;
  text-align: center;
}

/* Vibrant color scheme with user's preferred colors */
.shop-featured-products {
  background-color: #52c5ff; /* Main accent color - Sky Blue */
  padding: 30px 0 30px;
  margin-top: 0px; /* Pull up to meet the header image */
  color: white;
  width: 100%;
  position: relative;
}

/* More specific selectors instead of global wildcard */
.shop-featured-products h1,
.shop-featured-products h2,
.shop-featured-products h3,
.shop-featured-products h4,
.shop-featured-products h5,
.shop-featured-products h6,
.shop-featured-products p,
.shop-featured-products a:not(.shop-product-price *),
.shop-featured-products div:not(.shop-product-price, .shop-product-price *) {
}

/* Ensure price elements in featured products maintain their specific colors */
.shop-featured-products .shop-product-price .regular-price {
  color: #aaa;
}

.shop-featured-products .shop-product-price .promotional-price {
  color: #ff6b6b;
}

.shop-featured-products .shop-section-title {
  color: white;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.shop-featured-products .shop-section-title:after {
  background: #fc3a87; /* Pink contrast color for accents */
}

/* Force full width on all screens */
.shop-container {
  width: 100vw !important;
  max-width: 100vw !important;
  padding: 0 !important;
  margin: 0 !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  overflow-x: hidden !important;
  box-sizing: border-box !important;
}

/* Category Section Styles */
.rd-category-section {
  margin: 3rem 0;
  width: 100%;
}

.rd-category-section.odd {
  background-color: #f9f9f9;
  padding: 3rem 0;
  margin: 0;
  width: 100%;
}

.rd-category-section.even {
  background-color: white;
  padding: 3rem 0;
  margin: 0;
  width: 100%;
}

/* Featured Products Section */
.rd-category-section.featured {
  background-color: #52c5ff; /* Main accent color - Sky Blue */
  padding: 3rem 0;
  margin: 0;
  width: 100%;
  color: white;
  position: relative;
}

/* Category content containers with proper margins */
.rd-category-header {
  padding: 0 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.rd-products-container {
  padding: 0 50px;
  width: 100%;
  box-sizing: border-box;
}

.rd-category-footer {
  padding: 0 50px;
  width: 100%;
  box-sizing: border-box;
  text-align: right;
}

/* Category Header */
.rd-category-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.rd-shop-category-image-container {
  flex: 0 0 35%;
  padding-right: 2rem;
}

.rd-shop-category-image {
  max-width: 100%;
  height: 220px; /* Increased height for all images */
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.rd-category-content {
  flex: 1;
}

.rd-category-title {
  font-size: 1.8rem;
  margin: 0 0 1rem;
  color: #333;
  position: relative;
  padding-bottom: 0.5rem;
}

.rd-category-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #52c5ff;
}

.rd-category-description {
  color: #666;
  line-height: 1.6;
}

/* Products Container */
.rd-products-container {
  position: relative;
  margin-bottom: 1.5rem;
}

.rd-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 300px));
  gap: 20px;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}
/* Product grid layout */
.rd-product-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0;
  width: 100%;
  /* Create equal height rows using align-items */
  align-items: stretch;
}

/* Featured grid specific styling */
.rd-featured-grid {
  margin-bottom: 40px;
}

/* Ensure equal height cards */
.rd-product-grid .shop-product-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 300px;
  margin: 10px;
}
/* Ensure equal height cards */

.rd-product-flex .shop-product-card {
  height: auto;
  display: flex;
  flex-direction: column;
  width: 300px;
  margin: 10px;
}

/* Make sure the content wrapper takes up remaining space */
.rd-product-grid .shop-product-card-content-wrapper,
.rd-product-flex .shop-product-card-content-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Category Footer */
.rd-category-footer {
  text-align: right;
  margin: 1rem 0;
}

.rd-view-all-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #f0f0f0;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.rd-view-all-btn:hover {
  background-color: #e0e0e0;
  color: #000;
}

/* No Products Message */
.rd-no-products {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-style: italic;
}

/* Responsive Styles for Category Sections */
@media (max-width: 768px) {
  .rd-category-header {
    flex-direction: column;
  }

  .rd-shop-category-image-container {
    flex: 0 0 100%;
    padding-right: 0;
    margin-bottom: 1.5rem;
  }

  .rd-products-carousel {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .rd-category-header,
  .rd-products-container,
  .rd-category-footer {
    padding: 0 20px;
  }

  .rd-product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 30px 0;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .rd-products-carousel {
    grid-template-columns: 1fr;
  }

  .rd-category-footer {
    text-align: center;
  }
}

/* Product Image styles have been moved to product-card.css */

/* Additional product card styles have been moved to product-card.css */

/* Additional product button and badge styles have been moved to product-card.css */

/* Carousel dot navigation styles have been moved to product-carousel.css */

/* Featured products carousel dot styles have been moved to product-carousel.css */

/* New header layout similar to screenshot */
.shop-header-wrapper {
  margin-bottom: 0;
  position: relative;
  overflow: visible;
}

.shop-header {
  padding: 40px 20px 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: none;
  text-align: left;
}

.shop-header-content {
  flex: 1 1 500px;
}

.shop-header-image {
  flex: 0 0 450px;
  max-width: 450px;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  position: relative;
  margin-bottom: 0px; /* Makes the image extend further into the next section */
}

.shop-header-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Removed hover effect */

.shop-main-title {
  font-size: 2.5em;
  margin-bottom: 0.3em;
  color: #333;
}

.shop-subtitle {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
}

.shop-header-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.shop-header-btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: all 0.3s ease;
  text-align: center;
}

.shop-header-btn.primary {
  background: #52c5ff;
  color: white;
  box-shadow: 0 4px 10px rgba(82, 197, 255, 0.3);
}

.shop-header-btn.primary:hover {
  background: #4b9fd9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(82, 197, 255, 0.4);
}

.shop-header-btn.secondary {
  background: white;
  color: #52c5ff;
  border: 2px solid #52c5ff;
}

.shop-header-btn.secondary:hover {
  background: #f0f7ff;
  transform: translateY(-2px);
}

/* Fix for category images */
.shop-category-section .shop-header-wrapper {
  margin-bottom: 20px;
}

.shop-category-section .shop-header-image {
  max-width: 350px;
  height: auto;
  margin: 0 auto 20px;
  border-radius: 12px;
  overflow: hidden;
}

.shop-category-section .shop-header-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.shop-category-text {
  margin-top: 10px;
}

.rd-shop-back-link {
  margin: 10px;
}
/* Fix mobile header image gap */

/* All @-rules consolidated below */

/* Card shine animation */
@keyframes shop-card-shine {
  0% {
    transform: translateX(-60%) rotate(10deg);
    opacity: 0.7;
  }
  60% {
    transform: translateX(60%) rotate(10deg);
    opacity: 1;
  }
  100% {
    transform: translateX(120%) rotate(10deg);
    opacity: 0.7;
  }
}

/* Responsive styles for tablets and small screens */
@media (max-width: 768px) {
  /* Main container responsive styles */
  .shop-container {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }

  .shop-carousel-container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .shop-carousel {
    gap: 1em;
    padding: 0.5em 0.25em 1em;
    width: 100%;
    max-width: 100%;
  }

  /* Maintain grid layout on mobile */
  .rd-product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
    width: 100%;
  }

  .rd-product-grid .shop-product-card {
    width: 100%;
    height: 100%;
    padding: 0.75em;
    margin: 0;
  }

  .shop-product-title {
    font-size: 1.1em;
    min-height: auto;
    margin-bottom: 0.3em;
  }
  .shop-product-actions {
    flex-direction: row;
    justify-content: center;
  }
  .shop-product-btn {
    padding: 8px 16px;
    font-size: 0.9em;
    min-width: 90px;
  }
  .shop-product-description {
    font-size: 0.85em;
    margin: 0.3em 0 0.7em;
  }
  .shop-product-features li {
    font-size: 0.8em;
    margin-bottom: 5px;
  }

  /* Header responsive styles */
  .shop-header-wrapper {
    margin-bottom: 0;
  }

  .shop-header {
    flex-direction: column;
    padding: 20px 20px 0;
    height: auto;
  }

  .shop-header-content {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
    flex: 0 0 auto; /* Override the desktop flex property to fix the gap */
  }

  .shop-header-image {
    max-width: 100%;
    flex: 0 0 auto; /* Remove fixed height constraint */
    height: auto;
    margin-bottom: -20px; /* Reduce gap on mobile */
  }

  .shop-header-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
  }

  .shop-header-buttons {
    flex-direction: column;
    align-items: center;
  }

  .shop-header-btn {
    margin: 5px 0;
    width: 100%;
  }

  /* Category image responsive styles */
  .shop-category-section .shop-header-image {
    max-width: 100%;
  }
}

/* Mobile phone specific styles */
@media (max-width: 480px) {
  .shop-product-card {
    min-width: 85vw;
    max-width: 85vw;
    flex: 0 0 85vw;
    padding: 0.5em;
  }

  .shop-product-title {
    font-size: 1em;
  }
  .shop-product-price {
    font-size: 1.1em;
    margin: 0.3em 0 0.6em;
  }
  .shop-product-btn {
    padding: 6px 12px;
    font-size: 0.85em;
    min-width: 80px;
  }
}

/* Sales Page Section Styles */

/* General section styling */
.content-section {
  margin: 40px 0;
  padding: 30px 0;
  border-top: 1px solid #eee;
}

.section-title {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #333;
}

.section-intro {
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Feature lists styling used across multiple sections */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

/* Check icons for feature lists */
.check-green,
.check-blue {
  display: inline-block;
  margin-right: 10px;
  font-weight: bold;
}

.check-green {
  color: #4caf50;
}

.check-blue {
  color: #2196f3;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child {
  border-bottom: none;
}

.feature-icon {
  margin-right: 15px;
  font-size: 1.2em;
  color: #52c5ff;
  min-width: 25px;
  text-align: center;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.feature-description {
  color: #555;
  line-height: 1.5;
}

/* Uniqueness Section */
.product-unique-section {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 5px;
}

/* What's Inside Section */
.whats-inside-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.whats-inside-item {
  border: 1px solid #eee;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.whats-inside-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.item-image img {
  width: 100%;
  height: auto;
  display: block;
}

.item-content {
  padding: 20px;
}

.item-title {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #333;
}

.item-description {
  color: #555;
  line-height: 1.5;
}

/* Testimonials Section */
.testimonials-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.testimonial-item {
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  transition: all 0.3s ease;
}

.testimonial-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-photo {
  margin-bottom: 15px;
  text-align: center;
}

.testimonial-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-quote {
  font-style: italic;
  margin-bottom: 15px;
  position: relative;
  padding: 0 15px;
}

.testimonial-quote:before,
.testimonial-quote:after {
  content: '"';
  font-size: 1.5em;
  color: #ddd;
}

.testimonial-author {
  margin-top: auto;
  text-align: right;
}

.testimonial-name {
  font-weight: bold;
  color: #333;
}

.testimonial-title {
  color: #777;
  font-size: 0.9em;
}

/* Price & Access Section */
.product-price-access-section {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 5px;
  text-align: center;
}

.price-access-details {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* Bonus & Guarantee Section */
.bonus-items {
  margin-bottom: 30px;
}

.guarantee-box {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background-color: #f0f7ff;
  border-radius: 5px;
  margin-top: 30px;
}

.guarantee-icon {
  font-size: 1.5em;
  margin-right: 15px;
  color: #52c5ff;
}

.guarantee-content {
  flex: 1;
}

/* FAQ Section */
.faq-items {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
}

.faq-question {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #333;
  cursor: pointer;
  position: relative;
  padding-right: 20px;
}

/* CTA Section Styling */
.product-cta-section {
  padding: 40px 0;
  background-color: #f9f9f9;
  margin: 30px 0;
}

.cta-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

@media (max-width: 768px) {
  .cta-content-wrapper {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}

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

@media (max-width: 768px) {
  .cta-content-left {
    min-width: 100%;
  }
}

.cta-content-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 200px;
}

@media (max-width: 768px) {
  .cta-content-right {
    justify-content: center;
    width: 100%;
    min-width: 100%;
  }
}

.cta-headline {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #333;
}

.cta-subheadline {
  font-size: 1.1em;
  line-height: 1.5;
  color: #555;
  margin-bottom: 20px;
}

.cta-button-container {
  text-align: center;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #52c5ff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 115, 170, 0.3);
}

.cta-button:hover {
  background-color: #005d8a;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 115, 170, 0.4);
}

.faq-answer {
  color: #555;
  line-height: 1.5;
}

/* Final CTA Section */
.product-final-cta-section {
  text-align: center;
  background-color: #f0f7ff;
  padding: 40px 30px;
  border-radius: 5px;
  margin: 40px 0;
}

.final-cta-text {
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.final-cta-button .product-buy-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #52c5ff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
}

.final-cta-button .product-buy-btn:hover {
  background-color: #005d8c;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .whats-inside-items,
  .testimonials-list {
    grid-template-columns: 1fr;
  }

  .guarantee-box {
    flex-direction: column;
  }

  .guarantee-icon {
    margin-bottom: 10px;
  }
}
