:root{
  --allys-dark:#151A26;
  --allys-bg:#f8f2ef;
  --allys-bg-2:#f0e5e1;
  --allys-accent:#b65e36;
  --allys-white:#ffffff;
  --allys-text:#151A26;
  --allys-serif: Georgia, "Times New Roman", serif;
  --allys-sans: Arial, Helvetica, sans-serif;
}

*{ box-sizing:border-box; }

html, body{
  margin:0;
  padding:0;
  width:100%;
  min-height:100%;
  overflow-x:hidden;
  background:var(--allys-bg);
  color:var(--allys-text);
  font-family:var(--allys-sans);
}

body{
  font-size:16px;
  line-height:1.7;
}

a{ color:inherit; }

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

.allys-container{
  width:min(1280px, calc(100% - 64px));
  margin:0 auto;
}

/* ================= TOP BAR ================= */
.allys-topbar{
  position:relative;
  width:100%;
  height:40px;
  background:var(--allys-dark);
  color:#fff;
  overflow:hidden;
  z-index:90;
}

.allys-topbar__track{
  position:static !important;
  transform:none !important;
  animation:none !important;
  text-align:center !important;
  width:100% !important;
  white-space:nowrap;
  font-size:14px;
  height:40px !important;
  line-height:40px !important;
}

.allys-topbar__track a{
  color:#fff;
  text-decoration:underline;
}

@keyframes marquee_single{
  0%{ transform:translateX(100vw); }
  100%{ transform:translateX(-100%); }
}

/* ================= HEADER ================= */
.allys-header{
  width:100%;
  z-index:80;
}

.home .allys-header{
  position:absolute;
  top:40px;
  left:0;
  background:transparent;
  color:#fff;
}

body:not(.home) .allys-header{
  position:relative;
  background:var(--allys-bg-2);
  color:var(--allys-text);
}

.allys-header__inner{
  position:relative;
  min-height:96px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:start;
  padding-top:26px;
}

.allys-header__social{
  grid-column:1;
  display:flex;
  align-items:center;
  gap:18px;
  justify-content:flex-start;
  padding-top:18px;
}

.allys-header__center{
  grid-column:2;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
}

.allys-header__actions{
  grid-column:3;
  display:flex;
  align-items:center;
  gap:18px;
  justify-content:flex-end;
  padding-top:18px;
}

.allys-icon{
  width:19px;
  height:19px;
  fill:currentColor;
  display:block;
}

.allys-icon--stroke{
  fill:none;
  stroke:currentColor;
  stroke-width:1.7;
}

.allys-fill-dot{
  fill:currentColor;
  stroke:none;
}

.allys-site-title{
  margin:0;
  text-align:center;
  line-height:1;
}

.allys-site-title img{
  display:block;
  height:54px;
  width:auto;
}

.allys-main-nav{
  margin-top:20px;
}

.allys-nav{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  gap:34px;
  justify-content:center;
  align-items:center;
}

.allys-nav li{
  margin:0;
  padding:0;
}

.allys-nav a{
  text-decoration:none;
  font-size:14px;
  color:inherit;
  white-space:nowrap;
}

.allys-mobile-toggle,
.allys-mobile-checkbox{
  display:none;
}

/* ================= HERO ================= */
.allys-home-hero{
  position:relative;
  width:100%;
  height:100vh;
  min-height:780px;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}

.allys-home-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.14);
}

.allys-home-hero__overlay{
  position:relative;
  z-index:2;
  text-align:center;
  padding-top:110px;
}

.allys-home-hero__title{
  font-family:var(--allys-serif);
  font-weight:300;
  font-size:clamp(72px, 6vw, 96px);
  line-height:.95;
  margin:0 0 24px;
}

.allys-home-hero__subtitle{
  font-size:16px;
  margin:0 0 28px;
}

.allys-outline-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 30px;
  border:1px solid currentColor;
  color:inherit;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:13px;
}

/* ================= HOME PRODUCTS ================= */
.allys-home-section{
  padding:92px 0 70px;
}

.allys-home-heading{
  font-family:var(--allys-serif);
  font-size:clamp(42px, 4vw, 68px);
  font-weight:300;
  line-height:1.1;
  text-align:center;
  margin:0 0 58px;
}

