.elementor-71 .elementor-element.elementor-element-773ca17{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-3f99240 *//* ===================================
   CONTACT US PAGE - Custom Styles
   =================================== */

/* ---------- BREADCRUMB ---------- */
.contact-breadcrumb {
    padding: 16px 0;
    background: #f8f9fb;
    border-bottom: 1px solid #eee;
}

.contact-breadcrumb .breadcrumb-item a {
    color: #555;
    font-size: 13px;
    transition: color 0.2s;
}

.contact-breadcrumb .breadcrumb-item a:hover {
    color: #f26f25;
}

.contact-breadcrumb .breadcrumb-item.active {
    color: #ef4234;
    font-size: 13px;
    font-weight: 600;
}

.contact-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #bbb;
}

/* ---------- HERO ---------- */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, #ef4234 0%, #ef4234 40%, #6b2530 100%);
    padding: 70px 0 100px;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(252, 182, 20, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -8%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242, 111, 37, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    color: #fcb614;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 18px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hero-tag i {
    font-size: 14px;
}

.contact-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}

.contact-hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    max-width: 520px;
}

/* ---------- CONTACT INFO CARDS ---------- */
.contact-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.contact-info-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(162, 62, 73, 0.12);
    border-color: #f26f25;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(242, 111, 37, 0.1), rgba(252, 182, 20, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: #f26f25;
    transition: all 0.3s;
}

.contact-info-card:hover .contact-info-icon {
    background: linear-gradient(135deg, #f26f25, #fcb614);
    color: #fff;
    transform: scale(1.1);
}

.contact-info-title {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ef4234;
    margin-bottom: 8px;
}

.contact-info-text {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

/* ---------- FORM SECTION ---------- */
.contact-form-section {
    padding: 70px 0;
    background: #fff;
}

.contact-subtitle-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #f26f25;
    text-transform: uppercase;
    margin-bottom: 10px;
    padding: 6px 16px;
    border-radius: 4px;
    background: rgba(242, 111, 37, 0.08);
}

.contact-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #ef4234;
    line-height: 1.3;
    margin-bottom: 10px;
}

.contact-form-desc {
    font-size: 14px;
    color: #888;
    margin-bottom: 28px;
}

.contact-form-wrap {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.contact-form-wrap.revealed {
    opacity: 1;
    transform: translateY(0);
}

.form-floating-custom label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 6px;
    display: block;
}

.contact-input {
    width: 100%;
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 13px 18px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #333;
    background: #fafafa;
    outline: none;
    transition: all 0.3s ease;
}

.contact-input:focus {
    border-color: #f26f25;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(242, 111, 37, 0.08);
}

.contact-input::placeholder {
    color: #bbb;
}

.contact-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.contact-textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f26f25, #d45c1a);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 111, 37, 0.3);
}

