* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

div {
    border: 0px solid blue;
}

/* Header */
.bc-header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.bc-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bc-logo {
    color: #ff6b35;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
}

.bc-nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.bc-nav-links a {
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.bc-nav-links a:hover {
    background-color: #d34612;
    transform: translateY(-2px);
}

/* Section Header */
.bc-section-header {
    background: linear-gradient(135deg, #b4380b 0%, #a7480d 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.bc-section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.bc-section-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Section */
.bc-filter-section {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.bc-filter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.bc-filter-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.bc-filter-group {
    display: flex;
    flex-direction: column;
}

.bc-filter-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.bc-filter-input,
.bc-filter-select {
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.bc-filter-input:focus,
.bc-filter-select:focus {
    outline: none;
    border-color: #ff6b35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.bc-filter-btn {
    background: #ff6b35;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bc-filter-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Category Pills */
.bc-category-pills {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0 20px;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.bc-category-pill {
    background: white;
    color: #333;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    border: 2px solid #ff6b35;
    transition: all 0.3s ease;
    font-weight: 500;
}

.bc-category-pill:hover,
.bc-category-pill.active {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Products Grid */
.bc-products-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

.bc-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.bc-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    animation: slideUp 0.5s ease;
}

.bc-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.bc-product-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.bc-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bc-product-card:hover .bc-product-img {
    transform: scale(1.1);
}

.bc-product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6b35;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.bc-product-new {
    background: #28a745;
}

.bc-product-sale {
    background: #dc3545;
}

.bc-product-info {
    padding: 1.5rem;
}

.bc-product-brand {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.bc-product-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.bc-product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.bc-current-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #ff6b35;
}

.bc-original-price {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
}

.bc-discount-percent {
    background: #dc3545;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bc-product-specs {
    margin-bottom: 1rem;
}

.bc-spec-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.bc-spec-label {
    color: #666;
}

.bc-spec-value {
    font-weight: 500;
}

.bc-product-actions {
    display: flex;
    gap: 0.75rem;
}

.bc-btn {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bc-btn-primary {
    background: #ff6b35;
    color: white;
}

.bc-btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.bc-btn-primary:disabled {
    background: #6c757d;
    cursor: not-allowed;
    opacity: 0.6;
}

.bc-btn-primary:disabled:hover {
    transform: none;
    box-shadow: none;
}

.bc-btn-secondary {
    background: transparent;
    color: #ff6b35;
    border: 2px solid #ff6b35;
}

.bc-btn-secondary:hover {
    background: #ff6b35;
    color: white;
}

.bc-stock-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.bc-in-stock {
    color: #28a745;
}

.bc-out-of-stock {
    color: #dc3545;
}

.bc-stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.bc-in-stock .bc-stock-dot {
    background: #28a745;
}

.bc-out-of-stock .bc-stock-dot {
    background: #dc3545;
}

/* Pagination */
.bc-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.bc-page-btn {
    padding: 0.75rem 1rem;
    background: white;
    color: #333;
    border: 2px solid #ddd;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.bc-page-btn:hover,
.bc-page-btn.active {
    background: #ff6b35;
    color: white;
    border-color: #ff6b35;
}

.bc-page-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Modal */
.bc-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.bc-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bc-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideUp 0.3s ease;
}

.bc-modal-content::-webkit-scrollbar {
    width: 8px;
}

.bc-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.bc-modal-content::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 10px;
}

.bc-modal-content::-webkit-scrollbar-thumb:hover {
    background: #e55a2b;
}

.bc-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    font-size: 2rem;
    color: #333;
    cursor: pointer;
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.bc-modal-close:hover {
    background: #ff6b35;
    color: white;
    transform: rotate(90deg);
}

.bc-product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
    min-height: 400px;
}

.bc-product-detail .bc-loading {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.bc-product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bc-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.bc-main-image:hover {
    transform: scale(1.02);
}

.bc-thumbnail-images {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.bc-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
}

.bc-thumbnail:hover {
    border-color: #ff6b35;
    opacity: 1;
    transform: translateY(-2px);
}

.bc-thumbnail.active {
    border-color: #ff6b35;
    opacity: 1;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.bc-product-details {
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.bc-product-details h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem 0;
    color: #333;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 0.5rem;
}

.bc-product-details .bc-product-price {
    margin: 1rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dc 100%);
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
}

.bc-product-details .bc-stock-status {
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    font-weight: 500;
}

.bc-product-details .bc-product-specs {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.bc-product-details .bc-spec-item {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.bc-product-details .bc-spec-item:last-child {
    border-bottom: none;
}

.bc-product-details .bc-product-actions {
    margin-top: auto;
    padding-top: 1rem;
}

.bc-product-details .bc-btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.bc-quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.bc-quantity-label {
    font-weight: 600;
    color: #333;
}

.bc-quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

.bc-quantity-btn {
    background: white;
    border: none;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease;
    min-width: 40px;
}

.bc-quantity-btn:hover {
    background: #ff6b35;
    color: white;
}

.bc-quantity-btn:active {
    transform: scale(0.95);
}

.bc-quantity-input {
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding: 0.75rem;
    width: 60px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    background: white;
}

.bc-quantity-input:focus {
    outline: none;
    background: #f8f9fa;
}

/* Loading State */
.bc-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.bc-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff6b35;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

/* Empty State */
.bc-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #666;
}

.bc-empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.bc-empty-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.bc-empty-message {
    font-size: 1rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design - Tablets and Small Laptops */
@media (max-width: 992px) {
    .bc-section-title {
        font-size: 2.5rem;
    }
    
    .bc-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }
}

/* Tablets (portrait) */
@media (max-width: 768px) {
    .bc-header {
        padding: 0.75rem 0;
    }
    
    .bc-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 0 15px;
    }
    
    .bc-logo {
        font-size: 1.5rem;
    }
    
    .bc-nav-links {
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .bc-nav-links a {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .bc-section-header {
        padding: 2.5rem 1rem;
    }
    
    .bc-section-title {
        font-size: 2rem;
    }
    
    .bc-section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .bc-filter-section {
        position: static;
        padding: 1.5rem 0;
    }
    
    .bc-filter-form {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .bc-category-pills {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }
    
    .bc-category-pills::-webkit-scrollbar {
        height: 4px;
    }
    
    .bc-category-pills::-webkit-scrollbar-thumb {
        background: #ff6b35;
        border-radius: 4px;
    }
    
    .bc-category-pill {
        white-space: nowrap;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .bc-products-section {
        margin: 2rem auto;
        padding: 0 15px;
    }
    
    .bc-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.25rem;
    }
    
    .bc-product-card {
        border-radius: 12px;
    }
    
    .bc-product-image {
        height: 200px;
    }
    
    .bc-product-info {
        padding: 1.25rem;
    }
    
    .bc-product-name {
        font-size: 1rem;
    }
    
    .bc-current-price {
        font-size: 1.2rem;
    }
    
    .bc-product-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .bc-btn {
        width: 100%;
        padding: 0.65rem;
        font-size: 0.85rem;
    }
    
    .bc-pagination {
        flex-wrap: wrap;
        gap: 0.4rem;
        padding: 0 15px;
    }
    
    .bc-page-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .bc-modal-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 12px;
        margin: 1rem;
    }
    
    .bc-product-detail {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .bc-main-image {
        height: 350px;
    }
    
    .bc-thumbnail-images {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .bc-thumbnail {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }
    
    .bc-modal-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }
    
    .bc-product-details h4 {
        font-size: 1rem;
        margin: 1rem 0 0.75rem 0;
    }
}

/* Mobile phones (portrait) */
@media (max-width: 576px) {
    .bc-nav {
        padding: 0 10px;
    }
    
    .bc-logo {
        font-size: 1.3rem;
    }
    
    .bc-nav-links {
        font-size: 0.8rem;
    }
    
    .bc-nav-links a {
        padding: 0.3rem 0.6rem;
    }
    
    .bc-nav-links a i {
        display: none;
    }
    
    .bc-section-header {
        padding: 2rem 0.75rem;
    }
    
    .bc-section-title {
        font-size: 1.5rem;
    }
    
    .bc-section-subtitle {
        font-size: 0.9rem;
    }
    
    .bc-filter-container,
    .bc-category-pills {
        padding: 0 10px;
    }
    
    .bc-category-pill {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .bc-products-section {
        padding: 0 10px;
        margin: 1.5rem auto;
    }
    
    .bc-products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .bc-product-card {
        max-width: 100%;
    }
    
    .bc-product-image {
        height: 220px;
    }
    
    .bc-product-info {
        padding: 1rem;
    }
    
    .bc-product-brand {
        font-size: 0.85rem;
    }
    
    .bc-product-name {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .bc-current-price {
        font-size: 1.1rem;
    }
    
    .bc-original-price {
        font-size: 0.9rem;
    }
    
    .bc-discount-percent {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
    
    .bc-stock-status {
        font-size: 0.85rem;
    }
    
    .bc-spec-item {
        font-size: 0.85rem;
    }
    
    .bc-product-actions {
        gap: 0.5rem;
    }
    
    .bc-btn {
        padding: 0.6rem;
        font-size: 0.8rem;
        letter-spacing: 0.3px;
    }
    
    .bc-pagination {
        padding: 0 10px;
    }
    
    .bc-page-btn {
        padding: 0.5rem 0.7rem;
        font-size: 0.85rem;
    }
    
    .bc-empty-state {
        padding: 3rem 1rem;
    }
    
    .bc-empty-icon {
        font-size: 3rem;
    }
    
    .bc-empty-title {
        font-size: 1.3rem;
    }
    
    .bc-empty-message {
        font-size: 0.9rem;
    }
    
    .bc-modal-content {
        width: 100%;
        max-width: 100%;
        height: 100vh;
        max-height: 100vh;
        border-radius: 0;
        margin: 0;
    }
    
    .bc-product-detail {
        padding: 1rem;
        gap: 1rem;
        max-height: calc(100vh - 2rem);
        overflow-y: auto;
    }
    
    .bc-main-image {
        height: 280px;
        border-radius: 8px;
    }
    
    .bc-thumbnail-images {
        gap: 0.4rem;
        justify-content: flex-start;
    }
    
    .bc-thumbnail {
        width: 60px;
        height: 60px;
    }
    
    .bc-modal-close {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .bc-product-details {
        padding: 0.5rem;
    }
    
    .bc-product-details .bc-product-brand {
        font-size: 0.85rem;
    }
    
    .bc-product-details .bc-product-name {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .bc-product-details .bc-current-price {
        font-size: 1.3rem;
    }
    
    .bc-product-details h4 {
        font-size: 0.95rem;
        margin: 0.75rem 0 0.5rem 0;
        padding-bottom: 0.4rem;
    }
    
    .bc-product-details .bc-spec-item {
        padding: 0.4rem 0;
        font-size: 0.85rem;
    }
    
    .bc-product-details .bc-product-price {
        padding: 0.75rem;
        margin: 0.75rem 0;
    }
    
    .bc-product-details .bc-stock-status {
        padding: 0.6rem 0.75rem;
        font-size: 0.85rem;
    }
    
    .bc-product-details .bc-product-specs {
        padding: 0.75rem;
        margin: 0.75rem 0;
    }
    
    .bc-quantity-selector {
        flex-direction: column;
        align-items: stretch;
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .bc-quantity-label {
        font-size: 0.9rem;
    }
    
    .bc-quantity-controls {
        width: 100%;
        justify-content: center;
    }
    
    .bc-quantity-btn {
        padding: 0.65rem 1rem;
        font-size: 1.1rem;
    }
    
    .bc-quantity-input {
        width: 80px;
        font-size: 1rem;
    }
    
    .bc-product-details .bc-btn-primary {
        padding: 0.85rem;
        font-size: 1rem;
    }
    
    .bc-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }
    
    .bc-notification i {
        font-size: 1rem;
    }
    
    .bc-notification button {
        font-size: 1.3rem;
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .bc-logo {
        font-size: 1.2rem;
    }
    
    .bc-section-title {
        font-size: 1.3rem;
    }
    
    .bc-section-subtitle {
        font-size: 0.85rem;
    }
    
    .bc-nav-links a {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }
    
    .bc-product-image {
        height: 200px;
    }
    
    .bc-main-image {
        height: 250px;
    }
    
    .bc-thumbnail {
        width: 55px;
        height: 55px;
    }
    
    .bc-category-pill {
        font-size: 0.8rem;
        padding: 0.45rem 0.9rem;
    }
}

/* Landscape orientation fixes */
@media (max-width: 768px) and (orientation: landscape) {
    .bc-section-header {
        padding: 1.5rem 1rem;
    }
    
    .bc-section-title {
        font-size: 1.8rem;
    }
    
    .bc-product-image {
        height: 180px;
    }
    
    .bc-modal-content {
        max-height: 95vh;
        overflow-y: auto;
    }
    
    .bc-product-detail {
        grid-template-columns: 1fr 1fr;
        padding: 1rem;
    }
    
    .bc-main-image {
        height: 250px;
    }
}

/* Improve touch targets on mobile */
@media (hover: none) and (pointer: coarse) {
    .bc-btn,
    .bc-page-btn,
    .bc-category-pill,
    .bc-nav-links a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .bc-quantity-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .bc-thumbnail {
        min-width: 60px;
        min-height: 60px;
    }
}

/* Smooth scrolling for mobile */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent;
    }
    
    .bc-category-pills,
    .bc-thumbnail-images {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
}