/**
 * WP Windows & Doors - Sidebar Layout Styles
 */

.wwd-sidebar-layout {
    display: flex;
    gap: 30px;
    min-height: 500px;
}

.wwd-sidebar {
    width: 320px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid var(--wwd-border);
    border-radius: var(--wwd-radius);
    overflow: hidden;
}

.wwd-sidebar-inner {
    padding: 20px;
    max-height: 600px;
    overflow-y: auto;
}

.wwd-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wwd-sidebar-layout .wwd-preview {
    flex: 1;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wwd-sidebar-layout .wwd-summary {
    background: #fff;
    border: 1px solid var(--wwd-border);
    border-radius: var(--wwd-radius);
    padding: 20px;
}

.wwd-sidebar-layout .wwd-price-display {
    margin-bottom: 15px;
}

.wwd-sidebar-layout .wwd-actions {
    margin-top: 15px;
}

.wwd-sidebar-layout .wwd-add-to-cart {
    width: 100%;
}

/* Price Breakdown */
.wwd-toggle-breakdown {
    background: none;
    border: none;
    color: var(--wwd-accent);
    cursor: pointer;
    font-size: 13px;
    text-decoration: underline;
}

.wwd-breakdown-details {
    margin-top: 10px;
    padding: 10px;
    background: var(--wwd-bg-light);
    border-radius: var(--wwd-radius);
    font-size: 12px;
}

.wwd-breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
}

.wwd-breakdown-row.total {
    border-top: 1px solid var(--wwd-border);
    margin-top: 8px;
    padding-top: 8px;
    font-weight: 600;
}

/* Responsive Sidebar */
@media (max-width: 900px) {
    .wwd-sidebar-layout {
        flex-direction: column;
    }

    .wwd-sidebar {
        width: 100%;
    }

    .wwd-sidebar-inner {
        max-height: none;
    }
}
