/* ============================================
   CSS DÉDIÉ PAGE LUCEMCHOC - OPTIMISÉ
   ============================================ */

/* ===== SECTION HERO ===== */
.choc-hero {
    padding: 100px 60px 40px;
    background: #f5f5f5;
}

.choc-hero-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.choc-hero-left {
    display: flex;
    flex-direction: column;
}

.choc-breadcrumb {
    font-size: 14px;
    font-weight: 400;
    color: #888;
    font-style: italic;
    margin: 0 0 10px 0;
}

.choc-title {
    font-size: 70px;
    font-weight: 400;
    color: #000;
    margin: 0;
    line-height: 1;
}

.choc-title strong {
    font-weight: 700;
}

.choc-avis {
    flex: 0 0 auto;
}

.choc-avis img {
    height: 130px;
    width: auto;
    object-fit: contain;
}

.choc-fdes {
    flex: 0 0 auto;
}

.choc-fdes img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* ===== SECTION BANNER ===== */
.choc-banner {
    background: white;
    padding: 0;
    border-top: 1px solid #e0e0e0;
}

.choc-banner-content {
    display: flex;
    align-items: stretch;
    height: 350px;
    overflow: hidden;
}

.choc-banner-image {
    flex: 0 0 55%;
    overflow: hidden;
    height: 100%;
    position: relative;
}

.choc-banner-image.choc-banner-full {
    flex: 1 1 100%;
}

.choc-banner-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.choc-banner-logos {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.choc-banner-logos img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.choc-banner-logos img:first-child {
    height: 117px; /* 90px * 1.3 */
}

.choc-banner-logos img.glass-avis-logo {
    height: 78px;
}

/* ===== SLIDER GLASS SIMPLE ===== */
.glass-slider {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
}

.glass-slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.glass-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.glass-slide.active {
    opacity: 1;
}

.glass-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-slider-btn:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
}

.glass-slider-prev {
    left: 15px;
}

.glass-slider-next {
    right: 15px;
}

.choc-banner-left {
    flex: 0 0 45%;
    background: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 0 60px 0 0;
    height: 100%;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    gap: 20px;
}

.choc-banner-left:hover {
    background-color: white;
}

.choc-banner-left:hover .choc-banner-title,
.choc-banner-left:hover .choc-banner-btn {
    transform: scale(1.04);
}

.choc-banner-left:hover .choc-banner-hand img {
    transform: scale(1.1);
}

