 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* PRODUCT SECTION */
#product1 {
    text-align: center;
    width: 95vw;
    margin: 0 auto;
    animation: fadeIn 0.8s ease-in-out;
    padding-bottom: 30px;
}

#product1 h2 {
    position: relative;
    font-size: 28px;
    margin-bottom: 30px;
    display: inline-block;
    color: #333;
}

#product1 h2 span {
    color: #088178;
    margin-right: 10px;
}

#product1 h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #088178;
}

#product1 .pro-contaner {
    display: flex;
    justify-content: center;
    gap: 25px;
    padding-top: 20px;
    flex-wrap: wrap;
}

#product1 .pro {
    width: 23%;
    min-width: 250px;
    padding: 15px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 15px 0;
    transition: 0.3s ease;
    position: relative;
    background-color: #fff;
    overflow: hidden;
}

#product1 .pro:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

#product1 .pro img {
    width: 100%;
    border-radius: 12px;
    transition: 0.3s ease;
}

#product1 .pro:hover img {
    transform: scale(1.03);
}

#product1 .pro .des {
    text-align: start;
    padding: 15px 0;
}

#product1 .pro .des span {
    color: #606063;
    font-size: 13px;
    line-height: 1.5;
    display: block;
    margin-bottom: 5px;
}

#product1 .pro h5 {
    padding-top: 7px;
    color: #1a1a1a;
    font-size: 18px;
    margin-bottom: 10px;
    transition: 0.3s ease;
}

#product1 .pro:hover h5 {
    color: #088178;
}

#product1 .pro .des i {
    font-size: 14px;
    color: #FFD700;
    margin-right: 2px;
}

#product1 .pro .des h4 {
    padding-top: 7px;
    font-size: 16px;
    font-weight: 700;
    color: #088178;
    margin-bottom: 10px;
}

#product1 .pro a {
    display: inline-block;
    text-decoration: none;
    color: #088178;
    font-weight: 600;
    transition: 0.3s ease;
    margin-top: 5px;
}

#product1 .pro a:hover {
    color: #066e67;
}

#product1 .pro a i {
    font-size: 14px;
    vertical-align: middle;
}

#product1 .pro #cart {
    height: 40px;
    line-height: 40px;
    border-radius: 50px;
    background-color: #e8f6ea;
    font-weight: 500;
    color: #088178;
    border: 1px solid #cce7d0;
    position: absolute;
    bottom: 20px;
    right: 10px;
    width: 40px;
    text-align: center;
    transition: 0.3s ease;
}

#product1 .pro #cart:hover {
    background-color: #088178;
    color: #fff;
}