body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.header-top {
    background-color: #001f4d;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    align-items: center;
}

.contact-info span {
    margin-right: 15px;
}

.social-media a {
    color: white;
    margin-left: 10px;
    text-decoration: none;
    font-size: 18px;
}

/* Nav bar */
.header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    margin-top: -10px;
}

.header-bottom .logo {
    height: auto;
    margin-left: 35px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-right: 60px;
}

nav ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav ul li:first-child a {
    color: #001f4d;
}

nav ul li:not(:first-child) a:hover {
    color: orange;
}

nav ul li a i {
    margin-left: 5px;
    font-size: 12px;
}

nav ul li button {
    background-color: #001f4d;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    margin-top: -20px;
    font-size: 15px;
}
/* --- MOBILE VIEW FIX --- */
@media (max-width: 992px) {

    /* Make the header row flex */
    .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 15px;
    }

    /* Logo styling */
    .logo {
        width: 120px !important;
        height: auto !important;
        margin: 0;
    }

    /* Right-side hamburger menu */
    .mobile-menu-icon {
        display: block;
        color: #001f4d;
        font-size: 2rem;
        cursor: pointer;
        z-index: 1001;
    }
    /* Hide desktop nav in mobile */
    nav {
        display: none !important;
    }
}


/* Dropdown */

@media (min-width: 992px) {

    .dropdown {
        position: relative;
        cursor: pointer;
    }

    .dropdown-content {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        background-color: #fff;
        padding: 20px 30px;
        min-width: 750px;
        max-width: 90vw;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        z-index: 999;
        display: flex;
        gap: 40px;
        justify-content: center;
    }

        .dropdown-content.show {
            display: flex !important;
        }

    .dropdown-column {
        flex: 1;
        min-width: 180px;
    }

        .dropdown-column h4 {
            margin-bottom: 10px;
            font-size: 16px;
            color: #001f4d;
            border-bottom: 1px solid #ccc;
            padding-bottom: 5px;
        }

        .dropdown-column a {
            display: block;
            margin: 6px 0;
            font-size: 14px;
            color: #000;
            text-decoration: none;
        }

            .dropdown-column a:hover {
                color: orange;
            }
}


/* Breadcrumb */
.breadcrumb-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f2f2f2;
    padding: 10px 20px;
    margin-top: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    flex: 1;
    justify-content: center;
    background-color: #001f4d;
    margin-top: -20px;
    height: 60px;
}

.breadcrumb a {
    color: #daa520;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 500;
}
.breadcrumb-arrow {
    color: red;
    margin: 0 5px;
    font-weight: bold;
}

.breadcrumb span {
    color: white;
    font-size: 15px;
}

.arrow-circle {
    width: 40px;
    height: 40px;
    background-color: orange;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}

/* MOBILE VIEW FIX (ONLY Mobile) */
@media (max-width: 768px) {

    .breadcrumb {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        height: auto;
        padding: 15px 0;
        gap: 8px;
    }

        .breadcrumb a {
            font-size: 14px;
        }

      
        .breadcrumb .arrow-circle {
            margin-left: 0 !important;
            margin-top: 10px;
        }
}


/* Hero Section */
.content {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto; 
}

.hero-image img {
    width: 550px;
    height: auto;
    border-radius: 25px;
}

.hero-text {
    flex: 1;
    padding-left: 20px;
}

.hero-text h1 {
    color: #001f4d;
    font-size: 24px;
    margin-top: 0;
}

.hero-text p {
    color: #333;
    line-height: 1.5;
}

.quote-btn {
    background-color: #001f4d;
    color: #fff;
    padding: 12px 24px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    margin-left: 20px;
}

.quote-btn:hover {
    background-color: #003366;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.category-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin-top: 20px;
}

.label {
    font-weight: bold;
    color: #000;
}

.cat-link {
    color: #001f4d;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: bold;
}

.cat-link:hover {
    text-decoration: underline;
    color: #ff6600;
}

.divider {
    color: #555;
}

.social-share {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    margin-top: 20px;
}

.social-share span {
    font-weight: bold;
    color: #333;
}

.social-share a {
    color: black;
    font-size: 20px;
    transition: 0.3s;
    text-decoration: none;
}

.social-share a:hover {
    color: #ff6600;
    transform: scale(1.2);
}