.choc-banner-right {
    flex: 1;
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 60px;
    height: 100%;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.choc-banner-right:hover {
    background-color: #fafafa;
}

.choc-banner-right:hover .choc-banner-title,
.choc-banner-right:hover .choc-banner-btn,
.choc-banner-right:hover .choc-banner-hand img {
    transform: scale(1.08);
}

.choc-banner-text {
    text-align: center;
    flex: 1;
    z-index: 1;
}

.choc-banner-title {
    font-size: 58px;
    font-weight: 300;
    color: #000;
    margin: 0 0 30px 0;
    transition: transform 0.3s ease;
}

.choc-banner-title strong {
    font-weight: 700;
}

.choc-banner-btn {
    background: #666;
    color: white;
    border: none;
    padding: 10px 70px;
    border-radius: 50px;
    font-size: 24px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-transform: lowercase;
}

.choc-banner-hand {
    flex: 0 0 auto;
    height: 100%;
    display: flex;
    align-items: flex-end;
    z-index: 2;
    order: -1;
}

.choc-banner-hand img {
    height: 300px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
    margin-bottom: 0;
}

/* ===== SECTION INFO BANNER ===== */
.choc-info-banner {
    background: white;
    padding: 30px 60px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

.choc-info-line1 {
    font-size: 22px;
    font-weight: 400;
    color: #000;
    letter-spacing: 1px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.choc-info-bold {
    font-weight: 600;
}

.choc-info-line2 {
    font-size: 22px;
    font-weight: 600;
    color: #000;
    letter-spacing: 1px;
    line-height: 1.6;
    padding-left: 0;
}

/* ===== SLIDESHOW STYLE VASQUE ===== */
.choc-slideshow {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(1.5rem, 3vw, 2.5rem) 0;
    background: white;
    overflow: hidden;
    position: relative;
}

.choc-slideshow > .slideshow-btn {
    position: absolute;
    top: calc(50% - 25px);
    transform: translateY(-50%);
    z-index: 10;
}

.choc-slideshow > .slideshow-btn.prev {
    left: 30px;
}

.choc-slideshow > .slideshow-btn.next {
    right: 30px;
}

.slideshow-container {
    width: 100%;
    max-width: 1600px;
    overflow: hidden;
}

.slideshow-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.6s ease;
}

.slide-item {
    flex: 0 0 calc(60% - 0.75rem);
    aspect-ratio: 16/8;
    border-radius: 0;
    overflow: hidden;
    opacity: 0.4;
    transform: scale(0.92);
    transition: all 0.5s ease;
}

.slide-item.active {
    opacity: 1;
    transform: scale(1);
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.slide-item.active img {
    transform: scale(1.08);
}

/* Boutons navigation design */
.slideshow-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.slideshow-btn::before {
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2.5px solid #333;
    border-right: 2.5px solid #333;
    transition: all 0.3s ease;
}

.slideshow-btn.prev::before {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.slideshow-btn.next::before {
    transform: rotate(45deg);
    margin-right: 4px;
}

.slideshow-btn:hover {
    background: #333;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.slideshow-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slideshow-btn:hover::before {
    border-color: white;
}

/* Dots de navigation */
.slideshow-dots {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 25px;
}

.slideshow-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.slideshow-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.slideshow-dot:hover {
    background: rgba(0, 0, 0, 0.35);
    transform: scale(1.15);
}

.slideshow-dot.active {
    background: #333;
    width: 32px;
    border-radius: 6px;
}

.slideshow-dot.active::after {
    transform: translate(-50%, -50%) scale(0);
}

/* ===== SECTION CRÉATION ===== */
.choc-creation-section {
    background: white;
    padding: 80px 0;
}

.choc-creation-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.choc-creation-image {
    width: 100%;
    height: 100%;
}

.choc-creation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.choc-creation-text {
    padding: 20px 0;
}

.choc-creation-text h2 {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.choc-creation-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #666;
    margin: 0 0 30px 0;
}

.choc-creation-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 20px 0;
}

.choc-creation-body p:last-child {
    margin-bottom: 0;
}

.choc-creation-body strong {
    font-weight: 600;
    color: #000;
}

.choc-creation-quote {
    font-style: italic;
    color: #555;
    margin-top: 30px !important;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

/* ===== SECTION LOOK INTEMPOREL ===== */
.choc-look-section {
    background: white;
    padding: 80px 0;
}

.choc-look-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
    align-items: start;
}

.choc-look-text {
    padding: 20px 0;
}

.choc-look-text h2 {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin: 0 0 10px 0;
    margin-left: -60px;
    line-height: 1.2;
}

.choc-look-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #666;
    margin: 0 0 30px 0;
    margin-left: -60px;
}

.choc-look-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 20px 0;
}

.choc-look-body p:last-child {
    margin-bottom: 0;
}

.choc-look-body strong {
    font-weight: 600;
    color: #000;
}

.choc-look-images {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 20px;
    height: 100%;
}

/* Variante pour une seule image (LucemStone) */
.choc-look-images.single-image {
    grid-template-columns: 1fr;
    max-width: 100%;
}

.choc-look-images.single-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
}

.choc-look-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== SECTION DÉTAIL ===== */
.choc-detail-section {
    background: white;
    padding: 80px 0;
}

.choc-detail-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 100px;
    align-items: start;
}

.choc-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Variante pour une seule image plus petite */
.choc-detail-image.small-image {
    max-width: 90%;
    margin: 0;
    padding-top: 40px;
}

