.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 16px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.page-layout {
    display: flex;
    gap: 40px;
}
.main-column {
    flex: 2;
}
.sidebar-column {
    flex: 1;
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
}
.subcategories {
    margin-bottom: 16px;
    font-size: 0.95em;
    color: #888;
}
.subcategories a {
    color: #007bff;
    text-decoration: none;
}
.product-images-container {
    margin-bottom: 24px;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px;
}
.product-images {
    display: flex;
    gap: 12px;
}
.product-images img {
    width: calc((100% - 12px) / 2);
    min-width: calc((100% - 12px) / 2);
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    flex-shrink: 0;
}
.description {
    margin-top: 18px;
    font-size: 1.1em;
    color: #333;
}
.price-section {
    margin-bottom: 24px;
}
.current-price {
    display: flex;
    align-items: center;
    gap: 10px;
}
.text-success {
    color: #28a745 !important;
}
.text-muted {
    color: #6c757d !important;
}
.text-decoration-line-through {
    text-decoration: line-through;
}
.badge.bg-danger {
    background: #dc3545;
}
.variants-section .btn {
    text-align: left;
    padding: 8px 12px;
}
.variant-btn {
    border-left-width: 4px !important;
    border-left-style: solid !important;
    border-left-color: var(--variant-color, #000) !important;
    min-height: 45px;
    padding: 8px 12px;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.color-indicator {
    border: 1px solid #ccc;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: var(--variant-color, #ccc);
}
/* Selected variant button styling */
.variant-btn.btn-primary {
    background-color: #e3f2fd !important;
    border-color: #2196f3 !important;
    color: #1565c0 !important;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3) !important;
    transform: translateY(-1px);
    transition: all 0.2s ease;
}

.variant-btn.btn-primary:hover {
    background-color: #bbdefb !important;
    border-color: #1976d2 !important;
    color: #0d47a1 !important;
    box-shadow: 0 4px 12px rgba(33, 150, 243, 0.4) !important;
    transform: translateY(-2px);
}
.size-section .btn {
    min-height: 50px;
    font-weight: bold;
    font-size: 1rem;
    padding: 8px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.size-section .row {
    max-width: 300px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .format-section .btn {
        font-size: 0.8rem;
        min-height: 40px;
        padding: 6px 8px;
    }
    
    .size-section .btn {
        font-size: 0.9rem;
        min-height: 45px;
        padding: 6px 2px;
    }
}

/* Ensure variant buttons also fit properly */
.variant-btn {
    min-height: 45px;
    padding: 8px 12px;
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.variant-btn span {
    flex: 1;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Remove all product tag styles - using Bootstrap badges instead */