/* ------------------------------
   MOBILE VIEW FIX (ONLY Mobile)
--------------------------------*/
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .hero-image {
        display: flex;
        justify-content: center;
        width: 100%;
    }

        .hero-image img {
            width: 90%;
            max-width: 350px;
            margin: 0 auto;
            margin-top: 20px;
        }

    .hero-text {
        padding-left: 0 !important;
        margin-top: 20px;
        text-align: center;
    }

        .hero-text h1 {
            font-size: 28px !important;
            margin-left: 0 !important;
            margin-top: 20px !important;
        }

        .hero-text p {
            margin-left: 0 !important;
            font-size: 16px !important;
        }

    .quote-btn {
        margin-left: 0 !important;
        margin-top: 20px;
    }

    .category-row {
        justify-content: center;
        margin-left: 0 !important;
    }

    .social-share {
        justify-content: center;
        margin-left: 0 !important;
    }
}


/* Products Section */
.container {
    padding: 20px;
    font-family: Arial, sans-serif;
}

.section-title {
    color: #001f4d;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.products-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.product-card {
    background-color: #f7f7f7;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 260px;
    text-align: center;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-title {
    font-size: 18px;
    color: #333;
    margin: 10px 0;
}

.product-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: #001f4d;
    color: #fff;
    padding: 30px 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
}

.o1, .o2, .o3, .o4 {
    flex: 1;
    min-width: 200px;
    margin: 0 15px;
    text-align: center;
    padding: 10px;
}

.o1 img {
    max-width: 200px;
    height: auto;
    margin-bottom: 60px;
}

.o1 p {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

.o1 .fa {
    font-size: 20px;
    color: #fff;
    background-color: #0000FF;
    border-radius: 50%;
    padding: 8px;
    margin: 0 5px;
    text-decoration: none;
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    box-sizing: content-content;
    transition: background-color 0.3s;
}

.o2 ul {
    list-style: none;
    padding-left: 0;
}

.o2 ul li {
    margin-bottom: 8px;
}

.o2 ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding-left: 5px;
    display: inline-block;
    margin-top: 20px;
}

.o2 ul li a:hover {
    text-decoration: underline;
}

.o1 .fa:hover {
    background-color: orangered;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    font-size: 16px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: blue;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background-color: #e08900;
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
        overflow-x: hidden;
    }

    .header-top {
        flex-direction: column;
        padding: 8px;
        text-align: center;
    }
    .contact-info span {
        display: block;
        margin: 5px 0;
        font-size: 13px;
    }
    .social-media {
        margin-top: 8px;
    }
    .social-media a {
        font-size: 16px;
        margin: 0 6px;
    }

    .header-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 20px;
        margin-top: -10px;
    }
        .header-bottom .logo {
            height: auto;
            margin-left: 35px;
        }
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    nav ul li {
        margin: 5px 0;
    }
    nav ul li a {
        font-size: 14px;
    }
    nav ul li button {
        padding: 8px 16px;
        font-size: 13px;
        margin-top: 5px;
    }

    .dropdown-content {
        min-width: 100%;
        flex-direction: column;
        padding: 10px;
        box-shadow: none;
    }
    .dropdown-column {
        margin-bottom: 10px;
    }
    .dropdown-column h4 {
        font-size: 13px;
    }
    .dropdown-column a {
        font-size: 12px;
    }

    .breadcrumb {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px;
        height: auto;
        font-size: 12px;
        margin-top: 0;
    }
    .breadcrumb a {
        font-size: 12px;
    }
    .arrow-circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
        margin: 5px 0;
    }
    .arrow-circle.left {
        margin-left: 0;
    }

    .content {
        flex-direction: column;
        padding: 10px;
        align-items: center;
    }
    .content > div:first-child {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 10px auto;
    }
    .content img {
        width: 100%;
        max-width: 280px;
        height: auto;
        border-radius: 10px;
    }
    .hero-text {
        padding: 0;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 22px;
        margin: 15px 0;
    }
    .hero-text p {
        font-size: 14px;
        margin: 8px 10px;
    }
    .quote-btn {
        padding: 8px 20px;
        font-size: 13px;
        margin: 10px auto;
        display: block;
    }
    .category-row {
        flex-wrap: wrap;
        justify-content: center;
        font-size: 14px;
        gap: 5px;
    }
    .cat-link {
        font-size: 13px;
    }
    .social-share {
        justify-content: center;
        font-size: 14px;
        gap: 8px;
    }
    .social-share a {
        font-size: 16px;
    }

    .grapes-details {
        margin: 10px;
    }
    .grapes-details h2 {
        font-size: 16px;
    }
    .grapes-details ul li {
        font-size: 13px;
        margin: 5px 0;
    }
    .grapes-details p {
        font-size: 13px;
        margin: 8px 10px;
    }

    .container {
        padding: 10px;
    }
    .section-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    .products-grid {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .product-card {
        width: 100%;
        max-width: 280px;
        height: auto;
        padding: 10px;
    }
    .product-card img {
        height: 140px;
        object-fit: cover;
    }
    .product-title {
        font-size: 15px;
        margin: 8px 0;
    }
    .product-description {
        font-size: 12px;
    }

    .footer {
        flex-direction: column;
        padding: 15px;
    }
    .o1, .o2, .o3, .o4 {
        margin: 10px 0;
        min-width: unset;
    }
    .o1 img {
        max-width: 120px;
    }
    .o1 p {
        font-size: 13px;
        margin: 8px 10px;
    }
    .o1 .fa {
        font-size: 16px;
        width: 16px;
        height: 16px;
        line-height: 16px;
        padding: 6px;
    }
    .o2 h2, .o3 h2, .o4 h2 {
        font-size: 18px;
    }
    .o2 ul li a {
        font-size: 13px;
    }
    .o3 p {
        font-size: 13px;
        margin: 10px 0;
    }
    .o4 p {
        font-size: 14px;
    }
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    .newsletter-form input[type="email"] {
        width: 100%;
        max-width: 250px;
        padding: 8px;
        font-size: 13px;
        border-radius: 5px;
        margin-bottom: 10px;
    }
    .newsletter-form button {
        width: 100%;
        max-width: 250px;
        padding: 8px;
        font-size: 13px;
        border-radius: 5px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 13px;
    }
    .header-bottom .logo {
        width: 90px;
    }
    nav ul li a {
        font-size: 13px;
    }
    nav ul li button {
        padding: 6px 14px;
        font-size: 12px;
    }
    .hero-text h1 {
        font-size: 18px;
    }
    .hero-text p {
        font-size: 13px;
    }
    .quote-btn {
        padding: 6px 16px;
        font-size: 12px;
    }
    .section-title {
        font-size: 16px;
    }
    .product-card {
        max-width: 250px;
    }
    .product-card img {
        height: 120px;
    }
    .product-title {
        font-size: 14px;
    }
    .product-description {
        font-size: 11px;
    }
    .o1 img {
        max-width: 100px;
    }
    .o1 p {
        font-size: 12px;
    }
}

