/** Shopify CDN: Minification failed

Line 16:0 Unexpected "{"
Line 16:1 Expected identifier but found "%"
Line 16:49 Expected identifier but found "%"
Line 17:0 Unexpected "{"
Line 17:1 Unexpected "{"
Line 17:3 Expected identifier but found "'section-footer.css'"
Line 18:0 Unexpected "<"
Line 26:11 Unexpected "{"
Line 26:13 Expected identifier but found "'component-newsletter.css'"
Line 26:71 Unexpected "<"
... and 437 more hidden warnings

**/
{% comment %}theme-check-disable UndefinedObject{% endcomment %}
{{ 'section-footer.css' | asset_url | stylesheet_tag }}
<link rel="stylesheet" href="{{ 'component-newsletter.css' | asset_url }}" media="print" onload="this.media='all'">
<link rel="stylesheet" href="{{ 'component-accordion.css' | asset_url }}" media="print" onload="this.media='all'">
<link rel="stylesheet" href="{{ 'component-list-menu.css' | asset_url }}" media="print" onload="this.media='all'">
<link rel="stylesheet" href="{{ 'component-list-payment.css' | asset_url }}" media="print" onload="this.media='all'">
<link rel="stylesheet" href="{{ 'component-list-social.css' | asset_url }}" media="print" onload="this.media='all'">
<link rel="stylesheet" href="{{ 'component-rte.css' | asset_url }}" media="print" onload="this.media='all'">
<link rel="stylesheet" href="{{ 'disclosure.css' | asset_url }}" media="print" onload="this.media='all'">

<noscript>{{ 'component-newsletter.css' | asset_url | stylesheet_tag }}</noscript>
<noscript>{{ 'component-accordion.css' | asset_url | stylesheet_tag }}</noscript>
<noscript>{{ 'component-list-menu.css' | asset_url | stylesheet_tag }}</noscript>
<noscript>{{ 'component-list-payment.css' | asset_url | stylesheet_tag }}</noscript>
<noscript>{{ 'component-list-social.css' | asset_url | stylesheet_tag }}</noscript>
<noscript>{{ 'component-rte.css' | asset_url | stylesheet_tag }}</noscript>
<noscript>{{ 'disclosure.css' | asset_url | stylesheet_tag }}</noscript>


