body {
    .montserrat-uniquifier {
        font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-weight: weight;
        font-style: normal;
    }


    .nav-border {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 30px;
        /* Desktop default */

        background-image: url("img/img1.png");
        background-repeat: repeat-x;
        background-size: auto 100%;
        /* ✅ responsive height */
        background-position: center;

        z-index: 9999;
    }

    /* White overlay */
    .nav-border::before {
        content: "";
        position: absolute;
        inset: 0;
       
        pointer-events: none;
        /* ✅ important */
    }

    @media (max-width: 768px) {
        .nav-border {
            position: absolute;
            width: 100%;
            padding-top: 30px;
            height: 22px;
            /* smaller for mobile */
            background-size: auto 100%;
        }
    }

    @media (max-width: 480px) {
        .nav-border {
            width: 100%;
            padding-top: 40px;
            height: 18px;
        }
    }





    .nav-second-border {
        width: 100%;
        height: 30px;
        margin-bottom: 120px;
        margin-top: -160px;
        position: relative;
        /* The base color */
    }

    .nav-second-border::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-repeat: repeat-x;
        background-size: contain;
        opacity: 0.2;
        /* This lightens/blends the image with the pink background */
        z-index: 1;
    }




    /*******************************
    NAVBAR BASE STYLE
*******************************/

    /* Add space between nav-border and nav-links */
    .navbar {
        position: relative;
        z-index: 10;
        margin-top: 5px;
        /* space under border */
        background: #fff !important;
        padding-top: 0px !important;
        /* extra space above menu links */
        padding-bottom: 15px !important;
    }


    /* LOGO */
    .logo-img {
        height: 77px !important;
        /* change height here */
        width: auto !important;
        /* keep proportions */
        object-fit: contain !important;
        display: block !important;
    }




    .logo-tagline {
        font-size: 12px;
        color: #4CAF50;
        margin-top: -20px;

        font-weight: 600;
    }


    /*******************************
    NAV LINKS
*******************************/
    .nav-link {
        /* Horizontal spacing for desktop links */
        margin: 1 9px;
        font-size: 18px;
        font-weight: 600;
        color: #2E7D32 !important;
        position: relative;
        transition: 0.3s;
        white-space: nowrap;
    }

    /* Make logo + menu perfectly aligned horizontally */
    .navbar .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-brand {
        margin-left: 85px !important;
        /* Moves logo to the right */
        margin-right: 10px !important;
        /* Keeps gap before menu */
    }



    .navbar-nav {
        margin-left: 30px !important;
        /* Moves the menu closer */
    }

    .navbar-brand {
        margin-right: 180px !important;
        /* Reduces the gap from the logo */
    }




    /* YELLOW UNDERLINE */
    .nav-link::after {
        content: "";
        position: absolute;
        width: 0%;
        height: 3px;
        background-color: #f8b400;

        left: 0;
        bottom: -6px;
        border-radius: 5px;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

    .nav-link:hover {
        color: #f8b400 !important;
    }

    /*******************************
    DROPDOWN
*******************************/
    .dropdown-menu {
        border-radius: 12px;
        padding: 10px 0;
        min-width: 200px;
        border: 1px solid #e5e5e5;
        margin-top: 12px !important;
    }

    .dropdown-item {
        padding: 12px 20px;
        transition: 0.3s;
    }

    .dropdown-item:hover {
        background: #f8b400;
        color: none !important;
        padding-left: 28px;
    }

    /* Add custom dropdown arrow on the RIGHT */
    .dropdown-toggle {
        position: relative;
        padding-right: 25px;
    }

    /* Remove default bootstrap arrow & add custom one */
    .dropdown-toggle::after {
        content: "▼";
        font-size: 10px;
        position: absolute;
        left: 95px;
        /* Keep arrow on right */
        top: 50%;
        transform: translateY(-50%);
        border: none !important;
        /* Removes yellow border/line */
    }





    /*******************************
    PICKLES BUTTON
*******************************/
    .pickles-btn {
        background: #2E7D32;
        color: white;
        padding: 15px 30px 15px;
        border-radius: 0px 10px 25px;
        font-size: 18px;
        font-weight: 600;
        transition: 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
    }

    .pickles-btn:hover {
        background: #256428;
        color: white !important;
    }

    .cart-icon {
        width: 27px;
        color: white !important;
        height: auto;
    }

    .nav-bottom-border {
        width: 100%;
        /* ✅ responsive */
        height: 18px;
        max-width: 1920px;
        /* ✅ limits on large screens */

        background-image: url("img/borderdown.png");
        background-repeat: repeat-x;
        background-position: bottom left;
        background-size: auto;

        background-color: #f1ebe4;

        display: block;
        position: relative;
        z-index: 2;
        margin: 0 auto;
        /* center on large screens */
    }

    /* Tablets */
    @media (max-width: 992px) {
        .nav-bottom-border {
            height: 14px;
        }
    }

    /* Mobile */
    @media (max-width: 576px) {
        .nav-bottom-border {
            height: 10px;
        }
    }


    /* ================================
   TABLET RESPONSIVE (≤ 991px)
================================ */
    @media (max-width: 991px) {

        /* Reset forced desktop spacing */
        .navbar-brand {
            margin-left: 0 !important;
            margin-right: 0 !important;
        }

        .navbar-nav {
            margin-left: 0 !important;
            text-align: center;
        }

        /* Logo resize */
        .logo-img {
            height: 55px !important;
        }

        /* Center logo + toggler */
        .navbar .container {
            justify-content: space-between;
        }

        /* Nav links spacing */
        .nav-link {
            margin: 10px 0 !important;
            font-size: 16px;
        }

        /* Dropdown fixes */
        .dropdown-menu {
            text-align: center;
            margin-top: 0 !important;
        }

        .dropdown-toggle::after {
            left: auto;
            right: 10px;
        }

        /* Pickles button */
        .pickles-btn {
            width: auto;
            font-size: 16px;
            padding: 10px 18px;
        }
    }


    /* ================================
   MOBILE RESPONSIVE (≤ 767px)
================================ */
    @media (max-width: 767px) {

        /* Navbar spacing */
        .navbar {
            padding: 10px 0 !important;
        }

        /* Logo center */
        .navbar-brand {
            margin: 0 auto !important;
        }

        .logo-img {
         height: 50px !important;
         margin-right: 150px;
        }

        /* Collapsed menu */
        .navbar-collapse {
            background: #fff;
            padding: 15px 0;
            border-radius: 10px;
        }

        .nav-link {
            font-size: 15px;
            padding: 8px 0;
        }

        /* Remove underline animation on mobile */
        .nav-link::after {
            display: none;
        }

        /* Dropdown menu flat */
        .dropdown-menu {
            border: none;
            box-shadow: none;
        }

        /* Dropdown arrow alignment */
        .dropdown-toggle::after {
            right: 0;
        }

        /* Pickles button full width */
        .pickles-btn {
            width: 100%;
            justify-content: center;
            margin-top: 12px;
            font-size: 15px;
        }

        /* Cart icon */
        .cart-icon {
            width: 22px;
        }
    }


    /* ================================
   PREVENT HORIZONTAL SCROLL
================================ */
    body {
        overflow-x: hidden;
    }


    /* MAIN CONTAINER */
    .register-container {
        width: 100%;
        max-width: 100%;
        background: #ffffff;
        display: flex;
        border-radius: 25px;
        overflow: hidden;


    }

    .register-form {
        flex: 1;
        max-width: 650px;
        /* ✅ limits width */
        padding: 50px 60px;
        margin-left: 150px;
    }

    /* HEADER */
    .register-header {
        margin-bottom: 35px;
    }

    .register-header .icon {
        display: flex;
        justify-content: center;
        /* center horizontally */
        margin-bottom: -5px;
    }

    .register-header .icon img {
        width: 80px;
        /* 🔥 icon width */
        height: 70px;
        /* 🔥 icon height */
        margin-left: -50px;

    }


    .register-header h2 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 8px;
        margin-left: 110px;
    }

    .register-header p {
        color: #555;
        font-size: 18px;
        white-space: nowrap;
        margin-left: 30px;
    }

    /* FORM */
    .register-form form label {
        width: 300px;
        height: 20px;
        display: block;
        font-size: 18px;
        margin-bottom: 6px;
        margin-top: 18px;
    }

    .register-form form input {
        width: 100%;
        padding: 14px;
        border-radius: 8px;
        border: 1px solid #ccc;
        font-size: 18px;
    }

    /* INPUT FOCUS */
    .register-form form input:focus {
        outline: none;
        border-color: #2f5d1f;
    }

    /* OTP FIELD */
    .register-form form input.otp {
        width: 150px;
    }

    /* BUTTON */
    .register-form form button {
        width: 100%;
        padding: 14px;
        border: none;
        background-color: #2f5d1f;
        color: #ffffff;
        font-size: 16px;
        font-weight: 500;
        border-radius: 10px;
        cursor: pointer;
        margin-top: 10px;
    }

    .register-form form button:hover {
        background-color: #244a18;
    }

    .login {
        text-align: center;
        margin-top: 20px;
        font-size: 20px;
    }

    .login a {
        color: black;
        font-weight: 600;
        text-decoration: none;
    }

    /* RIGHT IMAGE CONTAINER */
    .register-image {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;

        max-width: 420px;
        /* ✅ image width control */
        height: 800px;
        /* 🔥 IMAGE HEIGHT */

        margin-top: 50px;

    }

    .register-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* keeps aspect ratio */
        border-radius: 40px;
        margin-left: 80px;
    }



    /* RESPONSIVE DESIGN */
    @media (max-width: 768px) {

        /* Register Container - Stack vertically on mobile */
        .register-container {
            flex-direction: column;
            border-radius: 0;
            padding: 0;
        }

        /* Register Form - Reset margins and padding for mobile */
        .register-form {
            max-width: 100%;
            margin-left: 0;
            padding: 25px 20px;
            order: 1;
        }

        /* Register Header - Center alignment for mobile */
        .register-header {
            margin-bottom: 25px;
            text-align: center;
        }

        .register-header .icon {
            justify-content: center;
        }

        .register-header .icon img {
            margin-left: 0;
            width: 60px;
            height: 55px;
        }

        .register-header h2 {
            font-size: 22px;
            margin-left: 0;
            text-align: center;
        }

        .register-header p {
            font-size: 14px;
            margin-left: 0;
            white-space: normal;
            text-align: center;
        }

        /* Form Fields - Full width for mobile */
        .register-form form label {
            width: 100%;
            font-size: 16px;
            margin-top: 14px;
        }

        .register-form form input {
            width: 100%;
            padding: 12px;
            font-size: 16px;
        }

        .register-form form input.otp {
            width: 100%;
        }

        /* Submit Button */
        .register-form form button {
            padding: 12px;
            font-size: 15px;
            margin-top: 20px;
        }

        /* Login Link */
        .login {
            font-size: 16px;
        }

        /* Register Image - Display below form on mobile */
        .register-image {
            max-width: 100%;
            height: 250px;
            margin-top: 20px;
            order: 2;
            padding: 0 20px;
        }

        .register-image img {
            margin-left: 0;
            border-radius: 20px;
        }

        /* Newsletter Mobile Responsiveness */
        .newsletter-wrapper {
            width: 95%;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: -30px;
        }

        .newsletter-box {
            flex-direction: column;
            padding: 20px 15px;
            gap: 15px;
        }

        .newsletter-box h4 {
            text-align: center;
            font-size: 20px;
        }

        .newsletter-form {
            flex-direction: column;
            width: 100%;
        }

        .newsletter-form .form-control {
            width: 100%;
            padding: 12px 15px;
        }

        .submit-btn {
            width: 100%;
            padding: 12px 20px;
        }
    }

    /* Extra Small Devices (< 480px) */
    @media (max-width: 480px) {
        .register-form {
            padding: 20px 15px;
        }

        .register-header h2 {
            font-size: 20px;
        }

        .register-header p {
            font-size: 13px;
        }

        .register-form form label {
            font-size: 14px;
        }

        .register-form form input {
            padding: 10px;
            font-size: 14px;
        }

        .register-form form button {
            padding: 10px;
            font-size: 14px;
        }

        .login {
            font-size: 14px;
        }

        .register-image {
            height: 200px;
            padding: 0 15px;
        }

        .newsletter-wrapper {
            width: 92%;
        }
    }





    /* ------------------------------------
    NEWSLETTER
------------------------------------ */
    .newsletter-wrapper {
        width: 100%;
        position: relative;
        z-index: 10;
        margin-bottom: -40px;
    }

    .newsletter-box {
        background: #f5eeee;
        padding: 25px 30px;
        border-radius: 10px;
        max-width: 1300px;
        margin: 0 auto;
        display: flex;
        gap: 10px;
        align-items: center;
        box-shadow: 0 12px 20px rgba(0, 0, 0, 0.10);
    }

    .newsletter-form {
        display: flex;
        gap: 10px;
        flex: 1;
    }

    .newsletter-form .form-control {
        border-radius: 30px;
        padding: 15px 20px;
    }

    .submit-btn {
        background: #2e5f25;
        color: #fff;
        padding: 10px 25px;
        border-radius: 10px;
    }

    /* footer  */
    .footer-section {
        background-color: #1d5e2e;
        color: #fff;
        padding: 60px 0;
        font-family: Arial, sans-serif;
        position: relative;
        margin-bottom: 0 !important;
    }

    .footer-section .row {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-start;
    }

    .footer-col {
        height: 10%;
    }


    /* Mobile only */
    @media (max-width: 768px) {
        .footer-section .row {
            flex-wrap: wrap;
        }
    }


    .pattern-bg {
        background: url("img/pattern.png");
        /* add your dotted leaf pattern */
        height: 120px;
        background-size: 100%;
        background-repeat: repeat-x;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
    }

    .footer-content {
        margin-top: 120px;
    }

    .footer-logo {
        width: 160px;
        margin-bottom: 0px;
    }

    .footer-col h5 {
        font-weight: bold;
        margin-bottom: 15px;
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: #fff;
        text-decoration: none;
    }

    .footer-links a:hover {
        text-decoration: underline;
    }

    .social-icons {
        display: flex;
        gap: 3px;
        align-items: center;
    }

    .social-icons img {
        width: 42px;
        height: 42px;

        object-fit: cover;
        /* keeps icons sharp */
        transition: 0.3s ease;
        cursor: pointer;
    }

    .social-icons img:hover {
        transform: translateY(-4px);
        filter: brightness(0.85);
    }



    .copyright {
        font-size: 13px;
        margin-top: 15px;
    }

    hr {
        border-color: rgba(255, 255, 255, 0.2);
    }

    /**** footer close ****/
    /****footer border***/


    .footer-bottom-border {
        width: 100%;
        height: 40px;
        /* height of visible green line */

        background-image: url("img/footerdown.png");
        background-repeat: repeat-x;

        background-position: bottom;
        /* 🔥 IMPORTANT */
        background-size: auto;
        /* 🔥 IMPORTANT */

        background-color: #f1ebe4;
    }


    /* ===================== MOBILE RESPONSIVE ONLY ===================== */
    @media (max-width: 768px) {

        .nav-link,
        .dropdown-item {
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
        }

        /* NAV LINKS – mobile tap effect */
        .nav-link:active,
        .nav-link:focus {
            color: #f8b400 !important;
        }

        .nav-link:active::after,
        .nav-link:focus::after,
        .nav-link.active::after {
            width: 100%;
        }

        /* DROPDOWN ITEMS – mobile tap effect */
        .dropdown-item:active,
        .dropdown-item:focus {
            background: #f8b400;
            padding-left: 28px;
        }

        /* remove default outline on tap */
        .nav-link:focus,
        .dropdown-item:focus {
            outline: none;
            box-shadow: none;
        }

        /* OTHER MOBILE ADJUSTMENTS */
        .cards-wrap {
            gap: 0px !important;
        }





        /* ================= HERO TEXT ================= */
        .hero-header {
            padding: 40px 0;
        }

        .hero-text {
            padding-left: 0;
            margin-bottom: 30px;
            text-align: center;
        }

        .hero-text .small-title {
            font-size: 36px;
        }

        .hero-text p {
            font-size: 16px;
            margin-top: 0;
        }

        /* ================= HERO IMAGES (NO SIDE SCROLL) ================= */
        .hero-images {
            justify-content: center;
            gap: 12px;
            flex-wrap: nowrap;
            overflow-x: hidden;
        }

        .img-box {
            width: 30vw;
            /* fits 3 images */
            max-width: 120px;
            aspect-ratio: 2 / 3;
            height: auto;
            border-radius: 18px;
        }

        /* ================= INFO CARDS GAP ================= */
        .cards-wrap {
            gap: 120px !important;
        }

        .info-card {
            width: 100%;
            max-width: 360px;
            height: auto;
            padding: 40px 20px 30px;
            margin-top: 0;
        }

        .info-img {
            width: 90%;
            height: 120px;
            top: -60px;
        }

        .card-body {
            padding: 20px;
            margin-top: 0;
            text-align: center;
        }

        .title {
            font-size: 24px;
        }

        .info-card p {
            font-size: 15px;
            margin-top: 0;
            margin-bottom: 0;
        }

        /* ================= NEWSLETTER ================= */
        .newsletter-box {
            width:80%;
            flex-direction: column;
            text-align: center;
        }

        .newsletter-form {
            flex-direction: column;
            width: 100%;
        }

        .newsletter-form .form-control,
        .submit-btn {
            width: 100%;
        }

        /* ================= SOCIAL CARDS ================= */
        .social-card {
            width: 100%;
            max-width: 340px;
            height: 360px;
        }

        /* ================= FOOTER ================= */
        .footer-content {
            margin-top: 20px;
            text-align: left;
        }

        .social-icons {
            justify-content: left;
        }
    }
}