@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary: #005a7a;
  --secondary: #00afa3;
  --accent: #ff8360;
  --bg: #f7fafa;
  --text-dark: #333;
  --navy-dark: #010b5f;
  --indigo-deep: #050238;
  --aqua-bright: #00e0d4;
  --azure-blue: #3a86ff;
  --coral-red: #ff6b6b; /* for CTAs, highlights */
  --salmon-soft: #ff7e6a; /* for gentle accents or icons */
  --light-bg: #f5faff;
  --text-dark: #222;
  --serif-font: "Playfair Display", serif;
}

.material-symbol-outlined {
  font-size: 24px; /* Adjust size */
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48; /* Optical size: 20–48 */
}

:root {
  --hero-height: 100vmin;
  --hero-height-mobile: 95vh;
  --hero-width: 100vmax;
  --hero-width-mobile: 100vmin;
  /* Screen sizes */
  --screen-xs: 480px;
  --screen-xs-landscape: 500px;
  --screen-sm: 768px;
  --screen-md: 1024px;
  --screen-lg: 1200px;
  --screen-xl: 1600px;
}

.fav-header .content {
  color: white;
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  gap: 10pt;
  align-items: center;
  margin: 0 auto;
}
.fav-header .content .hero-tagline {
  font-size: 0.875rem;
  font-family: "Inter", sans-serif;
  transform: translateY(50px);
  opacity: 0;
  display: flex;
  flex-direction: row;
  gap: 6pt;
}
.fav-header .content .hero-tagline .item {
  background: aqua;
  border-radius: 20px;
  color: #1c1c1c;
  padding: 6px 12px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  text-align: center;
  min-width: 0;
  flex: 1;
  align-items: center;
}
.fav-header .content h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.1rem;
  min-width: 500px;
  width: 900px;
  text-transform: capitalize;
  margin: 0;
  padding: 0;
  text-align: center;
  opacity: 0;
  transform: translateY(-50px);
}
.fav-header .content p {
  font-size: 1rem;
  line-height: 1.6rem;
  text-align: center;
  font-family: "Inter", sans-serif;
  text-shadow: 1px 1px #222;
  width: 757px;
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(50px);
}
.fav-header .content p[role=mobile-only] {
  display: none;
  opacity: 0;
}
.fav-header .content .action {
  display: block;
  opacity: 0;
  transform: translateY(50px);
}
.fav-header .content .action a {
  text-decoration: none;
  color: #fff;
  background-color: var(--coral-red);
  padding: 0.8rem 1.5rem;
  z-index: 150;
  border-radius: 10pt;
  font-size: 0.875rem;
  text-transform: uppercase;
  font-family: "Roboto Condensed", sans-serif;
}

/* Tablet Portrait: 401px to 768px */
@media (min-width: 401px) and (max-width: 768px) and (orientation: portrait) {
  .fav-header .content {
    width: 100vw;
    box-sizing: border-box;
    padding: 0 1.5rem;
    text-align: center;
  }
  .fav-header .content h1 {
    font-size: 2.5rem;
    min-width: auto; /* Remove fixed min-width for responsiveness */
    width: 100%;
  }
  .fav-header .content p {
    font-size: 1rem;
    line-height: 1.4rem;
    width: 100%;
  }
}
/* Tablet/Landscape: max-width 768px and landscape orientation */
@media (max-width: 768px) and (orientation: landscape) {
  .fav-header .content {
    width: 50vmax;
    box-sizing: border-box;
    padding: 0 1rem; /* add some horizontal padding */
  }
  .fav-header .content h1 {
    font-size: 1.8rem;
    min-width: auto;
    width: 100%;
  }
  .fav-header .content p {
    font-size: 1rem;
    line-height: 1.4rem;
    width: 100%;
  }
}
/* Mobile devices: max-width 435px */
@media (max-width: 435px) {
  .fav-header .content {
    width: 100%;
    box-sizing: border-box;
    padding: 0 1.5rem;
    text-align: center;
  }
  .fav-header .content .hero-tagline {
    padding: 3px 10px;
    font-size: 0.578rem;
  }
  .fav-header .content .hero-tagline span {
    font-weight: 500;
    padding: 3px 10px;
  }
  .fav-header .content h1 {
    font-size: 1.9rem;
    width: auto;
    min-width: auto;
  }
  .fav-header .content p {
    display: none;
    opacity: 0;
  }
  .fav-header .content p[role=mobile-only] {
    display: block;
    width: 87%;
    font-size: 1rem;
    line-height: 1.4rem;
  }
  .fav-header .content .action {
    display: none;
  }
}
.highlights {
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0;
  padding: 0;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
  flex-direction: row;
}
.highlights ul .highlight-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 2rem 0rem;
  gap: 0.5rem;
  border-right: 1px dashed #161616;
}
.highlights ul .highlight-item:last-child {
  border-right: none;
}
.highlights ul .highlight-item img {
  width: auto;
  height: 68px;
  filter: invert(72%) sepia(51%) saturate(5720%) hue-rotate(320deg) brightness(105%) contrast(101%);
}
.highlights ul .highlight-item .desc span {
  font-size: 1rem;
  font-weight: 600;
  color: #161616;
  text-transform: uppercase;
  font-family: "Roboto Condensed", sans-serif;
  margin-bottom: 1rem;
}
.highlights ul .highlight-item .desc p {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.6em;
  color: #161616;
  letter-spacing: 0.8px;
  font-family: "Inter", sans-serif;
}