.contact-submit-btn:hover {
    background: linear-gradient(135deg, #d45c1a, #b84d15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(242, 111, 37, 0.4);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Success Message */
.contact-success-msg {
    text-align: center;
    padding: 40px 20px;
    animation: fadeInUp 0.5s ease;
}

.success-icon {
    font-size: 60px;
    color: #3ebeb7;
    margin-bottom: 16px;
}

.contact-success-msg h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ef4234;
    margin-bottom: 8px;
}

.contact-success-msg p {
    font-size: 15px;
    color: #777;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- MAP ---------- */
.contact-map-wrap {
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.1s;
}

.contact-map-wrap.revealed {
    opacity: 1;
    transform: translateY(0);
}

.contact-map-frame {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid #f0f0f0;
}

/* ---------- FAQ ---------- */
.contact-faq-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
}

.contact-faq-wrap.revealed {
    opacity: 1;
    transform: translateY(0);
}

.contact-faq-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ef4234;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-faq-title i {
    color: #f26f25;
    font-size: 22px;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover {
    color: #f26f25;
}

.faq-question i {
    font-size: 12px;
    color: #999;
    transition: transform 0.3s;
}

.faq-question.active {
    color: #f26f25;
}

.faq-question.active i {
    transform: rotate(180deg);
    color: #f26f25;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0;
}

.faq-answer.open {
    max-height: 200px;
    padding-bottom: 16px;
}

.faq-answer p {
    font-size: 13px;
    color: #777;
    line-height: 1.7;
    margin: 0;
}

/* ---------- SOCIAL CTA ---------- */
.contact-social-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, #ef4234, #8c3340);
}

.social-cta-wrap {
    text-align: center;
}

.social-cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.social-cta-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.social-cta-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.social-cta-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.social-cta-link.revealed {
    opacity: 1;
    transform: translateY(0);
}

.social-cta-link:hover {
    background: #fff;
    color: #ef4234;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-cta-link i {
    font-size: 18px;
}

.social-cta-link:nth-child(2) {
    transition-delay: 0.05s;
}

.social-cta-link:nth-child(3) {
    transition-delay: 0.1s;
}

.social-cta-link:nth-child(4) {
    transition-delay: 0.15s;
}

.social-cta-link:nth-child(5) {
    transition-delay: 0.2s;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    .contact-hero-title {
        font-size: 34px;
    }

    .contact-hero {
        padding: 50px 0 80px;
    }

    .contact-heading {
        font-size: 26px;
    }

    .contact-form-wrap {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 40px 0 70px;
    }

    .contact-hero-title {
        font-size: 28px;
    }

    .contact-hero-desc {
        font-size: 14px;
    }

    .contact-heading {
        font-size: 24px;
    }

    .contact-form-wrap {
        padding: 24px;
    }

    .contact-info-card {
        padding: 24px 16px;
    }

    .contact-info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .contact-info-title {
        font-size: 14px;
    }

    .contact-info-text {
        font-size: 12px;
    }

    .social-cta-title {
        font-size: 22px;
    }

    .social-cta-icons {
        gap: 10px;
    }

    .social-cta-link {
        padding: 10px 18px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .contact-hero-title {
        font-size: 24px;
    }

    .contact-hero-tag {
        font-size: 11px;
        padding: 6px 14px;
    }

    .contact-form-wrap {
        padding: 20px 16px;
    }

    .contact-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .social-cta-link span {
        display: none;
    }

    .social-cta-link {
        padding: 12px 16px;
        border-radius: 50%;
    }

    .social-cta-link i {
        font-size: 22px;
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-773ca17 *//* ===================================
   BACOLA - Online Grocery Store
   Custom Stylesheet
   =================================== */

/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ---------- TOP BAR ---------- */
.top-bar {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 8px 0;
    font-size: 12px;
    color: #666;
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-links li a {
    color: #555;
    font-size: 12px;
    font-weight: 400;
    transition: color 0.2s;
}

.top-links li a:hover {
    color: #ef4234;
}

.top-delivery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #555;
    font-size: 12px;
}

.top-delivery i {
    font-size: 18px;
    color: #333;
}

.top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.top-phone {
    font-size: 12px;
    color: #555;
}

.top-phone a {
    color: #f26f25;
    font-weight: 600;
}

.top-phone a:hover {
    color: #d45c1a;
}

.top-dropdowns {
    display: flex;
    gap: 10px;
}

.top-dropdowns .dropdown-toggle {
    font-size: 12px;
    color: #555;
    padding: 0;
    border: none;
    background: none;
}

.top-dropdowns .dropdown-toggle::after {
    font-size: 10px;
    vertical-align: middle;
}

.top-dropdowns .dropdown-menu {
    min-width: 100px;
    font-size: 12px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ---------- HEADER MAIN ---------- */
.header-main {
    padding: 18px 0;
    background: #fff;
}

.logo-wrap {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fcb614, #e5a40f);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 2px 8px rgba(252, 182, 20, 0.3);
}

.logo-name {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #ef4234;
    line-height: 1;
    margin: 0;
}

.logo-tagline {
    font-size: 10px;
    color: #999;
    line-height: 1;
    margin-top: 2px;
    display: block;
}

/* Location Selector */
.location-.elementor-71 .elementor-element.elementor-element-773ca17 {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 14px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.location-.elementor-71 .elementor-element.elementor-element-773ca17:hover {
    border-color: #3ebeb7;
}

.location-label {
    font-size: 10px;
    color: #999;
    display: block;
    line-height: 1;
    margin-bottom: 3px;
}

.location-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.location-value i {
    font-size: 10px;
    color: #999;
    margin-left: 8px;
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    background: #f3f4f7;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #f3f4f7;
    transition: border-color 0.2s;
}

.search-bar:focus-within {
    border-color: #3ebeb7;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 12px 18px;
    font-size: 14px;
    color: #333;
    font-family: 'Inter', sans-serif;
}

.search-input::placeholder {
    color: #aaa;
}

.search-btn {
    border: none;
    background: transparent;
    padding: 12px 18px;
    cursor: pointer;
    color: #333;
    font-size: 18px;
    transition: color 0.2s;
}

.search-btn:hover {
    color: #f26f25;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.action-user {
    font-size: 26px;
    color: #333;
    transition: color 0.2s;
}

.action-user:hover {
    color: #ef4234;
}

.action-cart-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-price {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.action-cart {
    font-size: 24px;
    color: #fff;
    background: #f26f25;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.2s;
}

.action-cart:hover {
    background: #d45c1a;
    color: #fff;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4234;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* ---------- MAIN NAVIGATION ---------- */
.main-nav {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 0;
}

/* All Categories Button */
.all-categories {
    position: relative;
}



.cat-btn:hover {
    background: linear-gradient(135deg, #8c3340, #752b36);
}

.cat-btn .bi-list {
    font-size: 18px;
}

.cat-arrow {
    font-size: 10px;
    margin-left: auto;
}

.cat-subtitle {
    font-size: 9px;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    display: inline-block;
    padding: 2px 10px;
    border-radius: 0 0 8px 8px;
    margin-left: 20px;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-top: -2px;
}

/* Main Menu */
.main-menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    padding: 0;
    margin: 0;
}

.menu-item {
    position: relative;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 18px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    transition: color 0.2s;
    white-space: nowrap;
}

.menu-link:hover {
    color: #f26f25;
}

.menu-link .bi-chevron-down {
    font-size: 10px;
}

.menu-item .dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    margin-top: 0;
    padding: 8px 0;
}

.menu-item .dropdown-item {
    font-size: 13px;
    padding: 8px 20px;
    color: #555;
    transition: all 0.2s;
}

.menu-item .dropdown-item:hover {
    background: #fdf4f5;
    color: #ef4234;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
    margin-top: 15px;
    padding-bottom: 10px;
}

.hero-carousel {
    border-radius: 12px;
    overflow: hidden;
}

.hero-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f5f0eb;
}

.hero-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 60%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 50px 0 50px 50px;
    max-width: 480px;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.tag-exclusive {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ef4234;
    letter-spacing: 1.5px;
}

.tag-discount {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: #3ebeb7;
    padding: 4px 12px;
    border-radius: 4px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ef4234;
    line-height: 1.2;
    margin-bottom: 12px;
    max-width: 400px;
}

.hero-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.hero-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 28px;
}

.price-from {
    font-size: 14px;
    color: #999;
}

.price-value {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #f26f25;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f26f25, #d45c1a);
    color: #fff;
    padding: 13px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 111, 37, 0.3);
}

.hero-btn:hover {
    background: linear-gradient(135deg, #d45c1a, #b84d15);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 111, 37, 0.4);
}

.hero-btn i {
    transition: transform 0.3s;
}

.hero-btn:hover i {
    transform: translateX(4px);
}

/* Carousel Indicators - bottom left */
.hero-indicators {
    justify-content: flex-start;
    bottom: 20px;
    left: 50px;
    margin-bottom: 0;
    margin-left: 0;
}

a.logo-link img {
    width: 157px;
}

.footer-logo img {
    width: 151px;
}

.hero-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    background: #bbb !important;
    border: none !important;
    opacity: 1 !important;
    margin: 0 3px !important;
    transition: all 0.3s !important;
}

.hero-indicators button.active {
    background: #f26f25 !important;
}

/* ---------- HAMBURGER BUTTON ---------- */
.hamburger-btn {
    border: none;
    background: none;
    font-size: 28px;
    color: #333;
    padding: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.2s;
}

.hamburger-btn:hover {
    color: #ef4234;
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ef4234;
    margin: 0;
    position: relative;
    padding-bottom: 8px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #f26f25, #fcb614);
    border-radius: 3px;
}

.section-view-all {
    font-size: 14px;
    font-weight: 600;
    color: #f26f25;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}

.section-view-all:hover {
    color: #d45c1a;
    gap: 8px;
}

/* ---------- CATEGORIES SECTION ---------- */
.categories-section {
    padding: 40px 0 20px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 20px 10px;
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    background: #fff;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #f26f25;
}

.cat-img-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: transform 0.3s;
}

.category-card:hover .cat-img-wrap {
    transform: scale(1.1);
}

.cat-img-wrap img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.cat-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 1.3;
}

/* ---------- PRODUCT SECTIONS ---------- */
.product-section {
    padding: 40px 0;
}

.best-sellers-bg {
    background: #fdf4f5;
}

.sev-section-bg {
    background: #fff8f3;
}

.masala-section-bg {
    background: #f3fbfb;
}

/* Product Card */
.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #f26f25;
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-sale {
    background: #f26f25;
    color: #fff;
}

.badge-new {
    background: #3ebeb7;
    color: #fff;
}

.badge-hot {
    background: linear-gradient(135deg, #ef4234, #8c3340);
    color: #fff;
}

/* Product Image */
.product-img-wrap {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    min-height: 180px;
    transition: background 0.3s;
}

.product-card:hover .product-img-wrap {
    background: #fef5f0;
}

.product-img-wrap img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.12);
}

/* Product Info */
.product-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 11px;
    color: #3ebeb7;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-name {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
}

.product-rating i {
    font-size: 12px;
    color: #fcb614;
}

.product-rating span {
    font-size: 11px;
    color: #999;
    margin-left: 4px;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    margin-top: auto;
}

.product-price {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #f26f25;
}

.product-price-old {
    font-size: 14px;
    color: #aaa;
    text-decoration: line-through;
}

/* Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    border: 2px solid #f26f25;
    background: transparent;
    color: #f26f25;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.add-to-cart-btn:hover {
    background: #f26f25;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(242, 111, 37, 0.3);
}

.add-to-cart-btn.added {
    background: #3ebeb7;
    border-color: #3ebeb7;
    color: #fff;
}

/* ---------- NEWSLETTER ---------- */
.newsletter-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #ef4234, #8c3340);
}

