/* Product Detail Widget Styles */
.product-detail {
    display: flex;
    gap: 40px;
}

.product-detail__left {
    flex: 1;
    min-width: 0;
}

.product-detail__right {
    flex: 1;
    min-width: 0;
}

/* Image Section */
.product-detail__image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.product-detail__image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.product-detail__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}

.product-detail__info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30%;
    color: #fff;
}

.product-detail__title {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-detail__desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Back Button */
.product-detail__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    margin-bottom: 20px;
}

.product-detail__back:hover {
    color: #f7941d;
}

/* Sections */
.product-detail__section {
    margin-bottom: 30px;
}

.product-detail__section-title {
    position: relative;
    margin: 0 0 15px 0;
    padding-left: 15px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.product-detail__section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background-color: #f7941d;
    border-radius: 2px;
}

/* Features */
.product-detail__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.product-detail__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
}

.product-detail__feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    object-fit: contain;
}

.product-detail__feature-text {
    font-size: 13px;
    color: #666;
}

/* Specifications */
.product-detail__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    background: #fffaf5;
    border-radius: 8px;
}

.product-detail__spec {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-detail__spec-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 8px;
    color: #f7941d;
}

.product-detail__spec-icon svg {
    width: 32px;
    height: 32px;
}

.product-detail__spec-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.product-detail__spec-content {
    display: flex;
    flex-direction: column;
}

.product-detail__spec-label {
    font-size: 12px;
    color: #999;
}

.product-detail__spec-value {
    font-size: 16px;
    font-weight: 700;
    color: #f7941d;
}

/* Buttons */
.product-detail__buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.product-detail__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-detail__button--primary {
    padding: 12px 24px;
    background: #f7941d;
    color: #fff;
}

.product-detail__button--primary:hover {
    background: #e8850a;
    color: #fff;
}

.product-detail__button--secondary {
    padding: 12px 24px;
    background: #333;
    color: #fff;
}

.product-detail__button--secondary:hover {
    background: #222;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .product-detail {
        flex-direction: column;
    }
    
    .product-detail__features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .product-detail__features {
        grid-template-columns: 1fr;
    }
    
    .product-detail__buttons {
        flex-direction: column;
    }
    
    .product-detail__info {
        right: 20px;
        left: 20px;
        bottom: 20px;
    }
    
    .product-detail__title {
        font-size: 20px;
    }
}