@media (max-width: 768px) {
  .highlights {
    overflow-x: auto !important; /* enable horizontal scroll */
    -webkit-overflow-scrolling: touch; /* smooth iOS scroll */
    padding: 1rem 0; /* breathing space */
    scroll-snap-type: x mandatory;
  }
  .highlights ul {
    flex-wrap: nowrap !important; /* prevent wrapping */
    width: max-content; /* allow horizontal width */
    gap: 1rem;
  }
  .highlights ul .highlight-item {
    flex: 1;
    width: 250px;
    scroll-snap-align: start;
  }
}
.reverse {
  flex-direction: row-reverse !important;
  color: red;
}

.fav-header {
  display: flex;
  flex-direction: column;
  height: var(--hero-height);
  width: var(--hero-width);
  box-sizing: border-box;
}
.fav-header .video-wrapper {
  width: var(--hero-width);
  height: var(--hero-height);
  position: absolute;
  box-sizing: border-box;
}
.fav-header .video-wrapper video {
  width: var(--hero-width);
  height: var(--hero-height);
  object-fit: cover;
}
.fav-header .overlay {
  position: absolute;
  inset: 0;
  width: var(--hero-width);
  height: var(--hero-height);
  background: linear-gradient(to top, rgba(5, 2, 56, 0.6), rgba(1, 11, 95, 0.5));
}
.fav-header .header {
  display: flex;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem 0rem 2rem;
  width: 100%;
}
.fav-header .header .logo-wrapper {
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6pt;
}
.fav-header .header .logo-wrapper .logo img {
  height: 40pt;
  width: auto;
  border-radius: 10pt;
}
.fav-header .header .logo-wrapper span {
  font-size: 1.2rem;
  font-weight: 400;
  color: white;
  font-family: "BM Hanna", sans-serif;
  text-transform: uppercase;
}
.fav-header .header nav {
  z-index: 1;
}
.fav-header .header nav ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
}
.fav-header .header nav ul li {
  cursor: pointer;
}
.fav-header .header nav ul li a .cart-wrapper {
  height: 22px;
  width: 22px;
  position: relative;
}
.fav-header .header nav ul li a .cart-wrapper .cart-count {
  position: absolute;
  display: inline-flex;
  width: 20px;
  height: 20px;
  background: red;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  border-radius: 50%;
  left: 10px;
  top: 0;
  color: white;
}
.fav-header .header nav ul li a .cart-wrapper .cart-count:empty {
  display: hidden;
  color: red;
}
.fav-header .header nav ul li a img {
  height: 22px;
  width: auto;
}

.floating-nav {
  display: none;
}

