.detail-form-control {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
}

/* Detail Breadcrumb */
.detail-breadcrumb-section {
    background-color: white;
    padding: 20px 0;
    margin-top: 76px;
    border-bottom: 1px solid #e0e0e0;
}

.detail-breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.detail-breadcrumb-item a {
    color: var(--primary-blue);
    text-decoration: none;
}

.detail-breadcrumb-item.active {
    color: #666;
}

/* Detail Product Section */
.detail-product-section {
    padding: 60px 0;
}

/* Detail Image Gallery */
.detail-image-gallery {
    position: sticky;
    top: 100px;
}

.detail-main-image-container {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-main-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.detail-thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.detail-thumbnail-item {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-thumbnail-item:hover,
.detail-thumbnail-item.active {
    border-color: var(--primary-blue);
    box-shadow: 0 3px 15px rgba(45, 95, 127, 0.2);
}

.detail-thumbnail-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Detail Product Info */
.detail-product-info {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
}

.detail-product-badge {
    display: inline-block;
    background: var(--light-blue);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.detail-product-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.detail-product-category {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.detail-category-tag {
    background: var(--cream);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.detail-product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.detail-rating-stars {
    color: #f39c12;
    font-size: 1.2rem;
}

.detail-rating-text {
    color: #666;
    font-size: 0.95rem;
}

.detail-product-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 25px;
}

.detail-product-price-old {
    font-size: 1.5rem;
    color: #999;
    text-decoration: line-through;
    margin-left: 15px;
}

.detail-product-description {
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.detail-product-meta {
    margin-bottom: 30px;
}

.detail-meta-item {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-meta-label {
    font-weight: 600;
    width: 150px;
    color: var(--text-dark);
}

.detail-meta-value {
    color: #666;
}

/* Detail Action Buttons */
.detail-action-section {
    margin-top: 30px;
    padding-top: 30px;
    /* border-top: 2px solid #f0f0f0; */
}

.detail-quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.detail-quantity-label {
    font-weight: 600;
    font-size: 1.1rem;
}

.detail-quantity-control {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.detail-quantity-btn {
    background: white;
    border: none;
    padding: 12px 20px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.detail-quantity-btn:hover {
    background: var(--cream);
}

.detail-quantity-input {
    border: none;
    text-align: center;
    width: 60px;
    font-size: 1.1rem;
    font-weight: 600;
}

.detail-btn-primary-custom {
    background: var(--primary-blue);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    width: 100%;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.detail-btn-primary-custom:hover {
    background: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(45, 95, 127, 0.3);
}

.detail-contact-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.detail-btn-contact {
    padding: 12px 20px;
    border: 2px solid var(--primary-blue);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.detail-btn-whatsapp {
    background: #25D366;
    color: white;
    border-color: #25D366;
}

.detail-btn-whatsapp:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    color: white;
}

.detail-btn-email {
    background: white;
    color: var(--primary-blue);
}

.detail-btn-email:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
}

/* Detail Related Products */
.detail-related-products {
    padding: 60px 0;
    background: white;
}

.detail-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.detail-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
}

.detail-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.detail-product-image-card {
    position: relative;
    height: 250px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-product-badge-card {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--light-blue);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.detail-product-info-card {
    padding: 20px;
}

.detail-product-title-card {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
    min-height: 50px;
}

.detail-product-price-card {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.detail-btn-view {
    width: 100%;
    padding: 10px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.detail-btn-view:hover {
    background: var(--light-blue);
}

/* Detail Footer */
.detail-footer {
    background: linear-gradient(135deg, #1a4d5f 0%, #2d6f8a 100%);
    color: white;
    padding: 60px 0 30px;
    margin-top: 0;
}

.detail-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--light-blue), #7fb8d4, var(--light-blue));
}

.detail-footer-brand {
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 15px;
}

.detail-footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.detail-social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.detail-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.detail-social-link:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
    color: white;
}

.detail-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    margin-top: 40px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 992px) {
    .detail-product-title {
        font-size: 1.8rem;
    }

    .detail-product-price {
        font-size: 2rem;
    }

    .detail-thumbnail-gallery {
        grid-template-columns: repeat(4, 1fr);
    }

    .detail-image-gallery {
        position: static;
        margin-bottom: 30px;
    }
}