/* Product Sections Component Styles */
.product-sections {
    margin-top: 0px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.product-section {
    background: white;
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.product-section-header {
    background: #f7f8f8;
    padding: 16px 20px;
    border-bottom: 1px solid #d5d9d9;
    text-align: center;
}

.product-section-title {
    font-size: 24px;
    font-weight: 700;
    color: #0f1111;
    margin: 0;
}

.product-section-content {
    padding: 20px;
}

/* Technical Specifications */
.tech-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.tech-specs-row {
    border-bottom: 1px solid #e7e7e7;
}

.tech-specs-row:last-child {
    border-bottom: none;
}

.tech-specs-label {
    padding: 12px 16px 12px 0;
    font-weight: 700;
    color: #0f1111;
    vertical-align: top;
    width: 30%;
    font-size: 14px;
}

.tech-specs-value {
    padding: 12px 0;
    color: #565959;
    vertical-align: top;
    font-size: 14px;
    line-height: 1.4;
}

.tech-specs-value-link {
    color: #007185;
    text-decoration: none;
}

.tech-specs-value-link:hover {
    color: #c7511f;
    text-decoration: underline;
}

/* Reviews Section */
.reviews-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e7e7e7;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reviews-stars {
    display: flex;
    gap: 2px;
}

.reviews-star {
    width: 16px;
    height: 16px;
    color: var(--amazon-orange);
}

.reviews-rating-text {
    font-size: 14px;
    color: #007185;
    text-decoration: none;
}

.reviews-rating-text:hover {
    color: #c7511f;
    text-decoration: underline;
}

.reviews-count {
    font-size: 14px;
    color: #007185;
    text-decoration: none;
}

.reviews-count:hover {
    color: #c7511f;
    text-decoration: underline;
}

.reviews-breakdown {
    margin-bottom: 16px;
    max-width: 350px;
}

/* Two-column layout for reviews */
.reviews-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    margin-bottom: 20px;
}

.reviews-left {
    /* Contains breakdown */
}

.reviews-right {
    /* Contains customer summary */
}

.customers-say {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 8px;
    border: 1px solid #e7e7e7;
}

.customers-say-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f1111;
    margin: 0 0 12px 0;
}

.customers-say-content {
    font-size: 14px;
    color: #0f1111;
    line-height: 1.5;
    margin-bottom: 12px;
}

.customers-say-source {
    font-size: 12px;
    color: #565959;
    font-style: italic;
    margin-bottom: 12px;
}

.customers-say-learn-more {
    font-size: 14px;
    font-weight: 700;
    color: #0f1111;
    margin-bottom: 8px;
}

.customer-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.topic-positive {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #007600;
}

.topic-negative {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #cc0c39;
}

.topic-neutral {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: #007185;
}

.topic-icon {
    font-size: 12px;
}

.reviews-breakdown-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.reviews-breakdown-label {
    font-size: 13px;
    color: #007185;
    text-decoration: none;
    min-width: 40px;
}

.reviews-breakdown-label:hover {
    color: #c7511f;
    text-decoration: underline;
}

.reviews-breakdown-bar {
    flex: 1;
    height: 16px;
    background: #e7e7e7;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    max-width: 200px;
}

.reviews-breakdown-fill {
    height: 100%;
    background: var(--amazon-orange);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.reviews-breakdown-percentage {
    font-size: 13px;
    color: #565959;
    min-width: 30px;
    text-align: right;
}

.reviews-list {
    margin-top: 16px;
}

.review {
    padding: 12px 0;
    border-bottom: 1px solid #e7e7e7;
}

.review:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 8px;
}

.review-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f0f2f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #565959;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
}

.review-author {
    font-size: 13px;
    font-weight: 700;
    color: #0f1111;
    margin-bottom: 2px;
}

.review-subtitle {
    font-size: 12px;
    color: #565959;
    margin-bottom: 4px;
    line-height: 1.3;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.review-stars {
    display: flex;
    gap: 1px;
}

.review-star {
    width: 14px;
    height: 14px;
    color: var(--amazon-orange);
}

.review-title {
    font-size: 13px;
    font-weight: 700;
    color: #0f1111;
}

.review-date {
    font-size: 13px;
    color: #565959;
    margin-bottom: 6px;
}

.review-content {
    font-size: 13px;
    color: #0f1111;
    line-height: 1.4;
    margin-bottom: 8px;
}

.review-helpful {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
}

.review-helpful-text {
    color: #565959;
}

.review-helpful-button {
    color: #007185;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
    font-size: 13px;
}

.review-helpful-button:hover {
    color: #c7511f;
    text-decoration: underline;
}

/* Experience Container - Centered with margins */
.experience-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.experience-entry {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e7e7e7;
}

.experience-entry:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.experience-header {
    margin-bottom: 20px;
    text-align: center;
    padding: 16px 0;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e7e7e7;
}

.experience-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f1111;
    margin: 0 0 8px 0;
}