.allys-home-heading--large{
  max-width:950px;
  margin-left:auto;
  margin-right:auto;
}

.allys-product-row{
  display:grid;
  gap:34px;
}

.allys-product-row--5{
  grid-template-columns:repeat(5, minmax(0, 1fr));
}

.allys-card{
  position:relative;
  min-width:0;
}

.allys-card__image-wrap{
  position:relative;
  display:block;
  overflow:hidden;
  background:#eee;
}

.allys-card img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
  display:block;
}

.allys-card h3{
  font-family:var(--allys-serif);
  font-size:22px;
  font-weight:300;
  line-height:1.25;
  margin:18px 0 8px;
}

.allys-card .price{
  font-size:17px;
  color:var(--allys-text);
}

.allys-badge{
  position:absolute;
  top:10px;
  right:10px;
  background:#fff;
  color:var(--allys-text);
  padding:5px 12px;
  font-size:14px;
  z-index:5;
}

/* ================= SPLIT CATEGORIES ================= */
.allys-split-cats{
  display:grid;
  grid-template-columns:1fr 1fr;
  width:100%;
  gap:0;
}

.allys-split-cats__item{
  position:relative;
  display:block;
  height:760px;
  overflow:hidden;
  color:#fff;
}

.allys-split-cats__item::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,0) 45%, rgba(0,0,0,.25));
}

.allys-split-cats__img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.allys-split-cats__item span{
  position:absolute;
  left:52px;
  bottom:76px;
  z-index:2;
  font-family:var(--allys-serif);
  font-size:48px;
  line-height:1;
}

.allys-split-cats__item small{
  position:absolute;
  left:52px;
  bottom:38px;
  z-index:2;
  font-size:20px;
  text-decoration:underline;
}

/* ================= NOMAD / STORY ================= */
.allys-nomad{
  display:grid;
  grid-template-columns:1fr 1fr;
  background:var(--allys-bg-2);
}

.allys-nomad__image img{
  width:100%;
  height:100%;
  min-height:680px;
  object-fit:cover;
  display:block;
}

.allys-nomad__content{
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:80px;
}

.allys-nomad__mark{
  color:var(--allys-accent);
  font-size:46px;
  margin-bottom:24px;
}

.allys-nomad__content h2{
  font-family:var(--allys-serif);
  font-size:72px;
  font-weight:300;
  line-height:1;
  margin:0 0 28px;
}

.allys-nomad__content p{
  max-width:560px;
  margin:0 auto 34px;
  font-size:20px;
  line-height:1.8;
}

.allys-nomad__content a{
  text-transform:uppercase;
  letter-spacing:.8px;
  font-size:16px;
}

/* ================= CRAFTED ================= */
.allys-crafted{
  background:var(--allys-bg);
  text-align:center;
  padding:100px 0;
}

.allys-crafted__intro{
  max-width:850px;
  margin:0 auto 70px;
  font-size:22px;
  line-height:1.8;
}

.allys-feature-grid{
  max-width:1120px;
  margin:60px auto 0;
  display:grid !important;
  grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
  gap:50px !important;
  align-items:start !important;
  text-align:center !important;
}

.allys-feature{
  width:100%;
  min-width:0;
  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:flex-start !important;
  text-align:center !important;
}

.allys-feature-icon{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  width:54px !important;
  height:54px !important;
  margin:0 auto 18px !important;
  font-size:42px !important;
  line-height:1 !important;
  font-family:"Apple Color Emoji","Segoe UI Emoji","Noto Color Emoji",sans-serif !important;
}

.allys-feature h3{
  font-size:24px;
  margin:0 0 8px;
  font-weight:700;
  line-height:1.25;
}

.allys-feature p{
  font-size:18px;
  margin:0;
  line-height:1.5;
}

/* ================= SALE BAND ================= */
.allys-sale-band{
  background:var(--allys-accent);
  color:#fff;
  text-align:center;
  padding:90px 0;
}

.allys-sale-band p{
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:20px;
  margin:0 0 30px;
}

.allys-sale-band h2{
  max-width:900px;
  margin:0 auto 42px;
  font-family:var(--allys-serif);
  font-size:clamp(46px, 6vw, 84px);
  font-weight:300;
  line-height:1.05;
}