@media (orientation: portrait) and (max-width: 768px) {
  .fav-header {
    height: var(--hero-height-mobile);
    width: var(--hero-width-mobile);
  }
  .fav-header .video-wrapper {
    width: var(--hero-width-mobile);
    height: var(--hero-height-mobile);
  }
  .fav-header .video-wrapper video {
    width: var(--hero-width-mobile);
    height: var(--hero-height-mobile);
    object-fit: cover;
  }
  .fav-header .overlay {
    width: var(--hero-width-mobile);
    height: var(--hero-height-mobile);
  }
}
@media (max-width: 400px) and (orientation: portrait) {
  .fav-header .header nav {
    display: none;
  }
  .highlights {
    margin-top: 0;
  }
  .floating-nav {
    display: flex;
    position: fixed;
    gap: 10pt;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: rgb(12, 12, 12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
    /* Add this to account for safe area insets */
    padding-bottom: env(safe-area-inset-bottom);
  }
  .floating-nav a {
    color: rgb(167, 165, 189);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
  }
  .floating-nav a .cart-count {
    position: absolute;
    display: inline-flex;
    width: 20px;
    height: 20px;
    background: red;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    border-radius: 50%;
    right: 0;
    top: 2pt;
    margin-right: 20px;
    color: white;
  }
  .floating-nav a .cart-count:empty {
    display: hidden;
    color: red;
  }
  .floating-nav a:hover {
    background: linear-gradient(90deg, #ff8a00, #e52e71);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}
@media (orientation: landscape) and (max-width: 768px) {
  .fav-header {
    --mob-height: 50vmax;
    --mob-width: 100vw;
    background: var(--navy-dark);
    height: var(--mob-height);
    width: var(--mob-width);
  }
  .fav-header .video-wrapper {
    height: var(--mob-height);
    width: var(--mob-width);
  }
  .fav-header .video-wrapper video {
    height: var(--mob-height);
    width: var(--mob-width);
    object-fit: cover;
  }
  .fav-header .overlay {
    height: var(--mob-height);
    width: var(--mob-width);
  }
  .floating-nav {
    display: none;
  }
}
.highlights {
  overflow: hidden;
}

.shop-header {
  --header-nav-bg: #0c0c0c;
  --header-nav-bg1: #08021f;
  display: flex;
  background: linear-gradient(45deg, var(--header-nav-bg), var(--header-nav-bg1));
  height: 50pt;
  margin-bottom: 40pt;
  padding: 10pt 0;
}
.shop-header .wrapper {
  display: flex;
  width: 1200px;
  margin: 0 auto;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.shop-header .wrapper .brand {
  --logo-dim: 64px;
  cursor: pointer;
}
.shop-header .wrapper .brand span {
  font-size: 1.2rem;
  font-weight: 400;
  color: white;
  font-family: "BM Hanna", sans-serif;
  text-transform: uppercase;
}
.shop-header .wrapper .brand span::before {
  content: "";
  display: inline-flex;
  width: var(--logo-dim);
  height: var(--logo-dim);
  background-color: #0c0c0c;
  background-image: url("../img/logo_100x100.png");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.shop-header .wrapper nav {
  display: flex;
  flex-direction: row;
  gap: 20pt;
}
.shop-header .wrapper nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 20pt;
}
.shop-header .wrapper nav ul li a {
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9333333333);
  transition: 0.3s all ease;
}
.shop-header .wrapper nav ul li a:hover {
  color: var(--coral-red);
}
.shop-header .wrapper nav ul li a .cart-wrapper {
  height: 22px;
  width: 22px;
  position: relative;
}
.shop-header .wrapper nav ul li a .cart-wrapper .cart-count {
  position: absolute;
  display: inline-flex;
  width: 20px;
  height: 20px;
  background: red;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  border-radius: 50%;
  left: 10px;
  top: 0;
  color: white;
}
.shop-header .wrapper nav ul li a .cart-wrapper .cart-count:empty {
  display: hidden;
  color: red;
}
.shop-header .wrapper nav ul li a img {
  height: 22px;
  width: auto;
}
.shop-header .wrapper nav[for=mobile] {
  display: none;
}

@media (max-width: 768px) {
  .shop-header .wrapper nav {
    display: none;
  }
  .shop-header .wrapper nav[for=mobile] {
    display: flex;
    list-style: none;
    flex-direction: row;
    padding: 0;
    margin: 0 10pt 0 0;
    gap: 10pt;
  }
}
.shop {
  overflow-x: hidden;
  margin: auto;
  max-width: 1200px;
  overflow: hidden;
  padding: 4rem 0 5rem;
}
.shop .header {
  display: flex;
  width: 700px;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 2rem;
}
.shop .header h2 {
  line-height: 0;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
}
.shop .header p {
  color: rgba(34, 34, 34, 0.6666666667);
  font-size: 1rem;
}
.shop .woocommerce .products {
  padding: 0 2rem;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 2rem;
}
.shop .woocommerce .products .product-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 1;
  transform: translateY(10px);
}
.shop .woocommerce .products .product-card .product-info {
  padding: 0.5rem 1.2rem;
}
.shop .woocommerce .products .product-card .product-info h2 {
  color: var(--indigo-deep);
  text-transform: capitalize;
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
}
.shop .woocommerce .products .product-card .product-info h2 a {
  text-decoration: none;
  color: #0c0c0c;
}
.shop .woocommerce .products .product-card .product-info .price-cart {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0 1rem;
}
.shop .woocommerce .products .product-card .product-info .price-cart .price {
  font-size: 1rem;
  font-weight: 100;
  margin-bottom: 0.5rem;
  color: #0c0c0c;
}
.shop .woocommerce .products .product-card .product-info .price-cart .cart .add-to-cart-btn {
  background: var(--coral-red);
  font-weight: 500;
  font-size: 0.875rem;
  border-radius: 3px;
  color: white;
}
.shop .woocommerce .products .product-card .product-info .price-cart .cart .add-to-cart-btn:hover {
  background-color: #e74f4f;
}
.shop .woocommerce .products .product-card .product-info .product-attrs {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  justify-content: space-between;
  align-items: center;
}
.shop .woocommerce .products .product-card .product-info .product-attrs .weight {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5pt;
}
.shop .woocommerce .products .product-card .product-info .product-attrs .weight img {
  width: 22px;
  height: 22px;
}
.shop .woocommerce .products .product-card .product-info .product-attrs .weight {
  font-size: 0.875rem;
}
.shop .woocommerce .products .product-card .product-info .steak {
  font-size: 0.875rem;
}
.shop .woocommerce .products .product-card .product-info .steak::before {
  content: "";
  background-image: url("../img/products/fishsteak_icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 26px;
  margin-right: 0.3rem;
}
.shop .woocommerce .products .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.shop .woocommerce .products .product-card img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.shop .woocommerce .products .product-card img:hover {
  transform: scale(1.05);
}
.shop .products {
  padding: 0 2rem;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.shop .products .card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
}
.shop .products .card .product-info {
  padding: 0.5rem 1.2rem;
  text-align: center;
}
.shop .products .card .product-info h3 {
  color: var(--indigo-deep);
  text-transform: capitalize;
}
.shop .products .card .product-info .price {
  font-size: 1.2rem;
  font-weight: 100;
  margin-bottom: 0.5rem;
  color: var(--navy-dark);
}
.shop .products .card .product-info .action {
  margin: 2rem auto;
}
.shop .products .card .product-info .action a {
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  background: var(--light-bg);
  color: var(--navy-dark);
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 3pt;
  border: 1px dashed var(--navy-dark);
  font-family: "Roboto", sans-serif;
}
.shop .products .card .product-info .action a:hover {
  background: linear-gradient(to top, var(--navy-dark), var(--indigo-deep));
  border: 0px;
  color: var(--light-bg);
  font-weight: bold;
  letter-spacing: 0px;
}
.shop .products .card .product-info img {
  width: 24px;
  height: auto;
  display: inline;
  vertical-align: middle;
}
.shop .products .card .product-info .w-p {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(34, 34, 34, 0.9333333333);
  font-family: "Roboto Condensed", sans-serif;
}
.shop .products .card .product-info .w-p img {
  width: 16px;
  height: auto;
  display: inline;
  vertical-align: middle;
}
.shop .products .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.shop .products .card img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.shop .products .card img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .shop {
    width: 100vw;
    overflow-x: hidden;
  }
  .shop .header {
    width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
  }
  .shop .header h2 {
    font-size: 2.3rem;
    line-height: 2.8rem;
    text-align: center;
    margin: 0 0;
  }
  .shop .header p {
    font-size: 0.875rem;
    line-height: 1.3rem;
    text-align: center;
    font-weight: 200;
  }
}
main.site-main {
  width: 100vw;
  box-sizing: border-box;
}
main.site-main header,
main.site-main p.woocommerce-result-count,
main.site-main .products,
main.site-main form.woocommerce-ordering {
  width: 1200px;
  margin: 0 auto;
}
main.site-main p.woocommerce-result-count,
main.site-main form.woocommerce-ordering {
  display: block;
  float: none;
  margin-bottom: 2rem;
}
main.site-main .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}
main.site-main .products .product-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
main.site-main .products .product-card .product-info {
  padding: 0.5rem 1.2rem;
}
main.site-main .products .product-card .product-info h2 {
  color: var(--indigo-deep);
  text-transform: capitalize;
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
}
main.site-main .products .product-card .product-info h2 a {
  text-decoration: none;
  color: #0c0c0c;
}
main.site-main .products .product-card .product-info .price-cart {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0 1rem;
}
main.site-main .products .product-card .product-info .price-cart .price {
  font-size: 1rem;
  font-weight: 100;
  margin-bottom: 0.5rem;
  color: #0c0c0c;
}
main.site-main .products .product-card .product-info .price-cart .cart .add-to-cart-btn {
  background: var(--coral-red);
  font-weight: 400;
  color: white;
  border-radius: 3px;
  font-size: 0.875rem;
}
main.site-main .products .product-card .product-info .price-cart .cart .add-to-cart-btn:hover {
  background-color: #e74f4f;
}
main.site-main .products .product-card .product-info .steak {
  font-size: 0.875rem;
}
main.site-main .products .product-card .product-info .steak::before {
  content: "";
  background-image: url("../img/products/fishsteak_icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 26px;
  margin-right: 0.3rem;
}

@media (max-width: 768px) {
  main.site-main {
    padding: 0 2rem;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  main.site-main header,
  main.site-main p.woocommerce-result-count,
  main.site-main .products,
  main.site-main form.woocommerce-ordering {
    width: 100vw;
  }
  main.site-main .products .product-card {
    max-width: 300px;
  }
}
.woocommerce-notices-wrapper {
  width: 100%;
  background: #f6f5f8;
}
.woocommerce-notices-wrapper .woocommerce-error {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.woocommerce-notices-wrapper .woocommerce-message {
  border-top: none;
  width: 1200px;
  margin: 0 auto;
  background: none;
}
.woocommerce-notices-wrapper .woocommerce-message .button {
  font-family: "Roboto Condensed", sans-serif;
}
.woocommerce-notices-wrapper::after {
  content: "";
  display: flex !important;
  margin-bottom: 10pt;
}
.woocommerce-notices-wrapper:empty {
  display: none;
}

@media (max-width: 768px) {
  .woocommerce-notices-wrapper {
    width: 100%;
    box-sizing: border-box;
  }
  .woocommerce-notices-wrapper .woocommerce-error,
  .woocommerce-notices-wrapper .woocommerce-message {
    width: 100vw;
    box-sizing: border-box;
  }
}
.hf-single-product {
  display: flex;
  width: 1200px;
  margin: 0 auto;
  flex-direction: column;
}
.hf-single-product .hf-product-layout {
  display: flex;
  flex-direction: row;
  gap: 10pt;
}
.hf-single-product .hf-product-layout .hf-images div.images {
  float: none !important;
  display: flex;
  width: 100%;
  box-shadow: 10px 10px var(--header-nav-bg);
}
.hf-single-product .hf-product-layout .hf-summary {
  display: flex;
  flex-direction: column;
  padding: 0 0.5rem;
}
.hf-single-product .hf-product-layout .hf-summary .product_title {
  padding: 0;
  font-family: "Playfair Display", serif;
  line-height: 1em;
}
.hf-single-product .hf-product-layout .hf-summary .price {
  color: var(--navy-dark);
  font-size: 1.25em;
  line-height: 0;
}
.hf-single-product .hf-product-layout .hf-summary .woocommerce-product-details__short-description {
  line-height: 1.6rem;
}
.hf-single-product .hf-product-layout .hf-summary form input {
  height: 32px;
}
.hf-single-product .hf-product-layout .hf-summary form .single_add_to_cart_button.button.alt {
  float: none;
  background-color: var(--coral-red);
}
.hf-single-product .hf-product-layout .hf-summary .steak {
  padding: 0 0 1rem;
}
.hf-single-product .hf-tabs .woocommerce-tabs ul.tabs {
  padding: 0 0 0 1rem;
  margin: 0 0 1.618rem;
}
.hf-single-product .hf-tabs .panel {
  margin: -20pt 0 2em !important;
  padding: 1rem 2rem !important;
  background: white;
}
.hf-single-product .hf-tabs .panel h2 {
  display: none;
}
.hf-single-product .hf-tabs .related.products .products {
  padding: 0 2rem 2rem;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 2rem;
}
.hf-single-product .hf-tabs .related.products .products .product-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 1;
  max-width: 270px;
  transform: translateY(10px);
}
.hf-single-product .hf-tabs .related.products .products .product-card .product-info {
  padding: 0.5rem 1.2rem;
}
.hf-single-product .hf-tabs .related.products .products .product-card .product-info h2 {
  color: var(--indigo-deep);
  text-transform: capitalize;
  font-family: "Inter", sans-serif;
  font-size: 1.3rem;
}
.hf-single-product .hf-tabs .related.products .products .product-card .product-info h2 a {
  text-decoration: none;
  color: #0c0c0c;
}
.hf-single-product .hf-tabs .related.products .products .product-card .product-info .price-cart {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0 1rem;
}
.hf-single-product .hf-tabs .related.products .products .product-card .product-info .price-cart .price {
  font-size: 1rem;
  font-weight: 100;
  margin-bottom: 0.5rem;
  color: #0c0c0c;
}
.hf-single-product .hf-tabs .related.products .products .product-card .product-info .price-cart .cart .add-to-cart-btn {
  background: var(--coral-red);
  font-weight: 400;
  color: white;
  border-radius: 50px;
  box-shadow: 1px 1px 2px #7a1b1b;
}
.hf-single-product .hf-tabs .related.products .products .product-card .product-info .steak {
  font-size: 0.875rem;
}
.hf-single-product .hf-tabs .related.products .products .product-card .product-info .steak::before {
  content: "";
  background-image: url("../img/products/fishsteak_icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 26px;
  margin-right: 0.3rem;
}

.woocommerce .woocommerce-breadcrumb {
  margin: 0 0 1em;
  padding: 0;
  width: 1200px;
  margin: 0 auto 1.5rem;
  text-transform: capitalize;
}
.woocommerce .woocommerce-breadcrumb a {
  color: var(--coral-red);
  text-transform: capitalize;
}

@media (max-width: 768px) {
  .woocommerce-breadcrumb {
    width: 100vw !important;
    overflow: hidden;
    box-sizing: border-box;
    padding: 0 1rem !important;
  }
  .hf-single-product {
    overflow-x: none;
    display: flex;
    box-sizing: border-box;
    width: 100vw;
  }
  .hf-single-product .hf-product-layout {
    display: flex;
    flex-direction: column;
    gap: 10pt;
  }
  .hf-single-product .hf-product-layout .hf-images div.images {
    float: none !important;
    display: flex;
    width: 100%;
    box-shadow: 10px 10px var(--header-nav-bg);
  }
  .hf-single-product .hf-product-layout .hf-summary {
    padding: 0 1rem;
  }
  .hf-tabs .related.products {
    box-sizing: border-box;
    padding: 1rem;
  }
}
.hidden {
  display: none;
}

.search-widget {
  width: 100vw;
  box-sizing: border-box;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3333333333);
  opacity: 0;
  z-index: 10;
}
.search-widget .wrapper {
  width: 100vw;
  box-sizing: border-box;
  background: black;
  margin: 0 auto;
  display: flex;
  padding: 5rem 20px;
  justify-content: center;
  transform: translateY(-100px);
  opacity: 0;
}
.search-widget .wrapper .search-box {
  width: auto;
  display: inline;
  border-radius: 10pt;
  background-color: #222;
  display: flex;
  padding: 6pt 10px;
}
.search-widget .wrapper .search-box form {
  display: flex;
  flex-direction: row;
  justify-items: center;
}
.search-widget .wrapper .search-box form input {
  font-size: 1.3rem;
  border: none;
  width: 700px;
  color: #eee;
  background-color: #222;
}
.search-widget .wrapper .search-box form input:focus {
  font-style: normal;
  outline: none;
}
.search-widget .wrapper .search-box form a {
  display: flex;
  align-items: center;
  padding: 6px;
  text-decoration: none;
}
.search-widget .wrapper .search-box form a span {
  font-size: 1.5rem;
  color: rgba(238, 238, 238, 0.4666666667);
}

@media (max-width: 768px) {
  .search-widget {
    width: 100vw;
  }
  .search-widget .wrapper {
    width: 100%;
    padding: 5rem 2rem;
  }
  .search-widget .wrapper .search-box {
    width: 100%;
    padding: 6pt 10px;
  }
  .search-widget .wrapper .search-box form input {
    width: auto;
  }
  .search-widget .wrapper .search-box form a {
    padding: 6px;
  }
}
.my-account {
  overflow-x: hidden;
}
.my-account .woocommerce {
  display: flex;
  flex-direction: column;
}
.my-account .woocommerce .woocommerce-MyAccount-navigation {
  display: none;
}
.my-account .woocommerce .woocommerce-MyAccount-content {
  width: 1200px;
  min-height: 60vh;
  margin: 0 auto;
}
.my-account .woocommerce .woocommerce-MyAccount-content p:last-child {
  width: 700px;
  line-height: 1.6rem;
}

#hf-menu {
  display: none;
}

@media (max-width: 768px) {
  .my-account {
    width: 100vw;
    box-sizing: border-box;
  }
  .my-account .woocommerce {
    width: 100vw;
    box-sizing: border-box;
  }
  .my-account .woocommerce .woocommerce-MyAccount-content {
    width: 100%;
    box-sizing: border-box;
    padding: 0 0.2rem;
    margin: 0 auto;
  }
  .my-account .woocommerce .woocommerce-MyAccount-content .woocommerce-info {
    display: flex;
    flex-direction: column;
    gap: 20pt;
  }
  .my-account .woocommerce .woocommerce-MyAccount-content .woocommerce-info a.button {
    min-width: 0;
    background: var(--coral-red);
    float: none;
    color: white;
    font-family: "Roboto Condensed", sans-serif;
    text-align: center;
  }
  .my-account .woocommerce .woocommerce-MyAccount-content p {
    width: 100%;
    display: block;
  }
  .my-account .woocommerce .woocommerce-MyAccount-content p:last-child {
    width: 100%;
    font-size: 0.875rem;
  }
  .hide {
    display: none !important;
  }
  .show {
    display: flex !important;
  }
  #hf-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--indigo-deep);
    box-sizing: border-box;
    z-index: 1010;
  }
  #hf-menu .content {
    padding: 4rem 1rem;
    width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
  }
  #hf-menu .content .header .close-handle {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 1rem;
  }
  #hf-menu .content .header .close-handle span {
    font-size: 3rem;
    color: #eee;
  }
  #hf-menu .content .menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10pt;
  }
  #hf-menu .content .menu li {
    font-size: 1.8rem;
    border-bottom: 1px dashed rgba(238, 238, 238, 0.1333333333);
    padding: 10pt 0;
  }
  #hf-menu .content .menu li a {
    font-family: "Roboto Condensed", sans-serif;
    text-decoration: none;
    color: #eee;
  }
}
main#main-content {
  width: 100vw;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 5rem;
}
main#main-content .woocommerce {
  width: 100%;
  display: flex;
}
main#main-content .woocommerce .hf-auth-page {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
main#main-content .woocommerce .hf-auth-page .hf-login,
main#main-content .woocommerce .hf-auth-page .hf-registration {
  width: 400px;
}
main#main-content .woocommerce .hf-auth-page .hf-login .btn,
main#main-content .woocommerce .hf-auth-page .hf-registration .btn {
  width: 100%;
}
main#main-content .woocommerce .hf-auth-page .hf-login .btn.ignore,
main#main-content .woocommerce .hf-auth-page .hf-registration .btn.ignore {
  width: auto;
}
main#main-content .woocommerce .hf-auth-page .hf-login .reg-area,
main#main-content .woocommerce .hf-auth-page .hf-registration .reg-area {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main#main-content .woocommerce .hf-auth-page .hf-login .reg-area .btn,
main#main-content .woocommerce .hf-auth-page .hf-registration .reg-area .btn {
  width: auto;
}
main#main-content .woocommerce .hf-auth-page .hf-login .reg-area p,
main#main-content .woocommerce .hf-auth-page .hf-registration .reg-area p {
  text-align: center;
}
main#main-content .woocommerce .hf-auth-page .hf-registration .woocommerce-privacy-policy-text {
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  main#main-content .woocommerce {
    width: 100%;
    display: flex;
    box-sizing: border-box;
    padding: 0 1rem;
  }
  main#main-content .woocommerce .hf-auth-page {
    width: 100%;
    box-sizing: border-box;
  }
  main#main-content .woocommerce .hf-auth-page .hf-login,
  main#main-content .woocommerce .hf-auth-page .hf-registration {
    width: 100vw;
  }
  main#main-content .woocommerce .hf-auth-page .hf-login h2,
  main#main-content .woocommerce .hf-auth-page .hf-registration h2 {
    display: block;
    text-align: center;
  }
  .woocommerce form.login,
  .woocommerce form.register {
    border: 1px solid #cfc8d8;
    padding: 20px;
    margin: 2em 0;
    text-align: left;
    border-radius: 5px;
    margin: 0 2rem;
  }
}
.site-content {
  width: 100vw;
}
.site-content .woocommerce {
  display: flex;
  flex-direction: column;
  width: 1200px;
  margin: 0 auto;
}
.site-content .woocommerce .woocommerce-notices-wrapper {
  width: 100%;
  margin: 0 auto;
}
.site-content .woocommerce .woocommerce-notices-wrapper .woocommerce-message {
  width: 100%;
}
.site-content .woocommerce form table tbody tr td.product-name a {
  color: var(--coral-red) !important;
}
.site-content .woocommerce form table tbody tr td button.button {
  font-family: "Roboto Condensed", sans-serif;
}
.site-content .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button.button.alt.wc-forward {
  background-color: var(--coral-red);
  font-family: "Roboto Condensed", sans-serif;
}

