/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

/*
Theme Name: Astra Child
Template: astra
Version: 1.0.0
*/

/* =========================================================
   GLOBAL TOKENS
========================================================= */
:root{
  --erk-color-primary: #B91C1C;
  --erk-color-primary-hover: #D4AF37;
  --erk-color-heading: #111827;
  --erk-color-text: #374151;
  --erk-color-bg: #FFFFFF;
  --erk-color-bg-soft: #F9FAFB;
  --erk-color-bg-dark: #111111;
  --erk-color-border: #E5E7EB;
  --erk-color-white: #FFFFFF;
  --erk-color-black: #000000;

  --erk-font-heading: 'Poppins', sans-serif;
  --erk-font-body: 'Open Sans', sans-serif;

  --erk-container: 1440px;

  --erk-radius-sm: 10px;
  --erk-radius-md: 16px;
  --erk-radius-lg: 24px;
  --erk-radius-pill: 999px;

  --erk-shadow-sm: 0 8px 24px rgba(17, 24, 39, 0.08);
  --erk-shadow-md: 0 18px 40px rgba(17, 24, 39, 0.12);

  --erk-transition: all 0.25s ease;
}

/* =========================================================
   RESET / BASE
========================================================= */
*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:var(--erk-font-body);
  font-size:16px;
  line-height:1.65;
  color:var(--erk-color-text);
  background:var(--erk-color-bg);
}

img{
  max-width:100%;
  height:auto;
  display:block;
}

a{
  color:var(--erk-color-primary);
  text-decoration:none;
  transition:var(--erk-transition);
}

a:hover{
  color:var(--erk-color-primary-hover);
}

ul,
ol{
  margin:0;
  padding:0;
}

p{
  margin:0 0 1.2em;
}

section{
  position:relative;
}

.ast-container,
.site-content .ast-container{
  max-width:100%;
  padding-left:0;
  padding-right:0;
}

.site-primary-footer-wrap,
.site-content{
  margin:0;
  padding:0;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */
h1, h2, h3, h4, h5, h6{
  margin:0 0 0.5em;
  font-family:var(--erk-font-heading);
  font-weight:600;
  line-height:1.15;
  color:var(--erk-color-heading);
}

h1{
  font-size:clamp(2.75rem, 5vw, 4rem);
}

h2{
  font-size:clamp(2rem, 3.5vw, 2.25rem);
}

h3{
  font-size:clamp(1.5rem, 2.8vw, 1.75rem);
}

h4{
  font-size:1.375rem;
}

h5{
  font-size:1.125rem;
}

h6{
  font-size:1rem;
}

.erk-eyebrow{
  display:inline-block;
  margin-bottom:14px;
  font-size:0.875rem;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--erk-color-primary);
}

.erk-section-title{
  margin-bottom:16px;
}

.erk-section-text{
  max-width:760px;
  margin:0 auto;
  font-size:1rem;
  color:var(--erk-color-text);
}

/* =========================================================
   LAYOUT
========================================================= */
.erk-container{
  width:100%;
  max-width:var(--erk-container);
  margin:0 auto;
  padding-left:24px;
  padding-right:24px;
}

.erk-section{
  padding:88px 0;
}

.erk-section--soft{
  background:var(--erk-color-bg-soft);
}

.erk-section--dark{
  color:var(--erk-color-white);
  background:var(--erk-color-bg-dark);
}

.erk-section--dark h1,
.erk-section--dark h2,
.erk-section--dark h3,
.erk-section--dark h4,
.erk-section--dark h5,
.erk-section--dark h6,
.erk-section--dark p,
.erk-section--dark li,
.erk-section--dark a{
  color:var(--erk-color-white);
}

.erk-grid{
  display:grid;
  gap:24px;
}

