/*==========================================================
KITTU BITTU FOODS
FOOTER.CSS V2
PART 1
==========================================================*/

/*==========================================================
FOOTER
==========================================================*/

.site-footer{

    position:relative;

    overflow:hidden;

    margin-top:10px;

    background:linear-gradient(
        135deg,
        #23402A,
        #2F5938,
        #3D6B45
    );

    color:#ffffff;

}

/* Decorative Background */

.site-footer::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    top:-240px;

    left:-240px;

    border-radius:50%;

    background:rgba(255,255,255,.04);

}

.site-footer::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    right:-180px;

    bottom:-180px;

    border-radius:50%;

    background:rgba(255,255,255,.03);

}

/*==========================================================
CONTAINER
==========================================================*/

.site-footer .container{

    position:relative;

    z-index:2;

    padding:30px 0 20px;

}

/*==========================================================
GRID
==========================================================*/

.footer-grid{

    display:grid;

    grid-template-columns:

        1.5fr

        1fr

        1fr

        1.2fr;

    gap:55px;

    margin-bottom:30px;

}

/*==========================================================
BRAND
==========================================================*/

.footer-brand{

    max-width:380px;

}

.footer-logo{

    width:120px;

    height:120px;

    object-fit:contain;

    display:block;

    margin-bottom:20px;

    filter:

        drop-shadow(0 12px 30px rgba(0,0,0,.25));

}

.footer-brand h2{

    color:#ffffff;

    margin-bottom:12px;

    font-size:2rem;

}

.footer-brand p{

    color:rgba(255,255,255,.82);

    line-height:1.9;

    margin-bottom:12px;

}

.footer-brand strong{

    color:#FFD56A;

}

/*==========================================================
SOCIAL
==========================================================*/

.footer-social{

    display:flex;

    flex-wrap:wrap;

    gap:14px;

    margin-top:25px;

}

.footer-social a{

    width:50px;

    height:50px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:rgba(255,255,255,.10);

    color:#ffffff;

    font-size:20px;

    transition:.35s;

}

.footer-social a:hover{

    background:var(--secondary);

    color:var(--primary-dark);

    transform:translateY(-5px);

}

/*==========================================================
FOOTER COLUMNS
==========================================================*/

.footer-column h3{

    color:#ffffff;

    font-size:1.35rem;

    margin-bottom:24px;

    position:relative;

    display:inline-block;

}

.footer-column h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:55px;

    height:3px;

    border-radius:999px;

    background:linear-gradient(
        90deg,
        var(--secondary),
        #FFD56A
    );

}

.footer-column ul{

    list-style:none;

    margin:0;

    padding:0;

}

.footer-column ul li{

    margin-bottom:14px;

    color:rgba(255,255,255,.82);

    line-height:1.8;

}

.footer-column ul li:last-child{

    margin-bottom:0;

}

.footer-column ul li a{

    color:rgba(255,255,255,.82);

    text-decoration:none;

    transition:.30s ease;

}

.footer-column ul li a:hover{

    color:#FFD56A;

    padding-left:8px;

}

/*==========================================================
CONTACT
==========================================================*/

.footer-contact{

    display:flex;

    flex-direction:column;

    gap:18px;

}

.footer-contact li{

    display:flex;

    align-items:flex-start;

    gap:14px;

}

.footer-contact i{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    background:rgba(255,255,255,.10);

    color:#FFD56A;

}

.footer-contact a{

    color:rgba(255,255,255,.86);

    text-decoration:none;

    transition:.30s;

}

.footer-contact a:hover{

    color:#FFD56A;

}

/*==========================================================
FSSAI
==========================================================*/

.footer-license{

    margin-top:28px;

    padding:18px 20px;

    border-radius:18px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.10);

}

.footer-license strong{

    display:block;

    color:#FFD56A;

    margin-bottom:8px;

    font-size:1rem;

}

.footer-license p{

    margin:0;

    color:#ffffff;

    font-weight:600;

    letter-spacing:.5px;

}

/*==========================================================
HOVER EFFECTS
==========================================================*/