@media (max-width: 480px) {
  .site-content .woocommerce {
    width: 100vw;
  }
}
.main {
  width: 100vw;
  box-sizing: border-box;
}
.main .wrapper {
  width: 1200px;
  box-sizing: border-box;
  margin: 0 auto 4rem;
}
.main .wrapper .header {
  font-family: "PlayFair Display", serif;
  font-size: 2.3rem;
}
.main .wrapper .content h2 {
  font-size: 1.8rem;
}
.main .wrapper .content p,
.main .wrapper .content li {
  line-height: 1.6rem;
}

@media (max-width: 768px) {
  .main .wrapper {
    width: 100vw;
    padding: 0 1.5rem;
  }
  .main .wrapper .header {
    font-size: 1.8rem;
  }
  .main .wrapper .content h2 {
    font-size: 1.5rem;
  }
}
.checkout-wrapper {
  width: 100vw;
  display: flex;
}
.checkout-wrapper .b-nav {
  display: none;
}
.checkout-wrapper .woocommerce {
  width: 1200px;
  margin: 0 auto 2rem;
}
.checkout-wrapper .woocommerce form.checkout.woocommerce-checkout .woocommerce-checkout-payment .button.alt {
  background-color: var(--coral-red);
  font-family: "Roboto Condensed", sans-serif;
}