.erk-grid-2{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.erk-grid-3{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.erk-grid-4{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

/* =========================================================
   BUTTONS
========================================================= */
.erk-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 24px;
  border:1px solid transparent;
  border-radius:var(--erk-radius-pill);
  font-family:var(--erk-font-heading);
  font-size:0.95rem;
  font-weight:600;
  line-height:1;
  text-align:center;
  cursor:pointer;
  transition:var(--erk-transition);
}

.erk-btn--primary{
  color:var(--erk-color-white);
  background:var(--erk-color-primary);
}

.erk-btn--primary:hover{
  color:var(--erk-color-heading);
  background:var(--erk-color-primary-hover);
}

.erk-btn--secondary{
  color:var(--erk-color-white);
  border-color:rgba(255,255,255,0.4);
  background:rgba(255,255,255,0.08);
}

.erk-btn--secondary:hover{
  color:var(--erk-color-heading);
  border-color:var(--erk-color-primary-hover);
  background:var(--erk-color-primary-hover);
}

.erk-btn--dark{
  color:var(--erk-color-white);
  background:var(--erk-color-heading);
}

.erk-btn--dark:hover{
  color:var(--erk-color-heading);
  background:var(--erk-color-primary-hover);
}

/* Secondary button */

.erk-btn--outline{
    background:transparent;
    color:#B91C1C;
    border:2px solid #B91C1C;
}

.erk-btn--outline:hover{
    background:#B91C1C;
    color:#ffffff;
}

/* =========================================================
   DELIVERY / ORDER ONLINE
========================================================= */
.erk-delivery{
  padding-top: 28px;
}

.erk-delivery__grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 28px;
  align-items: start;
}

.erk-delivery__left{
  display: grid;
  gap: 20px;
}

.erk-delivery__text h2{
  margin: 0 0 10px;
}

.erk-delivery__text p{
  margin: 0;
  max-width: 640px;
}

.erk-delivery__buttons{
  display: grid;
  gap: 14px;
}

.erk-delivery__btn{
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 76px;
  padding: 18px 20px;
  border: 1px solid var(--erk-color-border);
  border-radius: var(--erk-radius-lg);
  background: #fff;
  box-shadow: var(--erk-shadow-sm);
  text-decoration: none;
  color: var(--erk-color-heading);
  transition: var(--erk-transition);
}

.erk-delivery__btn:hover{
  transform: translateY(-2px);
  border-color: var(--erk-color-primary-hover);
  box-shadow: var(--erk-shadow-md);
}

.erk-delivery__btn img{
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 48px;
}

.erk-delivery__btn span{
  font-family: var(--erk-font-heading);
  font-weight: 600;
  line-height: 1.3;
}

.erk-delivery__right{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 78px;
}

.erk-delivery__qr{
  width: 100%;
  max-width: 300px;
  text-align: center;
  padding: 20px;
  border: 1px solid var(--erk-color-border);
  border-radius: var(--erk-radius-lg);
  background: var(--erk-color-bg-soft);
  box-shadow: var(--erk-shadow-sm);
}

.erk-delivery__qr img{
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto 12px;
}

.erk-delivery__qr p{
  margin: 0;
  font-size: 0.95rem;
  color: var(--erk-color-text);
}

.erk-delivery__qr {
    width: 100%;
    max-width: 300px;
    text-align: center;
    padding: 20px;
    border: 1px solid var(--erk-color-border);
    border-radius: var(--erk-radius-lg);
    background: var(--erk-color-bg-soft);
    box-shadow: var(--erk-shadow-sm);
    padding-top: 32px;
}

@media (max-width: 921px){
  .erk-delivery__grid{
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 20px;
  }

  .erk-delivery__left{
    gap: 16px;
  }

  .erk-delivery__btn{
    min-height: 68px;
    padding: 16px 18px;
  }

  .erk-delivery__btn img{
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .erk-delivery__qr{
    padding: 16px;
  }

  .erk-delivery__qr img{
    max-width: 150px;
  }

  .erk-delivery__qr p{
    font-size: 0.9rem;
  }
  
  .erk-delivery__right{
  padding-top: 72px;
}
}

@media (max-width: 544px){
  .erk-delivery{
    padding-top: 18px;
  }

  .erk-delivery__grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .erk-delivery__left{
    gap: 14px;
  }

  .erk-delivery__text p{
    max-width: none;
  }

  .erk-delivery__buttons{
    gap: 10px;
  }

  .erk-delivery__btn{
    min-height: 60px;
    padding: 12px 14px;
    gap: 10px;
  }

  .erk-delivery__btn img{
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
  }

  .erk-delivery__btn span{
    font-size: 0.93rem;
  }

  .erk-delivery__right{
    justify-content: flex-start;
  }

  .erk-delivery__qr{
    max-width: 100%;
    padding: 16px;
  }

  .erk-delivery__qr img{
    max-width: 180px;
  }
  
  .erk-delivery__right{
  padding-top: 0;
}
}
/* =========================================================
   CARDS
========================================================= */
.erk-card{
  height:100%;
  border:1px solid var(--erk-color-border);
  border-radius:var(--erk-radius-lg);
  background:var(--erk-color-white);
  box-shadow:var(--erk-shadow-sm);
  overflow:hidden;
}

.erk-card__body{
  padding:24px;
}

.erk-card__title{
  margin-bottom:10px;
}

.erk-card__text{
  margin:0;
}

.erk-card__media{
  aspect-ratio: 4 / 3;
  background:#e5e7eb;
}

/* =========================================================
   UTILITIES
========================================================= */
.erk-text-center{
  text-align:center;
}

.erk-text-left{
  text-align:left;
}

.erk-mb-0{
  margin-bottom:0 !important;
}

.erk-list-clean{
  list-style:none;
  margin:0;
  padding:0;
}

/* Buttons should never have underline */

.erk-btn,
.erk-btn:hover{
    text-decoration:none;
}

/* Global link style */

a{
    text-decoration:none;
}

a:hover{
    text-decoration:none;
}

/* =========================================================
   SPECIALS BANNER
========================================================= */

.erk-specials-banner{
    padding:80px 0;
    background:#111;
}

.erk-specials-banner__inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
}

.erk-specials-banner__content h2{
    color:#fff;
    margin-bottom:12px;
}

.erk-specials-banner__content p{
    color:#d1d5db;
}

/* =========================================================
   VISIT US INTRO
========================================================= */

.erk-visit{
    padding:80px 0;
    background:#fff;
}

.erk-visit__content{
    max-width:700px;
    margin:0 auto;
    text-align:center;
}

.erk-visit__actions{
    margin-top:24px;
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
}



/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1200px){
  .erk-section{
    padding:72px 0;
  }
}