.allys-sale-band a{
  display:inline-flex;
  min-width:300px;
  min-height:60px;
  align-items:center;
  justify-content:center;
  border:2px solid #fff;
  color:#fff;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:18px;
}

/* ================= INSTAGRAM ================= */
.allys-instagram-strip{
  background:var(--allys-bg);
  padding:86px 0 110px;
}

.allys-instagram-strip__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:44px;
}

.allys-instagram-strip__head h2{
  font-family:var(--allys-serif);
  font-size:48px;
  font-weight:300;
  margin:0;
}

.allys-instagram-strip__icons{
  display:flex;
  gap:28px;
  font-size:28px;
}

.allys-instagram-strip__icons a{
  text-decoration:none;
}

.allys-instagram-strip__grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:18px;
}

.allys-instagram-strip__grid img{
  width:100%;
  aspect-ratio:1/1.25;
  object-fit:cover;
  display:block;
}

/* ================= FOOTER ================= */
.allys-footer{
  background:var(--allys-dark);
  color:#fff;
  padding:80px 0 90px;
}

.allys-footer__title{
  font-family:var(--allys-serif);
  font-size:36px;
  margin-bottom:20px;
}

.allys-footer__text{
  font-size:20px;
  margin:0 0 70px;
}

.allys-footer__link{
  color:#fff;
}

/* ================= BUY PILL ================= */
.allys-buy-pill{
  position:fixed;
  left:68px !important;
  bottom:28px !important;
  transform:none !important;
  width:410px !important;
  min-height:52px !important;
  border-radius:999px;
  background:#fff;
  z-index:9999;
  box-shadow:0 8px 24px rgba(0,0,0,.08) !important;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:7px 8px 7px 22px !important;
}

.allys-buy-pill__text{
  font-size:14px !important;
  color:var(--allys-dark);
  white-space:nowrap;
}

.allys-buy-pill__button{
  min-width:124px !important;
  min-height:38px !important;
  background:var(--allys-dark);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:1.2px !important;
  font-size:12px !important;
}

/* ================= PAGE / WOO ================= */
.allys-page-wrap,
.allys-title-strip{
  background:var(--allys-bg-2);
  padding:58px 0 34px;
}

.allys-breadcrumb{
  font-size:14px;
  margin-bottom:18px;
}

.allys-page-title{
  font-family:var(--allys-serif);
  font-size:64px;
  font-weight:300;
  margin:0;
}

.allys-page-content,
.allys-woo-content{
  padding:60px 0 90px;
}

.allys-woo-content.allys-container{
  width:min(1400px, calc(100% - 64px));
}

.woocommerce .woocommerce-result-count{
  float:left !important;
  margin:0 0 30px !important;
  font-size:14px !important;
}

.woocommerce .woocommerce-ordering{
  float:right !important;
  margin:0 0 30px !important;
}

.woocommerce .woocommerce-ordering select{
  width:160px !important;
  height:24px !important;
  font-size:13px !important;
  padding:1px 4px !important;
  border:1px solid #cfc5c1 !important;
  background:#fff !important;
  color:#151A26 !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after{
  content:none !important;
  display:none !important;
}

.woocommerce ul.products{
  clear:both !important;
  display:grid !important;
  grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
  gap:46px 16px !important;
  width:100% !important;
  margin:22px 0 0 !important;
  padding:0 !important;
  align-items:start !important;
}

.woocommerce ul.products li.product{
  float:none !important;
  clear:none !important;
  width:100% !important;
  max-width:100% !important;
  margin:0 !important;
  padding:0 !important;
  align-self:start !important;
  position:relative !important;
}

.woocommerce ul.products li.product img{
  width:100% !important;
  aspect-ratio:3/4.45 !important;
  object-fit:cover !important;
  object-position:center top !important;
  margin:0 0 14px !important;
  display:block !important;
  transition:transform .45s ease, opacity .45s ease !important;
}

.woocommerce ul.products li.product:hover img{
  transform:scale(1.025);
  opacity:.96;
}

.woocommerce-loop-product__title{
  font-family:Arial, Helvetica, sans-serif !important;
  font-size:16px !important;
  font-weight:400 !important;
  line-height:1.25 !important;
  letter-spacing:0 !important;
  margin:13px 0 8px !important;
  padding:0 !important;
}

