@media screen and (min-width: 480px) {
    .nav h4 {
        font-size: 30px;
        color: red;
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: var(--bs-navbar-nav-link-padding-x);
        padding-left: var(--bs-navbar-nav-link-padding-x);
        padding: 23px !important;
    }

}


/* Navigation & Buttons */
nav,
.btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Paragraphs */
p {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 400;
    color: #555;
    margin-bottom: 15px;
}


.top {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0.5rem 1rem !important;
    position: sticky;
}

.logo {
    font-weight: 900;

    text-transform: capitalize;
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 35px;
    left: 30px;
    color: #ffffff;
    border-radius: 50px;
    font-size: 30px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}
.one {
    text-align: center;
}

.one h5 {
    text-transform: capitalize;
}

.bottom-section {
    background: #efe3e3 0% 0% no-repeat padding-box;
}

.nav-link {
    font-size: 20px !important;
    font-size: 20px;
    font-weight: 300;
    line-height: 24px;
    color: var(--theme-dark-color);
    text-transform: uppercase;
    padding: 0 25px;
}

.about h1 {
    text-transform: uppercase;
    text-align: center;

}

.about p {
    text-align: center;
    font-size: 20px;
}

a {
    text-decoration: none;
    text-decoration: underline none !important;
}






/* Section heading styling */
.shop h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: #333;
}

.shop p {
    text-align: center;
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.shop .line {
    text-align: center;
    margin-bottom: 35px;
}

/* Product Card */
.shop .product-card {
    border: none;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.shop .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 10px 22px rgba(0, 0, 0, 0.12);
}

/* Product Image */
.shop .product-card .card-img-top {
    width: 100%;
    height: 260px;
    /* adjust height as per your screenshot */
    object-fit: cover;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

/* Card Body */
.shop .product-card .card-body {
    padding: 15px 12px 0;
}

.shop .product-card .card-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #333;
}

/* Add to Cart Button */
.shop .product-card .cart-btn {
    width: 100%;
    border: none;
    background: #fff;
    color: #6d4528;
    font-weight: 600;
    padding: 12px 0;
    text-transform: uppercase;
    position: relative;
    border-top: 1px solid #eee;
    border-radius: 0;
    transition: background 0.3s ease;
}

/* Small dropdown arrow on button */
.shop .product-card .cart-btn::after {
    content: "▼";
    font-size: 10px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #6d4528;
}

.shop .product-card .cart-btn:hover {
    background: #f9f5f1;
}