@media (max-width: 992px){
  .erk-hero{
    padding:110px 0 90px;
  }

  .erk-grid-4{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .erk-grid-3,
  .erk-grid-2{
    grid-template-columns:1fr;
  }
    .erk-quick-info__grid{
    grid-template-columns:1fr;
    gap:16px;
  }
    .erk-about{
    padding:64px 0;
  }

  .erk-card__body{
    padding:24px;
  }
  
.erk-specials-banner__inner{
    grid-template-columns:1fr;
    gap:22px;
}

.erk-specials-banner__image img{
    max-width:100%;
}

.erk-specials-banner__content h2,
.erk-specials-banner__content p{
    max-width:none;
}

.erk-specials-banner__action{
    justify-self:start;
    text-align:left;
}
  
    .erk-location__grid{
    grid-template-columns:1fr;
  }
}




@media (max-width: 767px){
  .erk-container{
    padding-left:18px;
    padding-right:18px;
  }

  .erk-section{
    padding:60px 0;
  }

  .erk-hero{
    padding:100px 0 80px;
  }

  .erk-hero__actions{
    flex-direction:column;
  }

  .erk-btn{
    width:100%;
  }
  
    .erk-about__actions{
    flex-direction:column;
    align-items:stretch;
  }

  .erk-about__actions .erk-btn{
    width:100%;
    justify-content:center;
  }
  
    .erk-location__card{
    padding:24px;
  }

  .erk-location__actions{
    flex-direction:column;
    align-items:stretch;
  }

  .erk-location__actions .erk-btn{
    width:100%;
    justify-content:center;
  }

  .erk-location__map iframe{
    min-height:320px;
  }
}

/* =========================================================
   HERO
========================================================= */

.erk-hero{
    position:relative;
    padding:140px 0 120px;
    background:#111;
    overflow:hidden;
}

.erk-hero__media{
    position:absolute;
    inset:0;
    background-image:url('./images/hero.webp');
    background-size:cover;
    background-position:center;
    z-index:1;
}

.erk-hero__overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
    z-index:2;
}

.erk-hero__wrap{
    position:relative;
    z-index:3;
    max-width:700px;
}

.erk-hero h1{
    color:#fff;
    margin-bottom:18px;
}

.erk-hero__text{
    font-size:1.1rem;
    color:#e5e7eb;
    margin-bottom:30px;
}

.erk-hero__actions{
    display:flex;
    gap:16px;
    margin-bottom:28px;
}

.erk-hero__info{
    font-size:.95rem;
    color:#e5e7eb;
}

.erk-hero__info li{
    margin-bottom:6px;
}

/* =========================================================
   QUICK INFO
========================================================= */

.erk-quick-info{
    background:#fff;
    padding:28px 0;
    border-bottom:1px solid #E5E7EB;
}

.erk-quick-info__grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:24px;
}

.erk-quick-info__item h3{
    margin-bottom:6px;
    font-size:1rem;
}

.erk-quick-info__item p{
    color:var(--erk-text);
}

/* =========================================================
   ABOUT
========================================================= */

.erk-about{
    padding:80px 0;
    background:#fff;
}

.erk-about__grid{
    align-items:stretch;
    gap:32px;
}

.erk-about__content{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.erk-about__actions{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:24px;
}

.erk-about__card{
    height:100%;
    border:1px solid #E5E7EB;
    background:#F9FAFB;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(17,24,39,0.06);
}

.erk-card__body{
    padding:32px;
}

.erk-card__title{
    margin:0 0 18px;
    font-family:'Poppins', sans-serif;
    font-size:1.25rem;
    line-height:1.3;
    color:#111827;
}

.erk-list-clean{
    list-style:none;
    margin:0;
    padding:0;
}

.erk-about__list{
    display:grid;
    gap:14px;
}

.erk-about__list li{
    position:relative;
    padding-left:22px;
    color:#374151;
    line-height:1.7;
}

.erk-about__list li::before{
    content:"";
    position:absolute;
    left:0;
    top:11px;
    width:8px;
    height:8px;
    border-radius:999px;
    background:#D4AF37;
}

/* =========================================================
   MENU CATEGORIES
========================================================= */

.erk-menu-categories{
    padding:80px 0;
    background:var(--erk-color-bg-soft);
}

.erk-menu-categories__grid{
    margin-top:40px;
}

.erk-menu-category-card{
    text-align:center;
    padding:32px 24px;
    border-radius:var(--erk-radius-lg);
    border:1px solid var(--erk-color-border);
    background:#fff;
    box-shadow:var(--erk-shadow-sm);
    transition:var(--erk-transition);
}

.erk-menu-category-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--erk-shadow-md);
}

.erk-menu-category-card__icon{
    font-size:40px;
    margin-bottom:16px;
}

.erk-menu-category-card__title{
    margin-bottom:8px;
}


/* =========================================================
   MENU CATEGORIES
========================================================= */

.erk-menu-cats{
    padding:80px 0;
    background:#fff;
}

.erk-menu-cats__grid{
    margin-top:40px;
}

.erk-cat-card{
    display:block;
    text-decoration:none;
    color:inherit;
}

.erk-cat-card__inner{
    height:100%;
    overflow:hidden;
    transition:transform .25s ease, box-shadow .25s ease;
}

.erk-cat-card:hover .erk-cat-card__inner{
    transform:translateY(-4px);
    box-shadow:0 14px 36px rgba(0,0,0,0.12);
}

.erk-cat-card__media{
    aspect-ratio:4 / 3;
    background:#f3f4f6;
    overflow:hidden;
}

.erk-cat-card__media img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.erk-cat-card__placeholder{
    width:100%;
    height:100%;
    min-height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    background:#f3f4f6;
    color:#111827;
    font-family:'Poppins', sans-serif;
    font-weight:600;
    text-align:center;
}