<footer class="footer color-{{ section.settings.color_scheme }}">

    {%- if section.blocks.size > 0 or section.settings.newsletter_enable or block.settings.show_social -%}
      <div class="footer__content-top">
        {%- if section.blocks.size > 0 -%}
          <div class="footer__blocks-wrapper page-width">
            {%- for block in section.blocks -%}

              {%- if block.type == 'link_list' and block.settings.heading != blank -%}
                <div class="accordion">
                  <details>
                    <summary><h2 class="h4 accordion__title">{{ block.settings.heading | escape }}</h2>{% render 'icon-caret' %}</summary>
                    {%- if block.settings.menu != blank -%}
                      <ul class="footer-block__details-content list-unstyled">
                        {%- for link in block.settings.menu.links -%}
                          <li>
                            <a href="{{ link.url }}" class="link link--text list-menu__item list-menu__item--link{% if link.active %} list-menu__item--active{% endif %}">
                              {{ link.title }}
                            </a>
                          </li>
                        {%- endfor -%}
                      </ul>
                    {%- endif -%}
                  </details>
                </div>
              {%- endif -%}

              {%- if block.type == 'text' and block.settings.heading != blank -%} 
                <div class="accordion">
                  <details>
                    <summary><h2 class="h4 accordion__title">{{ block.settings.heading | escape }}</h2>{% render 'icon-caret' %}</summary>
                    <div class="footer-block__details-content information">
                      <li class="address list-menu__item--link">
                        <span>{{ block.settings.address }}</span>
                      </li>
                      <li class="contact list-menu__item--link">
                        <span>{{ block.settings.contact_num }}</span>
                      </li>
                      <a href="{{ block.settings.email }}" class="email list-menu__item--link" target="_Self">{{ block.settings.email_address }}</a>
                      
                    </div>
                    {%- if block.settings.show_social -%}
                      <ul class="footer__list-social list-unstyled list-social" role="list">
                        {%- if settings.social_twitter_link != blank -%}
                          <li class="list-social__item">
                            <a href="{{ settings.social_twitter_link }}" class="link list-social__link" >
                              {%- render 'icon-twitter' -%}
                              <span class="visually-hidden">{{ 'general.social.links.twitter' | t }}</span>
                            </a>
                          </li>
                        {%- endif -%}
                        {%- if settings.social_facebook_link != blank -%}
                          <li class="list-social__item">
                            <a href="{{ settings.social_facebook_link }}" class="link list-social__link" >
                              {%- render 'icon-facebook' -%}
                              <span class="visually-hidden">{{ 'general.social.links.facebook' | t }}</span>
                            </a>
                          </li>
                        {%- endif -%}
                        {%- if settings.social_pinterest_link != blank -%}
                          <li class="list-social__item">
                            <a href="{{ settings.social_pinterest_link }}" class="link list-social__link" >
                              {%- render 'icon-pinterest' -%}
                              <span class="visually-hidden">{{ 'general.social.links.pinterest' | t }}</span>
                            </a>
                          </li>
                        {%- endif -%}
                        {%- if settings.social_instagram_link != blank -%}
                          <li class="list-social__item">
                            <a href="{{ settings.social_instagram_link }}" class="link list-social__link" >
                              {%- render 'icon-instagram' -%}
                              <span class="visually-hidden">{{ 'general.social.links.instagram' | t }}</span>
                            </a>
                          </li>
                        {%- endif -%}
                        {%- if settings.social_tiktok_link != blank -%}
                          <li class="list-social__item">
                            <a href="{{ settings.social_tiktok_link }}" class="link list-social__link" >
                              {%- render 'icon-tiktok' -%}
                              <span class="visually-hidden">{{ 'general.social.links.tiktok' | t }}</span>
                            </a>
                          </li>
                        {%- endif -%}
                        {%- if settings.social_tumblr_link != blank -%}
                          <li class="list-social__item">
                            <a href="{{ settings.social_tumblr_link }}" class="link list-social__link" >
                              {%- render 'icon-tumblr' -%}
                              <span class="visually-hidden">{{ 'general.social.links.tumblr' | t }}</span>
                            </a>
                          </li>
                        {%- endif -%}
                        {%- if settings.social_snapchat_link != blank -%}
                          <li class="list-social__item">
                            <a href="{{ settings.social_snapchat_link }}" class="link list-social__link" >
                              {%- render 'icon-snapchat' -%}
                              <span class="visually-hidden">{{ 'general.social.links.snapchat' | t }}</span>
                            </a>
                          </li>
                        {%- endif -%}
                        {%- if settings.social_youtube_link != blank -%}
                          <li class="list-social__item">
                            <a href="{{ settings.social_youtube_link }}" class="link list-social__link" >
                              {%- render 'icon-youtube' -%}
                              <span class="visually-hidden">{{ 'general.social.links.youtube' | t }}</span>
                            </a>
                          </li>
                        {%- endif -%}
                        {%- if settings.social_vimeo_link != blank -%}
                          <li class="list-social__item">
                            <a href="{{ settings.social_vimeo_link }}" class="link list-social__link" >
                              {%- render 'icon-vimeo' -%}
                              <span class="visually-hidden">{{ 'general.social.links.vimeo' | t }}</span>
                            </a>
                          </li>
                        {%- endif -%}
                      </ul>
                    {%- endif -%}
                  </details>
                   
                  
                </div>
              {%- endif -%}
              
              {%- if block.type == 'link_list' and forloop.last and section.settings.contact_enable -%}
                {%- comment -%} Mobile accordion for contact section {%- endcomment -%}
                <div class="accordion footer-contact-accordion">
                  <details>
                    <summary><h2 class="h4 accordion__title">{{ section.settings.contact_heading | default: "Have questions? Reach out to us" }}</h2>{% render 'icon-caret' %}</summary>
                    <div class="footer-block__details-content">
                      <p style="margin-bottom: 15px; opacity: 0.8;">{{ section.settings.contact_hours | default: "Mon to Sat: 10am - 7pm | Sun: 10am - 5pm" }}</p>
                      
                      {%- if section.settings.contact_phone != blank -%}
                        <a href="tel:{{ section.settings.contact_phone }}" style="display: block; padding: 10px; margin-bottom: 10px; border: 1px solid rgba(var(--color-foreground), 0.2); border-radius: 25px; text-align: center; text-decoration: none; color: rgb(var(--color-foreground));">
                          📞 {{ section.settings.contact_phone }}
                        </a>
                      {%- endif -%}
                      
                      {%- if section.settings.whatsapp_number != blank -%}
                        <a href="https://wa.me/{{ section.settings.whatsapp_number | remove: ' ' | remove: '-' | remove: '+' }}" target="_blank" style="display: block; padding: 10px; margin-bottom: 15px; border: 1px solid rgba(var(--color-foreground), 0.2); border-radius: 25px; text-align: center; text-decoration: none; color: rgb(var(--color-foreground));">
                          💬 Chat with us on WhatsApp
                        </a>
                      {%- endif -%}
                      
                      <p style="font-size: 14px; margin-bottom: 10px;">Follow us on</p>
                      <ul class="footer__list-social list-unstyled list-social" role="list" style="display: flex; gap: 15px;">
                        {%- if settings.social_facebook_link != blank -%}
                          <li class="list-social__item">
                            <a href="{{ settings.social_facebook_link }}" class="link list-social__link" target="_blank">
                              {%- render 'icon-facebook' -%}
                            </a>
                          </li>
                        {%- endif -%}
                        {%- if settings.social_instagram_link != blank -%}
                          <li class="list-social__item">
                            <a href="{{ settings.social_instagram_link }}" class="link list-social__link" target="_blank">
                              {%- render 'icon-instagram' -%}
                            </a>
                          </li>
                        {%- endif -%}
                        {%- if settings.social_youtube_link != blank -%}
                          <li class="list-social__item">
                            <a href="{{ settings.social_youtube_link }}" class="link list-social__link" target="_blank">
                              {%- render 'icon-youtube' -%}
                            </a>
                          </li>
                        {%- endif -%}
                      </ul>
                    </div>
                  </details>
                </div>
              {%- endif -%}

              <div class="footer-block {% if block.type == 'image' %} footer-image-block{% endif %} {% if block.type == 'link_list' and block.settings.heading != blank %} footer-block--menu small-hide {% else %} text small-hide {% endif %}">
                
                {%- if block.settings.heading != blank -%}
                  <h2 class="footer-block__heading">{{- block.settings.heading | escape -}}</h2>
                {%- endif -%}

                {%- case block.type -%}

                  {%- when 'text' -%}
                    <ul class="footer-block__details-content information">
                      <a href="{{ block.settings.contact }}" class="contact" target="_Self">{{ block.settings.contact_num }}</a>
                      <li class="time text"> <span>{{ block.settings.time }}</span> </li>
                      <li class="email">
                        {%- render 'icon-mail' -%}
                        <a href="{{ block.settings.email }}" class="list-menu__item--link" target="_Self">{{ block.settings.email_address }}</a>
                      </li>
                      <li class="address text"> <span>{{ block.settings.address }}</span> </li>
                      <a href="{{ block.settings.map_link }}" class="map list-menu__item--link" target="_Self">{{ block.settings.map_label }}</a>
                    </ul>
                  
                  {%- when 'link_list' -%}
                    {%- if block.settings.menu != blank and block.settings.heading != blank -%}
                      <ul class="footer-block__details-content list-unstyled">
                        {%- for link in block.settings.menu.links -%}
                          <li>
                            <a href="{{ link.url }}" class="link link--text list-menu__item list-menu__item--link{% if link.active %} list-menu__item--active{% endif %}">
                              {{ link.title }}
                            </a>
                          </li>
                        {%- endfor -%}
                      </ul>
                    {%- endif -%}
                  
                {%- endcase -%}
              </div>

            {%- endfor -%}

            {%- if section.settings.contact_enable -%}
              <div class="footer-block footer-block__contact small-hide">
                <div class="footer-block__contact-wrapper">
                  <div class="footer-block__contact-header">
                    <div class="footer-block__contact-icon">
                      <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                        <path d="M20 2H4C2.9 2 2 2.9 2 4V22L6 18H20C21.1 18 22 17.1 22 16V4C22 2.9 21.1 2 20 2ZM20 16H6L4 18V4H20V16Z" fill="white"/>
                      </svg>
                    </div>
                    <div class="footer-block__contact-text">
                      <h3>{{ section.settings.contact_heading | default: "Have questions? Reach out to us" }}</h3>
                      <p>{{ section.settings.contact_hours | default: "Mon to Sat: 10am - 7pm | Sun: 10am - 5pm" }}</p>
                    </div>
                  </div>
                  
                  <div class="footer-block__contact-buttons">
                    {%- if section.settings.contact_phone != blank -%}
                      <a href="tel:{{ section.settings.contact_phone }}" class="footer-contact-btn footer-contact-btn--phone">
                        <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                          <path d="M6.62 10.79C8.06 13.62 10.38 15.94 13.21 17.38L15.41 15.18C15.69 14.9 16.08 14.82 16.43 14.93C17.55 15.3 18.75 15.5 20 15.5C20.55 15.5 21 15.95 21 16.5V20C21 20.55 20.55 21 20 21C10.61 21 3 13.39 3 4C3 3.45 3.45 3 4 3H7.5C8.05 3 8.5 3.45 8.5 4C8.5 5.25 8.7 6.45 9.07 7.57C9.18 7.92 9.1 8.31 8.82 8.59L6.62 10.79Z" fill="currentColor"/>
                        </svg>
                        {{ section.settings.contact_phone }}
                      </a>
                    {%- endif -%}
                    
                    {%- if section.settings.whatsapp_number != blank -%}
                      <a href="https://wa.me/{{ section.settings.whatsapp_number | remove: ' ' | remove: '-' | remove: '+' }}" target="_blank" class="footer-contact-btn footer-contact-btn--whatsapp">
                        Chat with us on
                        <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
                          <path d="M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z" fill="#25D366"/>
                        </svg>
                      </a>
                    {%- endif -%}
                  </div>
                  
                  <div class="footer-block__contact-social">
                    <h4>Follow us on</h4>
                    <ul class="list-unstyled list-social" role="list">
                      {%- if settings.social_facebook_link != blank -%}
                        <li class="list-social__item">
                          <a href="{{ settings.social_facebook_link }}" class="link list-social__link" target="_blank">
                            {%- render 'icon-facebook' -%}
                            <span class="visually-hidden">Facebook</span>
                          </a>
                        </li>
                      {%- endif -%}
                      {%- if settings.social_instagram_link != blank -%}
                        <li class="list-social__item">
                          <a href="{{ settings.social_instagram_link }}" class="link list-social__link" target="_blank">
                            {%- render 'icon-instagram' -%}
                            <span class="visually-hidden">Instagram</span>
                          </a>
                        </li>
                      {%- endif -%}
                      {%- if settings.social_youtube_link != blank -%}
                        <li class="list-social__item">
                          <a href="{{ settings.social_youtube_link }}" class="link list-social__link" target="_blank">
                            {%- render 'icon-youtube' -%}
                            <span class="visually-hidden">YouTube</span>
                          </a>
                        </li>
                      {%- endif -%}
                    </ul>
                  </div>
                </div>
              </div>
            {%- endif -%}

            {%- if section.settings.newsletter_enable -%}
              <div class="footer-block__newsletter">

                {%- if section.settings.newsletter_heading != blank -%}
                  <h2 class="footer-block__heading">{{ section.settings.newsletter_heading | escape }}</h2>
                  <p class="footer-block-title">{{ section.settings.newsletter_title }}</p>
                {%- endif -%}

                {%- form 'customer', id: 'ContactFooter', class: 'footer__newsletter newsletter-form' -%}
                  <input type="hidden" name="contact[tags]" value="newsletter">
                  <div class="newsletter-form__field-wrapper">
                    <div class="field">
                      <input
                        id="NewsletterForm--{{ section.id }}"
                        type="email"
                        name="contact[email]"
                        class="field__input"
                        value="{{ form.email }}"
                        aria-required="true"
                        autocorrect="off"
                        autocapitalize="off"
                        autocomplete="email"
                        {% if form.errors %}
                          autofocus
                          aria-invalid="true"
                          aria-describedby="ContactFooter-error"
                        {% elsif form.posted_successfully? %}
                          aria-describedby="ContactFooter-success"
                        {% endif %}
                        placeholder="{{ 'newsletter.label' | t }}"
                        required
                      >
                      <label class="field__label" for="NewsletterForm--{{ section.id }}">
                        {{ 'newsletter.label' | t }}
                      </label>
                      <button type="submit" class="newsletter-form__button" name="commit" id="Subscribe">
                          {{ 'newsletter.button_label' | t }}
                      </button>
                    </div>
                    {%- if form.errors -%}
                      <small class="newsletter-form__message form__message" id="ContactFooter-error">{% render 'icon-error' %}{{ form.errors.translated_fields['email'] | capitalize }} {{ form.errors.messages['email'] }}</small>
                    {%- endif -%}
                  </div>

                  {%- if form.posted_successfully? -%}
                    <h3 class="newsletter-form__message newsletter-form__message--success form__message" id="ContactFooter-success" tabindex="-1" autofocus>{% render 'icon-success' %}{{ 'newsletter.success' | t }}</h3>
                  {%- endif -%}

                {%- endform -%}
              </div>
            {%- endif -%}

          </div>
        {%- endif -%}
      </div>
      <div class="page-width">
      </div>
    {%- endif -%}

    <div class="footer__column-bottom">
      	<div class="page-width">
            <div class="footer__column--info">

              <div class="footer__copyright">
                <span class="copyright__content">&copy; {{ 'now' | date: "%Y" }}, Zenvika - Sabaa Nature Foods Private Limited. All rights reserved.</span>
              </div> 
                  
              {%- if section.settings.show_social -%}
                  <ul class="footer__list-social list-unstyled list-social" role="list">
                    {%- if settings.social_twitter_link != blank -%}
                      <li class="list-social__item">
                        <a href="{{ settings.social_twitter_link }}" class="link list-social__link" >
                          {%- render 'icon-twitter' -%}
                          <span class="visually-hidden">{{ 'general.social.links.twitter' | t }}</span>
                        </a>
                      </li>
                    {%- endif -%}
                    {%- if settings.social_facebook_link != blank -%}
                      <li class="list-social__item">
                        <a href="{{ settings.social_facebook_link }}" class="link list-social__link" >
                          {%- render 'icon-facebook' -%}
                          <span class="visually-hidden">{{ 'general.social.links.facebook' | t }}</span>
                        </a>
                      </li>
                    {%- endif -%}
                    {%- if settings.social_pinterest_link != blank -%}
                      <li class="list-social__item">
                        <a href="{{ settings.social_pinterest_link }}" class="link list-social__link" >
                          {%- render 'icon-pinterest' -%}
                          <span class="visually-hidden">{{ 'general.social.links.pinterest' | t }}</span>
                        </a>
                      </li>
                    {%- endif -%}
                    {%- if settings.social_instagram_link != blank -%}
                      <li class="list-social__item">
                        <a href="{{ settings.social_instagram_link }}" class="link list-social__link" >
                          {%- render 'icon-instagram' -%}
                          <span class="visually-hidden">{{ 'general.social.links.instagram' | t }}</span>
                        </a>
                      </li>
                    {%- endif -%}
                    {%- if settings.social_tiktok_link != blank -%}
                      <li class="list-social__item">
                        <a href="{{ settings.social_tiktok_link }}" class="link list-social__link" >
                          {%- render 'icon-tiktok' -%}
                          <span class="visually-hidden">{{ 'general.social.links.tiktok' | t }}</span>
                        </a>
                      </li>
                    {%- endif -%}
                    {%- if settings.social_tumblr_link != blank -%}
                      <li class="list-social__item">
                        <a href="{{ settings.social_tumblr_link }}" class="link list-social__link" >
                          {%- render 'icon-tumblr' -%}
                          <span class="visually-hidden">{{ 'general.social.links.tumblr' | t }}</span>
                        </a>
                      </li>
                    {%- endif -%}
                    {%- if settings.social_snapchat_link != blank -%}
                      <li class="list-social__item">
                        <a href="{{ settings.social_snapchat_link }}" class="link list-social__link" >
                          {%- render 'icon-snapchat' -%}
                          <span class="visually-hidden">{{ 'general.social.links.snapchat' | t }}</span>
                        </a>
                      </li>
                    {%- endif -%}
                    {%- if settings.social_youtube_link != blank -%}
                      <li class="list-social__item">
                        <a href="{{ settings.social_youtube_link }}" class="link list-social__link" >
                          {%- render 'icon-youtube' -%}
                          <span class="visually-hidden">{{ 'general.social.links.youtube' | t }}</span>
                        </a>
                      </li>
                    {%- endif -%}
                    {%- if settings.social_vimeo_link != blank -%}
                      <li class="list-social__item">
                        <a href="{{ settings.social_vimeo_link }}" class="link list-social__link" >
                          {%- render 'icon-vimeo' -%}
                          <span class="visually-hidden">{{ 'general.social.links.vimeo' | t }}</span>
                        </a>
                      </li>
                    {%- endif -%}
                  </ul>
              {%- endif -%}

              {%- if section.settings.payment_enable -%}
                <div class="footer__payment">
                  <span class="visually-hidden">{{ 'sections.footer.payment' | t }}</span>
                  <ul class="list list-payment" role="list">
                    {%- for type in shop.enabled_payment_types -%}
                      <li class="list-payment__item">
                        {{ type | payment_type_svg_tag: class: 'icon icon--full-color' }}
                      </li>
                    {%- endfor -%}
                  </ul>
                </div>
              {%- endif -%}
              
            </div>
      	</div>
  	</div>
  