.choc-detail-text {
    padding: 20px 0;
}

.choc-detail-text h2 {
    font-size: 36px;
    font-weight: 600;
    color: #000;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.choc-detail-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #666;
    margin: 0 0 30px 0;
}

.choc-detail-body p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin: 0 0 10px 0;
}

.choc-detail-body p:last-child {
    margin-bottom: 20px;
}

.choc-detail-body strong {
    font-weight: 600;
    color: #000;
}

.choc-detail-btn {
    display: inline-block;
    text-decoration: none;
    background: #333;
    color: white;
    border: none;
    padding: 16px 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.choc-detail-btn:hover {
    background: #000;
    transform: translateY(-2px);
}

/* ===== SECTION FAQ ===== */
.choc-faq-section {
    background: white;
    padding: 80px 0;
}

.choc-faq-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.choc-faq-item {
    background: transparent;
    border-bottom: 1px solid #000;
    overflow: hidden;
    transition: all 0.3s ease;
}

.choc-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background: transparent;
    border: none;
    font-size: 18px;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.choc-faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.choc-faq-item.active .choc-faq-icon {
    transform: rotate(45deg);
}

.choc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    padding: 0 40px;
}

.choc-faq-item.active .choc-faq-answer {
    /* max-height set dynamically by JS */
    padding: 0 40px 30px 40px;
}

.choc-faq-answer p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0 0 10px 0;
}

/* Listes à puces dans les FAQ */
.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-list li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.faq-list li::before {
    content: "▷";
    position: absolute;
    left: 0;
    color: #999;
}

/* Catégories FAQ */
.faq-category {
    margin-bottom: 30px;
}

.faq-category h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Sous-questions FAQ */
.faq-sub-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.faq-sub-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.faq-sub-question {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    font-style: italic;
    text-decoration: underline;
    margin-bottom: 10px !important;
}

.faq-sub-item ul {
    list-style: disc;
    padding-left: 20px;
    margin: 8px 0;
}

.faq-sub-item ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    padding: 2px 0;
}

/* ===== SECTION CAROUSEL ===== */
.choc-carousel {
    background: #f5f5f5;
    padding: 80px 60px;
}

.choc-carousel-content {
    display: flex;
    gap: 0;
    align-items: center;
}

.choc-carousel-left {
    flex: 0 0 52%;
    padding-right: 40px;
}

.choc-carousel-images {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

/* Variante pour un seul élément dans le carousel */
.choc-carousel-images.single-carousel {
    max-width: 60%;
    margin: 0 auto 30px auto;
}

.choc-image-wrapper {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    position: relative;
}

.choc-image-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.choc-carousel-btn {
    background: white;
    border: none;
    color: #333;
    font-size: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.choc-carousel-btn.prev::before {
    content: '←';
    display: block;
}

.choc-carousel-btn.next::before {
    content: '→';
    display: block;
}

.choc-carousel-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.choc-image-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.choc-image-box img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.choc-slide-label {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin: 0;
}

.choc-image-container .choc-view-btn {
    width: 90%;
    max-width: 200px;
    background: #666;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.choc-image-container .choc-view-btn:hover {
    background: #555;
}

.choc-carousel-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.choc-carousel-right {
    flex: 1;
    padding-left: 40px;
}

.choc-carousel-right {
    flex: 1;
    padding-left: 40px;
}

.choc-description {
    margin-bottom: 60px;
    padding-left: 20px;
}

.choc-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0 0 8px 0;
}

.choc-description p:last-child {
    margin-bottom: 0;
}

.choc-description strong {
    font-weight: 600;
}

.choc-stats {
    display: flex;
    gap: 60px;
    justify-content: flex-start;
    padding-left: 20px;
}

.choc-stat-item {
    text-align: center;
}

.choc-stat-number {
    font-size: 80px;
    font-weight: 700;
    color: #000;
    line-height: 1;
    margin-bottom: 10px;
}

.choc-stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    line-height: 1.4;
}

