/* === New Arrivals Section === */
.new-arrivals-section {
    padding: 60px 5%;
    background-color: #f9f9f9;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.product-item a {
    text-decoration: none;
    color: #333;
    display: block;
}

.product-item img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
    background-color: #fff;
}

.product-item h3 {
    font-size: 16px;
    font-weight: normal;
    margin: 0 0 10px 0;
}

.product-item .price {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}

.product-item a:hover h3 {
    text-decoration: underline;
}

/* === Footer === */
.main-footer {
    background-color: #333;
    color: #fff;
    padding: 60px 5%;
}

.footer-signup {
    text-align: center;
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid #555;
}

.footer-signup h3 {
    font-size: 24px;
    margin: 0 0 10px 0;
}

.signup-form {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.signup-form input {
    padding: 15px;
    font-size: 16px;
    width: 300px;
    border: 1px solid #777;
    background-color: #555;
    color: #fff;
}

.signup-form .btn {
    border-radius: 0;
    background-color: #fff;
    color: #333;
}
.signup-form .btn:hover {
    background-color: #ccc;
}


.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
}

.link-column h4 {
    font-size: 16px;
    margin-bottom: 20px;
}

.link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-column ul li {
    margin-bottom: 10px;
}

.link-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
}

.link-column a:hover {
    text-decoration: underline;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    margin-right: 15px;
    font-size: 20px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 30px;
    font-size: 12px;
    color: #aaa;
}

.footer-bottom a {
    color: #aaa;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}