.newsletter-wrap {
    padding: 0;
}

.newsletter-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.newsletter-title i {
    margin-right: 8px;
    color: #fcb614;
}

.newsletter-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.newsletter-input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    background: #fff;
}

.newsletter-btn {
    border: none;
    background: linear-gradient(135deg, #f26f25, #d45c1a);
    color: #fff;
    padding: 16px 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #d45c1a, #b84d15);
}

/* ---------- FEATURES BAR ---------- */
.features-bar {
    padding: 35px 0;
    background: #f8f9fb;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-item>i {
    font-size: 32px;
    color: #3ebeb7;
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ef4234;
    margin: 0 0 2px;
}

.feature-item p {
    font-size: 12px;
    color: #888;
    margin: 0;
}

/* ---------- FOOTER ---------- */
.main-footer {
    background: #ef4234;
    padding: 50px 0 0;
    color: rgba(255, 255, 255, 0.85);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
}

.footer-logo .logo-name {
    color: #fff;
}

.footer-about {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 16px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #fcb614;
    color: #ef4234;
    transform: translateY(-3px);
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #fcb614;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
}

.footer-links li a:hover {
    color: #fcb614;
    padding-left: 5px;
}

.footer-contact li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li i {
    color: #fcb614;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
    font-size: 13px;
    color: #ffffff;
    margin: 0;
}

.footer-payments {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    font-size: 22px;
    color: #ffffff;
}

/* ---------- MOBILE NAV OFFCANVAS ---------- */
.mobile-menu-offcanvas {
    max-width: 300px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    border-radius: 8px;
    transition: all 0.2s;
    text-decoration: none;
}

.mobile-nav-list li a:hover {
    background: #fdf4f5;
    color: #ef4234;
}

.mobile-nav-list li a i {
    font-size: 18px;
    color: #f26f25;
    width: 24px;
    text-align: center;
}

.mobile-nav-divider {
    height: 1px;
    background: #eee;
    margin: 10px 0;
}

.mobile-nav-heading {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    padding: 8px 8px 4px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    .top-bar .row>div {
        text-align: center !important;
        margin-bottom: 5px;
    }

    .top-links {
        justify-content: center;
    }

    .top-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-main .row>div {
        margin-bottom: 12px;
    }

    .logo-wrap {
        justify-content: center;
    }

    .search-bar {
        max-width: 100%;
    }

    .header-actions {
        justify-content: center;
    }

    .main-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .all-categories {
        text-align: center;
        margin-bottom: 10px;
    }

    .cat-btn {
        display: inline-flex;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-content {
        padding: 30px 25px;
    }

    .hero-banner {
        min-height: 350px;
    }

    .hero-overlay {
        width: 60%;
    }

    .hero-indicators {
        left: 25px;
    }

    .section-title {
        font-size: 20px;
    }

    .product-section {
        padding: 30px 0;
    }

    .categories-section {
        padding: 30px 0 15px;
    }

    .newsletter-section .row>div {
        text-align: center;
        margin-bottom: 15px;
    }

    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }

    .main-menu {
        display: none;
    }
}

@media (max-width: 767px) {
    .top-links {
        gap: 12px;
        flex-wrap: wrap;
    }

    .top-delivery {
        font-size: 11px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-overlay {
        width: 70%;
    }

    .menu-link {
        padding: 12px 10px;
        font-size: 12px;
    }

    .price-value {
        font-size: 28px;
    }

    .hero-banner {
        min-height: 320px;
    }

    .hero-content {
        padding: 25px 20px;
    }

    .hero-indicators {
        left: 20px;
    }

    .product-img-wrap {
        min-height: 140px;
        padding: 15px;
    }

    .product-img-wrap img {
        width: 90px;
        height: 90px;
    }

    .product-price {
        font-size: 17px;
    }

    .product-info {
        padding: 12px;
    }

    .newsletter-title {
        font-size: 20px;
    }

    .feature-item>i {
        font-size: 26px;
    }

    .feature-item h4 {
        font-size: 13px;
    }

    .footer-payments {
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .top-bar {
        display: none;
    }

    .logo-name {
        font-size: 22px;
    }

    .hero-title {
        font-size: 22px;
    }

    .main-menu {
        gap: 0;
    }

    .menu-link {
        padding: 10px 8px;
        font-size: 11px;
    }

    .hero-overlay {
        width: 80%;
    }

    .hero-banner {
        min-height: 280px;
    }

    .hero-content {
        padding: 20px 15px;
    }

    .hero-indicators {
        left: 15px;
        bottom: 12px;
    }

    .section-title {
        font-size: 18px;
    }

    .section-header {
        margin-bottom: 16px;
    }

    .category-card {
        padding: 14px 6px;
    }

    .cat-img-wrap {
        width: 56px;
        height: 56px;
    }

    .cat-img-wrap img {
        width: 34px;
        height: 34px;
    }

    .cat-name {
        font-size: 11px;
    }

    .product-img-wrap {
        min-height: 120px;
        padding: 12px;
    }

    .product-img-wrap img {
        width: 75px;
        height: 75px;
    }

    .product-name {
        font-size: 13px;
    }

    .product-price {
        font-size: 16px;
    }

    .add-to-cart-btn {
        padding: 8px 10px;
        font-size: 12px;
    }

    .newsletter-section {
        padding: 30px 0;
    }

    .newsletter-title {
        font-size: 18px;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 8px;
    }

    .newsletter-btn {
        border-radius: 0 0 8px 8px;
    }

    .features-bar {
        padding: 20px 0;
    }

    .feature-item {
        gap: 10px;
    }

    .feature-item>i {
        font-size: 22px;
    }

    .footer-copy,
    .footer-payments {
        text-align: center;
    }

    .footer-payments {
        justify-content: center;
        margin-top: 10px;
    }
}


/* ===================================
   BACOLA - Online Grocery Store
   Custom Stylesheet
   =================================== */

/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ---------- TOP BAR ---------- */
.top-bar {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    padding: 8px 0;
    font-size: 12px;
    color: #666;
}

.top-links {
    display: flex;
    gap: 20px;
}

.top-links li a {
    color: #555;
    font-size: 12px;
    font-weight: 400;
    transition: color 0.2s;
}

.top-links li a:hover {
    color: #ef4234;
}

.top-delivery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #555;
    font-size: 12px;
}

.top-delivery i {
    font-size: 18px;
    color: #333;
}

.top-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

.top-phone {
    font-size: 12px;
    color: #555;
}

.top-phone a {
    color: #f26f25;
    font-weight: 600;
}

.top-phone a:hover {
    color: #d45c1a;
}

.top-dropdowns {
    display: flex;
    gap: 10px;
}

.top-dropdowns .dropdown-toggle {
    font-size: 12px;
    color: #555;
    padding: 0;
    border: none;
    background: none;
}

.top-dropdowns .dropdown-toggle::after {
    font-size: 10px;
    vertical-align: middle;
}

.top-dropdowns .dropdown-menu {
    min-width: 100px;
    font-size: 12px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ---------- HEADER MAIN ---------- */
.header-main {
    padding: 18px 0;
    background: #fff;
}

.logo-wrap {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #fcb614, #e5a40f);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    box-shadow: 0 2px 8px rgba(252, 182, 20, 0.3);
}

.logo-name {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #ef4234;
    line-height: 1;
    margin: 0;
}

.logo-tagline {
    font-size: 10px;
    color: #999;
    line-height: 1;
    margin-top: 2px;
    display: block;
}

/* Location Selector */
.location-.elementor-71 .elementor-element.elementor-element-773ca17 {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px 14px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.location-.elementor-71 .elementor-element.elementor-element-773ca17:hover {
    border-color: #3ebeb7;
}

.location-label {
    font-size: 10px;
    color: #999;
    display: block;
    line-height: 1;
    margin-bottom: 3px;
}

.location-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.location-value i {
    font-size: 10px;
    color: #999;
    margin-left: 8px;
}

/* Search Bar */
.search-bar {
    display: flex;
    align-items: center;
    background: #f3f4f7;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #f3f4f7;
    transition: border-color 0.2s;
}

.search-bar:focus-within {
    border-color: #3ebeb7;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 12px 18px;
    font-size: 14px;
    color: #333;
    font-family: 'Inter', sans-serif;
}

.search-input::placeholder {
    color: #aaa;
}

.search-btn {
    border: none;
    background: transparent;
    padding: 12px 18px;
    cursor: pointer;
    color: #333;
    font-size: 18px;
    transition: color 0.2s;
}

.search-btn:hover {
    color: #f26f25;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.action-user {
    font-size: 26px;
    color: #333;
    transition: color 0.2s;
}

.action-user:hover {
    color: #ef4234;
}

.action-cart-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-price {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.action-cart {
    font-size: 24px;
    color: #fff;
    background: #f26f25;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background 0.2s;
}

.action-cart:hover {
    background: #d45c1a;
    color: #fff;
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ef4234;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* ---------- MAIN NAVIGATION ---------- */
.main-nav {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 0;
}

/* All Categories Button */
.all-categories {
    position: relative;
}

.cat-btn {
    background: linear-gradient(135deg, #ef4234, #8c3340);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: background 0.2s;
}

.cat-btn:hover {
    background: linear-gradient(135deg, #8c3340, #752b36);
}

.cat-btn .bi-list {
    font-size: 18px;
}

.cat-arrow {
    font-size: 10px;
    margin-left: auto;
}

.cat-subtitle {
    font-size: 9px;
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    display: inline-block;
    padding: 2px 10px;
    border-radius: 0 0 8px 8px;
    margin-left: 20px;
    letter-spacing: 0.5px;
    font-weight: 500;
    margin-top: -2px;
}

/* Main Menu */
.main-menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    padding: 0;
    margin: 0;
}

.menu-item {
    position: relative;
}

.menu-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 18px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    transition: color 0.2s;
    white-space: nowrap;
}

.menu-link:hover {
    color: #f26f25;
}

.menu-link .bi-chevron-down {
    font-size: 10px;
}

.menu-item .dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
    margin-top: 0;
    padding: 8px 0;
}

.menu-item .dropdown-item {
    font-size: 13px;
    padding: 8px 20px;
    color: #555;
    transition: all 0.2s;
}

.menu-item .dropdown-item:hover {
    background: #fdf4f5;
    color: #ef4234;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
    margin-top: 15px;
    padding-bottom: 10px;
}

.hero-carousel {
    border-radius: 12px;
    overflow: hidden;
}

.hero-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f5f0eb;
}

.hero-slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 60%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 50px 0 50px 50px;
    max-width: 480px;
}

.hero-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.tag-exclusive {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ef4234;
    letter-spacing: 1.5px;
}

.tag-discount {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: #3ebeb7;
    padding: 4px 12px;
    border-radius: 4px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #ef4234;
    line-height: 1.2;
    margin-bottom: 12px;
    max-width: 400px;
}

.hero-subtitle {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
}

.hero-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 28px;
}

.price-from {
    font-size: 14px;
    color: #999;
}

.price-value {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 800;
    color: #f26f25;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f26f25, #d45c1a);
    color: #fff;
    padding: 13px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 111, 37, 0.3);
}

.hero-btn:hover {
    background: linear-gradient(135deg, #d45c1a, #b84d15);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 111, 37, 0.4);
}

.hero-btn i {
    transition: transform 0.3s;
}

.hero-btn:hover i {
    transform: translateX(4px);
}

/* Carousel Indicators - bottom left */
.hero-indicators {
    justify-content: flex-start;
    bottom: 20px;
    left: 50px;
    margin-bottom: 0;
    margin-left: 0;
}

a.logo-link img {
    width: 157px;
}

.footer-logo img {
    width: 151px;
}

.hero-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    background: #bbb !important;
    border: none !important;
    opacity: 1 !important;
    margin: 0 3px !important;
    transition: all 0.3s !important;
}

.hero-indicators button.active {
    background: #f26f25 !important;
}

/* ---------- HAMBURGER BUTTON ---------- */
.hamburger-btn {
    border: none;
    background: none;
    font-size: 28px;
    color: #333;
    padding: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.2s;
}

.hamburger-btn:hover {
    color: #ef4234;
}

/* ---------- SECTION HEADERS ---------- */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ef4234;
    margin: 0;
    position: relative;
    padding-bottom: 8px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #f26f25, #fcb614);
    border-radius: 3px;
}