</footer>


{% schema %}
{
  "name": "t:sections.footer.name",
  "settings": [ 
    
    {
      "type": "select",
      "id": "color_scheme",
      "options": [
         {
          "value": "footer-style-1",
          "label": "t:sections.all.colors.footer_style_1.label"
        },
        {
          "value": "footer-style-2",
          "label": "t:sections.all.colors.footer_style_2.label"
        },
        {
          "value": "footer-style-3",
          "label": "t:sections.all.colors.footer_style_3.label"
        },
        {
          "value": "footer-style-4",
          "label": "t:sections.all.colors.footer_style_4.label"
        },
        {
          "value": "footer-style-5",
          "label": "t:sections.all.colors.footer_style_5.label"
        },
        {
          "value": "footer-style-6",
          "label": "t:sections.all.colors.footer_style_6.label"
        }
      ],
      "default": "footer-style-3",
      "label": "t:sections.all.colors.label"
    },
    {
      "type": "image_picker",
      "id": "logo",
      "label": "t:sections.footer.settings.logo.label"
    },
    {
      "type": "range",
      "id": "logo_width",
      "min": 50,
      "max": 250,
      "step": 2,
      "default": 164,
      "unit": "t:sections.footer.settings.logo_width.unit",
      "label": "t:sections.footer.settings.logo_width.label"
    },
    {
      "type": "url",
      "id": "logo_link",
      "label": "t:sections.footer.settings.logo_link.label"
    },
    {
      "type": "header",
      "content": "t:sections.footer.settings.service.content"
    },
    {
      "type": "color",
      "id": "service_bg",
      "label": "t:sections.footer.settings.service_bg.label"
    },
    {
      "type": "color",
      "id": "service_heading_color",
      "label": "t:sections.footer.settings.service_heading_color.label"
    },
    {
      "type": "header",
      "content": "t:sections.footer.settings.service_1.content"
    },
    {
      "type": "image_picker",
      "id": "service_image_1",
      "label": "t:sections.footer.settings.service_image_1.label"
    },
    {
      "type": "text",
      "id": "service_heading_1",
      "label": "t:sections.footer.settings.service_heading_1.label",
     "default": "Service Heading"
    },
    {
      "type": "header",
      "content": "t:sections.footer.settings.service_2.content"
    },
    {
      "type": "image_picker",
      "id": "service_image_2",
      "label": "t:sections.footer.settings.service_image_2.label"
    },
    {
      "type": "text",
      "id": "service_heading_2",
      "label": "t:sections.footer.settings.service_heading_2.label",
     "default": "Service Heading"
    },
    {
      "type": "header",
      "content": "t:sections.footer.settings.service_3.content"
    },
    {
      "type": "image_picker",
      "id": "service_image_3",
      "label": "t:sections.footer.settings.service_image_3.label"
    },
    {
      "type": "text",
      "id": "service_heading_3",
      "label": "t:sections.footer.settings.service_heading_3.label",
     "default": "Service Heading"
    },
    {
      "type": "header",
      "content": "t:sections.footer.settings.header__7.content"
    },
    {
      "type": "checkbox",
      "id": "payment_enable",
      "default": true,
      "label": "t:sections.footer.settings.payment_enable.label"
    },
    {
      "type": "header",
      "content": "t:sections.footer.settings.header__8.content"
    },
    {
      "type": "checkbox",
      "id": "show_social",
      "default": true,
      "label": "t:sections.footer.settings.show_social.label"
    },
    {
      "type": "header",
      "content": "Contact Section"
    },
    {
      "type": "checkbox",
      "id": "contact_enable",
      "default": true,
      "label": "Enable contact section"
    },
    {
      "type": "text",
      "id": "contact_heading",
      "default": "Have questions? Reach out to us",
      "label": "Contact heading"
    },
    {
      "type": "text",
      "id": "contact_hours",
      "default": "Mon to Sat: 10am - 7pm | Sun: 10am - 5pm",
      "label": "Contact hours"
    },
    {
      "type": "text",
      "id": "contact_phone",
      "default": "+919560732284",
      "label": "Phone number"
    },
    {
      "type": "text",
      "id": "whatsapp_number",
      "default": "919220690707",
      "label": "WhatsApp number",
      "info": "Enter number with country code without + or spaces (e.g., 917011066191)"
    }
  ],
  "blocks": [
    {
      "type": "text",
      "name": "t:sections.footer.blocks.text.name",
      "settings": [
   		{
          "type": "text",
          "id": "contact_num",
          "label": "t:sections.footer.blocks.text.settings.contact_num.label",
          "default": "+01 123 456 789"
        },
        {
          "type": "url",
          "id": "contact",
          "label": "t:sections.footer.blocks.text.settings.contact.label"
        },
        {
          "type": "liquid",
          "id": "time",
          "label": "t:sections.footer.blocks.text.settings.time.label",
          "default": "Monday - Friday : 9:00 to 5:00 Saturday : 9:00 to 3:00"
        },
        {
          "type": "text",
          "id": "email_address",
		  "label": "t:sections.footer.blocks.text.settings.email_address.label",
          "default": " demo@example.com"
        },
		{
          "type": "url",
          "id": "email",
          "label": "t:sections.footer.blocks.text.settings.email.label"
        },
		{
          "type": "text",
          "id": "address",
          "label": "t:sections.footer.blocks.text.settings.address.label",
		  "default": "502 New Design Str, Melbourne, San Francisco United States"
        },
        {
          "type": "text",
          "id": "map_label",
		  "label": "t:sections.footer.blocks.text.settings.map_label.label",
          "default": "Show on map"
        },
		{
          "type": "url",
          "id": "map_link",
          "label": "t:sections.footer.blocks.text.settings.map_link.label"
        },
      ]
    },
    {
      "type": "link_list",
      "name": "t:sections.footer.blocks.link_list.name",
      "settings": [
        {
          "type": "text",
          "id": "heading",
          "default": "Quick links",
          "label": "t:sections.footer.blocks.link_list.settings.heading.label",
          "info": "t:sections.footer.blocks.link_list.settings.heading.info"
        },
        {
          "type": "link_list",
          "id": "menu",
          "default": "footer",
          "label": "t:sections.footer.blocks.link_list.settings.menu.label",
          "info": "t:sections.footer.blocks.link_list.settings.menu.info"
        }
      ]
    }
  ],
  "presets": [
      {
        "name": "t:sections.footer.presets.name",
         "blocks": [
              {
                "type": "text"
              },
             {
                "type": "link_list"
             }
          ]
      }
    ]
}
{% endschema %}