.erk-cat-card__count{
    margin:0;
    font-size:.95rem;
    color:#6b7280;
}

.erk-menu-cats__empty{
    margin-top:24px;
    text-align:center;
    color:#6b7280;
}

/* =========================================================
   FEATURED MENU
========================================================= */

.erk-featured-menu{
    padding:80px 0;
}

.erk-featured-menu__grid{
    margin-top:40px;
}

.erk-featured-menu__card{
    overflow:hidden;
    transition:transform .25s ease, box-shadow .25s ease;
}

.erk-featured-menu__card:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 36px rgba(0,0,0,0.12);
}

.erk-featured-menu__media{
    display:block;
}

.erk-featured-menu__image{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}

.erk-featured-menu__price{
    margin-top:6px;
    font-weight:600;
    color:#B91C1C;
}

.erk-featured-menu__link{
    display:inline-block;
    margin-top:12px;
    font-size:14px;
    font-weight:600;
    color:#B91C1C;
}

.erk-featured-menu__link:hover{
    text-decoration:underline;
}

.erk-featured-menu__footer{
    margin-top:40px;
}

.erk-featured-menu__footer .erk-btn{
    padding:14px 34px;
    border-radius:999px;
}

/* =========================================================
   SPECIALS BANNER
========================================================= */

.erk-specials-banner{
    padding:80px 0;
    background:#111;
}

.erk-specials-banner__inner{
    display:grid;
    grid-template-columns:minmax(280px, 520px) minmax(0, 1fr) auto;
    align-items:center;
    gap:28px;
}

.erk-specials-banner__image{
    width:100%;
}

.erk-specials-banner__image img{
    width:100%;
    max-width:520px;
    aspect-ratio:4 / 3;
    object-fit:cover;
    border-radius:20px;
    display:block;
    box-shadow:0 14px 36px rgba(0,0,0,0.18);
}

.erk-specials-banner__content{
    min-width:0;
}

.erk-specials-banner__content h2{
    margin-bottom:12px;
    max-width:320px;
}

.erk-specials-banner__content p{
    margin-bottom:0;
    max-width:420px;
}

.erk-specials-banner__action{
    justify-self:end;
    text-align:right;
}

.erk-coupon-code{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:54px;
    padding:12px 18px;
    border:1px solid rgba(255,255,255,0.16);
    border-radius:999px;
    background:rgba(255,255,255,0.04);
    font-family:var(--erk-font-heading);
    font-size:1rem;
    font-weight:700;
    letter-spacing:0.04em;
    color:#fff;
}

.erk-specials-banner__content h2{
    color:#fff;
    margin-bottom:12px;
}

.erk-specials-banner__content p{
    color:#d1d5db;
}

/* =========================================================
   CONTACT + LOCATION
========================================================= */

.erk-contact-location__head{
  max-width:760px;
  margin:0 auto 32px;
  text-align:center;
}

.erk-contact-location__grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
  gap:32px;
  align-items:stretch;
}
.erk-contact-location__form-col,
.erk-contact-location__info-col{
  display:flex;
}

.erk-contact-card{
  flex:1;
}

.erk-contact-card{
  background:var(--erk-color-white);
  border:1px solid var(--erk-color-border);
  border-radius:20px;
  padding:24px;
  box-shadow:var(--erk-shadow-sm);
}

.erk-contact-card__title{
  margin:0 0 20px;
  font-size:1.4rem;
}

.erk-contact-form{
  width:100%;
}

.erk-form-row{
  display:flex;
  flex-direction:column;
  margin-bottom:18px;
}

.erk-form-row label{
  margin-bottom:8px;
  font-weight:600;
  color:var(--erk-color-heading);
}

.erk-form-row input,
.erk-form-row textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid var(--erk-color-border);
  border-radius:14px;
  background:var(--erk-color-white);
  color:var(--erk-color-text);
  font-family:var(--erk-font-body);
  font-size:1rem;
  transition:var(--erk-transition);
}

.erk-form-row input:focus,
.erk-form-row textarea:focus{
  outline:none;
  border-color:var(--erk-color-primary);
  box-shadow:0 0 0 3px rgba(185, 28, 28, 0.10);
}

.erk-contact-success{
  max-width:760px;
  margin:0 auto 24px;
  padding:14px 18px;
  border:1px solid #86efac;
  border-radius:14px;
  background:#f0fdf4;
  color:#166534;
  font-weight:600;
}

.erk-location__map{
  margin-bottom:20px;
  overflow:hidden;
  border:1px solid var(--erk-color-border);
  border-radius:18px;
}

.erk-location__map iframe{
  display:block;
  width:100%;
  height:360px;
  border:0;
}

.erk-location__cards{
  display:grid;
  gap:16px;
}

.erk-location-box{
  padding:18px;
  border:1px solid var(--erk-color-border);
  border-radius:16px;
  background:var(--erk-color-bg-soft);
}

.erk-location-box h3{
  margin:0 0 10px;
  font-size:1.05rem;
  color:var(--erk-color-heading);
}

.erk-location-box p{
  margin:0;
  color:var(--erk-color-text);
}

.erk-location-box a{
  color:var(--erk-color-primary);
  text-decoration:none;
}

.erk-location-box a:hover{
  text-decoration:underline;
}

.erk-location-box__actions a,
.erk-location-box__actions a:hover,
.erk-location-box__actions a:focus{
  text-decoration:none;
}

.erk-location-box__actions{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:16px;
}