.section-view-all {
    font-size: 14px;
    font-weight: 600;
    color: #f26f25;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.2s;
}

.section-view-all:hover {
    color: #d45c1a;
    gap: 8px;
}

/* ---------- CATEGORIES SECTION ---------- */
.categories-section {
    padding: 40px 0 20px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 20px 10px;
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    background: #fff;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-color: #f26f25;
}

.cat-img-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: transform 0.3s;
}

.category-card:hover .cat-img-wrap {
    transform: scale(1.1);
}

.cat-img-wrap img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.cat-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 1.3;
}

/* ---------- PRODUCT SECTIONS ---------- */
.product-section {
    padding: 40px 0;
}

.best-sellers-bg {
    background: #fdf4f5;
}

.sev-section-bg {
    background: #fff8f3;
}

.masala-section-bg {
    background: #f3fbfb;
}

/* Product Card */
.product-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: #f26f25;
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-sale {
    background: #f26f25;
    color: #fff;
}

.badge-new {
    background: #3ebeb7;
    color: #fff;
}

.badge-hot {
    background: linear-gradient(135deg, #ef4234, #8c3340);
    color: #fff;
}

/* Product Image */
.product-img-wrap {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    min-height: 180px;
    transition: background 0.3s;
}

.product-card:hover .product-img-wrap {
    background: #fef5f0;
}

.product-img-wrap img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.12);
}

