/* === Forever style single product === */

.fl-single-product {
  max-width: 1170px;
  margin: 55px auto 80px;
  padding: 0 15px 80px;
  background: #ffffff;
}

/* breadcrumb */
.fl-sp-breadcrumb {
  background: #f5f5f5;
  border-radius: 4px;
  padding: 8px 15px;
  font-size: 13px;
  margin-bottom: 24px;
}

/* HERO layout */
.fl-sp-hero {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.fl-sp-hero__left {
  flex: 0 0 40%;
  background: #fcf8f3;
  padding: 20px;
}

.fl-sp-hero__right {
  flex: 0 0 60%;
  position: relative;
}

/* Badges */
.fl-sp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.fl-sp-badge {
  background: #ffc600;
  border-radius: 3px;
  padding: 7px 16px;
  font-size: 11px;
  text-align: center;
}

/* Titre & share */
.fl-sp-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.fl-sp-title {
  font-size: 24px;
  line-height: 1.3;
  text-transform: uppercase;
  margin: 0;
}

.fl-sp-share-btn {
  border: none;
  background: #000;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* REF + short desc */
.fl-sp-ref {
  font-size: 11px;
  margin-bottom: 12px;
}

.fl-sp-short {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* Prix */
.fl-sp-price {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 16px;
}

/* Rating */
.fl-sp-rating {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.fl-sp-rating-text {
  font-size: 13px;
}

.fl-sp-link-underline {
  text-decoration: underline;
}

/* Quantité + panier */
.fl-sp-cart {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.fl-sp-qty-wrapper {
  border: 1px solid rgba(0,0,0,0.23);
  border-radius: 3px;
  padding: 10px 16px;
  position: relative;
}

.fl-sp-qty-label {
  position: absolute;
  background: #fff;
  font-size: 11px;
  top: -11px;
  left: 16px;
  padding: 0 4px;
  color: #333;
}

.fl-sp-qty-input {
  display: flex;
  align-items: center;
}

/* Bloc livraison */
.fl-sp-delivery-box {
  border: 1px solid rgba(112,112,112,0.13);
  border-radius: 3px;
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  background: #fff;
}

.fl-sp-delivery-icon {
  font-size: 24px;
  line-height: 1;
}

.fl-sp-delivery-title {
  font-size: 15px;
  margin: 0 0 8px;
}

/* Bloc conseiller */
.fl-sp-consultant-cta {
  border-radius: 3px;
  border: 1px solid rgba(112,112,112,0.2);
  background: rgba(116,170,80,0.45);
  padding: 40px 24px;
  text-align: center;
  margin-bottom: 40px;
}

.fl-sp-consultant-cta h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.fl-sp-consultant-cta p {
  margin: 0 0 20px;
  font-size: 15px;
}

.fl-sp-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 3px;
  border: 1px solid #583e34;
  background: #fff;
  color: #583e34;
  font-size: 13px;
  text-transform: uppercase;
}

/* Accordéons */
.fl-sp-accordions {
  margin-top: 40px;
  border-top: 1px solid #eee;
}

.fl-sp-accordions details {
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}

.fl-sp-accordions summary {
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fl-sp-accordions summary::after {
  content: "+";
  font-size: 18px;
}

.fl-sp-accordions details[open] summary::after {
  content: "–";
}

.fl-sp-accordion-content {
  padding-top: 12px;
  font-size: 14px;
}

/* Compléter votre routine */
.fl-sp-routine {
  margin-top: 60px;
}

.fl-sp-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.fl-sp-section-header h2 {
  font-size: 18px;
  text-transform: uppercase;
}

/* Articles */
.fl-sp-articles {
  margin-top: 60px;
}

.fl-sp-articles h2 {
  font-size: 21px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.fl-sp-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 24px;
}

.fl-sp-article-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.fl-sp-article-meta {
  margin-top: 12px;
}

.fl-sp-article-tag {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 3px;
  background: #ffc600;
  font-size: 11px;
}

.fl-sp-article-title {
  margin: 10px 0 0;
  font-size: 18px;
}

/* Avis */
.fl-sp-reviews {
  margin-top: 60px;
}

/* Responsive */
@media (max-width: 992px) {
  .fl-sp-hero {
    flex-direction: column;
  }

  .fl-sp-hero__left,
  .fl-sp-hero__right {
    flex: 1 1 auto;
  }
}

@media (max-width: 600px) {
  .fl-single-product {
    padding-bottom: 40px;
  }

  .fl-sp-hero {
    gap: 30px;
  }

  .fl-sp-hero__left {
    padding: 10px;
  }

  .fl-sp-consultant-cta {
    padding: 24px 16px;
  }
}
/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/