@media (max-width: 480px) {
  .checkout-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .checkout-wrapper .b-nav {
    display: flex;
  }
  .checkout-wrapper .b-nav a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6pt;
  }
  .checkout-wrapper .b-nav a span {
    font-size: 14pt;
  }
  .checkout-wrapper .woocommerce {
    width: 100%;
    padding: 0 0.2rem;
  }
}
#contact {
  margin: -40pt auto;
}
#contact .wrapper {
  width: 1200px;
  box-sizing: border-box;
  margin: 0 auto;
}
#contact .wrapper .header {
  text-align: center;
}
#contact .wrapper .header h2 {
  font-size: 3rem;
  font-family: "Playfair Display", serif;
}
#contact .wrapper .main {
  display: flex;
  flex-direction: row;
  flex: 1;
  box-sizing: border-box;
  margin-bottom: 6rem;
  width: 100%;
}
#contact .wrapper .main .location {
  display: flex;
  flex: 3;
  flex-direction: column;
  box-sizing: border-box;
  background: linear-gradient(to bottom, #76d2e1 80%, #0ebfc8);
}
#contact .wrapper .main .location img {
  width: 100%;
}
#contact .wrapper .main .location h3 span {
  vertical-align: bottom;
}
#contact .wrapper .main .location div.address {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-left: 1.7rem;
  margin-bottom: 3rem;
}
#contact .wrapper .main .location div.address div.loc {
  display: flex;
  flex-direction: column;
  gap: 2pt;
  margin-bottom: 1rem;
  font-family: "Roboto Condensed", sans-serif;
}
#contact .wrapper .main .location div.address .contact-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10pt;
}
#contact .wrapper .main .location div.address .contact-info span {
  font-size: 1rem;
}
#contact .wrapper .main .location div.address .contact-info a {
  color: #1d16fd;
}
#contact .wrapper .main .form {
  display: flex;
  flex: 4;
  box-sizing: border-box;
  padding: 2rem 4rem;
  flex-direction: column;
}
#contact .wrapper .main .form .form-header p {
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(34, 34, 34, 0.3333333333);
}
#contact .wrapper .main .form form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10pt;
}
#contact .wrapper .main .form form .name-wrapper .cell-1 {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 10pt;
}
#contact .wrapper .main .form form .name-wrapper .cell-1 .form-item {
  flex: 1;
  display: flex;
}
#contact .wrapper .main .form form .form-item {
  display: flex;
  flex-direction: column;
}
#contact .wrapper .main .form form .form-item label {
  padding: 3px;
  font-size: 0.775rem;
  font-weight: 600;
  color: #666;
}
#contact .wrapper .main .form form .form-item input,
#contact .wrapper .main .form form .form-item textarea {
  width: 100%;
  padding: 6px 10px;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  border-radius: 3px;
  border: 0.5px solid #a7a7a7;
}
#contact .wrapper .main .form form .form-item input:focus,
#contact .wrapper .main .form form .form-item textarea:focus {
  outline: 2px solid #00afa3;
  border: 1px solid #00837a;
}
#contact .wrapper .main .form form .action button {
  background: var(--coral-red);
  color: white;
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
  border: none;
  outline: none;
  border-radius: 3px;
}

