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

.header-container {
    background-color: #e01276;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left {
    display: flex;
    align-items: center;
}

.header-logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

.company-name {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s;
}

.header-icon {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.header-link:hover {
    color: #ffdeee;
}

.modal-icon{
    text-align: center;
    width: 24px;
    height: 24px;
}

.modal-links {
    display: grid;
    align-items: center;
    text-decoration: none;
    color: #e92580;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.3s;
}

.modal-links:hover {
    color: #ffdeee;
}


.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #ff1489;
}

.close-btn:hover {
    color: #f00;
}

.modal-title {
    color: #ff1489;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }

    .header-right {
        justify-content: center;
        gap: 15px;
    }

    .header-left {
        margin-bottom: 15px;
    }
}


nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 40px 20px;
}

.product {
    width: 250px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 20px;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.product:hover {
    transform: scale(1.05);
}

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

.product h2 {
    color: #ff1489;
    font-size: 18px;
    margin: 15px 0 5px;
    text-align: center;
}

.product p {
    font-size: 16px;
    color: #666;
    padding: 0 15px;
    text-align: center;
}

.product .price {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin: 10px 0;
}

.product button {
    background-color: #e01276;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 10px;
    width: calc(100% - 30px);
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.product button:hover {
    background-color: #e01276;
}

.category-title {
    font-size: 28px;
    margin: 30px 0 10px;
    text-align: center;
    color: #ff1489;
    text-transform: uppercase;
    letter-spacing: 2px;
}

footer {
    background-color: #ffdeee;
    padding: 15px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
}

footer a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    margin: 0 20px;
    transition: color 0.3s;
}

footer a:hover {
    color: #ff1489;
}

@media (max-width: 768px) {
    .product-list {
        flex-direction: column;
        align-items: center;
    }
}


.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none; 
  scrollbar-width: none;    
}