/* Product Info */
.product-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 11px;
    color: #3ebeb7;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.product-name {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 10px;
}

.product-rating i {
    font-size: 12px;
    color: #fcb614;
}

.product-rating span {
    font-size: 11px;
    color: #999;
    margin-left: 4px;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    margin-top: auto;
}

.product-price {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #f26f25;
}

.product-price-old {
    font-size: 14px;
    color: #aaa;
    text-decoration: line-through;
}

/* Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    border: 2px solid #f26f25;
    background: transparent;
    color: #f26f25;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.add-to-cart-btn:hover {
    background: #f26f25;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(242, 111, 37, 0.3);
}

.add-to-cart-btn.added {
    background: #3ebeb7;
    border-color: #3ebeb7;
    color: #fff;
}

/* ---------- NEWSLETTER ---------- */
.newsletter-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #ef4234, #8c3340);
}

.newsletter-wrap {
    padding: 0;
}

.newsletter-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.newsletter-title i {
    margin-right: 8px;
    color: #fcb614;
}

.newsletter-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.newsletter-input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    background: #fff;
}

.newsletter-btn {
    border: none;
    background: linear-gradient(135deg, #f26f25, #d45c1a);
    color: #fff;
    padding: 16px 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #d45c1a, #b84d15);
}

/* ---------- FEATURES BAR ---------- */
.features-bar {
    padding: 35px 0;
    background: #f8f9fb;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-item>i {
    font-size: 32px;
    color: #3ebeb7;
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ef4234;
    margin: 0 0 2px;
}

.feature-item p {
    font-size: 12px;
    color: #888;
    margin: 0;
}

/* ---------- FOOTER ---------- */
.main-footer {
    background: #ef4234;
    padding: 50px 0 0;
    color: rgba(255, 255, 255, 0.85);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
}

.footer-logo .logo-name {
    color: #fff;
}

.footer-about {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 16px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: #fcb614;
    color: #ef4234;
    transform: translateY(-3px);
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #fcb614;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s;
}

.footer-links li a:hover {
    color: #fcb614;
    padding-left: 5px;
}

.footer-contact li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact li i {
    color: #fcb614;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
    font-size: 13px;
    color: #ffffff;
    margin: 0;
}

.footer-payments {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    font-size: 22px;
    color: #ffffff;
}

/* ---------- MOBILE NAV OFFCANVAS ---------- */
.mobile-menu-offcanvas {
    max-width: 300px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    border-radius: 8px;
    transition: all 0.2s;
    text-decoration: none;
}

.mobile-nav-list li a:hover {
    background: #fdf4f5;
    color: #ef4234;
}

.mobile-nav-list li a i {
    font-size: 18px;
    color: #f26f25;
    width: 24px;
    text-align: center;
}

.mobile-nav-divider {
    height: 1px;
    background: #eee;
    margin: 10px 0;
}

.mobile-nav-heading {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    padding: 8px 8px 4px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
    .top-bar .row>div {
        text-align: center !important;
        margin-bottom: 5px;
    }

    .top-links {
        justify-content: center;
    }

    .top-right {
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-main .row>div {
        margin-bottom: 12px;
    }

    .logo-wrap {
        justify-content: center;
    }

    .search-bar {
        max-width: 100%;
    }

    .header-actions {
        justify-content: center;
    }

    .main-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .all-categories {
        text-align: center;
        margin-bottom: 10px;
    }

    .cat-btn {
        display: inline-flex;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-content {
        padding: 30px 25px;
    }

    .hero-banner {
        min-height: 350px;
    }

    .hero-overlay {
        width: 60%;
    }

    .hero-indicators {
        left: 25px;
    }

    .section-title {
        font-size: 20px;
    }

    .product-section {
        padding: 30px 0;
    }

    .categories-section {
        padding: 30px 0 15px;
    }

    .newsletter-section .row>div {
        text-align: center;
        margin-bottom: 15px;
    }

    .newsletter-form {
        max-width: 400px;
        margin: 0 auto;
    }

    .main-menu {
        display: none;
    }
}

@media (max-width: 767px) {
    .top-links {
        gap: 12px;
        flex-wrap: wrap;
    }

    .top-delivery {
        font-size: 11px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-overlay {
        width: 70%;
    }

    .menu-link {
        padding: 12px 10px;
        font-size: 12px;
    }

    .price-value {
        font-size: 28px;
    }

    .hero-banner {
        min-height: 320px;
    }

    .hero-content {
        padding: 25px 20px;
    }

    .hero-indicators {
        left: 20px;
    }

    .product-img-wrap {
        min-height: 140px;
        padding: 15px;
    }

    .product-img-wrap img {
        width: 90px;
        height: 90px;
    }

    .product-price {
        font-size: 17px;
    }

    .product-info {
        padding: 12px;
    }

    .newsletter-title {
        font-size: 20px;
    }

    .feature-item>i {
        font-size: 26px;
    }

    .feature-item h4 {
        font-size: 13px;
    }

    .footer-payments {
        justify-content: center;
        margin-top: 10px;
    }
}

@media (max-width: 576px) {
    .top-bar {
        display: none;
    }

    .logo-name {
        font-size: 22px;
    }

    .hero-title {
        font-size: 22px;
    }

    .main-menu {
        gap: 0;
    }

    .menu-link {
        padding: 10px 8px;
        font-size: 11px;
    }

    .hero-overlay {
        width: 80%;
    }

    .hero-banner {
        min-height: 280px;
    }

    .hero-content {
        padding: 20px 15px;
    }

    .hero-indicators {
        left: 15px;
        bottom: 12px;
    }

    .section-title {
        font-size: 18px;
    }

    .section-header {
        margin-bottom: 16px;
    }

    .category-card {
        padding: 14px 6px;
    }

    .cat-img-wrap {
        width: 56px;
        height: 56px;
    }

    .cat-img-wrap img {
        width: 34px;
        height: 34px;
    }

    .cat-name {
        font-size: 11px;
    }

    .product-img-wrap {
        min-height: 120px;
        padding: 12px;
    }

    .product-img-wrap img {
        width: 75px;
        height: 75px;
    }

    .product-name {
        font-size: 13px;
    }

    .product-price {
        font-size: 16px;
    }

    .add-to-cart-btn {
        padding: 8px 10px;
        font-size: 12px;
    }

    .newsletter-section {
        padding: 30px 0;
    }

    .newsletter-title {
        font-size: 18px;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 8px;
    }

    .newsletter-btn {
        border-radius: 0 0 8px 8px;
    }

    .features-bar {
        padding: 20px 0;
    }

    .feature-item {
        gap: 10px;
    }

    .feature-item>i {
        font-size: 22px;
    }

    .footer-copy,
    .footer-payments {
        text-align: center;
    }

    .footer-payments {
        justify-content: center;
        margin-top: 10px;
    }
}/* End custom CSS */