.footer-column ul li{

    transition:.30s;

}

.footer-column ul li:hover{

    transform:translateX(5px);

}

.footer-brand,

.footer-column{

    position:relative;

    z-index:2;

}

/*==========================================================
FOOTER BOTTOM
==========================================================*/

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.12);

    padding-top:30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

}

.footer-bottom p{

    margin:0;

    color:rgba(255,255,255,.78);

    font-size:.95rem;

    line-height:1.7;

}

.footer-bottom-links{

    display:flex;

    align-items:center;

    gap:22px;

    flex-wrap:wrap;

}

.footer-bottom-links a{

    color:rgba(255,255,255,.82);

    text-decoration:none;

    transition:.30s ease;

    font-size:.92rem;

}

.footer-bottom-links a:hover{

    color:#FFD56A;

}

/*==========================================================
TABLET
==========================================================*/

@media(max-width:1200px){

.footer-grid{

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.footer-brand{

    max-width:100%;

}

}

/*==========================================================
MOBILE
==========================================================*/

@media(max-width:992px){

.footer-grid{

    grid-template-columns:1fr;

    text-align:center;

}

.footer-logo{

    margin:0 auto 20px;

}

.footer-social{

    justify-content:center;

}

.footer-column h3::after{

    left:50%;

    transform:translateX(-50%);

}

.footer-contact{

    align-items:center;

}

.footer-contact li{

    justify-content:center;

    text-align:left;

}

.footer-license{

    max-width:340px;

    margin:30px auto 0;

}

.footer-bottom{

    flex-direction:column;

    text-align:center;

}

.footer-bottom-links{

    justify-content:center;

}

}

/*==========================================================
SMALL MOBILE
==========================================================*/

@media(max-width:768px){

.site-footer .container{

    padding:60px 20px 30px;

}

.footer-grid{

    gap:35px;

}

.footer-brand h2{

    font-size:1.7rem;

}

.footer-column h3{

    font-size:1.2rem;

}

.footer-logo{

    width:100px;

    height:100px;

}

.footer-social a{

    width:46px;

    height:46px;

    font-size:18px;

}

.footer-contact i{

    width:38px;

    height:38px;

}

.footer-bottom-links{

    gap:15px;

}

}

/*==========================================================
EXTRA SMALL
==========================================================*/

@media(max-width:480px){

.footer-logo{

    width:85px;

    height:85px;

}

.footer-brand h2{

    font-size:1.5rem;

}

.footer-brand p{

    font-size:.92rem;

}

.footer-column ul li{

    font-size:.92rem;

}

.footer-license{

    padding:16px;

}

.footer-bottom p{

    font-size:.85rem;

}

.footer-bottom-links a{

    font-size:.85rem;

}

}

/*==========================================================
PERFORMANCE
==========================================================*/

.site-footer *{

    box-sizing:border-box;

}

.footer-logo{

    display:block;

    max-width:100%;

}

.footer-social a,

.footer-bottom-links a,

.footer-column ul li a{

    will-change:transform;

}

.footer-social a:hover,

.footer-column ul li a:hover{

    transform:translateY(-3px);

}

.footer-column ul li a{

    display:inline-block;

}

.footer-contact i{

    flex-shrink:0;

}


.back-to-top{

position:fixed;

right:30px;

bottom:30px;

width:52px;

height:52px;

display:flex;

justify-content:center;

align-items:center;

border-radius:50%;

background:var(--primary);

color:#fff;

box-shadow:0 10px 25px rgba(0,0,0,.18);

z-index:9999;

opacity:0;

visibility:hidden;

transform:translateY(20px);

transition:.35s;

}

.back-to-top.show{

opacity:1;

visibility:visible;

transform:translateY(0);

}


/* ==========================================================
   FOOTER REGISTRATIONS
   FSSAI + UDYAM
========================================================== */

.footer-registrations{

    width:100%;

    display:flex;

    flex-direction:column;

    gap:14px;

    margin-top:22px;

}


/* Individual Registration Card */

.footer-license{

    width:100%;

    box-sizing:border-box;

    padding:17px 18px;

    border-radius:18px;

    background:

        linear-gradient(

            135deg,

            rgba(255,255,255,.08),

            rgba(255,255,255,.04)

        );

    border:1px solid rgba(255,255,255,.14);

    box-shadow:

        0 12px 30px rgba(0,0,0,.10);

    backdrop-filter:blur(10px);

    -webkit-backdrop-filter:blur(10px);

    transition:

        transform .3s ease,

        border-color .3s ease,

        box-shadow .3s ease;

}


/* Hover */

.footer-license:hover{

    transform:translateY(-3px);

    border-color:rgba(255,213,79,.35);

    box-shadow:

        0 16px 35px rgba(0,0,0,.16);

}


/* Title */

.footer-license-title{

    display:flex;

    align-items:center;

    gap:9px;

    margin-bottom:8px;

}


/* Icon */

.footer-license-title i{

    width:32px;

    height:32px;

    min-width:32px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:rgba(255,213,79,.12);

    color:#FFD54F;

    font-size:14px;

}


/* Title text */

.footer-license-title strong{

    color:#FFD54F;

    font-size:.92rem;

    font-weight:700;

    line-height:1.25;

}


/* Registration number */

.footer-license p{

    margin:0;

    padding-left:41px;

    color:#fff;

    font-size:.96rem;

    font-weight:700;

    line-height:1.45;

    letter-spacing:.3px;

    word-break:break-word;

}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width:992px){

    .footer-registrations{

        margin-top:20px;

        gap:13px;

    }

    .footer-license{

        padding:16px;

    }

    .footer-license-title strong{

        font-size:.9rem;

    }

    .footer-license p{

        font-size:.92rem;

        padding-left:41px;

    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width:768px){

    .footer-registrations{

        width:100%;

        margin-top:20px;

        gap:12px;

    }

    .footer-license{

        padding:16px 15px;

        border-radius:17px;

    }

    .footer-license-title{

        gap:8px;

        margin-bottom:7px;

    }

    .footer-license-title i{

        width:30px;

        height:30px;

        min-width:30px;

        font-size:13px;

    }

    .footer-license-title strong{

        font-size:.88rem;

    }

    .footer-license p{

        padding-left:38px;

        font-size:.86rem;

        line-height:1.5;

    }

}


/* ==========================================================
   SMALL MOBILE
========================================================== */

@media (max-width:480px){

    .footer-registrations{

        gap:10px;

        margin-top:18px;

    }

    .footer-license{

        padding:15px 13px;

        border-radius:16px;

    }

    .footer-license-title i{

        width:28px;

        height:28px;

        min-width:28px;

        font-size:12px;

    }

    .footer-license-title strong{

        font-size:.84rem;

    }

    .footer-license p{

        padding-left:36px;

        font-size:.78rem;

        letter-spacing:.15px;

    }

}


/* =========================================================
   REGISTRATIONS & COMPLIANCE
========================================================= */

.footer-registrations-section {

    width: 100%;

    margin-top: 34px;
    padding-top: 15px;

    border-top: 1px solid rgba(255,255,255,0.12);

}


/* Heading */

.footer-registrations-heading {

    text-align: center;

    margin-bottom: 20px;

}

.footer-registrations-heading span {

    display: inline-block;

    color: #f4d36b;

    font-size: 0.82rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;

}


/* Cards container */

.footer-registrations-grid {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 18px;

}


/* Individual card */

.footer-registration-card {

    min-width: 0;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px 20px;

    border-radius: 18px;

    background:

        linear-gradient(
            135deg,
            rgba(255,255,255,0.075),
            rgba(255,255,255,0.035)
        );

    border: 1px solid
        rgba(255,255,255,0.14);

    box-shadow:
        0 12px 30px rgba(0,0,0,0.10);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;

}


/* Hover */

.footer-registration-card:hover {

    transform: translateY(-3px);

    border-color:
        rgba(244,211,107,0.35);

    box-shadow:
        0 16px 35px rgba(0,0,0,0.16);

}


/* Icon */

.footer-registration-icon {

    width: 44px;

    height: 44px;

    min-width: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background:
        rgba(244,211,107,0.12);

    color: #f4d36b;

    font-size: 18px;

}


/* Content */

.footer-registration-content {

    min-width: 0;

    display: flex;

    flex-direction: column;

    gap: 5px;

}


/* Label */

.footer-registration-label {

    color: #f4d36b;

    font-size: 0.88rem;

    font-weight: 700;

    line-height: 1.25;

}


/* Number */

.footer-registration-content strong {

    color: #ffffff;

    font-size: 0.96rem;

    font-weight: 700;

    line-height: 1.35;

    letter-spacing: 0.3px;

    overflow-wrap: anywhere;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .footer-registrations-section {

        margin-top: 30px;

        padding-top: 24px;

    }

    .footer-registrations-grid {

        gap: 14px;

    }

    .footer-registration-card {

        padding: 16px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .footer-registrations-section {

        margin-top: 28px;

        padding-top: 15px;

    }

    .footer-registrations-heading {

        margin-bottom: 16px;

    }

    .footer-registrations-heading span {

        font-size: 0.72rem;

        letter-spacing: 1.5px;

    }

    .footer-registrations-grid {

        grid-template-columns: 1fr;

        gap: 12px;

    }

    .footer-registration-card {

        width: 100%;

        padding: 15px;

        border-radius: 16px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .footer-registrations-section {

        margin-top: 24px;

        padding-top: 12px;

    }

    .footer-registration-card {

        gap: 12px;

        padding: 14px;

    }

    .footer-registration-icon {

        width: 40px;

        height: 40px;

        min-width: 40px;

        font-size: 16px;

    }

    .footer-registration-label {

        font-size: 0.82rem;

    }

    .footer-registration-content strong {

        font-size: 0.82rem;

    }

}

/* =========================================================
   ORDER ONLINE - PREMIUM PLATFORM SECTION
   ========================================================= */

.footer-order-online-section {
    width: 100%;
    margin: 42px 0 34px;
    padding: 28px 20px 30px;

    text-align: center;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


/* =========================================================
   HEADING
   ========================================================= */

.footer-order-online-heading {
    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 7px;
}

.footer-order-online-heading span {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    color: #e8c45a;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    animation: orderOnlineGlow 2.8s ease-in-out infinite;
}

.footer-order-online-heading i {
    font-size: 13px;
}


/* =========================================================
   SUBTITLE
   ========================================================= */

.footer-order-online-subtitle {
    margin: 0 auto 22px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;
    line-height: 1.6;
}


/* =========================================================
   PLATFORM GRID
   ========================================================= */

.footer-order-online-grid {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 16px;
}


/* =========================================================
   PLATFORM CARD
   ========================================================= */

.footer-order-card {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 82px;

    padding: 14px 17px;

    border-radius: 16px;

    text-decoration: none;

    background:
        rgba(255, 255, 255, 0.055);

    border:
        1px solid rgba(255, 255, 255, 0.10);

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.10);

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


/* =========================================================
   LOGO CONTAINER
   ========================================================= */

.footer-order-logo {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.96);

    overflow: hidden;
}


/* WhatsApp icon */

.footer-whatsapp .footer-order-logo {
    background: #25D366;

    color: #ffffff;

    box-shadow:
        0 5px 15px rgba(37, 211, 102, 0.25);
}

.footer-whatsapp .footer-order-logo i {
    font-size: 28px;
}


/* Swiggy / Zomato images */

.footer-order-logo img {
    display: block;

    width: 34px;
    height: 34px;

    object-fit: contain;
}


/* =========================================================
   CONTENT
   ========================================================= */

.footer-order-content {
    min-width: 0;

    flex: 1;

    margin-left: 13px;

    text-align: left;
}

.footer-order-content strong {
    display: block;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.3;
}

.footer-order-content span {
    display: block;

    margin-top: 4px;

    color: rgba(255, 255, 255, 0.62);

    font-size: 11px;

    line-height: 1.4;
}


/* =========================================================
   ARROW
   ========================================================= */

.footer-order-arrow {
    width: 32px;
    height: 32px;

    flex: 0 0 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #e8c45a;

    background:
        rgba(232, 196, 90, 0.10);

    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.footer-order-arrow i {
    font-size: 11px;
}


/* =========================================================
   HOVER
   ========================================================= */

.footer-order-card:hover {
    transform: translateY(-3px);

    background:
        rgba(255, 255, 255, 0.09);

    border-color:
        rgba(232, 196, 90, 0.40);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.16);
}

.footer-order-card:hover .footer-order-arrow {
    transform: translate(2px, -2px);

    background:
        rgba(232, 196, 90, 0.20);
}


/* =========================================================
   SUBTLE PREMIUM ANIMATION
   ========================================================= */

@keyframes orderOnlineGlow {

    0%,
    100% {
        opacity: 0.78;

        text-shadow:
            0 0 0 rgba(232, 196, 90, 0);
    }

    50% {
        opacity: 1;

        text-shadow:
            0 0 10px rgba(232, 196, 90, 0.28);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .footer-order-online-section {
        margin: 30px 0 26px;

        padding: 24px 12px 26px;
    }

    .footer-order-online-heading span {
        font-size: 12px;

        letter-spacing: 1.6px;
    }

    .footer-order-online-subtitle {
        max-width: 300px;

        font-size: 11px;

        margin-bottom: 18px;
    }

    .footer-order-online-grid {
        grid-template-columns: 1fr;

        gap: 11px;
    }

    .footer-order-card {
        min-height: 70px;

        padding: 11px 13px;

        border-radius: 14px;
    }

    .footer-order-logo {
        width: 44px;
        height: 44px;

        flex-basis: 44px;

        border-radius: 12px;
    }

    .footer-order-logo img {
        width: 30px;
        height: 30px;
    }

    .footer-whatsapp .footer-order-logo i {
        font-size: 25px;
    }

    .footer-order-content {
        margin-left: 11px;
    }

    .footer-order-content strong {
        font-size: 13px;
    }

    .footer-order-content span {
        font-size: 10px;
    }

    .footer-order-arrow {
        width: 29px;
        height: 29px;

        flex-basis: 29px;
    }

}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .footer-order-online-heading span {
        animation: none;
    }

    .footer-order-card,
    .footer-order-arrow {
        transition: none;
    }

}

/* =========================================================
   FINAL FIX V2
   ORDER ONLINE + PLATFORM IMAGES + REGISTRATION SPACING
   ========================================================= */


/* =========================================================
   ORDER ONLINE SECTION
   ========================================================= */

.footer-order-online-section {

    width: 100% !important;
    max-width: 100% !important;

    margin: 28px 0 0 !important;

    padding: 28px 20px 24px !important;

    box-sizing: border-box;

    text-align: center;

    /* ONE separator only */
    border-top: 1px solid rgba(255,255,255,0.10) !important;

    border-bottom: none !important;

    overflow: hidden;
}


/* =========================================================
   ORDER ONLINE GRID
   ========================================================= */

.footer-order-online-grid {

    width: 100% !important;

    max-width: 1100px !important;

    margin: 0 auto !important;

    display: grid !important;

    grid-template-columns:
        repeat(3, minmax(0, 1fr)) !important;

    gap: 16px !important;

    box-sizing: border-box;
}


/* =========================================================
   PLATFORM CARD
   ========================================================= */

.footer-order-card {

    width: 100% !important;

    min-width: 0;

    min-height: 82px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    padding: 14px 17px;

}


/* =========================================================
   PLATFORM LOGO CONTAINER
   IMPORTANT:
   Remove the artificial white gap
   ========================================================= */

.footer-order-logo {

    width: 50px !important;
    height: 50px !important;

    min-width: 50px !important;

    flex: 0 0 50px !important;

    padding: 0 !important;

    margin: 0 !important;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   SWIGGY + ZOMATO IMAGE
   Fill the complete logo box
   ========================================================= */

.footer-order-logo img {

    display: block !important;

    width: 50px !important;
    height: 50px !important;

    max-width: none !important;

    padding: 0 !important;
    margin: 0 !important;

    object-fit: cover !important;

    border: 0 !important;

   

}


/* =========================================================
   WHATSAPP
   ========================================================= */

.footer-whatsapp .footer-order-logo {

    width: 50px !important;
    height: 50px !important;

    min-width: 50px !important;

    flex: 0 0 50px !important;

    padding: 0 !important;

    background: #25D366 !important;

    color: #ffffff !important;

    border-radius: 14px;

}


.footer-whatsapp .footer-order-logo i {

    font-size: 28px !important;

}


/* =========================================================
   ORDER CONTENT
   ========================================================= */

.footer-order-content {

    min-width: 0;

    flex: 1;

    margin-left: 13px;

    text-align: left;

}


/* =========================================================
   ARROW
   ========================================================= */

.footer-order-arrow {

    width: 32px;

    height: 32px;

    min-width: 32px;

    flex: 0 0 32px;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* =========================================================
   REMOVE EXTRA SPACE BEFORE REGISTRATIONS
   ========================================================= */

.footer-registrations-section {

    width: 100% !important;

    margin-top: 0 !important;

    padding-top: 15px !important;

    border-top: none !important;

}


/* =========================================================
   REGISTRATION HEADING
   ========================================================= */

.footer-registrations-heading {

    margin-top: 0 !important;

    margin-bottom: 20px !important;

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .footer-order-online-section {

        width: 100% !important;

        margin: 22px 0 0 !important;

        padding: 24px 12px 20px !important;

        border-top:
            1px solid rgba(255,255,255,0.10) !important;

        border-bottom: none !important;

    }


    .footer-order-online-grid {

        width: 100% !important;

        max-width: 100% !important;

        margin: 0 !important;

        grid-template-columns: 1fr !important;

        gap: 10px !important;

    }


    .footer-order-card {

        width: 100% !important;

        min-height: 70px !important;

        padding: 11px 13px !important;

        border-radius: 14px !important;

    }


    .footer-order-logo {

        width: 44px !important;

        height: 44px !important;

        min-width: 44px !important;

        flex: 0 0 44px !important;

        border-radius: 12px !important;

    }


    .footer-order-logo img {

        width: 44px !important;

        height: 44px !important;

        border-radius: 12px !important;

        object-fit: cover !important;

    }


    .footer-whatsapp .footer-order-logo {

        width: 44px !important;

        height: 44px !important;

        min-width: 44px !important;

        flex: 0 0 44px !important;

        border-radius: 12px !important;

    }


    .footer-whatsapp .footer-order-logo i {

        font-size: 25px !important;

    }


    .footer-order-content {

        margin-left: 11px !important;

    }


    .footer-order-content strong {

        font-size: 13px !important;

    }


    .footer-order-content span {

        font-size: 10px !important;

    }


    .footer-order-arrow {

        width: 29px !important;

        height: 29px !important;

        min-width: 29px !important;

        flex-basis: 29px !important;

    }


    /* Registration starts immediately after Order Online */

    .footer-registrations-section {

        margin-top: 0 !important;

        padding-top: 12px !important;

        border-top: none !important;

    }


    .footer-registrations-heading {

        margin-bottom: 16px !important;

    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .footer-order-online-section {

        margin-top: 20px !important;

        padding:
            22px 10px 18px !important;

    }


    .footer-order-online-grid {

        gap: 9px !important;

    }


    .footer-order-card {

        min-height: 66px !important;

        padding: 10px 11px !important;

    }


    .footer-order-logo,
    .footer-order-logo img {

        width: 42px !important;

        height: 42px !important;

        min-width: 42px !important;

    }


    .footer-whatsapp .footer-order-logo {

        width: 42px !important;

        height: 42px !important;

        min-width: 42px !important;

    }


    .footer-whatsapp .footer-order-logo i {

        font-size: 23px !important;

    }

}

/*==========================================================
END OF FOOTER.CSS
==========================================================*/