.woocommerce ul.products li.product .price{
  font-size:13px !important;
  font-weight:600 !important;
  color:var(--allys-text) !important;
  margin:0 !important;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .cfvsw-swatches-container,
.woocommerce ul.products li.product .variations_form{
  display:none !important;
}

.woocommerce span.onsale{
  min-height:auto !important;
  min-width:auto !important;
  padding:3px 9px !important;
  border-radius:0 !important;
  background:#fff !important;
  color:#151A26 !important;
  border:1px solid #b65e36 !important;
  font-size:13px !important;
  line-height:1.4 !important;
}

/* ================= SINGLE PRODUCT ================= */
.single-product{
  background:var(--allys-bg);
}

.single-product .product{
  max-width:1200px;
  margin:0 auto;
  padding:60px 24px 40px;
}

.single-product .allys-page-title,
.single-product .entry-title{
  display:none !important;
}

.single-product div.product{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(380px,.95fr);
  gap:52px;
  align-items:start;
}

.single-product div.product .woocommerce-product-gallery,
.single-product div.product .images,
.single-product div.product .summary{
  width:100% !important;
  float:none !important;
  margin:0 !important;
}

.single-product div.product .summary .product_title{
  font-family:var(--allys-serif);
  font-size:42px !important;
  font-weight:300;
  line-height:1.1 !important;
  margin:0 0 18px !important;
}

.single-product div.product .summary .price{
  font-size:22px !important;
  margin:0 0 26px !important;
}

.single-product .single_add_to_cart_button,
body.woocommerce-cart .checkout-button,
body.woocommerce-checkout #place_order{
  background:var(--allys-dark) !important;
  color:#fff !important;
  border:none !important;
  min-height:48px !important;
  padding:0 30px !important;
  text-transform:uppercase;
  letter-spacing:1px;
}

.single-product #reviews,
.single-product .woocommerce-Reviews,
.single-product .related{
  display:none !important;
}

.hurrah-related-products{
  grid-column:1 / -1;
  margin:70px 0 20px;
}

.hurrah-related-products h2{
  font-family:var(--allys-serif);
  font-size:34px;
  font-weight:300;
}

.hurrah-products-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:28px;
}

.hurrah-product__image img{
  width:100%;
  aspect-ratio:3/4;
  object-fit:cover;
}

.hurrah-product__title{
  font-family:var(--allys-serif);
  font-size:22px;
  font-weight:300;
}

/* ================= CHECKOUT ================= */
body.woocommerce-checkout .allys-buy-pill{
  display:none !important;
}

body.woocommerce-checkout form.checkout{
  display:block !important;
}

body.woocommerce-checkout #customer_details{
  width:62% !important;
  float:left !important;
}

body.woocommerce-checkout #customer_details .col-1,
body.woocommerce-checkout #customer_details .col-2{
  float:none !important;
  width:100% !important;
}

body.woocommerce-checkout #order_review_heading,
body.woocommerce-checkout #order_review{
  width:34% !important;
  float:right !important;
}

body.woocommerce-checkout #order_review{
  padding:24px !important;
  background:#fff !important;
  border:1px solid #e7ddd8 !important;
  border-radius:8px !important;
}

body.woocommerce-checkout form.checkout::after{
  content:"";
  display:block;
  clear:both;
}

/* ================= SHOP TITLE STRIP ================= */
.woocommerce-shop .allys-title-strip,
.allys-shop-title-strip{
  display:block !important;
  background:#f0e5e1 !important;
  padding:30px 0 26px !important;
}

.woocommerce-shop .allys-title-strip .allys-container,
.allys-shop-title-strip .allys-container{
  width:min(1120px, calc(100% - 64px)) !important;
}

.woocommerce-shop .allys-breadcrumb,
.allys-shop-title-strip .allys-breadcrumb{
  display:block !important;
  font-size:14px !important;
  margin-bottom:18px !important;
}

.woocommerce-shop .allys-page-title,
.allys-shop-title-strip .allys-page-title{
  display:block !important;
  font-size:36px !important;
  line-height:1.1 !important;
  color:#151A26 !important;
}

.woocommerce-shop .allys-woo-content.allys-container{
  width:min(1120px, calc(100% - 64px)) !important;
  padding-top:24px !important;
}