@media (max-width: 768px) {
  #contact .wrapper {
    width: 100%;
  }
  #contact .wrapper .header h2 {
    font-size: 2.3rem;
    font-family: "Playfair Display", serif;
  }
  #contact .wrapper .main {
    flex-direction: column;
  }
  #contact .wrapper .main .form {
    display: flex;
    flex: 4;
    box-sizing: border-box;
    padding: 2rem 2rem;
    flex-direction: column;
  }
  #contact .wrapper .main .form .form-header p {
    font-size: 1.3rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #222222;
  }
  #contact .wrapper .main .form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10pt;
  }
  #contact .wrapper .main .form form .name-wrapper .cell-1 {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 10pt;
  }
  #contact .wrapper .main .form form .name-wrapper .cell-1 .form-item {
    flex: 1;
    display: flex;
  }
  #contact .wrapper .main .form form .form-item {
    display: flex;
    flex-direction: column;
  }
  #contact .wrapper .main .form form .form-item label {
    padding: 3px;
    font-size: 0.775rem;
    font-weight: 600;
    color: #474af0;
  }
  #contact .wrapper .main .form form .form-item input,
  #contact .wrapper .main .form form .form-item textarea {
    width: 100%;
    padding: 6px 10px;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
    font-size: 1rem;
    border-radius: 3px;
    border: 0.5px solid #a7a7a7;
  }
  #contact .wrapper .main .form form .form-item input:focus,
  #contact .wrapper .main .form form .form-item textarea:focus {
    outline: 2px solid #00afa3;
    border: 1px solid #00837a;
  }
  #contact .wrapper .main .form form .action button {
    background: var(--coral-red);
    color: white;
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
    border: none;
    outline: none;
    border-radius: 3px;
  }
}
footer {
  margin: 0;
  padding: 3.5rem 2rem;
  background: #060313;
  opacity: 1;
  display: flex;
  flex: 1;
  overflow-x: hidden;
}
footer .wrapper {
  width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
}
footer .wrapper .location {
  display: flex;
  flex-direction: column;
  flex: 1.5;
  gap: 10pt;
}
footer .wrapper .location span {
  display: block;
  color: var(--light-bg);
  line-height: 1.6rem;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 0.875rem;
}
footer .wrapper .location .title {
  font-size: 1.3rem;
  text-transform: uppercase;
  color: rgba(238, 238, 238, 0.18);
  font-weight: 900;
  margin-bottom: 1.5rem;
  border-left: 3px solid #3a86ff;
  padding-left: 0.5rem;
}
footer .wrapper .location .email {
  margin-top: 1rem;
  display: inline-flex; /* inline so it flows like text, or use flex for block layout */
  align-items: center; /* ✅ aligns icon & text vertically center */
  gap: 0.5rem;
}
footer .wrapper .location .email::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: url("../img/mail_icon.png") no-repeat center center;
  filter: invert(100%) sepia(0%) saturate(1850%) hue-rotate(195deg) brightness(117%) contrast(87%);
  background-size: contain;
}
footer .wrapper .location .phone {
  display: flex; /* inline so it flows like text, or use flex for block layout */
  align-items: center; /* ✅ aligns icon & text vertically center */
  gap: 0.5rem;
}
footer .wrapper .location .phone::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: url("../img/call_icon.png") no-repeat center center;
  filter: invert(100%) sepia(0%) saturate(1850%) hue-rotate(195deg) brightness(117%) contrast(87%);
  background-size: contain;
}
footer .wrapper .location .btn {
  background: var(--coral-red);
  font-size: 0.865rem;
  color: var(--light-bg);
  text-decoration: none;
  padding: 0.5rem 1rem;
  letter-spacing: 0.5px;
  border-radius: 3px;
  font-weight: 400;
}
footer .wrapper .links {
  display: flex;
  flex-direction: column;
  gap: 10pt;
  flex: 1;
}
footer .wrapper .links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10pt;
  padding: 0;
  margin: 0;
}
footer .wrapper .links ul li a {
  text-decoration: none;
  color: #eee;
  font-size: 1rem;
  font-family: "Roboto Condensed", sans-serif;
}
footer .wrapper .links ul li a:hover {
  color: var(--coral-red);
}
footer .wrapper .info {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  flex: 2;
  align-items: center;
}
footer .wrapper .info .logo-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #0c0c0c;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .wrapper .info .logo-wrapper img {
  margin: 0 auto;
  width: 80px;
  height: auto;
}
footer .wrapper .info .about {
  color: rgba(238, 238, 238, 0.8156862745);
  font-size: 1rem;
  line-height: 1.4rem;
}
footer .social {
  font-family: "Icons Social Media 11";
  font-size: 1.8rem;
}
footer .social ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
}
footer .social a {
  text-decoration: none;
  color: black;
  background: rgba(255, 255, 255, 0.979);
  border-radius: 10rem;
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  footer .wrapper {
    flex-direction: column;
    gap: 4rem;
  }
  footer .wrapper .info {
    display: none;
  }
  footer .wrapper {
    padding-bottom: 40px;
  }
}
a {
  color: var(--coral-red);
  font-weight: 500;
  cursor: pointer;
}