.erk-location-box__actions .erk-btn{
  width:100%;
  min-width:0;
  min-height:44px;
  padding:12px 16px;
  font-size:.9rem;
  text-decoration:none;
}

.erk-location-box__actions .erk-btn--primary,
.erk-location-box__actions .erk-btn--primary:hover,
.erk-location-box__actions .erk-btn--primary:focus{
  color:var(--erk-color-white);
}

.erk-location-box__actions .erk-btn--dark,
.erk-location-box__actions .erk-btn--dark:hover,
.erk-location-box__actions .erk-btn--dark:focus{
  color:var(--erk-color-white);
}

@media (max-width: 991px){
  .erk-contact-location__grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 767px){
  .erk-contact-card{
    padding:20px;
    border-radius:18px;
  }

  .erk-location__map iframe{
    height:280px;
  }

  .erk-location-box__actions{
    grid-template-columns:1fr;
  }
}

.erk-btn--icon{
  width:48px;
  height:48px;
  min-height:48px;
  padding:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:1rem;
  line-height:1;
}

.erk-location-box__phone{
  margin-bottom:14px;
}

.erk-location-box__actions{
  display:flex;
  gap:10px;
  align-items:center;
}

.erk-location-box__actions .erk-btn{
  text-decoration:none !important;
}

.erk-location-box__actions .erk-btn:hover,
.erk-location-box__actions .erk-btn:focus{
  text-decoration:none !important;
}

.erk-location-box__actions .erk-btn--primary,
.erk-location-box__actions .erk-btn--primary:hover,
.erk-location-box__actions .erk-btn--primary:focus,
.erk-location-box__actions .erk-btn--dark,
.erk-location-box__actions .erk-btn--dark:hover,
.erk-location-box__actions .erk-btn--dark:focus{
  color:var(--erk-color-white);
}

.erk-location__cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:16px;
}

@media (max-width: 767px){
  .erk-location__cards{
    grid-template-columns:1fr;
  }
}
.cf-turnstile{
  margin:20px 0;
}

/* =========================================================
   CART BADGE
========================================================= */

.menu-item-erk-cart{
  position: relative;
}

.erk-cart-count{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  margin-left:6px;
  padding:2px 7px;
  min-width:18px;

  font-size:11px;
  font-weight:600;
  line-height:1;

  color:#fff;
  background:#c21f1f;

  border-radius:999px;

  position:relative;
  top:-4px;   /* lifts badge slightly */
}

/* =========================================================
   HEADER ACCOUNT DROPDOWN
========================================================= */

.erk-account-menu-parent{
  position: relative;
}

.erk-account-menu-parent > .sub-menu{
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: #111111;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 9999;
}

.erk-account-menu-parent:hover > .sub-menu,
.erk-account-menu-parent:focus-within > .sub-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.erk-account-menu-parent > .sub-menu li{
  margin: 0;
  padding: 0;
}

.erk-account-menu-parent > .sub-menu a{
  display: block;
  padding: 11px 16px;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.35;
  transition: background .18s ease, color .18s ease;
}

.erk-account-menu-parent > .sub-menu a:hover,
.erk-account-menu-parent > .sub-menu a:focus{
  background: rgba(185, 28, 28, 0.18);
  color: #D4AF37;
}

.erk-account-menu-parent > a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.erk-account-menu-parent > a::after{
  content: '\25BE';
  font-size: 0.72em;
  line-height: 1;
  transform: translateY(1px);
}