body.woocommerce-shop .allys-site-title,
body.woocommerce-shop .allys-nav a,
body.woocommerce-shop .allys-header__social,
body.woocommerce-shop .allys-header__actions{
  color:#151A26 !important;
}

body.woocommerce-shop .allys-site-title img{
  filter:invert(1) brightness(0.15) !important;
}

/* ================= TABLET ================= */
@media (max-width:991px){
  .allys-container,
  .allys-woo-content.allys-container{
    width:calc(100% - 48px);
  }

  .allys-product-row--5,
  .woocommerce ul.products,
  .hurrah-products-grid{
    grid-template-columns:repeat(2, minmax(0,1fr)) !important;
    gap:34px 28px !important;
  }

  .allys-feature-grid{
    grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
    gap:24px !important;
  }

  .allys-feature h3{
    font-size:20px !important;
  }

  .allys-feature p{
    font-size:15px !important;
  }

  .allys-split-cats,
  .allys-nomad{
    grid-template-columns:1fr;
  }

  .single-product div.product{
    grid-template-columns:1fr;
  }

  body.woocommerce-checkout #customer_details,
  body.woocommerce-checkout #order_review_heading,
  body.woocommerce-checkout #order_review{
    width:100% !important;
    float:none !important;
    clear:both !important;
  }

  body.woocommerce-checkout #order_review_heading{
    margin-top:30px !important;
  }
}