.btn, .lost-password .woocommerce .lost_reset_password .woocommerce-form-row.form-row button.button {
  font-family: "Roboto Condensed", sans-serif;
  background: var(--coral-red);
  color: #eee;
  border-radius: 3pt;
  cursor: pointer;
  transition: background-color 0.3s; /* Transition effect */
}
.btn:hover, .lost-password .woocommerce .lost_reset_password .woocommerce-form-row.form-row button.button:hover {
  background-color: #e25353;
}

.btn-secondary {
  font-family: "Roboto Condensed", sans-serif;
  background: var(--secondary);
  color: #eee;
  border-radius: 3pt;
  cursor: pointer;
  transition: background-color 0.3s; /* Transition effect */
}
.btn-secondary:hover {
  background-color: #067c74;
}

.large-btn {
  padding: 0.5rem 2rem;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 400;
}

.btn-remove-border {
  outline: none;
  border: none;
}

.lost-password .woocommerce {
  width: 1200px !important;
  box-sizing: border-box;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .lost-password .woocommerce {
    width: 100% !important;
    padding: 0 1rem;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

main[class="404-page"] {
  box-sizing: border-box;
  margin-bottom: 6rem;
}
main[class="404-page"] .wrapper {
  width: 780px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
}
main[class="404-page"] .wrapper .content {
  display: flex;
  flex-direction: column;
  gap: 10pt;
}
main[class="404-page"] .wrapper .content div {
  min-width: 0;
  box-sizing: border-box;
}
main[class="404-page"] .wrapper .content .code,
main[class="404-page"] .wrapper .content p {
  padding: 0;
  margin: 0;
}
main[class="404-page"] .wrapper .content .code {
  font-size: 120pt;
  font-weight: bold;
  color: #222;
}
main[class="404-page"] .wrapper .content .odd-info {
  color: #444;
  font-size: 2rem;
  font-weight: bold;
}
main[class="404-page"] .wrapper .content p {
  color: #666;
}
main[class="404-page"] .wrapper .content .action {
  margin-top: 2rem;
}
main[class="404-page"] .wrapper .content .btn-outlined {
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 6pt;
  border: 1px solid var(--coral-red);
  padding: 6pt 15pt;
  min-width: 0;
  transition: color 0.3s all;
}
main[class="404-page"] .wrapper .content .btn-outlined:hover {
  color: #e93030;
  border: 1px solid #e93030;
}
main[class="404-page"] .wrapper .image img {
  width: 350px;
}

/* Mobile screen adjustments */
@media (max-width: 435px) {
  main[class="404-page"] {
    margin-bottom: 3rem;
  }
  main[class="404-page"] .wrapper {
    width: 100%;
    padding: 0 1.5rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  main[class="404-page"] .wrapper .content {
    gap: 8pt;
  }
  main[class="404-page"] .wrapper .content .code {
    font-size: 72pt; /* reduced for mobile */
    line-height: 1;
    margin-bottom: 0.5rem;
  }
  main[class="404-page"] .wrapper .content .odd-info {
    font-size: 1.5rem;
  }
  main[class="404-page"] .wrapper .content p {
    font-size: 0.9rem;
    line-height: 1.3;
  }
  main[class="404-page"] .wrapper .content .action {
    margin-top: 1.5rem;
  }
  main[class="404-page"] .wrapper .content .btn-outlined {
    padding: 8pt 20pt;
    font-size: 0.9rem;
  }
  main[class="404-page"] .wrapper .image {
    margin-top: 2rem;
  }
  main[class="404-page"] .wrapper .image img {
    width: 100%;
    max-width: 280px;
    height: auto;
  }
}
@font-face {
  font-family: "BM Hanna";
  src: url("../fonts/BM-HANNA-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Icons Social Media 11";
  src: url("../fonts/IconsSocialMedia.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background: var(--bg);
  overflow-x: hidden;
}

/*# sourceMappingURL=style.css.map */