@media (max-width: 921px){
  .erk-account-menu-parent > .sub-menu{
    position: static;
    min-width: 100%;
    margin-top: 8px;
    padding: 8px 0 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .erk-account-menu-parent:hover > .sub-menu,
  .erk-account-menu-parent:focus-within > .sub-menu{
    display: block;
  }

  .erk-account-menu-parent > .sub-menu a{
    padding: 10px 0 10px 14px;
    color: #FFFFFF;
    border-left: 2px solid rgba(212, 175, 55, 0.28);
  }

  .erk-account-menu-parent > .sub-menu a:hover,
  .erk-account-menu-parent > .sub-menu a:focus{
    background: transparent;
    color: #D4AF37;
  }
}

/* =========================================================
   WOOCOMMERCE PAGE WIDTH NORMALIZATION
========================================================= */

body.woocommerce-cart .site-main,
body.woocommerce-account .site-main,
body.woocommerce-checkout .site-main{
  max-width: var(--erk-container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* =========================================================
   WOOCOMMERCE PAGE TOP OFFSET
========================================================= */

body.woocommerce-page .entry-header{
  display:none;
}

body.woocommerce-page .site-content{
  padding-top:120px !important;
  padding-bottom:40px !important;
}

body.woocommerce-page .site-main,
body.woocommerce-page .ast-article-single,
body.woocommerce-page .entry-content{
  margin-top:0 !important;
  padding-top:0 !important;
}

body.woocommerce-account .woocommerce-MyAccount-navigation a{
  display:block;
  padding:16px 20px;
  font-weight:600;
  color:var(--erk-color-heading);
  text-decoration:none;
  background:#fff;
  transition:var(--erk-transition);
}

body.woocommerce-account .woocommerce-MyAccount-navigation a:hover{
  color:var(--erk-color-heading);
  background:#fff7e8;
}

body.woocommerce-account .woocommerce-MyAccount-navigation .is-active a{
  color:#fff;
  background:var(--erk-color-primary);
}

body.woocommerce-account .woocommerce-MyAccount-content{
  padding:28px;
  border:1px solid var(--erk-color-border);
  border-radius:18px;
  background:#fff;
}

body.woocommerce-account .woocommerce-Address-title{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
}

body.woocommerce-account .woocommerce-Address-title .edit{
  margin-left:0 !important;
  align-self:flex-start;
}

/* Address cards polish */

body.woocommerce-account .woocommerce-Addresses{
  gap:24px;
}

body.woocommerce-account .woocommerce-Address{
  border-radius:16px;
  overflow:hidden;
}

body.woocommerce-account .woocommerce-Address-title h3{
  margin-bottom:6px;
}

body.woocommerce-account .woocommerce-Address-title .edit{
  font-size:14px;
  font-weight:600;
  color:var(--erk-color-primary);
  text-decoration:none;
}

body.woocommerce-account .woocommerce-Address-title .edit:hover{
  text-decoration:underline;
}

/* =========================================================
   AUTH MODAL — LOGIN / REGISTER
========================================================= */

body:not(.logged-in).woocommerce-account{
    background: rgba(0,0,0,0.72);
}

body:not(.logged-in).woocommerce-account #primary{
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 40px 20px 80px;
}

body:not(.logged-in).woocommerce-account .site-content{
    min-height: calc(100vh - 120px);
}

body:not(.logged-in).woocommerce-account .woocommerce{
    width: 100%;
    max-width: 100%;
}

body:not(.logged-in).woocommerce-account .woocommerce-notices-wrapper{
    max-width: 420px;
    margin: 0 auto 16px;
}

body:not(.logged-in).woocommerce-account .u-columns{
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    float: none;
    display: block;
}

body:not(.logged-in).woocommerce-account .u-column1,
body:not(.logged-in).woocommerce-account .u-column2,
body:not(.logged-in).woocommerce-account .col-1,
body:not(.logged-in).woocommerce-account .col-2{
    width: 100% !important;
    float: none !important;
    max-width: 100%;
    margin: 0;
}

body:not(.logged-in).woocommerce-account .u-column2{
    display: none;
}

.erk-auth-shell{
    width: 100%;
}

.erk-auth-card{
    width: 100%;
    max-width: 420px;
    margin: 0 auto 24px;
    background: #ffffff;
    border-radius: 16px;
    padding: 34px 30px 30px;
    box-shadow: 0 28px 70px rgba(0,0,0,0.35);
}

.erk-auth-brand{
    display: block;
    margin: 0 0 18px;
    text-align: center;
    text-decoration: none;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 700;
    color: #B91C1C;
}

.erk-auth-brand:hover{
    color: #D4AF37;
}

.erk-auth-tabs{
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 0 0 24px;
}

.erk-auth-tab{
    appearance: none;
    border: 0;
    border-radius: 999px;
    background: #EFEFEF;
    color: #111827;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: all .18s ease;
}

.erk-auth-tab.is-active{
    background: #B91C1C;
    color: #ffffff;
}

body:not(.logged-in).woocommerce-account h2{
    display: none;
}

.erk-auth-card form,
.erk-auth-card .woocommerce-form,
.erk-auth-card .form-row,
.erk-auth-card p{
    width: 100%;
}

.erk-auth-card .form-row{
    margin-bottom: 14px;
}

.erk-auth-card label{
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #111827;
}

.erk-auth-card input.input-text,
.erk-auth-card input[type="text"],
.erk-auth-card input[type="email"],
.erk-auth-card input[type="password"]{
    width: 100% !important;
    min-width: 100%;
    display: block;
    border: 1px solid #D1D5DB;
    border-radius: 10px;
    background: #ffffff;
    padding: 13px 14px;
    font-size: 15px;
    box-sizing: border-box;
}

.erk-auth-card .password-input{
    width: 100%;
    display: block;
}

.erk-auth-card .password-input input{
    width: 100% !important;
    padding-right: 42px;
}

.erk-auth-card .woocommerce-form-login__rememberme{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 2px 0 14px;
    font-weight: 600;
}

.erk-auth-card button.button,
.erk-auth-card .woocommerce-button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 0;
    border-radius: 10px;
    background: #B91C1C;
    color: #ffffff;
    padding: 12px 18px;
    font-weight: 700;
    box-shadow: none;
}

.erk-auth-card button.button:hover,
.erk-auth-card .woocommerce-button:hover{
    background: #9f1717;
    color: #ffffff;
}

.erk-auth-card .lost_password,
.erk-auth-card .woocommerce-LostPassword{
    margin-top: 14px;
}

.erk-auth-card .lost_password a,
.erk-auth-card .woocommerce-LostPassword a{
    color: #B91C1C;
}

.erk-auth-card .lost_password a:hover,
.erk-auth-card .woocommerce-LostPassword a:hover{
    color: #D4AF37;
}

@media (max-width: 640px){
    body:not(.logged-in).woocommerce-account #primary{
        padding: 22px 14px 50px;
    }

    .erk-auth-card{
        padding: 26px 18px 22px;
        border-radius: 14px;
    }

    .erk-auth-brand{
        font-size: 24px;
    }

    .erk-auth-tabs{
        gap: 8px;
    }

    .erk-auth-tab{
        flex: 1 1 auto;
        padding: 10px 14px;
    }
    
      .erk-specials__top-rail{
    padding: 10px 12px;
    border-radius: 18px;
  }

  .erk-specials__top-rail::before,
  .erk-specials__top-rail::after{
    width: 22px;
  }
}

