body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

.product-section {
    background: white;
    padding: 30px;
    margin: 20px 0;
    border-radius: 8px;
}

.product-main-image {
    width: 100%;
    border-radius: 8px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    padding: 20px;
}

.product-thumbnail {
    width: 60px;
    height: 60px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    margin-right: 10px;
    overflow: hidden;
}

.product-thumbnail:hover {
    border-color: #ff6b35;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-rating {
    color: #ff9800;
}

.product-rating .star-empty {
    color: #ddd;
}

.product-price {
    color: #ff6b35;
    font-size: 28px;
    font-weight: bold;
}

.btn-add-cart {
    background-color: #ff6b35;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
}

.btn-add-cart:hover {
    background-color: #e55a2b;
}

.phone-number {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #333;
}

.brand-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #f0f0f0;
    margin: 0 auto 10px;
    cursor: pointer;
}

.brand-circle:hover {
    border-color: #ff6b35;
}

.brand-circle img {
    max-width: 50px;
    max-height: 50px;
}

.brand-item {
    text-align: center;
}

.section-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 25px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.see-all-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.see-all-link:hover {
    color: #ff6b35;
}

.mobile-card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    height: 100%;
}

.mobile-card-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.mobile-card-image.card-1 {
    background: linear-gradient(135deg, #f3e5f5, #e1bee7);
}

.mobile-card-image.card-2 {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
}

.mobile-card-image.card-3 {
    background: linear-gradient(135deg, #e0f2f1, #b2dfdb);
}

.mobile-card-image.card-4 {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}
.btn-add-cart {
    position: relative;
    overflow: hidden;
}

.phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    transition: all .3s ease-in-out;
}