/* ===== RESPONSIVE TABLETTE (1024px) ===== */
@media (max-width: 1024px) {
    /* Hero */
    .choc-hero {
        padding: 100px 40px 60px;
    }
    
    .choc-title {
        font-size: 60px;
    }
    
    .choc-avis img {
        height: 80px;
    }
    
    /* Banner */
    .choc-banner-content {
        flex-direction: column;
        height: auto;
    }
    
    .choc-banner-image {
        flex: 0 0 auto;
        height: 300px;
    }
    
    .choc-banner-right {
        padding: 60px 40px;
        align-items: center;
    }
    
    .choc-banner-hand {
        position: static;
        margin-top: 30px;
    }
    
    .choc-banner-hand img {
        height: 250px;
    }
    
    /* Info banner */
    .choc-info-banner {
        padding: 20px 40px;
    }
    
    /* Creation */
    .choc-creation-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px;
        display: flex !important;
        flex-direction: column-reverse !important;
    }
    
    .choc-creation-image {
        max-height: 500px;
    }
    
    /* Look */
    .choc-look-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px;
    }
    
    .choc-look-images {
        max-height: 500px;
    }
    
    /* Detail */
    .choc-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
        display: flex !important;
        flex-direction: column-reverse !important;
    }
    
    /* Carousel */
    .choc-carousel {
        padding: 60px 40px;
    }
    
    .choc-carousel-content {
        flex-direction: column;
        gap: 60px;
    }
    
    .choc-carousel-left {
        flex: 0 0 auto;
        width: 100%;
    }
    
    .choc-stats {
        gap: 40px;
    }
    
    .choc-stat-number {
        font-size: 60px;
    }
}