/*Mobile view*/
/* --- Hides mobile elements on desktop --- */
.mobile-menu-icon,
.mobile-nav {
    display: none;
}

/* --- Mobile Nav - Show only on mobile --- */
@media (max-width: 992px) {
    /* Hides the desktop navigation */
    nav {
        display: none;
    }

    /* Displays the mobile menu button */
    .mobile-menu-icon {
        display: block;
        color: #001f4d;
        font-size: 2rem;
        cursor: pointer;
        z-index: 1001;
    }

    /* Styles for the vertical, slide-in mobile menu */
    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100vw;
        width: 80vw;
        max-width: 350px;
        height: 100vh;
        background-color: #001f4d;
        z-index: 1000;
        transition: right 0.5s ease-in-out;
        padding: 20px;
        box-sizing: border-box;
        overflow-y: auto;
    }

        /* Styles for the list items to make them vertical */
        .mobile-nav ul {
            list-style: none;
            padding: 0;
            margin-top: 20px;
            display: block;
        }

            .mobile-nav ul li {
                padding: 15px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                display: block;
            }

                .mobile-nav ul li a,
                .mobile-nav ul li button {
                    color: white;
                    text-decoration: none;
                    font-size: 1.2rem;
                    display: block;
                    background: none;
                    border: none;
                    width: 100%;
                    text-align: left;
                }

    /* Additional styling for the close button and product list */
    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

        .mobile-nav-header span {
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }

    .mobile-nav .mobile-close-btn {
        color: white;
        font-size: 2rem;
        cursor: pointer;
    }
}

.dropdown-mobile .menu-item-with-plus {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-content {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
    background-color: #001f4d; /* Sub-menu background color */
}

    .mobile-dropdown-content h4 {
        color: white;
    }

    .mobile-dropdown-content a {
        padding: 5px 0;
        font-size: 1rem;
    }

.toggle-dropdown-icon {
    color: white;
    font-size: 1.2rem;
    transition: transform 0.3s ease-in-out;
}

.mobile-menu-icon i.fa-bars {
    font-size: 28px !important; /* Increase size */
    color: #001f4d !important; /* Set correct color */
    cursor: pointer;
}
