 /* Global Font Family */
    :root {
        --primary-font: 'Poppins', sans-serif;
        --secondary-font: 'Inter', sans-serif;
    }

    body {
        font-family: var(--primary-font);
    }

    .strlistdiv p {
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        width: 100%;
        line-height: normal;
        overflow: hidden;
        -webkit-box-orient: vertical;
        margin-top: 5px;
    }

    /* Enhanced Footer Styles */
    .footer-top-area {
        background: #f2feeb;
        padding: 30px 0;
        position: relative;
        overflow: hidden;
        font-family: var(--primary-font);
    }

    .footer-top-area::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 100%);
        z-index: 1;
    }

    .footer-list-wrap {
        position: relative;
        z-index: 2;
    }

    .ft-title {
        font-family: var(--primary-font);
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 12px;
        color: #333;
        position: relative;
        padding-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .ft-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background: var(--themeclr-dark);
        transition: all 0.3s ease;
    }

    .ftlink-li:hover .ft-title::after {
        width: 100px;
    }

    .footer-sublist {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .ftsublink-li {
        margin-bottom: 0px !important;
        transform: translateX(0);
        transition: all 0.3s ease;
    }

    .ftsublink-li:hover {
        transform: translateX(10px);
    }

    .ft-sublink {
        font-family: var(--primary-font);
        color: #666;
        text-decoration: none;
        font-size: 0.95rem;
        transition: all 0.3s ease;
        display: inline-block;
        position: relative;
    }

    .ft-sublink::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--themeclr-dark);
        transition: all 0.3s ease;
    }

    .ft-sublink:hover {
        color: var(--themeclr-dark);
        padding-left: 5px;
    }

    .ft-sublink:hover::after {
        width: 100%;
    }

    .custom-content {
        margin-bottom: 12px;
        transition: all 0.3s ease;
    }

    .custom-content:hover {
        transform: translateY(-3px);
    }

    .custom-content strong {
        font-family: var(--primary-font);
        color: #333;
        font-size: 0.85rem;
        display: block;
        margin-bottom: 3px;
        font-weight: 600;
    }

    .custom-content p {
        font-family: var(--primary-font);
        margin: 0;
        color: #666;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .custom-content a {
        font-family: var(--primary-font);
        color: #666;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .custom-content a:hover {
        color: var(--themeclr-dark);
    }

    .social-icon {
        display: flex;
        gap: 10px;
        margin-top: 15px;
    }

    .social-icon li a {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 50%;
        color: #333;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .social-icon li a:hover {
        background: var(--themeclr-dark);
        color: #fff;
        transform: translateY(-3px);
    }

    .footer-bottom-area {
        /* background: #fff; */
        padding: 10px 0;
        position: relative;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
        font-family: var(--primary-font);
    }

    .ft-bottom {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .copy-right {
        text-align: center;
    }

    .copy-right p {
        font-family: var(--primary-font);
        margin: 0;
        color: #333;
        font-size: 1rem;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

    .copy-right .copy-icon {
        color: var(--themeclr-dark);
        margin-right: 5px;
    }

    .copy-right span {
        background: linear-gradient(45deg, var(--themeclr-dark), #666);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 600;
    }

    .copy-right a {
        color: var(--themeclr-dark);
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .copy-right a:hover {
        color: #333;
    }

    /* Responsive Styles */
    @media (max-width: 991px) {
        .footer-top-area {
            padding: 25px 0;
        }

        .ft-title {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .ft-bottom {
            flex-direction: column;
            text-align: center;
            gap: 20px;
        }

        .ft-sublink {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 767px) {
        .footer-top-area {
            padding: 20px 0;
        }

        .ftlink-li {
            margin-bottom: 15px;
        }

        .ft-title {
            font-size: 1.1rem;
        }

        .social-icon {
            justify-content: center;
        }

        .footer-bottom-area {
            padding: 15px 0;
        }

        .copy-right p {
            font-size: 0.9rem;
        }

        .custom-content p {
            font-size: 0.85rem;
        }
    }

    /* Animation Classes */
    .animate-fade-up {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.6s ease;
    }

    .animate-fade-up.active {
        opacity: 1;
        transform: translateY(0);
    }

    .animate-fade-in {
        opacity: 0;
        transition: all 0.4s ease;
    }

    .animate-fade-in.active {
        opacity: 1;
    }

    /* Store Location Styles */
    .store-contact {
        position: relative;
    }

    .strlistdiv {
        /* background: #fff; */
        padding: 10px;
        border-radius: 8px;
        /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
        transition: all 0.3s ease;
        margin-bottom: 8px;
    }

    .strlistdiv:hover {
        transform: translateY(-5px);
        /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    }

    .strlistdiv h6 {
        color: #333;
        margin-bottom: 5px;
        font-weight: 600;
        font-size: 0.95rem;
    }

    .strlistdiv p {
        color: #666;
        margin: 0;
        font-size: 0.9rem;
    }

    /* Payment Icons */
    .payment-icons {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 15px;
    }

    .payment-icons img {
        height: 22px;
        transition: all 0.3s ease;
    }

    .payment-icons img:hover {
        transform: scale(1.1);
    }

    /* App Store Buttons */
    .appstoredown {
        margin-top: 15px;
    }

    .appstoredown img {
        max-width: 120px;
    }

    .appstoredown img:hover {
        transform: translateY(-3px);
    }

    /* Contact Info Styles */
    .store-contact .custom-content {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        /* padding: 10px; */
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .store-contact .custom-content:hover {
        /* background: rgba(255, 255, 255, 0.8); */
        transform: translateY(-3px);
    }

    .store-contact .custom-content .icon-wrapper {
        width: 35px;
        height: 35px;
        min-width: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--themeclr-dark);
        border-radius: 50%;
        color: #fff;
        font-size: 16px;
        transition: all 0.3s ease;
    }

    .store-contact .social-icons-wrapper {
        margin-top: 15px;
        display: flex;
        gap: 10px;
    }

    .store-contact .social-icons-wrapper .icon-wrapper {
        background: var(--themeclr-dark);
        width: 32px;
        height: 32px;
        min-width: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #fff;
        font-size: 18px;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .store-contact .social-icons-wrapper .icon-wrapper:hover {
        transform: translateY(-5px);
        background: #fff;
        color: var(--themeclr-dark);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .store-contact .custom-content strong {
        color: #333;
        font-size: 0.9rem;
        display: block;
        margin-bottom: 5px;
        font-weight: 600;
    }

    .store-contact .custom-content p {
        margin: 0;
        color: #666;
        font-size: 0.9rem;
    }

    .store-contact .custom-content a {
        color: #666;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .store-contact .custom-content a:hover {
        color: var(--themeclr-dark);
        transform: translateX(5px);
    }

    /* Footer Label Styles */
    .section-label {
        font-family: var(--primary-font);
        font-size: 0.85rem;
        color: #666;
        margin-bottom: 5px;
        display: block;
        font-weight: 500;
    }

    .contact-label {
        font-family: var(--primary-font);
        font-size: 0.9rem;
        color: #333;
        margin-bottom: 3px;
        display: block;
        font-weight: 500;
    }

    .social-label {
        font-family: var(--primary-font);
        font-size: 0.9rem;
        color: #333;
        margin-bottom: 10px;
        display: block;
        font-weight: 500;
    }

     #offcanmenu {
        a.topinmenualink.py-3.link-title {
            color: var(--themeclr-dark);
            font-size: 17px;
            display: flex;
            align-items: center;
            font-weight: 500;
            white-space: nowrap;
            letter-spacing: .5px;
        }
    }

    .offcanvas {
        .offcanvas-body {
            overflow-x: hidden;
        }
    }

      div#giftcardExample {
        box-shadow: 0 0 12px #00000012;
        padding: 15px;

        .topinmenuul {
            row-gap: 15px;
        }

        li.giftcardli {

            .offerinpdiv {
                display: flex;
                gap: 10px;
                border: 1px solid rgba(194, 159, 94, 0.3);
                border-radius: 10px;
                overflow: hidden;



                input {
                    border-radius: 8px;
                    width: 100%;
                    border: none;
                }
            }

            .tooltip {
                position: relative;
                opacity: 1;
                padding: 0;
            }

            ;

        }

        li.giftcardli button.btn-style-o.btn-style {
            white-space: nowrap;
            box-shadow: none;
            /*background-color: var(--thmeclr-light);*/
            padding: 0 10px;
            height: 100%;
            border-radius: 0 10px 10px 0 !important;
        }

        .tooltip .tooltiptext {
            visibility: hidden;
            width: 140px;
            background-color: #555;
            color: #fff;
            text-align: center;
            border-radius: 6px;
            padding: 5px;
            position: absolute;
            z-index: 1;
            bottom: 150%;
            left: 50%;
            margin-left: -75px;
            opacity: 0;
            transition: opacity 0.3s;
        }

    }