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;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 650px;
    padding: 20px;
    gap: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

.dropdown-content.show {
    display: flex;
}

.dropdown-column {
    flex: 1;
    min-width: 150px;
}

.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: #e7e4e4;
    margin-top: -20px; /* Verify if this negative margin is intentional */
    height: 60px;
}

.breadcrumb a {
    color: #001f4d;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 500;
}

.breadcrumb span {
    color: white;
    font-size: 15px;
}

.arrow-circle {
    width: 40px;
    height: 40px;
    background-color: #001f4d;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
}

/* 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);
}

/* 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: 10px;
}

.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 {
        flex-direction: column;
        padding: 10px;
    }
    .header-bottom .logo {
        width: 100px;
        margin: 0 auto 10px;
    }
    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;
    }
}