/* ===== RESPONSIVE MOBILE (768px) ===== */
@media (max-width: 768px) {
    /* Hero */
    .choc-hero {
        padding: 80px 20px 40px;
        overflow: hidden;
    }
    
    .choc-hero-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .choc-title {
        font-size: 36px;
        text-align: center;
    }
    
    .choc-avis img {
        height: 60px;
    }
    
    /* Banner */
    .choc-banner,
    .choc-banner-content {
        overflow: hidden;
    }
    
    .choc-banner-content {
        flex-direction: column;
        height: auto;
    }
    
    .choc-banner-left {
        flex: 0 0 auto;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 25px 25px;
        width: 100%;
        gap: 10px;
    }
    
    .choc-banner-text {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .choc-banner-title {
        font-size: 32px;
        margin: 0;
    }
    
    .choc-banner-btn {
        padding: 12px 28px;
        font-size: 16px;
        white-space: nowrap;
    }
    
    .choc-banner-hand {
        display: none;
    }
    
    .choc-banner-image {
        height: 250px;
        width: 100%;
    }
    
    .choc-banner-logos {
        justify-content: center;
        left: 0;
        right: 0;
        bottom: 10px;
    }
    
    .choc-banner-logos img {
        height: 60px;
    }
    
    .choc-banner-logos img:first-child {
        height: 78px;
    }
    
    /* Slider Glass responsive */
    .glass-slider {
        height: 250px;
    }
    
    .glass-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
    
    .glass-slider-prev {
        left: 10px;
    }
    
    .glass-slider-next {
        right: 10px;
    }
    
    .choc-banner-right {
        flex-direction: column;
        padding: 30px 20px;
    }
    
    .choc-banner-hand {
        display: none;
    }
    
    /* Info banner */
    .choc-info-banner {
        padding: 20px 15px;
    }
    
    .choc-info-line1,
    .choc-info-line2 {
        font-size: 14px;
        letter-spacing: 0;
    }
    
    .choc-info-line2 {
        padding-left: 0;
    }
    
    /* Slideshow */
    .choc-slideshow {
        padding: 2rem 0;
    }
    
    .choc-slideshow > .slideshow-btn {
        top: calc(50% - 40px);
    }
    
    .choc-slideshow > .slideshow-btn.prev {
        left: 10px;
    }
    
    .choc-slideshow > .slideshow-btn.next {
        right: 10px;
    }
    
    .slide-item {
        flex: 0 0 calc(85% - 0.75rem);
    }
    
    .slideshow-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .slideshow-dots {
        margin-top: 20px;
        gap: 10px;
    }
    
    .slideshow-dot {
        width: 8px;
        height: 8px;
    }
    
    /* Creation */
    .choc-creation-section {
        padding: 60px 0;
        overflow: hidden;
    }
    
    .choc-creation-content {
        padding: 0 20px;
        gap: 30px;
        display: flex !important;
        flex-direction: column-reverse !important;
    }
    
    .choc-creation-image {
        max-height: 300px;
    }
    
    .choc-creation-text h2 {
        font-size: 28px;
    }
    
    .choc-creation-subtitle {
        font-size: 18px;
    }
    
    .choc-creation-body p {
        font-size: 15px;
    }
    
    /* Look */
    .choc-look-section {
        padding: 60px 0;
        overflow: hidden;
    }
    
    .choc-look-content {
        padding: 0 20px;
        gap: 30px;
        display: flex;
        flex-direction: column;
    }
    
    .choc-look-text {
        order: 1;
    }
    
    .choc-look-images {
        order: 2;
        grid-template-columns: 1fr;
        gap: 15px;
        max-height: none;
    }
    
    .choc-look-text h2 {
        font-size: 28px;
        margin-left: 0;
    }
    
    .choc-look-subtitle {
        font-size: 18px;
        margin-left: 0;
    }
    
    .choc-look-body p {
        font-size: 15px;
    }
    
    /* Detail */
    .choc-detail-section {
        padding: 60px 0;
        overflow: hidden;
    }
    
    .choc-detail-content {
        padding: 0 20px;
        gap: 30px;
        display: flex !important;
        flex-direction: column-reverse !important;
    }
    
    .choc-detail-text h2 {
        font-size: 28px;
    }
    
    .choc-detail-subtitle {
        font-size: 18px;
    }
    
    .choc-detail-body p {
        font-size: 15px;
    }
    
    .choc-detail-btn {
        padding: 14px 30px;
        font-size: 13px;
    }
    
    /* FAQ */
    .choc-faq-section {
        padding: 60px 20px;
    }
    
    .choc-faq-content {
        padding: 0;
    }
    
    .choc-faq-question {
        padding: 20px;
        font-size: 16px;
    }
    
    .choc-faq-answer {
        padding: 0 20px;
    }
    
    .choc-faq-item.active .choc-faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .choc-faq-answer p {
        font-size: 14px;
    }

    .faq-list li {
        font-size: 14px;
        padding-left: 20px;
    }

    .faq-category h4 {
        font-size: 16px;
    }

    .faq-sub-question {
        font-size: 14px;
    }

    .faq-sub-item ul li {
        font-size: 14px;
    }
    
    /* Carousel */
    .choc-carousel {
        padding: 40px 15px;
        overflow: hidden;
    }
    
    .choc-carousel-content {
        gap: 40px;
    }
    
    .choc-carousel-images {
        flex-direction: column;
        gap: 30px;
    }
    
    .choc-image-wrapper {
        gap: 10px;
    }
    
    .choc-carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 24px;
        min-width: 35px;
    }
    
    .choc-carousel-right {
        padding-left: 0;
    }
    
    .choc-description {
        padding-left: 0;
        margin-bottom: 40px;
    }
    
    .choc-description p {
        font-size: 14px;
    }
    
    .choc-stats {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        padding-left: 0;
    }
    
    .choc-stat-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .choc-stat-number {
        font-size: 40px;
    }
    
    .choc-stat-label {
        font-size: 12px;
    }
    
    .choc-image-container .choc-view-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}