/* lost password modal */
body:not(.logged-in).woocommerce-account .woocommerce-ResetPassword,
body:not(.logged-in).woocommerce-account form.woocommerce-ResetPassword{
    width: 100%;
    max-width: 100%;
}

body:not(.logged-in).woocommerce-account .erk-auth-shell--lost-password{
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

body:not(.logged-in).woocommerce-account .erk-auth-shell--lost-password .woocommerce p{
    width: 100%;
}

body:not(.logged-in).woocommerce-account .erk-auth-shell--lost-password input.input-text{
    width: 100% !important;
    min-width: 100%;
    box-sizing: border-box;
}

body:not(.logged-in).woocommerce-account .erk-auth-shell--lost-password .woocommerce-form-row,
body:not(.logged-in).woocommerce-account .erk-auth-shell--lost-password .form-row{
    width: 100%;
    margin-bottom: 14px;
}

body:not(.logged-in).woocommerce-account .erk-auth-shell--lost-password .button{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 0;
    border-radius: 10px;
    background: #B91C1C;
    color: #ffffff;
    padding: 12px 18px;
    font-weight: 700;
}

body:not(.logged-in).woocommerce-account .erk-auth-shell--lost-password .button:hover{
    background: #9f1717;
    color: #ffffff;
}

.erk-auth-back{
    margin: 16px 0 0;
    text-align: center;
}

.erk-auth-back a{
    color: #B91C1C;
    font-weight: 600;
    text-decoration: none;
}

.erk-auth-back a:hover{
    color: #D4AF37;
}

/* =========================================================
   MOBILE CALL BAR
========================================================= */
.erk-mobile-callbar{
  display:none;
}



@media (max-width: 782px){
  .erk-mobile-callbar{
    display:block;
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:9999;
    background:#B91C1C;
    box-shadow:0 -6px 18px rgba(0,0,0,0.22);
  }

  .erk-mobile-callbar__link{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:2px;
    min-height:64px;
    padding:10px 16px calc(10px + env(safe-area-inset-bottom));
    text-decoration:none;
    color:#FFFFFF;
    text-align:center;
    font-weight:700;
    line-height:1.2;
    transition:background-color .2s ease, color .2s ease;
  }

  .erk-mobile-callbar__label{
    font-size:0.95rem;
  }

  .erk-mobile-callbar__phone{
    font-size:0.9rem;
    font-weight:600;
    opacity:0.95;
  }

  .erk-mobile-callbar__link:hover,
  .erk-mobile-callbar__link:focus,
  .erk-mobile-callbar__link:active{
    background:#D4AF37;
    color:#111111;
  }

  .site,
  .site-content,
  .ast-container{
    padding-bottom:84px;
  }
}

.erk-mobile-callbar__label{
  font-size:0.95rem;
}

.erk-mobile-callbar__label i{
  margin-right:6px;
}



/* =========================================================
   WOOCOMMERCE ACCOUNT MOBILE FIX
========================================================= */
@media (max-width: 782px){

  body.woocommerce-account .ast-container,
  body.woocommerce-account .site-content,
  body.woocommerce-account .woocommerce{

    margin-left:0 !important;
    margin-right:0 !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation,
  body.woocommerce-account .woocommerce-MyAccount-content{
    float:none !important;
    display:block !important;
    width:100% !important;
    max-width:100% !important;
    margin-left:0 !important;
    margin-right:0 !important;
    box-sizing:border-box !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-navigation{
    margin-bottom:16px !important;
    padding-right:15px !important;
  }

  body.woocommerce-account .woocommerce-MyAccount-content{
    clear:both !important;
  }
}

/* =========================================================
   SPECIALS — FEATURED SECTION
========================================================= */
.erk-specials{
  padding: 28px 0 14px;
}

.erk-specials__head{
 margin: 0 0 24px;
  padding: 26px 28px;
  border: 1px solid var(--erk-color-border);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #faf7f7 100%);
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.05);
}

.erk-specials__eyebrow{
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--erk-color-primary);
}

.erk-specials__title{
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 3.8vw, 3.3rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.erk-specials__prices{
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
}

.erk-specials__price-block{
  min-width: 220px;
  padding: 14px 16px;
  border: 1px solid rgba(185, 28, 28, 0.12);
  border-radius: 18px;
  background: #fff;
}

.erk-specials__price{
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1;
  font-weight: 600;
  color: var(--erk-color-heading);
}

.erk-specials__time{
  margin-top: 6px;
  font-size: clamp(1.05rem, 1.8vw, 1.65rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--erk-color-heading);
}

.erk-specials__note{
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--erk-color-text);
}

.erk-specials__body{
  display: grid;
  gap: 18px;
  align-items: start;
}

.erk-specials__top-rail{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 14px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #faf7f2 100%);
  border: 1px solid rgba(139, 0, 0, 0.08);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
}

.erk-specials__top-track{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.erk-specials__top-rail::before,
.erk-specials__top-rail::after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 34px;
  z-index: 2;
  pointer-events: none;
}

.erk-specials__top-rail::before{
  left: 0;
  background: linear-gradient(to right, #fbfaf8 0%, rgba(251,250,248,0) 100%);
}

.erk-specials__top-rail::after{
  right: 0;
  background: linear-gradient(to left, #fbfaf8 0%, rgba(251,250,248,0) 100%);
}

.erk-specials__image-slot{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  overflow: hidden;
  background: #f3f4f6;
  border: 3px solid #fff;
  box-shadow:
    0 10px 24px rgba(17, 24, 39, 0.10),
    0 0 0 1px rgba(139, 0, 0, 0.08),
    0 0 0 4px rgba(212, 175, 55, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.erk-specials__image-slot img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

@media (hover:hover){
  .erk-specials__image-slot:hover{
    transform: translateY(-3px);
    box-shadow:
      0 14px 28px rgba(17, 24, 39, 0.14),
      0 0 0 1px rgba(139, 0, 0, 0.12),
      0 0 0 4px rgba(212, 175, 55, 0.12);
  }
}

.erk-specials__list-wrap{
  display: grid;
  gap: 16px;
}

.erk-specials__list{
  display: grid;
  gap: 14px;
}

.erk-specials__item{
  padding: 16px 18px;
  border: 1px solid var(--erk-color-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.05);
}

.erk-specials__item.is-hidden{
  display: none;
}

.erk-specials__item-top{
  display: flex;
  align-items: center;
  gap: 10px;
}

.erk-specials__item-title{
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
}

.erk-specials__item-leader{
  flex: 1 1 auto;
  border-bottom: 1px dotted var(--erk-color-border-dark, #d1d5db);
  transform: translateY(1px);
}

.erk-specials__item-desc{
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--erk-color-text-light, #6b7280);
}

.erk-specials__actions{
  display: flex;
  justify-content: center;
  padding-top: 4px;
}

.erk-specials__toggle{
  min-width: 180px;
}

@media (max-width: 921px){
  .erk-specials{
    padding: 24px 0 10px;
  }

  .erk-specials__head{
    padding: 22px 20px;
    margin-bottom: 20px;
    border-radius: 20px;
  }

  .erk-specials__prices{
    gap: 14px;
  }

  .erk-specials__price-block{
    min-width: 180px;
    padding: 12px 14px;
  }

  .erk-specials__body{
    gap: 14px;
  }

  .erk-specials__top-track{
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
  }

  .erk-specials__item{
    padding: 14px 15px;
    border-radius: 18px;
  }
}

@media (max-width: 640px){
  .erk-specials{
    padding: 18px 0 8px;
  }

  .erk-specials__head{
    padding: 18px 16px;
    margin-bottom: 16px;
    border-radius: 18px;
  }

  .erk-specials__title{
    margin-bottom: 14px;
    line-height: 1.02;
  }

  .erk-specials__prices{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
  }

  .erk-specials__price-block{
    min-width: 0;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .erk-specials__price{
    font-size: 1.75rem;
  }

  .erk-specials__time{
    font-size: 0.98rem;
  }

  .erk-specials__note{
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .erk-specials__body{
    gap: 12px;
  }

  .erk-specials__top-track{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .erk-specials__list-wrap{
    gap: 12px;
  }

  .erk-specials__list{
    gap: 10px;
  }

  .erk-specials__item{
    padding: 13px 14px;
    border-radius: 16px;
  }

  .erk-specials__item-top{
    align-items: flex-start;
    gap: 8px;
  }

  .erk-specials__item-title{
    font-size: 1rem;
  }

  .erk-specials__item-desc{
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .erk-specials__toggle{
    width: 100%;
    min-width: 0;
  }
}
/* ========================================
   LEGAL PAGES
======================================== */

.erk-legal-hero{
  display:block;
  width:100%;
  max-width:20%;
  float:none;
  clear:both;
  box-sizing:border-box;

  background:#8B0000;
  color:#fff;
  padding:60px 20px;
  text-align:center;
  margin-top:80px;
}

.erk-legal-hero h1{
  font-size:36px;
  margin-bottom:10px;
  color:#fff;
}

.erk-legal-hero p{
  font-size:18px;
  opacity:.9;
  color:#fff;
}

.erk-legal-content{
  padding:60px 20px;
   margin-top:80px;
}

.erk-legal-hero .erk-container,
.erk-legal-content .erk-container{
  width:100%;
  max-width:900px;
  margin:0 auto;
  box-sizing:border-box;
}

.erk-legal-content h2{
  margin-top:30px;
  font-size:22px;
}

.erk-legal-content p{
  line-height:1.7;
  margin-top:10px;
}

@media (max-width: 768px){
  .erk-legal-hero{
      display:block;
      width:100% !important;
      max-width:100% !important;
    padding:40px 16px;
    margin-top:80px;
  }
  
  .erk-legal-hero h1{
    font-size:30px;
    line-height:1.15;
  }

  .erk-legal-hero p{
    font-size:16px;
    line-height:1.5;
  }

  .erk-legal-content{
    padding:40px 16px;
  }

  .erk-legal-content h2{
    font-size:20px;
  }
}

/* =========================
   FOOTER LEGAL LINKS
========================= */

.erk-footer-legal{
  text-align:center;
  font-size:14px;
  margin-top:10px;
  white-space:nowrap;
}

.erk-footer-legal a{
  display:inline-block;
  color:#ccc;
  text-decoration:none;
  padding:0 6px;
}

.erk-footer-legal a:hover{
  color:#ffffff;
}

.erk-footer-sep{
  display:inline-block;
  color:#666;
}

@media (max-width: 768px){
  .erk-footer-legal{
    white-space:normal;
    line-height:1.8;
    padding:0 10px;
  }

  .erk-footer-legal a,
  .erk-footer-sep{
    display:inline;
    padding:0 3px;
  }
}