@media (max-width: 1320px) {
    .checkout-order-details {
        width: 55%;
    }

}

@media (max-width: 820px) {
    .navbar {
        flex-direction: row;
        align-items: center;
        background-color: var(--bg-white);
    }

    .navbar .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .navbar .menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--primary-harvest-green);
        border-radius: 2px;
    }

    .navbar nav {
        position: absolute;
        background-color: var(--bg-white);
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .navbar.nav-open nav {
        max-height: 500px;
    }

    .navbar nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .navbar nav ul li a {
        padding: 12px 20px;
        display: block;
    }

    .navbar nav ul li:hover {
        background-color: var(--light-mint);
    }

    .product-img {
        height: 500px;
    }

    .cart-item img {
        display: none;
    }
}


@media (max-width: 768px) {
    /* Header */
    header.site-header h1 {
        font-size: 1.6rem;
        text-align: center;
    }

    header.site-header nav {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .navbar .logo img {
        width: 120px;
    }

    .hero-content {
        width: 100%;
    }

    /* Hero Sections */
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    /* Forms */
    .wholesale-form,
    .career-form {
        width: 100%;
    }

    /* privcay policy */
    .content {
        padding: 25px;
    }

    .site-header h1 {
        font-size: 2rem;
    }

    .hero-content h1,
    .hero-content p {
        width: 100% !important;
    }

    .intro-image,
    .intro-details {
        width: 100%;
    }

    .intro-image {
        margin-bottom: 20px;
    }

    .team-one .team-image,
    .team-one .team-desc,
    .team-two .team-image,
    .team-two .team-desc,
    .team-three .team-image,
    .team-three .team-desc,
    .team-three .team-image-item,
    .team-two .team-image-item,
    .team-one .team-image-item {
        width: 100%;
    }

    .feed-item,
    .job-card,
    .faq-item {
        margin: 0px;
    }

    .feed-item:not(:last-of-type),
    .job-card:not(:last-of-type),
    .faq-item:not(:last-of-type),
    .package-item {
        margin-bottom: 30px;
    }

    .team-three,
    .team-one {
        flex-wrap: wrap-reverse;
    }

    table td p {
        font-size: .754rem;
    }

    table td p svg {
        height: 20px;
        width: 20px;
    }

    .subscription-form,
    .cta-faq-box {
        width: 100%;
    }

    .live-btn,
    .email-btn,
    .contact-us-form {
        width: 100%;
    }

    .active-title {
        left: 80px;
    }

    .updates-search-form,
    .produce-search-form {
        width: 100%;
    }

    .review-content {
        width: 400px;
    }

    .produce-search-content {
        width: 300px;
    }

    .product-details {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }

    .product-img {
        height: fit-content;
    }

    .cart-item .quantity input {
        border: none;
    }

    .cart-total {
        width: 300px;
    }

    .cart-header span {
        font-size: .854rem;
    }

    .cart-item :is(.price, .quantity, .total-price),
    .checkout,
    .cart-item .size-color-box {
        font-size: .754rem;
    }

    .cart-total h1 {
        font-size: 1.2rem;
    }

    .checkout-grid {
        flex-wrap: wrap-reverse;
    }

    .checkout-order-details,
    .checkout-delivery-details-box {
        width: 100%;
    }

    .confirm-checkoup-popup .popup-content,
    .review-content {
        width: 300px;
    }

    .product-img, 
    .product-info {
        width: 100%;
    }

    .job-details-left,
    .job-details-right {
        width: 100%;
    }

    .job-details-right {
        margin-bottom: 30px;
    }

    .job-details-header .job-logo {
        width: 28%;
        height: fit-content;
    }

    .job-details-header .job-company-details {
        width: 68%;
    }

    .wholesale-form-section {
        padding: 30px 20px;
    }

    .career-details-form {
        width: 300px;
    }

    /* Footer */
    footer .footer-content {
        flex-direction: column;
        gap: 10px;
    }

    footer .social-links {
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .cart-total {
        width: 200px;
    }

    .cta-btn {
        margin-top: 15px;
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}