body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    color: #333;
    font-size: 14px;
}

.header {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.header.shrink {
    padding: 10px;
    text-align: left;
}

.header.shrink img {
    width: 80px;
}
.banner img {
    padding-top: 20px ;
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 15px;
}

.header img {
    width: 120px;
    ;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px auto;
    padding: 20px;
    width: 90%;
    max-width: 1100px;
    align-items: center;
}

.product-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.product-image:hover {
    transform: scale(1.03);
}

.product-info {
    margin-top: 30px;
    padding: 30px;
    width: 100%;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.product-info:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.product-info h2 {
    margin: 0;
    font-weight: 700;
    font-size: 24px;
    color: #222;
}

.price-section {
    margin: 20px 0;
    font-size: 18px;
    font-weight: 500;
    color: #28a745;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 20px 0;
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    margin: 0 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.quantity-selector button {
    background-color: #28a745;
    color: white;
    padding: 10px 18px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.buy-btn {
    background-color: #28a745;
    color: white;
    padding: 14px 36px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    margin-top: 20px;
    width: 100%;
    max-width: 350px;
}

.buy-btn:hover {
    background-color: #0056b3;
}

.product-details {
    margin-top: 30px;
    padding: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.product-details h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.more-content {
    display: none;
}

.read-more-btn {
    background-color: transparent;
    border: none;
    color: #28a745;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .product-container {
        grid-template-columns: 1fr;
    }
}
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header img {
    width: 120px;
    margin-left: 0;
    
}

.header.shrink {
    padding: 5px 20px;
}

.header.shrink img {
    width: 80px;
}
