/* ========================================
   Breadcrumb
======================================== */
.breadcrumb-section {
    background: #f8f9fa;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    background: none;
}

.breadcrumb-link {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #ff6b35;
}

.breadcrumb-sep {
    font-size: 10px;
    color: #aaa;
}

.breadcrumb-current {
    font-size: 14px;
    color: #888;
    font-weight: 500;
}

/* ========================================
   Product Detail Section
======================================== */
.product-detail-section {
    padding: 50px 0 60px;
    background: #fff;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 50px;
    align-items: start;
}

/* Product Image */
.product-detail-image {
    position: sticky;
    top: 20px;
}

.image-wrapper {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
}

.image-wrapper img {
    width: 100%;
    max-height: 400px;
    display: block;
    object-fit: cover;
}

/* Product Info */
.product-detail-info {
    padding-top: 5px;
}

.product-detail-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-detail-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 16px;
}

.product-detail-short-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ========================================
   Order Buttons
======================================== */
.order-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.order-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.order-btn:hover {
    opacity: 0.9;
}

.order-btn i {
    font-size: 18px;
}

.order-btn-primary {
    background: #1a1a2e;
    color: #fff;
}

.order-btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.order-btn-mail {
    background: var(--primary-color);
    color: #fff;
}

/* ========================================
   Product Options
======================================== */
.product-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 10px;
    border-top: 1px solid #eee;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.option-label {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.option-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.option-chip {
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    background: #fff;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-chip.active {
    border-color: #1a1a2e;
    background: #1a1a2e;
    color: #fff;
}

/* ========================================
   Rich Text / Description Section
======================================== */
.product-description-section {
    padding: 50px 0 70px;
    background: #f8f9fa;
}

.rich-text-content {
    max-width: 900px;
    font-size: 16px;
    color: #444;
    line-height: 1.8;
}

.rich-text-content p {
    margin-bottom: 16px;
}

.rich-text-content h2,
.rich-text-content h3,
.rich-text-content h4 {
    color: #1a1a2e;
    margin-bottom: 12px;
    margin-top: 24px;
}

.rich-text-content ul,
.rich-text-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
    list-style: disc;
}

.rich-text-content li {
    margin-bottom: 6px;
}

.rich-text-content img {
    border-radius: 8px;
    margin: 16px 0;
}

/* ========================================
   Responsive
======================================== */
@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 35% 1fr;
        gap: 30px;
    }

    .product-detail-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .product-detail-section {
        padding: 30px 0 40px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .product-detail-image {
        position: static;
        max-width: 400px;
    }

    .product-detail-title {
        font-size: 24px;
    }

    .product-detail-short-desc {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .order-buttons {
        flex-direction: column;
    }

    .order-btn {
        justify-content: center;
    }

    .product-description-section {
        padding: 40px 0 50px;
    }
}

@media (max-width: 480px) {
    .product-detail-title {
        font-size: 22px;
    }

    .product-detail-short-desc {
        font-size: 14px;
    }

    .order-btn {
        padding: 12px 18px;
        font-size: 14px;
    }

    .option-chip {
        padding: 8px 16px;
        font-size: 13px;
    }

    .rich-text-content {
        font-size: 15px;
    }
}