.experience-company {
    font-size: 18px;
    font-weight: 600;
    color: #007185;
    margin-bottom: 4px;
}

.experience-duration {
    font-size: 14px;
    color: #565959;
    font-weight: 500;
}

.experience-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.experience-list li {
    font-size: 14px;
    color: #0f1111;
    line-height: 1.5;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.experience-list li:before {
    content: "•";
    color: #007185;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.experience-list li:last-child {
    margin-bottom: 0;
}

/* Two-column layout for experience details */
.experience-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 20px;
}

.experience-left {
    /* Left column for key details */
}

.experience-right {
    /* Right column for additional info */
}

.experience-section {
    margin-bottom: 24px;
}

.experience-section-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f1111;
    margin: 0 0 12px 0;
    padding-bottom: 8px;
    border-bottom: 1px solid #e7e7e7;
}

.experience-table {
    width: 100%;
}

.experience-row {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.experience-row:last-child {
    border-bottom: none;
}

.experience-label {
    font-weight: 700;
    color: #0f1111;
    font-size: 14px;
    min-width: 140px;
    padding-right: 16px;
}

.experience-value {
    color: #565959;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
}

.experience-value-link {
    color: #007185;
    text-decoration: none;
}

.experience-value-link:hover {
    color: #c7511f;
    text-decoration: underline;
}

.experience-achievements {
    margin: 0;
    padding: 0;
    list-style: none;
}

.experience-achievements li {
    font-size: 14px;
    color: #0f1111;
    line-height: 1.5;
    margin-bottom: 8px;
    padding-left: 16px;
    position: relative;
}

.experience-achievements li:before {
    content: "•";
    color: #007185;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.experience-achievements li:last-child {
    margin-bottom: 0;
}

/* Responsive design for experience section */
@media (max-width: 768px) {
    .experience-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .experience-header {
        padding: 12px;
    }
    
    .experience-title {
        font-size: 18px;
    }
    
    .experience-company {
        font-size: 16px;
    }
    
    /* Reviews content mobile layout */
    .reviews-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-breakdown {
        max-width: none;
    }
    
    .customers-say {
        order: -1;
        margin-bottom: 20px;
    }
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 16px;
}

.project-item {
    border: 1px solid #d5d9d9;
    border-radius: 8px;
    padding: 20px;
    background: #fafafa;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.project-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.project-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f1111;
    margin: 0 0 12px 0;
}

.project-description {
    font-size: 14px;
    color: #565959;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: #007185;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-section-content {
        padding: 16px;
    }
    
    .tech-specs-label {
        width: 40%;
        padding-right: 12px;
    }
    
    .reviews-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .reviews-breakdown-row {
        gap: 8px;
    }
    
    .reviews-breakdown-label {
        min-width: 50px;
    }
    
    .review-header {
        gap: 8px;
    }
    
    .review-helpful {
        flex-direction: row;
        align-items: flex-start;
        gap: 8px;
        flex-wrap: wrap;
    }
    
    .review-helpful-text {
        margin-right: 4px;
        line-height: 44px;
    }
    
    .review-helpful-button {
        height: 44px;
        padding: 0 12px;
        border: 1px solid #d5d9d9;
        border-radius: 4px;
        background: #f7f8f8;
        margin-right: 8px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 60px;
        width: 60px;
        font-weight: 500;
        vertical-align: baseline;
        box-sizing: border-box;
    }
    
    .review-helpful-button:hover {
        background: #e7e7e7;
        border-color: #007185;
    }
}

@media (max-width: 480px) {
    .product-section-header {
        padding: 12px 16px;
    }
    
    .product-section-title {
        font-size: 16px;
    }
    
    .tech-specs-label,
    .tech-specs-value {
        display: block;
        width: 100%;
        padding: 8px 0;
    }
    
    .tech-specs-label {
        font-weight: 700;
        border-bottom: none;
    }
    
    .tech-specs-value {
        padding-bottom: 12px;
        border-bottom: 1px solid #e7e7e7;
    }
    
    .review-helpful {
        justify-content: flex-start;
    }
    
    .review-helpful-button {
        min-width: 50px;
        padding: 6px 10px;
        font-size: 12px;
    }
}