/* ================= MOBILE ================= */
@media (max-width:768px){
  .allys-container,
  .allys-woo-content.allys-container{
    width:calc(100% - 48px);
  }

  .home .allys-header{
    top:40px;
  }

  .allys-header__inner{
    width:100%;
    min-height:132px;
    padding:28px 26px 0;
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:start;
  }

  .allys-header__social{
    grid-column:1;
    padding-top:8px;
    gap:22px;
  }

  .allys-header__actions{
    grid-column:3;
    padding-top:8px;
    gap:22px;
  }

  .allys-header__center{
    grid-column:2;
  }

  .allys-site-title img{
    height:42px;
    max-width:170px;
  }

  .allys-icon{
    width:25px;
    height:25px;
  }

  .allys-main-nav{
    position:absolute;
    top:112px;
    left:24px;
    right:24px;
    display:none;
    margin:0;
    padding:18px;
    background:rgba(21,26,38,.96);
    color:#fff;
    z-index:999;
  }

  .allys-nav{
    flex-direction:column;
    gap:16px;
  }

  .allys-nav a{
    font-size:18px;
  }

  .allys-mobile-toggle{
    display:block;
    color:inherit;
    font-size:34px;
    line-height:1;
    margin-top:30px;
    cursor:pointer;
  }

  .allys-mobile-checkbox{
    display:none;
  }

  .allys-mobile-checkbox:checked + .allys-main-nav{
    display:block;
  }

  body:not(.home) .allys-mobile-checkbox:checked + .allys-main-nav{
    background:var(--allys-dark);
  }

  .allys-home-hero{
    height:100svh;
    min-height:760px;
    background-position:center top;
  }

  .allys-home-hero::before{
    background:rgba(0,0,0,.18);
  }

  .allys-home-hero__overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:82px;
    padding:0 24px;
  }

  .allys-home-hero__title{
    font-size:64px;
    line-height:.95;
    margin-bottom:20px;
  }

  .allys-home-hero__subtitle{
    font-size:20px;
  }

  .allys-outline-button{
    min-height:58px;
    padding:0 34px;
    font-size:15px;
    border-width:2px;
  }

  .allys-home-section{
    padding:82px 0 62px;
  }

  .allys-home-heading{
    font-size:50px;
    margin-bottom:50px;
  }

  .allys-card h3,
  .woocommerce-loop-product__title{
    font-size:25px !important;
  }

  .allys-card .price,
  .woocommerce ul.products li.product .price{
    font-size:22px !important;
  }

  .woocommerce .woocommerce-result-count,
  .woocommerce .woocommerce-ordering{
    float:none !important;
    width:100% !important;
    text-align:left !important;
    margin-bottom:20px !important;
  }

  .allys-feature-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:34px 20px !important;
  }

  .allys-feature-icon{
    font-size:36px !important;
    width:46px !important;
    height:46px !important;
  }

  .allys-split-cats__item{
    height:620px;
  }

  .allys-split-cats__item span{
    left:34px;
    bottom:72px;
    font-size:44px;
  }

  .allys-split-cats__item small{
    left:34px;
    bottom:36px;
    font-size:22px;
  }

  .allys-nomad__image img{
    min-height:620px;
  }

  .allys-nomad__content{
    padding:88px 32px;
  }

  .allys-nomad__content h2{
    font-size:58px;
  }

  .allys-crafted{
    padding:92px 0;
  }

  .allys-crafted__intro{
    font-size:22px;
  }

  .allys-sale-band{
    padding:86px 24px;
  }

  .allys-sale-band a{
    width:100%;
    max-width:420px;
  }

  .allys-instagram-strip__head{
    align-items:flex-start;
    gap:24px;
  }

  .allys-instagram-strip__head h2{
    font-size:42px;
  }

  .allys-instagram-strip__grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .allys-buy-pill{
    left:50% !important;
    transform:translateX(-50%) !important;
    width:calc(100% - 34px) !important;
    bottom:18px !important;
    min-height:76px;
    padding:10px 14px 10px 24px !important;
  }

  .allys-buy-pill__text{
    font-size:19px !important;
  }

  .allys-buy-pill__button{
    min-width:210px !important;
    font-size:15px !important;
  }

  .allys-footer{
    padding-bottom:130px;
  }

  .woocommerce-shop .allys-woo-content.allys-container,
  .woocommerce-shop .allys-title-strip .allys-container{
    width:calc(100% - 38px) !important;
  }

  .woocommerce ul.products{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:38px 18px !important;
  }

  .woocommerce-loop-product__title{
    font-size:16px !important;
  }

  .woocommerce ul.products li.product .price{
    font-size:14px !important;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width:480px){
  .allys-container,
  .allys-woo-content.allys-container{
    width:calc(100% - 38px);
  }

  .allys-header__inner{
    padding-left:18px;
    padding-right:18px;
  }

  .allys-header__social,
  .allys-header__actions{
    gap:14px;
  }

  .allys-icon{
    width:23px;
    height:23px;
  }

  .allys-site-title img{
    height:38px;
  }

  .allys-home-hero__title{
    font-size:54px;
  }

  .allys-product-row--5,
  .woocommerce ul.products,
  .hurrah-products-grid{
    gap:32px 22px !important;
  }

  .allys-card h3,
  .woocommerce-loop-product__title{
    font-size:22px !important;
  }

  .allys-card .price,
  .woocommerce ul.products li.product .price{
    font-size:20px !important;
  }

  .allys-feature-grid{
    grid-template-columns:1fr !important;
  }

  .allys-buy-pill__text{
    font-size:16px !important;
  }

  .allys-buy-pill__button{
    min-width:150px !important;
    font-size:13px !important;
  }
}
/* HOME FEATURE SECTION - FINAL */
.allys-crafted .allys-feature-grid{
  display:grid !important;
  grid-template-columns:repeat(4, 1fr) !important;
  gap:50px !important;
  align-items:start !important;
  max-width:1120px !important;
  margin:60px auto 0 !important;
}

.allys-crafted .allys-feature{
  text-align:center !important;
}

.allys-crafted .allys-feature-icon{
  font-size:44px !important;
  line-height:1 !important;
  margin:0 auto 18px !important;
  display:block !important;
}

.allys-crafted .allys-feature h3{
  margin:0 0 8px !important;
  font-size:24px !important;
}

.allys-crafted .allys-feature p{
  margin:0 !important;
  font-size:18px !important;
}

@media(max-width:768px){
  .allys-crafted .allys-feature-grid{
    grid-template-columns:repeat(2, 1fr) !important;
  }
}

@media(max-width:480px){
  .allys-crafted .allys-feature-grid{
    grid-template-columns:1fr !important;
  }
}
.allys-express-after-billing{
  width:62%;
  float:left;
  clear:left;
  margin:30px 0 35px;
}

.allys-express-divider{
  text-align:center;
  margin:0 0 18px;
  font-size:14px;
  font-weight:600;
  color:#151A26;
}

.allys-express-divider span{
  display:inline-block;
  background:#f8f2ef;
  padding:0 14px;
}

@media(max-width:991px){
  .allys-express-after-billing{
    width:100%;
    float:none;
    clear:both;
  }
}