@charset "UTF-8";
/* Main SASS entry */
/*
 * Typography Variables
 * Based on design system documentation with Montserrat font family
 * Breakpoints: ≥1920px, <1919px, <991px
 * Base: 16px = 1em
 */
/* ==========================================================================
   Font Families
   ========================================================================== */
/* ==========================================================================
   Font Weights
   ========================================================================== */
/* ==========================================================================
   Typography Scale Variables
   ========================================================================== */
/* H1 - Montserrat Bold */
/* ≥1920px */
/* <1919px */
/* <991px */
/* H1 Subpage - Montserrat Regular */
/* H2 - Montserrat Bold */
/* H3 - Montserrat Bold */
/* H4 - Montserrat Bold */
/* H5 - Montserrat Bold */
/* H6 - Montserrat Bold */
/* P - Montserrat Regular */
/* Strong - Montserrat Bold */
/* Link - Montserrat Regular */
/* Span - Montserrat Regular */
/* Span Strong - Montserrat Bold */
/* Span Link - Montserrat Regular */
/* Main Menu - Montserrat Bold */
/* Submenu - Montserrat Bold */
/* Medium Button - Montserrat Bold */
/* Small Button - Montserrat Bold */
/* Selection Button - Montserrat Regular */
/* Field Label - Montserrat Regular */
/* Placeholder - Montserrat Medium */
/* Badges - Montserrat SemiBold */
/* Tab - Montserrat Bold */
/* Table Strong - Montserrat Bold */
/* Table - Montserrat Regular */
/* Breadcrumbs - Montserrat Regular */
/* Breadcrumbs Active - Montserrat Regular */
/* Tooltip Small - Montserrat Medium */
/* Calendar Day - Montserrat Regular */
/* Calendar Date - Montserrat Regular */
/* ==========================================================================
   Breakpoint Variables
   ========================================================================== */
/* ==========================================================================
   Typography Mixins
   ========================================================================== */
/**
 * Design Token Variables
 * 
 * This file contains all design tokens used throughout the theme.
 * Organized into: Colors, Spacing, and Component-specific variables.
 * 
 * Source: Figma Design System - Birdbusters veeb
 * https://www.figma.com/design/rNVUk49NXb26cxx8H2D4eL/Birdbusters-veeb
 */
/**
 * Grid System Variables
 * 
 * This file contains all grid system variables based on the Figma Page Grid specifications.
 * The grid system supports 5 different viewport breakpoints with varying column counts,
 * gutters, padding, and container widths.
 * 
 * Source: Figma Design System - Birdbusters veeb
 * https://www.figma.com/design/rNVUk49NXb26cxx8H2D4eL/Birdbusters-veeb
 */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
.container {
  max-width: 1743px;
  margin: 0 auto;
  padding-left: 56px;
  padding-right: 56px;
}

.container-xs {
  max-width: 527px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-sm {
  max-width: 719px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-md {
  max-width: 943px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container-lg {
  max-width: 1743px;
  margin: 0 auto;
  padding-left: 56px;
  padding-right: 56px;
}

.container-xl {
  max-width: 1744px;
  margin: 0 auto;
  padding-left: 88px;
  padding-right: 88px;
  min-width: 1744px;
  max-width: none;
  min-width: auto;
}

.grid-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -16px;
  margin-right: -16px;
}

@media (max-width: 575px) {
  .col-xs-1 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 575px) {
  .col-xs-2 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 25%;
    max-width: 25%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 576px) {
  .col-sm-2 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 576px) {
  .col-sm-3 {
    flex: 0 0 75%;
    max-width: 75%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 576px) {
  .col-sm-4 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 25%;
    max-width: 25%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 768px) {
  .col-md-2 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 768px) {
  .col-md-3 {
    flex: 0 0 75%;
    max-width: 75%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 10%;
    max-width: 10%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 992px) {
  .col-lg-2 {
    flex: 0 0 20%;
    max-width: 20%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 992px) {
  .col-lg-3 {
    flex: 0 0 30%;
    max-width: 30%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 992px) {
  .col-lg-4 {
    flex: 0 0 40%;
    max-width: 40%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 992px) {
  .col-lg-5 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 992px) {
  .col-lg-6 {
    flex: 0 0 60%;
    max-width: 60%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 992px) {
  .col-lg-7 {
    flex: 0 0 70%;
    max-width: 70%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 992px) {
  .col-lg-8 {
    flex: 0 0 80%;
    max-width: 80%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 992px) {
  .col-lg-9 {
    flex: 0 0 90%;
    max-width: 90%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 992px) {
  .col-lg-10 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 992px) {
  .col-lg-11 {
    flex: 0 0;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 992px) {
  .col-lg-12 {
    flex: 0 0;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 1920px) {
  .col-xl-1 {
    flex: 0 0 10%;
    max-width: 10%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 1920px) {
  .col-xl-2 {
    flex: 0 0 20%;
    max-width: 20%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 1920px) {
  .col-xl-3 {
    flex: 0 0 30%;
    max-width: 30%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 1920px) {
  .col-xl-4 {
    flex: 0 0 40%;
    max-width: 40%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 1920px) {
  .col-xl-5 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 1920px) {
  .col-xl-6 {
    flex: 0 0 60%;
    max-width: 60%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 1920px) {
  .col-xl-7 {
    flex: 0 0 70%;
    max-width: 70%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 1920px) {
  .col-xl-8 {
    flex: 0 0 80%;
    max-width: 80%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 1920px) {
  .col-xl-9 {
    flex: 0 0 90%;
    max-width: 90%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 1920px) {
  .col-xl-10 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 1920px) {
  .col-xl-11 {
    flex: 0 0;
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 1920px) {
  .col-xl-12 {
    flex: 0 0;
    padding-left: 16px;
    padding-right: 16px;
  }
}

/*
	Typography system
	- Based on design system documentation with Montserrat font family
	- Responsive typography for three breakpoints: ≥1920px, <1919px, <991px
	- Uses typography variables from _typography-variables.scss
*/
/* Import Google Fonts - Montserrat */
/* Root CSS custom properties for fallbacks */
:root {
  /* Font families */
  --font-primary: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-serif: Georgia, Times, "Times New Roman", serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* Weights */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
}

/* SCSS aliases to CSS variables for convenient use in mixins */
/* Base elements */
html {
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  body {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  body {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  body {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
body {
  color: inherit;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5em;
}

h1 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  h1 {
    font-size: 48px;
    line-height: 64px;
    letter-spacing: -1px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  h1 {
    font-size: 36px;
    line-height: 48px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}

h2 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  h2 {
    font-size: 40px;
    line-height: 56px;
    letter-spacing: -1px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  h2 {
    font-size: 32px;
    line-height: 48px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}

h3 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  h3 {
    font-size: 32px;
    line-height: 48px;
    letter-spacing: -0.5px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  h3 {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  h3 {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}

h4 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  h4 {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  h4 {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  h4 {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}

h5 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  h5 {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  h5 {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  h5 {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}

h6 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  h6 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  h6 {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  h6 {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}

p {
  margin: 0 0 1em;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  p {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  p {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  p {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}

small {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  small {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  small {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  small {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}

strong {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  strong {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  strong {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  strong {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}

em {
  font-style: italic;
}

a {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  a {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  a {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  a {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.125em;
  transition: color 0.2s ease;
  cursor: pointer;
}
a:hover {
  color: #FF4F60;
}

ul,
ol {
  padding-left: 1.25em;
  margin: 0 0 1em;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  ul,
  ol {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  ul,
  ol {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  ul,
  ol {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}

blockquote {
  margin: 0 0 1.25em;
  padding-left: 1em;
  border-left: 3px solid currentColor;
  font-style: italic;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  blockquote {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  blockquote {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  blockquote {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}

code,
pre,
kbd,
samp {
  font-family: var(--font-mono);
}

/* Utilities - apply directly to elements */
.text-h1 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .text-h1 {
    font-size: 48px;
    line-height: 64px;
    letter-spacing: -1px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-h1 {
    font-size: 36px;
    line-height: 48px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-h1 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}

.text-h1-subpage {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .text-h1-subpage {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-h1-subpage {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-h1-subpage {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}

.text-h2 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .text-h2 {
    font-size: 40px;
    line-height: 56px;
    letter-spacing: -1px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-h2 {
    font-size: 32px;
    line-height: 48px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-h2 {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}

.text-h3 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .text-h3 {
    font-size: 32px;
    line-height: 48px;
    letter-spacing: -0.5px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-h3 {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-h3 {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}

.text-h4 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .text-h4 {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-h4 {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-h4 {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}

.text-h5 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .text-h5 {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-h5 {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-h5 {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}

.text-h6 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .text-h6 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-h6 {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-h6 {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}

.text-paragraph {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .text-paragraph {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-paragraph {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-paragraph {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}

.text-strong {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .text-strong {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-strong {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-strong {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}

.text-link {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .text-link {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-link {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-link {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}

.text-span {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .text-span {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-span {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-span {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}

.text-span-strong {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .text-span-strong {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-span-strong {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-span-strong {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}

.text-span-link {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .text-span-link {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-span-link {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-span-link {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}

/* Navigation utilities */
.text-main-menu {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .text-main-menu {
    font-size: 21px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-main-menu {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-main-menu {
    font-size: 21px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}

.text-submenu {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .text-submenu {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-submenu {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-submenu {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}

/* Button utilities */
.text-medium-button {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .text-medium-button {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-medium-button {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-medium-button {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}

.text-small-button {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .text-small-button {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-small-button {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-small-button {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}

.text-selection-button {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .text-selection-button {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-selection-button {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-selection-button {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}

/* Form utilities */
.text-field-label {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .text-field-label {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-field-label {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-field-label {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}

.text-placeholder {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
}
@media (min-width: 1920px) {
  .text-placeholder {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-placeholder {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-placeholder {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}

/* Component utilities */
.text-badges {
  font-family: var(--font-primary);
  font-weight: var(--fw-semibold);
}
@media (min-width: 1920px) {
  .text-badges {
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-badges {
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-badges {
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0px;
  }
}

.text-tab {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .text-tab {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-tab {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-tab {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}

.text-table-strong {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .text-table-strong {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-table-strong {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-table-strong {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}

.text-table {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .text-table {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-table {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-table {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}

.text-breadcrumbs {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .text-breadcrumbs {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-breadcrumbs {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-breadcrumbs {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}

.text-breadcrumbs-active {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .text-breadcrumbs-active {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .text-breadcrumbs-active {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .text-breadcrumbs-active {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}

.text-tooltip-small {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  font-size: 8px;
  line-height: 10px;
  letter-spacing: 0.5px;
}

.text-calendar-day {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0%;
}

.text-calendar-date {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0%;
}

/* Font weight utilities */
.fw-regular {
  font-weight: var(--fw-regular);
}

.fw-medium {
  font-weight: var(--fw-medium);
}

.fw-semibold {
  font-weight: var(--fw-semibold);
}

.fw-bold {
  font-weight: var(--fw-bold);
}

/* Text transform utilities */
.tt-uppercase {
  text-transform: uppercase;
}

.tt-lowercase {
  text-transform: lowercase;
}

.tt-capitalize {
  text-transform: capitalize;
}

/* WordPress-specific typography classes */
.entry-content h1 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .entry-content h1 {
    font-size: 48px;
    line-height: 64px;
    letter-spacing: -1px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .entry-content h1 {
    font-size: 36px;
    line-height: 48px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .entry-content h1 {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
.entry-content h2 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .entry-content h2 {
    font-size: 40px;
    line-height: 56px;
    letter-spacing: -1px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .entry-content h2 {
    font-size: 32px;
    line-height: 48px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .entry-content h2 {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
.entry-content h3 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .entry-content h3 {
    font-size: 32px;
    line-height: 48px;
    letter-spacing: -0.5px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .entry-content h3 {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .entry-content h3 {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
.entry-content h4 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .entry-content h4 {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .entry-content h4 {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .entry-content h4 {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.entry-content h5 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .entry-content h5 {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .entry-content h5 {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .entry-content h5 {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.entry-content h6 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .entry-content h6 {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .entry-content h6 {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .entry-content h6 {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.entry-content p {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .entry-content p {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .entry-content p {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .entry-content p {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.entry-content strong {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .entry-content strong {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .entry-content strong {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .entry-content strong {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.entry-content a {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .entry-content a {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .entry-content a {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .entry-content a {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}

/* WooCommerce-specific typography */
.woocommerce .woocommerce-page-title {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce .woocommerce-page-title {
    font-size: 48px;
    line-height: 64px;
    letter-spacing: -1px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce .woocommerce-page-title {
    font-size: 36px;
    line-height: 48px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce .woocommerce-page-title {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
.woocommerce .woocommerce-loop-product__title {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce .woocommerce-loop-product__title {
    font-size: 32px;
    line-height: 48px;
    letter-spacing: -0.5px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce .woocommerce-loop-product__title {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce .woocommerce-loop-product__title {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
.woocommerce .woocommerce-product-rating {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce .woocommerce-product-rating {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce .woocommerce-product-rating {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce .woocommerce-product-rating {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}

/**
 * Button Styles
 * 
 * Comprehensive button styling based on the design system.
 * Includes WordPress and WooCommerce specific button overrides.
 */
.sidebar-cart__button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button, body.woocommerce .product .add_to_cart_button,
body.woocommerce .product a.button.add_to_cart_button,
body.woocommerce-page .product .add_to_cart_button,
body.woocommerce-page .product a.button.add_to_cart_button, body.woocommerce-checkout #place_order.button,
body.woocommerce-page.woocommerce-checkout #place_order.button, .widget_shopping_cart .button.button,
.woocommerce .widget_shopping_cart .button.button, body.woocommerce .variations .button.button,
body.woocommerce-page .variations .button.button, body.woocommerce .woocommerce-orders-table .button.button,
body.woocommerce-page .woocommerce-orders-table .button.button, body.woocommerce .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a.button,
body.woocommerce .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a,
body.woocommerce-page .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a.button,
body.woocommerce-page .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a, body.woocommerce .woocommerce-form-login button[type=submit].button,
body.woocommerce .woocommerce-form-login .button[type=submit],
body.woocommerce .woocommerce-form-register button[type=submit].button,
body.woocommerce .woocommerce-form-register .button[type=submit],
body.woocommerce-page .woocommerce-form-login button[type=submit].button,
body.woocommerce-page .woocommerce-form-login .button[type=submit],
body.woocommerce-page .woocommerce-form-register button[type=submit].button,
body.woocommerce-page .woocommerce-form-register .button[type=submit], body.woocommerce a.wc-backward,
body.woocommerce-page a.wc-backward, body.woocommerce .button[name=apply_coupon].button,
body.woocommerce-page .button[name=apply_coupon].button, body.woocommerce .button[name=update_cart].button,
body.woocommerce-page .button[name=update_cart].button, body.woocommerce .checkout-button.button,
body.woocommerce button.checkout-button,
body.woocommerce #place_order.button,
body.woocommerce-page .checkout-button.button,
body.woocommerce-page button.checkout-button,
body.woocommerce-page #place_order.button, body.woocommerce .single_add_to_cart_button.button,
body.woocommerce button.single_add_to_cart_button,
body.woocommerce-page .single_add_to_cart_button.button,
body.woocommerce-page button.single_add_to_cart_button, body.wp-admin .wp-core-ui .button,
.wp-core-ui .button.button, body .wp-block-button .wp-block-button__link,
.wp-site-blocks .wp-block-button .wp-block-button__link, .woocommerce-cart .shipping-calculator-form button, .woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon button.button,
.woocommerce-cart .shop_table.cart tbody tr.actions td .coupon button.button,
.woocommerce .shop_table.cart tbody tr.actions td .coupon button.button,
table.shop_table.cart tbody tr.actions td .coupon button.button,
.shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon button.button, .sidebar-cart__button--secondary, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.button-border, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.btn-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.button-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.button-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.btn-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.button-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.btn-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.button-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.btn-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.button-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.btn-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.button-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.btn-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.button-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.btn-border, body.wp-admin .wp-core-ui .button.button-secondary,
.wp-core-ui .button.button.button-secondary, body .wp-block-button.is-style-outline .wp-block-button__link,
.wp-site-blocks .wp-block-button.is-style-outline .wp-block-button__link, button.button-border, button.btn-border,
input[type=submit].button-border,
input[type=submit].btn-border,
input[type=button].button-border,
input[type=button].btn-border,
input[type=reset].button-border,
input[type=reset].btn-border,
a.button.button-border,
a.button.btn-border,
.button.button-border,
.button.btn-border, .btn-border-medium, .btn-border-small, .woocommerce-checkout #payment div.place-order #place_order,
.woocommerce #payment div.place-order #place_order,
#payment div.place-order #place_order, .checkout-coupon-row .checkout-coupon-field .btn-coupon, .woocommerce-cart .return-to-shop a.button, .woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button,
.cart_totals .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .woocommerce-cart-form tbody tr.actions td button[name=update_cart],
.woocommerce-cart .shop_table.cart tbody tr.actions td button[name=update_cart],
.woocommerce .shop_table.cart tbody tr.actions td button[name=update_cart],
table.shop_table.cart tbody tr.actions td button[name=update_cart],
.shop_table.woocommerce-cart-form__contents tbody tr.actions td button[name=update_cart], .sidebar-cart__button--primary, .file-input-wrapper .file-input-button, .search-form .search-submit, .comment-form .form-submit input[type=submit], .btn-primary-medium-mobile-with-icon, .btn-primary-medium-compact-with-icon, .btn-primary-medium-with-icon, button,
input[type=submit],
input[type=button],
input[type=reset],
a.button,
.button, .btn-primary-medium, .woocommerce-checkout #payment div.place-order #place_order,
.woocommerce #payment div.place-order #place_order,
#payment div.place-order #place_order, .woocommerce-cart .return-to-shop a.button, .woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button,
.cart_totals .wc-proceed-to-checkout a.checkout-button, .btn-primary-small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-decoration: none;
  text-transform: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  outline: none;
  box-sizing: border-box;
}
.sidebar-cart__button:focus-visible, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:focus-visible,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:focus-visible,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:focus-visible,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:focus-visible,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:focus-visible,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:focus-visible,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:focus-visible,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:focus-visible, body.woocommerce .product .add_to_cart_button:focus-visible,
body.woocommerce .product a.button.add_to_cart_button:focus-visible,
body.woocommerce-page .product .add_to_cart_button:focus-visible,
body.woocommerce-page .product a.button.add_to_cart_button:focus-visible, body.woocommerce-checkout #place_order.button:focus-visible, .widget_shopping_cart .button:focus-visible,
.woocommerce .widget_shopping_cart .button:focus-visible, body.woocommerce .variations .button:focus-visible,
body.woocommerce-page .variations .button:focus-visible, body.woocommerce .woocommerce-orders-table .button:focus-visible,
body.woocommerce-page .woocommerce-orders-table .button:focus-visible,
body.woocommerce .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a:focus-visible,
body.woocommerce-page .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a:focus-visible,
body.woocommerce .woocommerce-form-login .button[type=submit]:focus-visible,
body.woocommerce .woocommerce-form-register .button[type=submit]:focus-visible,
body.woocommerce-page .woocommerce-form-login .button[type=submit]:focus-visible,
body.woocommerce-page .woocommerce-form-register .button[type=submit]:focus-visible, body.woocommerce a.wc-backward:focus-visible,
body.woocommerce-page a.wc-backward:focus-visible, body.woocommerce .button[name=apply_coupon]:focus-visible,
body.woocommerce-page .button[name=apply_coupon]:focus-visible, body.woocommerce .button[name=update_cart]:focus-visible,
body.woocommerce-page .button[name=update_cart]:focus-visible, body.woocommerce .checkout-button.button:focus-visible,
body.woocommerce button.checkout-button:focus-visible,
body.woocommerce #place_order.button:focus-visible,
body.woocommerce-page .checkout-button.button:focus-visible,
body.woocommerce-page button.checkout-button:focus-visible,
body.woocommerce-page #place_order.button:focus-visible, body.woocommerce .single_add_to_cart_button.button:focus-visible,
body.woocommerce button.single_add_to_cart_button:focus-visible,
body.woocommerce-page .single_add_to_cart_button.button:focus-visible,
body.woocommerce-page button.single_add_to_cart_button:focus-visible, body.wp-admin .wp-core-ui .button:focus-visible,
.wp-core-ui .button:focus-visible, body .wp-block-button .wp-block-button__link:focus-visible,
.wp-site-blocks .wp-block-button .wp-block-button__link:focus-visible, .woocommerce-cart .shipping-calculator-form button:focus-visible, .woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon button.button:focus-visible,
.woocommerce-cart .shop_table.cart tbody tr.actions td .coupon button.button:focus-visible,
.woocommerce .shop_table.cart tbody tr.actions td .coupon button.button:focus-visible,
table.shop_table.cart tbody tr.actions td .coupon button.button:focus-visible,
.shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon button.button:focus-visible, .sidebar-cart__button--secondary:focus-visible,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.button-border:focus-visible,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-border:focus-visible,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.button-border:focus-visible,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.btn-border:focus-visible,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.button-border:focus-visible,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.btn-border:focus-visible,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.button-border:focus-visible,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.btn-border:focus-visible,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.button-border:focus-visible,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.btn-border:focus-visible,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.button-border:focus-visible,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.btn-border:focus-visible,
.wp-core-ui .button.button-secondary:focus-visible, .btn-border-medium:focus-visible, .btn-border-small:focus-visible,
#payment div.place-order #place_order:focus-visible, .checkout-coupon-row .checkout-coupon-field .btn-coupon:focus-visible, .woocommerce-cart .return-to-shop a.button:focus-visible,
.cart_totals .wc-proceed-to-checkout a.checkout-button:focus-visible, .woocommerce-cart .woocommerce-cart-form tbody tr.actions td button[name=update_cart]:focus-visible,
.woocommerce-cart .shop_table.cart tbody tr.actions td button[name=update_cart]:focus-visible,
.woocommerce .shop_table.cart tbody tr.actions td button[name=update_cart]:focus-visible,
table.shop_table.cart tbody tr.actions td button[name=update_cart]:focus-visible,
.shop_table.woocommerce-cart-form__contents tbody tr.actions td button[name=update_cart]:focus-visible, .sidebar-cart__button--primary:focus-visible, .file-input-wrapper .file-input-button:focus-visible, .search-form .search-submit:focus-visible, .comment-form .form-submit input[type=submit]:focus-visible, .btn-primary-medium-mobile-with-icon:focus-visible, .btn-primary-medium-compact-with-icon:focus-visible, .btn-primary-medium-with-icon:focus-visible, button:focus-visible,
input[type=submit]:focus-visible,
input[type=button]:focus-visible,
input[type=reset]:focus-visible,
.button:focus-visible, .btn-primary-medium:focus-visible, .btn-primary-small:focus-visible {
  outline: 2px solid #FF0019;
  outline-offset: 2px;
}
.sidebar-cart__button:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled, body.woocommerce .product .add_to_cart_button:disabled,
body.woocommerce .product a.button.add_to_cart_button:disabled,
body.woocommerce-page .product .add_to_cart_button:disabled,
body.woocommerce-page .product a.button.add_to_cart_button:disabled, body.woocommerce-checkout #place_order.button:disabled, .widget_shopping_cart .button:disabled,
.woocommerce .widget_shopping_cart .button:disabled, body.woocommerce .variations .button:disabled,
body.woocommerce-page .variations .button:disabled, body.woocommerce .woocommerce-orders-table .button:disabled,
body.woocommerce-page .woocommerce-orders-table .button:disabled,
body.woocommerce .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a:disabled,
body.woocommerce-page .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a:disabled,
body.woocommerce .woocommerce-form-login .button[type=submit]:disabled,
body.woocommerce .woocommerce-form-register .button[type=submit]:disabled,
body.woocommerce-page .woocommerce-form-login .button[type=submit]:disabled,
body.woocommerce-page .woocommerce-form-register .button[type=submit]:disabled, body.woocommerce a.wc-backward:disabled,
body.woocommerce-page a.wc-backward:disabled, body.woocommerce .button[name=apply_coupon]:disabled,
body.woocommerce-page .button[name=apply_coupon]:disabled, body.woocommerce .button[name=update_cart]:disabled,
body.woocommerce-page .button[name=update_cart]:disabled, body.woocommerce .checkout-button.button:disabled,
body.woocommerce button.checkout-button:disabled,
body.woocommerce #place_order.button:disabled,
body.woocommerce-page .checkout-button.button:disabled,
body.woocommerce-page button.checkout-button:disabled,
body.woocommerce-page #place_order.button:disabled, body.woocommerce .single_add_to_cart_button.button:disabled,
body.woocommerce button.single_add_to_cart_button:disabled,
body.woocommerce-page .single_add_to_cart_button.button:disabled,
body.woocommerce-page button.single_add_to_cart_button:disabled, body.wp-admin .wp-core-ui .button:disabled,
.wp-core-ui .button:disabled, body .wp-block-button .wp-block-button__link:disabled,
.wp-site-blocks .wp-block-button .wp-block-button__link:disabled, .woocommerce-cart .shipping-calculator-form button:disabled, .woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon button.button:disabled,
.woocommerce-cart .shop_table.cart tbody tr.actions td .coupon button.button:disabled,
.woocommerce .shop_table.cart tbody tr.actions td .coupon button.button:disabled,
table.shop_table.cart tbody tr.actions td .coupon button.button:disabled,
.shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon button.button:disabled, .sidebar-cart__button--secondary:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.button-border:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.btn-border:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.button-border:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-border:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.button-border:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.btn-border:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.button-border:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.btn-border:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.button-border:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.btn-border:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.button-border:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.btn-border:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.button-border:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.btn-border:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.button-border:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.btn-border:disabled,
.wp-core-ui .button.button-secondary:disabled, .btn-border-medium:disabled, .btn-border-small:disabled,
#payment div.place-order #place_order:disabled, .checkout-coupon-row .checkout-coupon-field .btn-coupon:disabled, .woocommerce-cart .return-to-shop a.button:disabled,
.cart_totals .wc-proceed-to-checkout a.checkout-button:disabled, .woocommerce-cart .woocommerce-cart-form tbody tr.actions td button[name=update_cart]:disabled,
.woocommerce-cart .shop_table.cart tbody tr.actions td button[name=update_cart]:disabled,
.woocommerce .shop_table.cart tbody tr.actions td button[name=update_cart]:disabled,
table.shop_table.cart tbody tr.actions td button[name=update_cart]:disabled,
.shop_table.woocommerce-cart-form__contents tbody tr.actions td button[name=update_cart]:disabled, .sidebar-cart__button--primary:disabled, .file-input-wrapper .file-input-button:disabled, .search-form .search-submit:disabled, .comment-form .form-submit input[type=submit]:disabled, .btn-primary-medium-mobile-with-icon:disabled, .btn-primary-medium-compact-with-icon:disabled, .btn-primary-medium-with-icon:disabled, button:disabled,
input[type=submit]:disabled,
input[type=button]:disabled,
input[type=reset]:disabled,
.button:disabled, .btn-primary-medium:disabled,
#payment div.place-order #place_order:disabled, .woocommerce-cart .return-to-shop a.button:disabled,
.cart_totals .wc-proceed-to-checkout a.checkout-button:disabled, .btn-primary-small:disabled, .disabled.sidebar-cart__button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input.disabled#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.disabled.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.disabled.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.disabled.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input.disabled#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.disabled.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.disabled.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.disabled.button, body.woocommerce .product .disabled.add_to_cart_button,
body.woocommerce .product a.disabled.button.add_to_cart_button,
body.woocommerce-page .product .disabled.add_to_cart_button,
body.woocommerce-page .product a.disabled.button.add_to_cart_button, body.woocommerce-checkout .disabled#place_order.button, .widget_shopping_cart .disabled.button,
.woocommerce .widget_shopping_cart .disabled.button, body.woocommerce .variations .disabled.button,
body.woocommerce-page .variations .disabled.button, body.woocommerce .woocommerce-orders-table .disabled.button,
body.woocommerce-page .woocommerce-orders-table .disabled.button,
body.woocommerce .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a.disabled,
body.woocommerce-page .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a.disabled,
body.woocommerce .woocommerce-form-login .disabled.button[type=submit],
body.woocommerce .woocommerce-form-register .disabled.button[type=submit],
body.woocommerce-page .woocommerce-form-login .disabled.button[type=submit],
body.woocommerce-page .woocommerce-form-register .disabled.button[type=submit], body.woocommerce a.disabled.wc-backward,
body.woocommerce-page a.disabled.wc-backward, body.woocommerce .disabled.button[name=apply_coupon],
body.woocommerce-page .disabled.button[name=apply_coupon], body.woocommerce .disabled.button[name=update_cart],
body.woocommerce-page .disabled.button[name=update_cart], body.woocommerce .disabled.checkout-button.button,
body.woocommerce button.disabled.checkout-button,
body.woocommerce .disabled#place_order.button,
body.woocommerce-page .disabled.checkout-button.button,
body.woocommerce-page button.disabled.checkout-button,
body.woocommerce-page .disabled#place_order.button, body.woocommerce .disabled.single_add_to_cart_button.button,
body.woocommerce button.disabled.single_add_to_cart_button,
body.woocommerce-page .disabled.single_add_to_cart_button.button,
body.woocommerce-page button.disabled.single_add_to_cart_button, body.wp-admin .wp-core-ui .disabled.button,
.wp-core-ui .disabled.button, body .wp-block-button .disabled.wp-block-button__link,
.wp-site-blocks .wp-block-button .disabled.wp-block-button__link, .woocommerce-cart .shipping-calculator-form button.disabled, .woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon button.disabled.button,
.woocommerce-cart .shop_table.cart tbody tr.actions td .coupon button.disabled.button,
.woocommerce .shop_table.cart tbody tr.actions td .coupon button.disabled.button,
table.shop_table.cart tbody tr.actions td .coupon button.disabled.button,
.shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon button.disabled.button, .disabled.sidebar-cart__button--secondary, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input.disabled#submit.button-border, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input.disabled#submit.btn-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.disabled.button.button-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.disabled.button.btn-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.disabled.button.button-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.disabled.button.btn-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.disabled.button.button-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.disabled.button.btn-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input.disabled#submit.button-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input.disabled#submit.btn-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.disabled.button.button-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.disabled.button.btn-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.disabled.button.button-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.disabled.button.btn-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.disabled.button.button-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.disabled.button.btn-border,
.wp-core-ui .disabled.button.button-secondary, .disabled.btn-border-medium, .disabled.btn-border-small,
#payment div.place-order .disabled#place_order, .checkout-coupon-row .checkout-coupon-field .disabled.btn-coupon, .woocommerce-cart .return-to-shop a.disabled.button,
.cart_totals .wc-proceed-to-checkout a.disabled.checkout-button, .woocommerce-cart .woocommerce-cart-form tbody tr.actions td button.disabled[name=update_cart],
.woocommerce-cart .shop_table.cart tbody tr.actions td button.disabled[name=update_cart],
.woocommerce .shop_table.cart tbody tr.actions td button.disabled[name=update_cart],
table.shop_table.cart tbody tr.actions td button.disabled[name=update_cart],
.shop_table.woocommerce-cart-form__contents tbody tr.actions td button.disabled[name=update_cart], .disabled.sidebar-cart__button--primary, .file-input-wrapper .disabled.file-input-button, .search-form .disabled.search-submit, .comment-form .form-submit input.disabled[type=submit], .disabled.btn-primary-medium-mobile-with-icon, .disabled.btn-primary-medium-compact-with-icon, .disabled.btn-primary-medium-with-icon, button.disabled,
input.disabled[type=submit],
input.disabled[type=button],
input.disabled[type=reset],
.disabled.button, .disabled.btn-primary-medium,
#payment div.place-order .disabled#place_order, .woocommerce-cart .return-to-shop a.disabled.button,
.cart_totals .wc-proceed-to-checkout a.disabled.checkout-button, .disabled.btn-primary-small {
  cursor: not-allowed;
  opacity: 0.32;
}

.woocommerce-checkout #payment div.place-order #place_order,
.woocommerce #payment div.place-order #place_order,
#payment div.place-order #place_order, .checkout-coupon-row .checkout-coupon-field .btn-coupon, .woocommerce-cart .return-to-shop a.button, .woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button,
.cart_totals .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .woocommerce-cart-form tbody tr.actions td button[name=update_cart],
.woocommerce-cart .shop_table.cart tbody tr.actions td button[name=update_cart],
.woocommerce .shop_table.cart tbody tr.actions td button[name=update_cart],
table.shop_table.cart tbody tr.actions td button[name=update_cart],
.shop_table.woocommerce-cart-form__contents tbody tr.actions td button[name=update_cart], .sidebar-cart__button--primary, .file-input-wrapper .file-input-button, .search-form .search-submit, .comment-form .form-submit input[type=submit], .btn-primary-medium-mobile-with-icon, .btn-primary-medium-compact-with-icon, .btn-primary-medium-with-icon, button,
input[type=submit],
input[type=button],
input[type=reset],
a.button,
.button, .btn-primary-medium, .btn-primary-small {
  background-color: #262930;
  color: white;
}
#payment div.place-order #place_order:hover:not(:disabled):not(.disabled), .checkout-coupon-row .checkout-coupon-field .btn-coupon:hover:not(:disabled):not(.disabled),
.cart_totals .wc-proceed-to-checkout a.checkout-button:hover:not(:disabled):not(.disabled), .woocommerce-cart .woocommerce-cart-form tbody tr.actions td button[name=update_cart]:hover:not(:disabled):not(.disabled),
.woocommerce-cart .shop_table.cart tbody tr.actions td button[name=update_cart]:hover:not(:disabled):not(.disabled),
.woocommerce .shop_table.cart tbody tr.actions td button[name=update_cart]:hover:not(:disabled):not(.disabled),
table.shop_table.cart tbody tr.actions td button[name=update_cart]:hover:not(:disabled):not(.disabled),
.shop_table.woocommerce-cart-form__contents tbody tr.actions td button[name=update_cart]:hover:not(:disabled):not(.disabled), .sidebar-cart__button--primary:hover:not(:disabled):not(.disabled), .file-input-wrapper .file-input-button:hover:not(:disabled):not(.disabled), .search-form .search-submit:hover:not(:disabled):not(.disabled), .btn-primary-medium-mobile-with-icon:hover:not(:disabled):not(.disabled), .btn-primary-medium-compact-with-icon:hover:not(:disabled):not(.disabled), .btn-primary-medium-with-icon:hover:not(:disabled):not(.disabled), button:hover:not(:disabled):not(.disabled),
input[type=submit]:hover:not(:disabled):not(.disabled),
input[type=button]:hover:not(:disabled):not(.disabled),
input[type=reset]:hover:not(:disabled):not(.disabled),
.button:hover:not(:disabled):not(.disabled), .btn-primary-medium:hover:not(:disabled):not(.disabled), .btn-primary-small:hover:not(:disabled):not(.disabled) {
  background-color: #FF0019;
  color: white;
}
#payment div.place-order #place_order:disabled, .checkout-coupon-row .checkout-coupon-field .btn-coupon:disabled, .woocommerce-cart .return-to-shop a.button:disabled,
.cart_totals .wc-proceed-to-checkout a.checkout-button:disabled, .woocommerce-cart .woocommerce-cart-form tbody tr.actions td button[name=update_cart]:disabled,
.woocommerce-cart .shop_table.cart tbody tr.actions td button[name=update_cart]:disabled,
.woocommerce .shop_table.cart tbody tr.actions td button[name=update_cart]:disabled,
table.shop_table.cart tbody tr.actions td button[name=update_cart]:disabled,
.shop_table.woocommerce-cart-form__contents tbody tr.actions td button[name=update_cart]:disabled, .sidebar-cart__button--primary:disabled, .file-input-wrapper .file-input-button:disabled, .search-form .search-submit:disabled, .comment-form .form-submit input[type=submit]:disabled, .btn-primary-medium-mobile-with-icon:disabled, .btn-primary-medium-compact-with-icon:disabled, .btn-primary-medium-with-icon:disabled, button:disabled,
input[type=submit]:disabled,
input[type=button]:disabled,
input[type=reset]:disabled,
.button:disabled, .btn-primary-medium:disabled, .btn-primary-small:disabled,
#payment div.place-order .disabled#place_order, .checkout-coupon-row .checkout-coupon-field .disabled.btn-coupon, .woocommerce-cart .return-to-shop a.disabled.button,
.cart_totals .wc-proceed-to-checkout a.disabled.checkout-button, .woocommerce-cart .woocommerce-cart-form tbody tr.actions td button.disabled[name=update_cart],
.woocommerce-cart .shop_table.cart tbody tr.actions td button.disabled[name=update_cart],
.woocommerce .shop_table.cart tbody tr.actions td button.disabled[name=update_cart],
table.shop_table.cart tbody tr.actions td button.disabled[name=update_cart],
.shop_table.woocommerce-cart-form__contents tbody tr.actions td button.disabled[name=update_cart], .disabled.sidebar-cart__button--primary, .file-input-wrapper .disabled.file-input-button, .search-form .disabled.search-submit, .comment-form .form-submit input.disabled[type=submit], .disabled.btn-primary-medium-mobile-with-icon, .disabled.btn-primary-medium-compact-with-icon, .disabled.btn-primary-medium-with-icon, button.disabled,
input.disabled[type=submit],
input.disabled[type=button],
input.disabled[type=reset],
.disabled.button, .disabled.btn-primary-medium, .disabled.btn-primary-small {
  background-color: #E4E4E6;
  color: #262930;
}

.btn-primary-small {
  padding: 18px 32px;
  font-size: 15px;
  line-height: 20px;
  border-radius: 4px;
}
.btn-primary-small:hover:not(:disabled):not(.disabled) {
  border-radius: 8px;
}

.btn-primary-medium, .woocommerce-checkout #payment div.place-order #place_order,
.woocommerce #payment div.place-order #place_order,
#payment div.place-order #place_order, .woocommerce-cart .return-to-shop a.button, .woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button,
.cart_totals .wc-proceed-to-checkout a.checkout-button {
  padding: 24px 48px 24px 28px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 8px;
}
.btn-primary-medium:hover:not(:disabled):not(.disabled),
#payment div.place-order #place_order:hover:not(:disabled):not(.disabled), .woocommerce-cart .return-to-shop a.button:hover:not(:disabled):not(.disabled),
.cart_totals .wc-proceed-to-checkout a.checkout-button:hover:not(:disabled):not(.disabled) {
  border-radius: 16px;
}

.woocommerce-cart .shipping-calculator-form button, .woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon button.button,
.woocommerce-cart .shop_table.cart tbody tr.actions td .coupon button.button,
.woocommerce .shop_table.cart tbody tr.actions td .coupon button.button,
table.shop_table.cart tbody tr.actions td .coupon button.button,
.shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon button.button, .sidebar-cart__button--secondary, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.button-border, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.btn-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.button-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.button-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.btn-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.button-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.btn-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.button-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.btn-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.button-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.btn-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.button-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.btn-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.button-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.btn-border, body.wp-admin .wp-core-ui .button.button-secondary,
.wp-core-ui .button.button.button-secondary, body .wp-block-button.is-style-outline .wp-block-button__link,
.wp-site-blocks .wp-block-button.is-style-outline .wp-block-button__link, button.button-border, button.btn-border,
input[type=submit].button-border,
input[type=submit].btn-border,
input[type=button].button-border,
input[type=button].btn-border,
input[type=reset].button-border,
input[type=reset].btn-border,
a.button.button-border,
a.button.btn-border,
.button.button-border,
.button.btn-border, .btn-border-medium, .btn-border-small {
  background-color: #F7F9FB;
  color: #262930;
  border: 1px solid #F0F1F5;
}
.woocommerce-cart .shipping-calculator-form button:hover:not(:disabled):not(.disabled), .woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon button.button:hover:not(:disabled):not(.disabled),
.woocommerce-cart .shop_table.cart tbody tr.actions td .coupon button.button:hover:not(:disabled):not(.disabled),
.woocommerce .shop_table.cart tbody tr.actions td .coupon button.button:hover:not(:disabled):not(.disabled),
table.shop_table.cart tbody tr.actions td .coupon button.button:hover:not(:disabled):not(.disabled),
.shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon button.button:hover:not(:disabled):not(.disabled), .sidebar-cart__button--secondary:hover:not(:disabled):not(.disabled), .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.button-border:hover:not(:disabled):not(.disabled), .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.btn-border:hover:not(:disabled):not(.disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.button-border:hover:not(:disabled):not(.disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-border:hover:not(:disabled):not(.disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.button-border:hover:not(:disabled):not(.disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.btn-border:hover:not(:disabled):not(.disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.button-border:hover:not(:disabled):not(.disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.btn-border:hover:not(:disabled):not(.disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.button-border:hover:not(:disabled):not(.disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.btn-border:hover:not(:disabled):not(.disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.button-border:hover:not(:disabled):not(.disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.btn-border:hover:not(:disabled):not(.disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.button-border:hover:not(:disabled):not(.disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.btn-border:hover:not(:disabled):not(.disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.button-border:hover:not(:disabled):not(.disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.btn-border:hover:not(:disabled):not(.disabled),
.wp-core-ui .button.button-secondary:hover:not(:disabled):not(.disabled), body .wp-block-button.is-style-outline .wp-block-button__link:hover:not(:disabled):not(.disabled),
.wp-site-blocks .wp-block-button.is-style-outline .wp-block-button__link:hover:not(:disabled):not(.disabled), button.button-border:hover:not(:disabled):not(.disabled), button.btn-border:hover:not(:disabled):not(.disabled),
input[type=submit].button-border:hover:not(:disabled):not(.disabled),
input[type=submit].btn-border:hover:not(:disabled):not(.disabled),
input[type=button].button-border:hover:not(:disabled):not(.disabled),
input[type=button].btn-border:hover:not(:disabled):not(.disabled),
input[type=reset].button-border:hover:not(:disabled):not(.disabled),
input[type=reset].btn-border:hover:not(:disabled):not(.disabled),
.button.button-border:hover:not(:disabled):not(.disabled),
.button.btn-border:hover:not(:disabled):not(.disabled), .btn-border-medium:hover:not(:disabled):not(.disabled), .btn-border-small:hover:not(:disabled):not(.disabled) {
  background-color: #FF0019;
  color: white;
  border-color: #FF0019;
}
.woocommerce-cart .shipping-calculator-form button:disabled, .woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon button.button:disabled,
.woocommerce-cart .shop_table.cart tbody tr.actions td .coupon button.button:disabled,
.woocommerce .shop_table.cart tbody tr.actions td .coupon button.button:disabled,
table.shop_table.cart tbody tr.actions td .coupon button.button:disabled,
.shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon button.button:disabled, .sidebar-cart__button--secondary:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.button-border:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.btn-border:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.button-border:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-border:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.button-border:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.btn-border:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.button-border:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.btn-border:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.button-border:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.btn-border:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.button-border:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.btn-border:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.button-border:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.btn-border:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.button-border:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.btn-border:disabled, body.wp-admin .wp-core-ui .button.button-secondary:disabled,
.wp-core-ui .button.button-secondary:disabled, body .wp-block-button.is-style-outline .wp-block-button__link:disabled,
.wp-site-blocks .wp-block-button.is-style-outline .wp-block-button__link:disabled, button.button-border:disabled, button.btn-border:disabled,
input[type=submit].button-border:disabled,
input[type=submit].btn-border:disabled,
input[type=button].button-border:disabled,
input[type=button].btn-border:disabled,
input[type=reset].button-border:disabled,
input[type=reset].btn-border:disabled,
.button.button-border:disabled,
.button.btn-border:disabled, .btn-border-medium:disabled, .btn-border-small:disabled, .woocommerce-cart .shipping-calculator-form button.disabled, .woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon button.disabled.button,
.woocommerce-cart .shop_table.cart tbody tr.actions td .coupon button.disabled.button,
.woocommerce .shop_table.cart tbody tr.actions td .coupon button.disabled.button,
table.shop_table.cart tbody tr.actions td .coupon button.disabled.button,
.shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon button.disabled.button, .disabled.sidebar-cart__button--secondary, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input.disabled#submit.button-border, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input.disabled#submit.btn-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.disabled.button.button-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.disabled.button.btn-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.disabled.button.button-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.disabled.button.btn-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.disabled.button.button-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.disabled.button.btn-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input.disabled#submit.button-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input.disabled#submit.btn-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.disabled.button.button-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.disabled.button.btn-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.disabled.button.button-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.disabled.button.btn-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.disabled.button.button-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.disabled.button.btn-border, body.wp-admin .wp-core-ui .disabled.button.button-secondary,
.wp-core-ui .disabled.button.button-secondary, body .wp-block-button.is-style-outline .disabled.wp-block-button__link,
.wp-site-blocks .wp-block-button.is-style-outline .disabled.wp-block-button__link, button.disabled.button-border, button.disabled.btn-border,
input.disabled[type=submit].button-border,
input.disabled[type=submit].btn-border,
input.disabled[type=button].button-border,
input.disabled[type=button].btn-border,
input.disabled[type=reset].button-border,
input.disabled[type=reset].btn-border,
.disabled.button.button-border,
.disabled.button.btn-border, .disabled.btn-border-medium, .disabled.btn-border-small {
  background-color: #E4E4E6;
  color: #262930;
  border-color: transparent;
}

.btn-border-small {
  padding: 18px 24px;
  font-size: 15px;
  line-height: 20px;
  border-radius: 4px;
}

.btn-border-medium {
  padding: 24px 48px 24px 28px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 8px;
}
.btn-border-medium:hover:not(:disabled):not(.disabled) {
  border-radius: 16px;
}

button,
input[type=submit],
input[type=button],
input[type=reset],
a.button,
.button {
  padding: 24px 48px 24px 28px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 8px;
}
button:hover:not(:disabled):not(.disabled),
input[type=submit]:hover:not(:disabled):not(.disabled),
input[type=button]:hover:not(:disabled):not(.disabled),
input[type=reset]:hover:not(:disabled):not(.disabled),
a.button:hover:not(:disabled):not(.disabled),
.button:hover:not(:disabled):not(.disabled) {
  border-radius: 16px;
}
button.button-small, button.btn-small,
input[type=submit].button-small,
input[type=submit].btn-small,
input[type=button].button-small,
input[type=button].btn-small,
input[type=reset].button-small,
input[type=reset].btn-small,
a.button.button-small,
a.button.btn-small,
.button.button-small,
.button.btn-small {
  padding: 18px 32px;
  font-size: 15px;
  line-height: 20px;
  border-radius: 4px;
}
button.button-small:hover:not(:disabled):not(.disabled), button.btn-small:hover:not(:disabled):not(.disabled),
input[type=submit].button-small:hover:not(:disabled):not(.disabled),
input[type=submit].btn-small:hover:not(:disabled):not(.disabled),
input[type=button].button-small:hover:not(:disabled):not(.disabled),
input[type=button].btn-small:hover:not(:disabled):not(.disabled),
input[type=reset].button-small:hover:not(:disabled):not(.disabled),
input[type=reset].btn-small:hover:not(:disabled):not(.disabled),
a.button.button-small:hover:not(:disabled):not(.disabled),
a.button.btn-small:hover:not(:disabled):not(.disabled),
.button.button-small:hover:not(:disabled):not(.disabled),
.button.btn-small:hover:not(:disabled):not(.disabled) {
  border-radius: 8px;
}

a.button,
.button {
  display: inline-flex;
  text-decoration: none;
}
a.button.disabled,
.button.disabled {
  pointer-events: none;
}

.btn-with-icon .btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.btn-with-icon .btn-icon.icon-large {
  width: 20px;
  height: 20px;
}
.btn-with-icon .btn-icon.arrow-right::after {
  content: "→";
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}
.btn-with-icon.gap-small {
  gap: 16px;
}
.btn-with-icon.gap-medium {
  gap: 24px;
}
.btn-with-icon.gap-compact {
  gap: 8px;
}

.btn-primary-medium-with-icon {
  padding: 24px 48px 24px 28px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 8px;
  gap: 24px;
}
.btn-primary-medium-with-icon:hover:not(:disabled):not(.disabled) {
  border-radius: 16px;
}
.btn-primary-medium-with-icon .btn-icon {
  width: 20px;
  height: 20px;
}

.btn-primary-medium-compact-with-icon {
  padding: 20px 48px 20px 24px;
  font-size: 15px;
  line-height: 20px;
  border-radius: 8px;
  gap: 16px;
}
.btn-primary-medium-compact-with-icon:hover:not(:disabled):not(.disabled) {
  border-radius: 16px;
}

.btn-primary-medium-mobile-with-icon {
  padding: 20px 40px 20px 24px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 8px;
  gap: 8px;
}
.btn-primary-medium-mobile-with-icon:hover:not(:disabled):not(.disabled) {
  border-radius: 16px;
}

@media (min-width: 992px) and (max-width: 1919px) {
  .btn-primary-small {
    padding: 18px 24px;
    font-size: 12px;
    line-height: 16px;
  }
  .btn-primary-medium, .woocommerce-checkout #payment div.place-order #place_order,
  .woocommerce #payment div.place-order #place_order,
  #payment div.place-order #place_order, .woocommerce-cart .return-to-shop a.button, .woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button,
  .cart_totals .wc-proceed-to-checkout a.checkout-button {
    padding: 20px 48px 20px 24px;
    font-size: 15px;
    line-height: 20px;
    gap: 16px;
  }
  .btn-primary-medium .btn-icon,
  #payment div.place-order #place_order .btn-icon, .woocommerce-cart .return-to-shop a.button .btn-icon,
  .cart_totals .wc-proceed-to-checkout a.checkout-button .btn-icon {
    width: 16px;
    height: 16px;
  }
  .btn-border-medium {
    padding: 20px 48px 20px 24px;
    font-size: 15px;
    line-height: 20px;
    gap: 16px;
  }
  .btn-border-medium .btn-icon {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 991px) {
  .btn-primary-small {
    padding: 18px 24px;
    font-size: 15px;
    line-height: 20px;
  }
  .btn-primary-medium, .woocommerce-checkout #payment div.place-order #place_order,
  .woocommerce #payment div.place-order #place_order,
  #payment div.place-order #place_order, .woocommerce-cart .return-to-shop a.button, .woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button,
  .cart_totals .wc-proceed-to-checkout a.checkout-button {
    padding: 20px 40px 20px 24px;
    font-size: 18px;
    line-height: 24px;
    gap: 8px;
  }
  .btn-primary-medium .btn-icon,
  #payment div.place-order #place_order .btn-icon, .woocommerce-cart .return-to-shop a.button .btn-icon,
  .cart_totals .wc-proceed-to-checkout a.checkout-button .btn-icon {
    width: 16px;
    height: 16px;
  }
  .btn-border-medium {
    padding: 20px 40px 20px 24px;
    font-size: 18px;
    line-height: 24px;
    gap: 8px;
  }
  .btn-border-medium .btn-icon {
    width: 16px;
    height: 16px;
  }
  .btn-border-small {
    padding: 18px 24px;
    font-size: 15px;
    line-height: 20px;
  }
}
body .wp-block-button .wp-block-button__link,
.wp-site-blocks .wp-block-button .wp-block-button__link {
  background-color: #262930;
  color: white;
  padding: 24px 48px 24px 28px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 8px;
  border: none;
  box-shadow: none;
  text-shadow: none;
}
body .wp-block-button .wp-block-button__link:hover:not(:disabled), body .wp-block-button .wp-block-button__link:focus:not(:disabled), body .wp-block-button .wp-block-button__link:active:not(:disabled),
.wp-site-blocks .wp-block-button .wp-block-button__link:hover:not(:disabled),
.wp-site-blocks .wp-block-button .wp-block-button__link:focus:not(:disabled),
.wp-site-blocks .wp-block-button .wp-block-button__link:active:not(:disabled) {
  background-color: #FF0019;
  color: white;
  border-radius: 16px;
  box-shadow: none;
  border: none;
}
body .wp-block-button .wp-block-button__link:disabled, body .wp-block-button .wp-block-button__link.disabled,
.wp-site-blocks .wp-block-button .wp-block-button__link:disabled,
.wp-site-blocks .wp-block-button .wp-block-button__link.disabled {
  background-color: #E4E4E6;
  color: #262930;
}

body .wp-block-button.is-style-outline .wp-block-button__link,
.wp-site-blocks .wp-block-button.is-style-outline .wp-block-button__link {
  padding: 24px 48px 24px 28px;
  font-size: 18px;
  line-height: 24px;
}
body .wp-block-button.is-style-outline .wp-block-button__link:hover:not(:disabled), body .wp-block-button.is-style-outline .wp-block-button__link:focus:not(:disabled),
.wp-site-blocks .wp-block-button.is-style-outline .wp-block-button__link:hover:not(:disabled),
.wp-site-blocks .wp-block-button.is-style-outline .wp-block-button__link:focus:not(:disabled) {
  border-radius: 16px;
}

body .wp-block-button.is-style-secondary .wp-block-button__link,
.wp-site-blocks .wp-block-button.is-style-secondary .wp-block-button__link {
  background-color: #F0F1F5;
  color: #262930;
  border: 1px solid #D8DAE2;
}
body .wp-block-button.is-style-secondary .wp-block-button__link:hover:not(:disabled), body .wp-block-button.is-style-secondary .wp-block-button__link:focus:not(:disabled),
.wp-site-blocks .wp-block-button.is-style-secondary .wp-block-button__link:hover:not(:disabled),
.wp-site-blocks .wp-block-button.is-style-secondary .wp-block-button__link:focus:not(:disabled) {
  background-color: #D8DAE2;
  color: #262930;
}

body.wp-admin .wp-core-ui .button,
.wp-core-ui .button.button {
  background-color: #262930;
  color: white;
  padding: 18px 24px;
  font-size: 15px;
  line-height: 20px;
  border-radius: 4px;
  border: none;
  box-shadow: none;
  text-shadow: none;
  height: auto;
}
body.wp-admin .wp-core-ui .button:hover:not(:disabled), body.wp-admin .wp-core-ui .button:focus:not(:disabled),
.wp-core-ui .button.button:hover:not(:disabled),
.wp-core-ui .button.button:focus:not(:disabled) {
  background-color: #FF0019;
  color: white;
  border-radius: 8px;
  box-shadow: none;
  border: none;
}
body.wp-admin .wp-core-ui .button:disabled, body.wp-admin .wp-core-ui .button.disabled,
.wp-core-ui .button.button:disabled,
.wp-core-ui .button.button.disabled {
  background-color: #E4E4E6;
  color: #262930;
}
body.wp-admin .wp-core-ui .button.button-primary,
.wp-core-ui .button.button.button-primary {
  background-color: #FF0019;
}
body.wp-admin .wp-core-ui .button.button-primary:hover:not(:disabled), body.wp-admin .wp-core-ui .button.button-primary:focus:not(:disabled),
.wp-core-ui .button.button.button-primary:hover:not(:disabled),
.wp-core-ui .button.button.button-primary:focus:not(:disabled) {
  background-color: #CA0014;
}
body.wp-admin .wp-core-ui .button.button-secondary,
.wp-core-ui .button.button.button-secondary {
  padding: 18px 24px;
  font-size: 15px;
  line-height: 20px;
}

.comment-form .form-submit input[type=submit] {
  padding: 24px 48px 24px 28px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 8px;
}
.comment-form .form-submit input[type=submit]:hover:not(:disabled) {
  border-radius: 16px;
}

.search-form .search-submit {
  padding: 18px 32px;
  font-size: 15px;
  line-height: 20px;
  border-radius: 4px;
}
.search-form .search-submit:hover:not(:disabled) {
  border-radius: 8px;
}

body.woocommerce .single_add_to_cart_button.button,
body.woocommerce button.single_add_to_cart_button,
body.woocommerce-page .single_add_to_cart_button.button,
body.woocommerce-page button.single_add_to_cart_button {
  background-color: #262930;
  color: white;
  padding: 18px 32px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 4px;
  width: 100%;
  border: none;
  box-shadow: none;
  text-shadow: none;
}
body.woocommerce .single_add_to_cart_button.button:hover:not(:disabled), body.woocommerce .single_add_to_cart_button.button:focus:not(:disabled),
body.woocommerce button.single_add_to_cart_button:hover:not(:disabled),
body.woocommerce button.single_add_to_cart_button:focus:not(:disabled),
body.woocommerce-page .single_add_to_cart_button.button:hover:not(:disabled),
body.woocommerce-page .single_add_to_cart_button.button:focus:not(:disabled),
body.woocommerce-page button.single_add_to_cart_button:hover:not(:disabled),
body.woocommerce-page button.single_add_to_cart_button:focus:not(:disabled) {
  background-color: #FF0019;
  color: white;
  border-radius: 16px;
  box-shadow: none;
}
body.woocommerce .single_add_to_cart_button.button:disabled, body.woocommerce .single_add_to_cart_button.button.disabled,
body.woocommerce button.single_add_to_cart_button:disabled,
body.woocommerce button.single_add_to_cart_button.disabled,
body.woocommerce-page .single_add_to_cart_button.button:disabled,
body.woocommerce-page .single_add_to_cart_button.button.disabled,
body.woocommerce-page button.single_add_to_cart_button:disabled,
body.woocommerce-page button.single_add_to_cart_button.disabled {
  background-color: #E4E4E6;
  color: #262930;
  opacity: 0.32;
}
body.woocommerce .single_add_to_cart_button.button.loading,
body.woocommerce button.single_add_to_cart_button.loading,
body.woocommerce-page .single_add_to_cart_button.button.loading,
body.woocommerce-page button.single_add_to_cart_button.loading {
  opacity: 0.6;
  pointer-events: none;
}
body.woocommerce .single_add_to_cart_button.button.loading::after,
body.woocommerce button.single_add_to_cart_button.loading::after,
body.woocommerce-page .single_add_to_cart_button.button.loading::after,
body.woocommerce-page button.single_add_to_cart_button.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 8px;
}
body.woocommerce .checkout-button.button,
body.woocommerce button.checkout-button,
body.woocommerce #place_order.button,
body.woocommerce-page .checkout-button.button,
body.woocommerce-page button.checkout-button,
body.woocommerce-page #place_order.button {
  background-color: #262930;
  color: white;
  padding: 24px 48px 24px 28px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 8px;
  width: 100%;
  border: none;
  box-shadow: none;
  text-shadow: none;
}
body.woocommerce .checkout-button.button:hover:not(:disabled), body.woocommerce .checkout-button.button:focus:not(:disabled),
body.woocommerce button.checkout-button:hover:not(:disabled),
body.woocommerce button.checkout-button:focus:not(:disabled),
body.woocommerce #place_order.button:hover:not(:disabled),
body.woocommerce #place_order.button:focus:not(:disabled),
body.woocommerce-page .checkout-button.button:hover:not(:disabled),
body.woocommerce-page .checkout-button.button:focus:not(:disabled),
body.woocommerce-page button.checkout-button:hover:not(:disabled),
body.woocommerce-page button.checkout-button:focus:not(:disabled),
body.woocommerce-page #place_order.button:hover:not(:disabled),
body.woocommerce-page #place_order.button:focus:not(:disabled) {
  background-color: #FF0019;
  color: white;
  border-radius: 16px;
  box-shadow: none;
}
body.woocommerce .checkout-button.button:disabled, body.woocommerce .checkout-button.button.disabled,
body.woocommerce button.checkout-button:disabled,
body.woocommerce button.checkout-button.disabled,
body.woocommerce #place_order.button:disabled,
body.woocommerce #place_order.button.disabled,
body.woocommerce-page .checkout-button.button:disabled,
body.woocommerce-page .checkout-button.button.disabled,
body.woocommerce-page button.checkout-button:disabled,
body.woocommerce-page button.checkout-button.disabled,
body.woocommerce-page #place_order.button:disabled,
body.woocommerce-page #place_order.button.disabled {
  background-color: #E4E4E6;
  color: #262930;
}
body.woocommerce .button[name=update_cart].button,
body.woocommerce-page .button[name=update_cart].button {
  background-color: #F7F9FB;
  color: #262930;
  border: 1px solid #F0F1F5;
  padding: 18px 32px;
  font-size: 15px;
  line-height: 20px;
  border-radius: 4px;
  box-shadow: none;
  text-shadow: none;
}
body.woocommerce .button[name=update_cart].button:hover:not(:disabled), body.woocommerce .button[name=update_cart].button:focus:not(:disabled),
body.woocommerce-page .button[name=update_cart].button:hover:not(:disabled),
body.woocommerce-page .button[name=update_cart].button:focus:not(:disabled) {
  background-color: #FF0019;
  color: white;
  border-color: #FF0019;
  border-radius: 8px;
  box-shadow: none;
}
body.woocommerce .button[name=update_cart].button:disabled, body.woocommerce .button[name=update_cart].button.disabled,
body.woocommerce-page .button[name=update_cart].button:disabled,
body.woocommerce-page .button[name=update_cart].button.disabled {
  background-color: #E4E4E6;
  color: #262930;
  border-color: transparent;
}
body.woocommerce .button[name=apply_coupon].button,
body.woocommerce-page .button[name=apply_coupon].button {
  background-color: #F7F9FB;
  color: #262930;
  border: 1px solid #F0F1F5;
  padding: 18px 32px;
  font-size: 15px;
  line-height: 20px;
  border-radius: 4px;
  box-shadow: none;
  text-shadow: none;
}
body.woocommerce .button[name=apply_coupon].button:hover:not(:disabled), body.woocommerce .button[name=apply_coupon].button:focus:not(:disabled),
body.woocommerce-page .button[name=apply_coupon].button:hover:not(:disabled),
body.woocommerce-page .button[name=apply_coupon].button:focus:not(:disabled) {
  background-color: #FF0019;
  color: white;
  border-color: #FF0019;
  border-radius: 8px;
  box-shadow: none;
}
body.woocommerce .button[name=apply_coupon].button:disabled, body.woocommerce .button[name=apply_coupon].button.disabled,
body.woocommerce-page .button[name=apply_coupon].button:disabled,
body.woocommerce-page .button[name=apply_coupon].button.disabled {
  background-color: #E4E4E6;
  color: #262930;
  border-color: transparent;
}
body.woocommerce a.wc-backward,
body.woocommerce-page a.wc-backward {
  background-color: #F7F9FB;
  color: #262930;
  border: 1px solid #F0F1F5;
  padding: 18px 32px;
  font-size: 15px;
  line-height: 20px;
  border-radius: 4px;
  box-shadow: none;
  text-shadow: none;
}
body.woocommerce a.wc-backward:hover:not(:disabled), body.woocommerce a.wc-backward:focus:not(:disabled),
body.woocommerce-page a.wc-backward:hover:not(:disabled),
body.woocommerce-page a.wc-backward:focus:not(:disabled) {
  background-color: #FF0019;
  color: white;
  border-color: #FF0019;
  border-radius: 8px;
  box-shadow: none;
}
body.woocommerce .woocommerce-form-login button[type=submit].button,
body.woocommerce .woocommerce-form-login .button[type=submit],
body.woocommerce .woocommerce-form-register button[type=submit].button,
body.woocommerce .woocommerce-form-register .button[type=submit],
body.woocommerce-page .woocommerce-form-login button[type=submit].button,
body.woocommerce-page .woocommerce-form-login .button[type=submit],
body.woocommerce-page .woocommerce-form-register button[type=submit].button,
body.woocommerce-page .woocommerce-form-register .button[type=submit] {
  background-color: #262930;
  color: white;
  padding: 24px 48px 24px 28px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 8px;
  width: 100%;
  border: none;
  box-shadow: none;
  text-shadow: none;
}
body.woocommerce .woocommerce-form-login button[type=submit].button:hover:not(:disabled), body.woocommerce .woocommerce-form-login button[type=submit].button:focus:not(:disabled),
body.woocommerce .woocommerce-form-login .button[type=submit]:hover:not(:disabled),
body.woocommerce .woocommerce-form-login .button[type=submit]:focus:not(:disabled),
body.woocommerce .woocommerce-form-register button[type=submit].button:hover:not(:disabled),
body.woocommerce .woocommerce-form-register button[type=submit].button:focus:not(:disabled),
body.woocommerce .woocommerce-form-register .button[type=submit]:hover:not(:disabled),
body.woocommerce .woocommerce-form-register .button[type=submit]:focus:not(:disabled),
body.woocommerce-page .woocommerce-form-login button[type=submit].button:hover:not(:disabled),
body.woocommerce-page .woocommerce-form-login button[type=submit].button:focus:not(:disabled),
body.woocommerce-page .woocommerce-form-login .button[type=submit]:hover:not(:disabled),
body.woocommerce-page .woocommerce-form-login .button[type=submit]:focus:not(:disabled),
body.woocommerce-page .woocommerce-form-register button[type=submit].button:hover:not(:disabled),
body.woocommerce-page .woocommerce-form-register button[type=submit].button:focus:not(:disabled),
body.woocommerce-page .woocommerce-form-register .button[type=submit]:hover:not(:disabled),
body.woocommerce-page .woocommerce-form-register .button[type=submit]:focus:not(:disabled) {
  background-color: #FF0019;
  color: white;
  border-radius: 16px;
  box-shadow: none;
}
body.woocommerce .woocommerce-form-login button[type=submit].button:disabled, body.woocommerce .woocommerce-form-login button[type=submit].button.disabled,
body.woocommerce .woocommerce-form-login .button[type=submit]:disabled,
body.woocommerce .woocommerce-form-login .button[type=submit].disabled,
body.woocommerce .woocommerce-form-register button[type=submit].button:disabled,
body.woocommerce .woocommerce-form-register button[type=submit].button.disabled,
body.woocommerce .woocommerce-form-register .button[type=submit]:disabled,
body.woocommerce .woocommerce-form-register .button[type=submit].disabled,
body.woocommerce-page .woocommerce-form-login button[type=submit].button:disabled,
body.woocommerce-page .woocommerce-form-login button[type=submit].button.disabled,
body.woocommerce-page .woocommerce-form-login .button[type=submit]:disabled,
body.woocommerce-page .woocommerce-form-login .button[type=submit].disabled,
body.woocommerce-page .woocommerce-form-register button[type=submit].button:disabled,
body.woocommerce-page .woocommerce-form-register button[type=submit].button.disabled,
body.woocommerce-page .woocommerce-form-register .button[type=submit]:disabled,
body.woocommerce-page .woocommerce-form-register .button[type=submit].disabled {
  background-color: #E4E4E6;
  color: #262930;
}
body.woocommerce .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a.button,
body.woocommerce .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a,
body.woocommerce-page .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a.button,
body.woocommerce-page .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a {
  background-color: #F7F9FB;
  color: #262930;
  border: 1px solid #F0F1F5;
  display: block;
  padding: 18px 32px;
  font-size: 15px;
  line-height: 20px;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 8px;
  box-shadow: none;
  text-shadow: none;
}
body.woocommerce .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a.button:hover:not(:disabled), body.woocommerce .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a.button:focus:not(:disabled),
body.woocommerce .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a:hover:not(:disabled),
body.woocommerce .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a:focus:not(:disabled),
body.woocommerce-page .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a.button:hover:not(:disabled),
body.woocommerce-page .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a.button:focus:not(:disabled),
body.woocommerce-page .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a:hover:not(:disabled),
body.woocommerce-page .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a:focus:not(:disabled) {
  background-color: #FF0019;
  color: white;
  border-color: #FF0019;
  border-radius: 8px;
  box-shadow: none;
}
body.woocommerce .woocommerce-orders-table .button.button,
body.woocommerce-page .woocommerce-orders-table .button.button {
  background-color: #F7F9FB;
  color: #262930;
  border: 1px solid #F0F1F5;
  padding: 4px 8px;
  font-size: 12px;
  line-height: 16px;
  border-radius: 4px;
  box-shadow: none;
  text-shadow: none;
}
body.woocommerce .woocommerce-orders-table .button.button:hover:not(:disabled), body.woocommerce .woocommerce-orders-table .button.button:focus:not(:disabled),
body.woocommerce-page .woocommerce-orders-table .button.button:hover:not(:disabled),
body.woocommerce-page .woocommerce-orders-table .button.button:focus:not(:disabled) {
  background-color: #FF0019;
  color: white;
  border-color: #FF0019;
  box-shadow: none;
}
body.woocommerce .variations .button.button,
body.woocommerce-page .variations .button.button {
  background-color: #F7F9FB;
  color: #262930;
  border: 1px solid #F0F1F5;
  padding: 18px 32px;
  font-size: 15px;
  line-height: 20px;
  border-radius: 4px;
  box-shadow: none;
  text-shadow: none;
}
body.woocommerce .variations .button.button:hover:not(:disabled), body.woocommerce .variations .button.button:focus:not(:disabled),
body.woocommerce-page .variations .button.button:hover:not(:disabled),
body.woocommerce-page .variations .button.button:focus:not(:disabled) {
  background-color: #FF0019;
  color: white;
  border-color: #FF0019;
  border-radius: 8px;
  box-shadow: none;
}
body.woocommerce .variations .button.button:disabled, body.woocommerce .variations .button.button.disabled,
body.woocommerce-page .variations .button.button:disabled,
body.woocommerce-page .variations .button.button.disabled {
  background-color: #E4E4E6;
  color: #262930;
  border-color: transparent;
}

.widget_shopping_cart .button.button,
.woocommerce .widget_shopping_cart .button.button {
  background-color: #262930;
  color: white;
  padding: 18px 32px;
  font-size: 15px;
  line-height: 20px;
  border-radius: 4px;
  width: 100%;
  margin-bottom: 8px;
  border: none;
  box-shadow: none;
  text-shadow: none;
}
.widget_shopping_cart .button.button:hover:not(:disabled), .widget_shopping_cart .button.button:focus:not(:disabled),
.woocommerce .widget_shopping_cart .button.button:hover:not(:disabled),
.woocommerce .widget_shopping_cart .button.button:focus:not(:disabled) {
  background-color: #FF0019;
  color: white;
  border-radius: 8px;
  box-shadow: none;
}
.widget_shopping_cart .button.button:disabled, .widget_shopping_cart .button.button.disabled,
.woocommerce .widget_shopping_cart .button.button:disabled,
.woocommerce .widget_shopping_cart .button.button.disabled {
  background-color: #E4E4E6;
  color: #262930;
}
.widget_shopping_cart .button.button.checkout,
.woocommerce .widget_shopping_cart .button.button.checkout {
  background-color: #FF0019;
}
.widget_shopping_cart .button.button.checkout:hover:not(:disabled), .widget_shopping_cart .button.button.checkout:focus:not(:disabled),
.woocommerce .widget_shopping_cart .button.button.checkout:hover:not(:disabled),
.woocommerce .widget_shopping_cart .button.button.checkout:focus:not(:disabled) {
  background-color: #CA0014;
}

body.woocommerce-checkout #place_order.button,
body.woocommerce-page.woocommerce-checkout #place_order.button {
  background-color: #FF0019;
  color: white;
  padding: 24px 48px 24px 28px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 8px;
  width: 100%;
  border: none;
  box-shadow: none;
  text-shadow: none;
}
body.woocommerce-checkout #place_order.button:hover:not(:disabled), body.woocommerce-checkout #place_order.button:focus:not(:disabled),
body.woocommerce-page.woocommerce-checkout #place_order.button:hover:not(:disabled),
body.woocommerce-page.woocommerce-checkout #place_order.button:focus:not(:disabled) {
  background-color: #CA0014;
  color: white;
  border-radius: 16px;
  box-shadow: none;
}
body.woocommerce-checkout #place_order.button:disabled, body.woocommerce-checkout #place_order.button.disabled,
body.woocommerce-page.woocommerce-checkout #place_order.button:disabled,
body.woocommerce-page.woocommerce-checkout #place_order.button.disabled {
  background-color: #E4E4E6;
  color: #262930;
}

body.woocommerce a.button,
body.woocommerce button.button,
body.woocommerce input.button,
body.woocommerce .button,
body.woocommerce-page a.button,
body.woocommerce-page button.button,
body.woocommerce-page input.button,
body.woocommerce-page .button {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: none;
  box-shadow: none;
  text-shadow: none;
  border: none;
}
body.woocommerce a.button:hover, body.woocommerce a.button:focus,
body.woocommerce button.button:hover,
body.woocommerce button.button:focus,
body.woocommerce input.button:hover,
body.woocommerce input.button:focus,
body.woocommerce .button:hover,
body.woocommerce .button:focus,
body.woocommerce-page a.button:hover,
body.woocommerce-page a.button:focus,
body.woocommerce-page button.button:hover,
body.woocommerce-page button.button:focus,
body.woocommerce-page input.button:hover,
body.woocommerce-page input.button:focus,
body.woocommerce-page .button:hover,
body.woocommerce-page .button:focus {
  box-shadow: none;
  text-shadow: none;
}
body.woocommerce .product .add_to_cart_button,
body.woocommerce .product a.button.add_to_cart_button,
body.woocommerce-page .product .add_to_cart_button,
body.woocommerce-page .product a.button.add_to_cart_button {
  background-color: #262930;
  color: white;
  padding: 18px 32px;
  font-size: 15px;
  line-height: 20px;
  border-radius: 4px;
  border: none;
  box-shadow: none;
  text-shadow: none;
}
body.woocommerce .product .add_to_cart_button:hover:not(:disabled), body.woocommerce .product .add_to_cart_button:focus:not(:disabled),
body.woocommerce .product a.button.add_to_cart_button:hover:not(:disabled),
body.woocommerce .product a.button.add_to_cart_button:focus:not(:disabled),
body.woocommerce-page .product .add_to_cart_button:hover:not(:disabled),
body.woocommerce-page .product .add_to_cart_button:focus:not(:disabled),
body.woocommerce-page .product a.button.add_to_cart_button:hover:not(:disabled),
body.woocommerce-page .product a.button.add_to_cart_button:focus:not(:disabled) {
  background-color: #FF0019;
  color: white;
  border-radius: 8px;
  box-shadow: none;
}
body.woocommerce .product .add_to_cart_button.loading,
body.woocommerce .product a.button.add_to_cart_button.loading,
body.woocommerce-page .product .add_to_cart_button.loading,
body.woocommerce-page .product a.button.add_to_cart_button.loading {
  opacity: 0.6;
  pointer-events: none;
}
body.woocommerce .product .add_to_cart_button.loading::after,
body.woocommerce .product a.button.add_to_cart_button.loading::after,
body.woocommerce-page .product .add_to_cart_button.loading::after,
body.woocommerce-page .product a.button.add_to_cart_button.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 8px;
}
body.woocommerce .added_to_cart,
body.woocommerce a.added_to_cart,
body.woocommerce-page .added_to_cart,
body.woocommerce-page a.added_to_cart {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  body.woocommerce .added_to_cart,
  body.woocommerce a.added_to_cart,
  body.woocommerce-page .added_to_cart,
  body.woocommerce-page a.added_to_cart {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  body.woocommerce .added_to_cart,
  body.woocommerce a.added_to_cart,
  body.woocommerce-page .added_to_cart,
  body.woocommerce-page a.added_to_cart {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  body.woocommerce .added_to_cart,
  body.woocommerce a.added_to_cart,
  body.woocommerce-page .added_to_cart,
  body.woocommerce-page a.added_to_cart {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
body.woocommerce .added_to_cart,
body.woocommerce a.added_to_cart,
body.woocommerce-page .added_to_cart,
body.woocommerce-page a.added_to_cart {
  display: inline;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-shadow: none;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.125em;
  transition: color 0.2s ease;
  cursor: pointer;
}
body.woocommerce .added_to_cart:hover, body.woocommerce .added_to_cart:focus,
body.woocommerce a.added_to_cart:hover,
body.woocommerce a.added_to_cart:focus,
body.woocommerce-page .added_to_cart:hover,
body.woocommerce-page .added_to_cart:focus,
body.woocommerce-page a.added_to_cart:hover,
body.woocommerce-page a.added_to_cart:focus {
  color: #FF4F60;
  background: none;
  border: none;
  box-shadow: none;
}
body.woocommerce .added_to_cart:focus-visible,
body.woocommerce a.added_to_cart:focus-visible,
body.woocommerce-page .added_to_cart:focus-visible,
body.woocommerce-page a.added_to_cart:focus-visible {
  outline: 2px solid #FF0019;
  outline-offset: 2px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
  background-color: #262930;
  color: white;
  padding: 24px 48px 24px 28px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 8px;
  border: none;
  box-shadow: none;
  text-shadow: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: none;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover:not(:disabled), .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:focus:not(:disabled), .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:active:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:hover:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:focus:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:active:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:hover:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:focus:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:active:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:hover:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:focus:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:active:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:hover:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:focus:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:active:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:hover:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:focus:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:active:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:hover:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:focus:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:active:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:hover:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:focus:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:active:not(:disabled) {
  background-color: #FF0019;
  color: white;
  border-radius: 16px;
  box-shadow: none;
  border: none;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:disabled, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.disabled {
  background-color: #E4E4E6;
  color: #262930;
  opacity: 0.32;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.button-small, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.btn-small,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.button-small,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-small,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.button-small,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.btn-small,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.button-small,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.btn-small,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.button-small,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.btn-small,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.button-small,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.btn-small,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.button-small,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.btn-small,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.button-small,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.btn-small {
  padding: 18px 32px;
  font-size: 15px;
  line-height: 20px;
  border-radius: 4px;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.button-small:hover:not(:disabled), .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.button-small:focus:not(:disabled), .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.btn-small:hover:not(:disabled), .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.btn-small:focus:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.button-small:hover:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.button-small:focus:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-small:hover:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-small:focus:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.button-small:hover:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.button-small:focus:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.btn-small:hover:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.btn-small:focus:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.button-small:hover:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.button-small:focus:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.btn-small:hover:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.btn-small:focus:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.button-small:hover:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.button-small:focus:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.btn-small:hover:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.btn-small:focus:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.button-small:hover:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.button-small:focus:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.btn-small:hover:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.btn-small:focus:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.button-small:hover:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.button-small:focus:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.btn-small:hover:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.btn-small:focus:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.button-small:hover:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.button-small:focus:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.btn-small:hover:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.btn-small:focus:not(:disabled) {
  border-radius: 8px;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.button-border, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.btn-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.button-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.button-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.btn-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.button-border,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.btn-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.button-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.btn-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.button-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.btn-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.button-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.btn-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.button-border,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.btn-border {
  padding: 24px 48px 24px 28px;
  font-size: 18px;
  line-height: 24px;
  border-radius: 8px;
}
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.button-border:hover:not(:disabled), .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.button-border:focus:not(:disabled), .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.btn-border:hover:not(:disabled), .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.btn-border:focus:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.button-border:hover:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.button-border:focus:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-border:hover:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-border:focus:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.button-border:hover:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.button-border:focus:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.btn-border:hover:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.btn-border:focus:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.button-border:hover:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.button-border:focus:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.btn-border:hover:not(:disabled),
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.btn-border:focus:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.button-border:hover:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.button-border:focus:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.btn-border:hover:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.btn-border:focus:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.button-border:hover:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.button-border:focus:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.btn-border:hover:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.btn-border:focus:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.button-border:hover:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.button-border:focus:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.btn-border:hover:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.btn-border:focus:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.button-border:hover:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.button-border:focus:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.btn-border:hover:not(:disabled),
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.btn-border:focus:not(:disabled) {
  border-radius: 16px;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:disabled[disabled]:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:disabled[disabled]:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:disabled[disabled]:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt.disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.alt:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.alt:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.alt:disabled[disabled]:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt.disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt.disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled:hover,
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled[disabled],
:where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.alt:disabled[disabled]:hover {
  background-color: #E4E4E6;
  color: #262930;
  opacity: 0.32;
  cursor: not-allowed;
}

@media (min-width: 992px) and (max-width: 1919px) {
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
    padding: 20px 48px 20px 24px;
    font-size: 15px;
    line-height: 20px;
  }
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.button-small, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.btn-small,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.button-small,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-small,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.button-small,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.btn-small,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.button-small,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.btn-small,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.button-small,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.btn-small,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.button-small,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.btn-small,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.button-small,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.btn-small,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.button-small,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.btn-small {
    padding: 18px 24px;
    font-size: 12px;
    line-height: 16px;
  }
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.button-border, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.btn-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.button-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.button-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.btn-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.button-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.btn-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.button-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.btn-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.button-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.btn-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.button-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.btn-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.button-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.btn-border {
    padding: 20px 48px 20px 24px;
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 991px) {
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button {
    padding: 20px 40px 20px 24px;
    font-size: 18px;
    line-height: 24px;
  }
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.button-small, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.btn-small,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.button-small,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-small,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.button-small,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.btn-small,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.button-small,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.btn-small,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.button-small,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.btn-small,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.button-small,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.btn-small,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.button-small,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.btn-small,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.button-small,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.btn-small {
    padding: 18px 24px;
    font-size: 15px;
    line-height: 20px;
  }
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.button-border, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.btn-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.button-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.button-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.btn-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.button-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.btn-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.button-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.btn-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.button-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.btn-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.button-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.btn-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.button-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.btn-border {
    padding: 20px 40px 20px 24px;
    font-size: 18px;
    line-height: 24px;
  }
}
.icon-btn--cart,
a.icon-btn--cart, .icon-btn--round,
a.icon-btn--round, .icon-btn--solid,
a.icon-btn--solid, .icon-btn,
.icon-btn--outline,
a.icon-btn,
a.icon-btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  outline: none;
  box-sizing: border-box;
  flex-shrink: 0;
}
.icon-btn--cart:focus-visible, .icon-btn--round:focus-visible, .icon-btn--solid:focus-visible, .icon-btn:focus-visible,
.icon-btn--outline:focus-visible {
  outline: 2px solid #FF0019;
  outline-offset: 2px;
}
.icon-btn--cart:disabled, .icon-btn--round:disabled, .icon-btn--solid:disabled, .icon-btn:disabled,
.icon-btn--outline:disabled, .disabled.icon-btn--cart, .disabled.icon-btn--round, .disabled.icon-btn--solid, .disabled.icon-btn,
.disabled.icon-btn--outline {
  cursor: not-allowed;
  opacity: 0.5;
}
.icon-btn--cart .icon-btn__icon, .icon-btn--round .icon-btn__icon, .icon-btn--solid .icon-btn__icon, .icon-btn .icon-btn__icon,
.icon-btn--outline .icon-btn__icon, .icon-btn--cart svg, .icon-btn--round svg, .icon-btn--solid svg, .icon-btn svg,
.icon-btn--outline svg {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
}

.icon-btn,
.icon-btn--outline,
a.icon-btn,
a.icon-btn--outline {
  background-color: #F7F9FB;
  border: 1px solid #E4E4E6;
  border-radius: 4px;
  text-decoration: none;
}
.icon-btn:hover:not(:disabled):not(.disabled),
.icon-btn--outline:hover:not(:disabled):not(.disabled),
a.icon-btn:hover:not(:disabled):not(.disabled),
a.icon-btn--outline:hover:not(:disabled):not(.disabled) {
  background-color: #FF0019;
  border-color: #FF0019;
}
.icon-btn:hover:not(:disabled):not(.disabled) .icon-btn__icon, .icon-btn:hover:not(:disabled):not(.disabled) svg,
.icon-btn--outline:hover:not(:disabled):not(.disabled) .icon-btn__icon,
.icon-btn--outline:hover:not(:disabled):not(.disabled) svg,
a.icon-btn:hover:not(:disabled):not(.disabled) .icon-btn__icon,
a.icon-btn:hover:not(:disabled):not(.disabled) svg,
a.icon-btn--outline:hover:not(:disabled):not(.disabled) .icon-btn__icon,
a.icon-btn--outline:hover:not(:disabled):not(.disabled) svg {
  filter: brightness(0) invert(1);
}
.icon-btn.selected,
.icon-btn--outline.selected,
a.icon-btn.selected,
a.icon-btn--outline.selected {
  background-color: #FF0019;
  border-color: #FF0019;
}
.icon-btn.selected .icon-btn__icon, .icon-btn.selected svg,
.icon-btn--outline.selected .icon-btn__icon,
.icon-btn--outline.selected svg,
a.icon-btn.selected .icon-btn__icon,
a.icon-btn.selected svg,
a.icon-btn--outline.selected .icon-btn__icon,
a.icon-btn--outline.selected svg {
  filter: brightness(0) invert(1);
}

.icon-btn--solid,
a.icon-btn--solid {
  background-color: #262930;
  border-radius: 4px;
  padding: 12px;
  text-decoration: none;
}
.icon-btn--solid .icon-btn__icon, .icon-btn--solid svg,
a.icon-btn--solid .icon-btn__icon,
a.icon-btn--solid svg {
  filter: brightness(0) invert(1);
}
.icon-btn--solid:hover:not(:disabled):not(.disabled),
a.icon-btn--solid:hover:not(:disabled):not(.disabled) {
  background-color: #FF0019;
}
.icon-btn--solid.selected,
a.icon-btn--solid.selected {
  background-color: #FF0019;
}

.icon-btn--round,
a.icon-btn--round {
  background-color: #262930;
  border-radius: 52px;
  padding: 8px;
  text-decoration: none;
}
.icon-btn--round .icon-btn__icon, .icon-btn--round svg,
a.icon-btn--round .icon-btn__icon,
a.icon-btn--round svg {
  filter: brightness(0) invert(1);
}
.icon-btn--round:hover:not(:disabled):not(.disabled),
a.icon-btn--round:hover:not(:disabled):not(.disabled) {
  background-color: #FF0019;
}
.icon-btn--round.selected,
a.icon-btn--round.selected {
  background-color: #FF0019;
}

.icon-btn--cart,
a.icon-btn--cart {
  background-color: #262930;
  border-radius: 4px;
  padding: 12px;
  text-decoration: none;
}
.icon-btn--cart .icon-btn__icon, .icon-btn--cart svg,
a.icon-btn--cart .icon-btn__icon,
a.icon-btn--cart svg {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
}
.icon-btn--cart:hover:not(:disabled):not(.disabled),
a.icon-btn--cart:hover:not(:disabled):not(.disabled) {
  background-color: #FF0019;
}
.icon-btn--cart.selected,
a.icon-btn--cart.selected {
  background-color: #FF0019;
}

@media (max-width: 1919px) {
  .icon-btn,
  .icon-btn--outline {
    padding: 12px;
  }
  .icon-btn .icon-btn__icon, .icon-btn svg,
  .icon-btn--outline .icon-btn__icon,
  .icon-btn--outline svg {
    width: 24px;
    height: 24px;
  }
  .icon-btn--solid {
    padding: 12px;
  }
  .icon-btn--round {
    padding: 4px;
  }
  .icon-btn--cart {
    padding: 12px;
  }
  .icon-btn--cart .icon-btn__icon, .icon-btn--cart svg {
    width: 24px;
    height: 24px;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (prefers-contrast: high) {
  .woocommerce-checkout #payment div.place-order #place_order,
  .woocommerce #payment div.place-order #place_order,
  #payment div.place-order #place_order, .checkout-coupon-row .checkout-coupon-field .btn-coupon, .woocommerce-cart .return-to-shop a.button, .woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button,
  .cart_totals .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .woocommerce-cart-form tbody tr.actions td button[name=update_cart],
  .woocommerce-cart .shop_table.cart tbody tr.actions td button[name=update_cart],
  .woocommerce .shop_table.cart tbody tr.actions td button[name=update_cart],
  table.shop_table.cart tbody tr.actions td button[name=update_cart],
  .shop_table.woocommerce-cart-form__contents tbody tr.actions td button[name=update_cart], .sidebar-cart__button--primary, .file-input-wrapper .file-input-button, .btn-primary-small, .btn-primary-medium, button,
  input[type=submit],
  input[type=button],
  input[type=reset],
  a.button,
  .button, .btn-primary-medium-with-icon, .btn-primary-medium-compact-with-icon, .btn-primary-medium-mobile-with-icon, .comment-form .form-submit input[type=submit], .search-form .search-submit {
    border: 2px solid currentColor;
  }
  .woocommerce-cart .shipping-calculator-form button, .woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon button.button,
  .woocommerce-cart .shop_table.cart tbody tr.actions td .coupon button.button,
  .woocommerce .shop_table.cart tbody tr.actions td .coupon button.button,
  table.shop_table.cart tbody tr.actions td .coupon button.button,
  .shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon button.button, .sidebar-cart__button--secondary, .btn-border-small, .btn-border-medium, button.button-border, button.btn-border,
  input[type=submit].button-border,
  input[type=submit].btn-border,
  input[type=button].button-border,
  input[type=button].btn-border,
  input[type=reset].button-border,
  input[type=reset].btn-border,
  a.button.button-border,
  a.button.btn-border,
  .button.button-border,
  .button.btn-border, body .wp-block-button.is-style-outline .wp-block-button__link,
  .wp-site-blocks .wp-block-button.is-style-outline .wp-block-button__link, body.wp-admin .wp-core-ui .button.button-secondary,
  .wp-core-ui .button.button.button-secondary, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.button-border, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.btn-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.button-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.button-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.btn-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.button-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.btn-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.button-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.btn-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.button-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.btn-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.button-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.btn-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.button-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.btn-border {
    border-width: 2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sidebar-cart__button, .woocommerce-checkout #payment div.place-order #place_order,
  .woocommerce #payment div.place-order #place_order,
  #payment div.place-order #place_order, .checkout-coupon-row .checkout-coupon-field .btn-coupon, .woocommerce-cart .return-to-shop a.button, .woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button,
  .cart_totals .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .woocommerce-cart-form tbody tr.actions td button[name=update_cart],
  .woocommerce-cart .shop_table.cart tbody tr.actions td button[name=update_cart],
  .woocommerce .shop_table.cart tbody tr.actions td button[name=update_cart],
  table.shop_table.cart tbody tr.actions td button[name=update_cart],
  .shop_table.woocommerce-cart-form__contents tbody tr.actions td button[name=update_cart], .sidebar-cart__button--primary, .file-input-wrapper .file-input-button, .btn-primary-small, .btn-primary-medium, .woocommerce-checkout #payment div.place-order #place_order,
  .woocommerce #payment div.place-order #place_order,
  #payment div.place-order #place_order, .woocommerce-cart .return-to-shop a.button, .woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button,
  .cart_totals .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .shipping-calculator-form button, .woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon button.button,
  .woocommerce-cart .shop_table.cart tbody tr.actions td .coupon button.button,
  .woocommerce .shop_table.cart tbody tr.actions td .coupon button.button,
  table.shop_table.cart tbody tr.actions td .coupon button.button,
  .shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon button.button, .sidebar-cart__button--secondary, .btn-border-small, .btn-border-medium, button,
  input[type=submit],
  input[type=button],
  input[type=reset],
  a.button,
  .button, button.button-border, button.btn-border,
  input[type=submit].button-border,
  input[type=submit].btn-border,
  input[type=button].button-border,
  input[type=button].btn-border,
  input[type=reset].button-border,
  input[type=reset].btn-border,
  a.button.button-border,
  a.button.btn-border,
  .button.button-border,
  .button.btn-border, .btn-primary-medium-with-icon, .btn-primary-medium-compact-with-icon, .btn-primary-medium-mobile-with-icon, body .wp-block-button .wp-block-button__link,
  .wp-site-blocks .wp-block-button .wp-block-button__link, body .wp-block-button.is-style-outline .wp-block-button__link,
  .wp-site-blocks .wp-block-button.is-style-outline .wp-block-button__link, body.wp-admin .wp-core-ui .button,
  .wp-core-ui .button.button, body.wp-admin .wp-core-ui .button.button-secondary,
  .wp-core-ui .button.button.button-secondary, .comment-form .form-submit input[type=submit], .search-form .search-submit, body.woocommerce .single_add_to_cart_button.button,
  body.woocommerce button.single_add_to_cart_button,
  body.woocommerce-page .single_add_to_cart_button.button,
  body.woocommerce-page button.single_add_to_cart_button, body.woocommerce .checkout-button.button,
  body.woocommerce button.checkout-button,
  body.woocommerce #place_order.button,
  body.woocommerce-page .checkout-button.button,
  body.woocommerce-page button.checkout-button,
  body.woocommerce-page #place_order.button, body.woocommerce .button[name=update_cart].button,
  body.woocommerce-page .button[name=update_cart].button, body.woocommerce .button[name=apply_coupon].button,
  body.woocommerce-page .button[name=apply_coupon].button, body.woocommerce a.wc-backward,
  body.woocommerce-page a.wc-backward, body.woocommerce .woocommerce-form-login button[type=submit].button,
  body.woocommerce .woocommerce-form-login .button[type=submit],
  body.woocommerce .woocommerce-form-register button[type=submit].button,
  body.woocommerce .woocommerce-form-register .button[type=submit],
  body.woocommerce-page .woocommerce-form-login button[type=submit].button,
  body.woocommerce-page .woocommerce-form-login .button[type=submit],
  body.woocommerce-page .woocommerce-form-register button[type=submit].button,
  body.woocommerce-page .woocommerce-form-register .button[type=submit], body.woocommerce .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a.button,
  body.woocommerce .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a,
  body.woocommerce-page .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a.button,
  body.woocommerce-page .woocommerce-MyAccount-navigation .woocommerce-MyAccount-navigation-link a, body.woocommerce .woocommerce-orders-table .button.button,
  body.woocommerce-page .woocommerce-orders-table .button.button, body.woocommerce .variations .button.button,
  body.woocommerce-page .variations .button.button, .widget_shopping_cart .button.button,
  .woocommerce .widget_shopping_cart .button.button, body.woocommerce-checkout #place_order.button,
  body.woocommerce-page.woocommerce-checkout #place_order.button, body.woocommerce .product .add_to_cart_button,
  body.woocommerce .product a.button.add_to_cart_button,
  body.woocommerce-page .product .add_to_cart_button,
  body.woocommerce-page .product a.button.add_to_cart_button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.button-border, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.btn-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.button-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.btn-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.button-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.btn-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.button-border,
  .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.btn-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.button-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce #respond input#submit.btn-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.button-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce a.button.btn-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.button-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce button.button.btn-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.button-border,
  :where(body:not(.woocommerce-block-theme-has-button-styles)):where(:not(.edit-post-visual-editor)) .woocommerce input.button.btn-border {
    transition: none;
  }
  .single_add_to_cart_button.loading::after,
  .add_to_cart_button.loading::after {
    animation: none;
  }
}
@media print {
  body .btn-primary-small,
  body .btn-primary-medium,
  body .woocommerce-checkout #payment div.place-order #place_order,
  .woocommerce-checkout #payment div.place-order body #place_order,
  body .woocommerce #payment div.place-order #place_order,
  .woocommerce #payment div.place-order body #place_order,
  body #payment div.place-order #place_order,
  #payment div.place-order body #place_order,
  body .woocommerce-cart .return-to-shop a.button,
  .woocommerce-cart .return-to-shop body a.button,
  body .woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button,
  .woocommerce-cart .cart_totals .wc-proceed-to-checkout body a.checkout-button,
  body .cart_totals .wc-proceed-to-checkout a.checkout-button,
  .cart_totals .wc-proceed-to-checkout body a.checkout-button,
  body .btn-border-small,
  body .btn-border-medium,
  body .btn-primary-medium-with-icon,
  body .btn-primary-medium-compact-with-icon,
  body .btn-primary-medium-mobile-with-icon,
  body .wp-block-button .wp-block-button__link,
  body.woocommerce .button,
  body.woocommerce-page .button {
    background: none;
    background-color: transparent;
    color: black;
    border: 1px solid black;
    text-decoration: none;
    box-shadow: none;
    text-shadow: none;
  }
}
/**
 * Form Fields Styles
 * 
 * Comprehensive styling for all WordPress and WooCommerce form fields
 * Based on the design system specifications from Figma
 * Uses typography mixins and variables from _typography.scss and _variables.scss
 */
.wp-block-search__button, #loginform .input,
#registerform .input,
#lostpasswordform .input, .file-input-wrapper .file-input-text, select,
.comment-form select,
#commentform select,
#loginform select,
#registerform select,
.woocommerce-input-wrapper select,
.woocommerce form .form-row select,
.woocommerce form .form-row .select,
.woocommerce-address-fields select,
.woocommerce .address-field select,
#billing_country,
#billing_state,
#shipping_country,
#shipping_state,
.woocommerce .country_to_state,
select.country_select,
select.state_select, input[type=number],
.woocommerce-input-wrapper input[type=number],
.woocommerce form .form-row input[type=number],
.woocommerce .quantity input[type=number],
.woocommerce-cart .quantity input[type=number],
.woocommerce-checkout .quantity input[type=number], textarea,
.comment-form textarea,
#commentform textarea,
#comment,
#loginform textarea,
#registerform textarea,
.wp-block-search__textarea,
.woocommerce-input-wrapper textarea,
.woocommerce form .form-row textarea,
.woocommerce-address-fields textarea, input[type=text],
input[type=email],
input[type=password],
input[type=search],
input[type=tel],
input[type=url],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=time],
input[type=week],
input[type=color],
.comment-form input[type=text],
.comment-form input[type=email],
.comment-form input[type=url],
.comment-form input[type=password],
#commentform input[type=text],
#commentform input[type=email],
#commentform input[type=url],
#loginform input[type=text],
#loginform input[type=password],
#registerform input[type=email],
#registerform input[type=text],
.wp-block-search__input,
.woocommerce-input-wrapper input[type=text],
.woocommerce-input-wrapper input[type=email],
.woocommerce-input-wrapper input[type=password],
.woocommerce-input-wrapper input[type=tel],
.woocommerce-input-wrapper input[type=url],
.woocommerce-input-wrapper input[type=date],
.woocommerce-input-wrapper input[type=datetime-local],
.woocommerce-input-wrapper input[type=month],
.woocommerce-input-wrapper input[type=time],
.woocommerce-input-wrapper input[type=week],
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row input[type=text],
.woocommerce form .form-row input[type=email],
.woocommerce form .form-row input[type=tel],
.woocommerce form .form-row input[type=password],
.woocommerce-address-fields input[type=text],
.woocommerce-address-fields input[type=email],
.woocommerce-address-fields input[type=tel] {
  display: block;
  width: 100%;
  padding: 8px 12px;
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: #262930;
}
@media (min-width: 1920px) {
  .wp-block-search__button, #loginform .input,
  #registerform .input,
  #lostpasswordform .input, .file-input-wrapper .file-input-text, select,
  .comment-form select,
  #commentform select,
  #loginform select,
  #registerform select,
  .woocommerce-input-wrapper select,
  .woocommerce form .form-row select,
  .woocommerce form .form-row .select,
  .woocommerce-address-fields select,
  .woocommerce .address-field select,
  #billing_country,
  #billing_state,
  #shipping_country,
  #shipping_state,
  .woocommerce .country_to_state,
  select.country_select,
  select.state_select, input[type=number],
  .woocommerce-input-wrapper input[type=number],
  .woocommerce form .form-row input[type=number],
  .woocommerce .quantity input[type=number],
  .woocommerce-cart .quantity input[type=number],
  .woocommerce-checkout .quantity input[type=number], textarea,
  .comment-form textarea,
  #commentform textarea,
  #comment,
  #loginform textarea,
  #registerform textarea,
  .wp-block-search__textarea,
  .woocommerce-input-wrapper textarea,
  .woocommerce form .form-row textarea,
  .woocommerce-address-fields textarea, input[type=text],
  input[type=email],
  input[type=password],
  input[type=search],
  input[type=tel],
  input[type=url],
  input[type=date],
  input[type=datetime],
  input[type=datetime-local],
  input[type=month],
  input[type=time],
  input[type=week],
  input[type=color],
  .comment-form input[type=text],
  .comment-form input[type=email],
  .comment-form input[type=url],
  .comment-form input[type=password],
  #commentform input[type=text],
  #commentform input[type=email],
  #commentform input[type=url],
  #loginform input[type=text],
  #loginform input[type=password],
  #registerform input[type=email],
  #registerform input[type=text],
  .wp-block-search__input,
  .woocommerce-input-wrapper input[type=text],
  .woocommerce-input-wrapper input[type=email],
  .woocommerce-input-wrapper input[type=password],
  .woocommerce-input-wrapper input[type=tel],
  .woocommerce-input-wrapper input[type=url],
  .woocommerce-input-wrapper input[type=date],
  .woocommerce-input-wrapper input[type=datetime-local],
  .woocommerce-input-wrapper input[type=month],
  .woocommerce-input-wrapper input[type=time],
  .woocommerce-input-wrapper input[type=week],
  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row input[type=text],
  .woocommerce form .form-row input[type=email],
  .woocommerce form .form-row input[type=tel],
  .woocommerce form .form-row input[type=password],
  .woocommerce-address-fields input[type=text],
  .woocommerce-address-fields input[type=email],
  .woocommerce-address-fields input[type=tel] {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .wp-block-search__button, #loginform .input,
  #registerform .input,
  #lostpasswordform .input, .file-input-wrapper .file-input-text, select,
  .comment-form select,
  #commentform select,
  #loginform select,
  #registerform select,
  .woocommerce-input-wrapper select,
  .woocommerce form .form-row select,
  .woocommerce form .form-row .select,
  .woocommerce-address-fields select,
  .woocommerce .address-field select,
  #billing_country,
  #billing_state,
  #shipping_country,
  #shipping_state,
  .woocommerce .country_to_state,
  select.country_select,
  select.state_select, input[type=number],
  .woocommerce-input-wrapper input[type=number],
  .woocommerce form .form-row input[type=number],
  .woocommerce .quantity input[type=number],
  .woocommerce-cart .quantity input[type=number],
  .woocommerce-checkout .quantity input[type=number], textarea,
  .comment-form textarea,
  #commentform textarea,
  #comment,
  #loginform textarea,
  #registerform textarea,
  .wp-block-search__textarea,
  .woocommerce-input-wrapper textarea,
  .woocommerce form .form-row textarea,
  .woocommerce-address-fields textarea, input[type=text],
  input[type=email],
  input[type=password],
  input[type=search],
  input[type=tel],
  input[type=url],
  input[type=date],
  input[type=datetime],
  input[type=datetime-local],
  input[type=month],
  input[type=time],
  input[type=week],
  input[type=color],
  .comment-form input[type=text],
  .comment-form input[type=email],
  .comment-form input[type=url],
  .comment-form input[type=password],
  #commentform input[type=text],
  #commentform input[type=email],
  #commentform input[type=url],
  #loginform input[type=text],
  #loginform input[type=password],
  #registerform input[type=email],
  #registerform input[type=text],
  .wp-block-search__input,
  .woocommerce-input-wrapper input[type=text],
  .woocommerce-input-wrapper input[type=email],
  .woocommerce-input-wrapper input[type=password],
  .woocommerce-input-wrapper input[type=tel],
  .woocommerce-input-wrapper input[type=url],
  .woocommerce-input-wrapper input[type=date],
  .woocommerce-input-wrapper input[type=datetime-local],
  .woocommerce-input-wrapper input[type=month],
  .woocommerce-input-wrapper input[type=time],
  .woocommerce-input-wrapper input[type=week],
  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row input[type=text],
  .woocommerce form .form-row input[type=email],
  .woocommerce form .form-row input[type=tel],
  .woocommerce form .form-row input[type=password],
  .woocommerce-address-fields input[type=text],
  .woocommerce-address-fields input[type=email],
  .woocommerce-address-fields input[type=tel] {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .wp-block-search__button, #loginform .input,
  #registerform .input,
  #lostpasswordform .input, .file-input-wrapper .file-input-text, select,
  .comment-form select,
  #commentform select,
  #loginform select,
  #registerform select,
  .woocommerce-input-wrapper select,
  .woocommerce form .form-row select,
  .woocommerce form .form-row .select,
  .woocommerce-address-fields select,
  .woocommerce .address-field select,
  #billing_country,
  #billing_state,
  #shipping_country,
  #shipping_state,
  .woocommerce .country_to_state,
  select.country_select,
  select.state_select, input[type=number],
  .woocommerce-input-wrapper input[type=number],
  .woocommerce form .form-row input[type=number],
  .woocommerce .quantity input[type=number],
  .woocommerce-cart .quantity input[type=number],
  .woocommerce-checkout .quantity input[type=number], textarea,
  .comment-form textarea,
  #commentform textarea,
  #comment,
  #loginform textarea,
  #registerform textarea,
  .wp-block-search__textarea,
  .woocommerce-input-wrapper textarea,
  .woocommerce form .form-row textarea,
  .woocommerce-address-fields textarea, input[type=text],
  input[type=email],
  input[type=password],
  input[type=search],
  input[type=tel],
  input[type=url],
  input[type=date],
  input[type=datetime],
  input[type=datetime-local],
  input[type=month],
  input[type=time],
  input[type=week],
  input[type=color],
  .comment-form input[type=text],
  .comment-form input[type=email],
  .comment-form input[type=url],
  .comment-form input[type=password],
  #commentform input[type=text],
  #commentform input[type=email],
  #commentform input[type=url],
  #loginform input[type=text],
  #loginform input[type=password],
  #registerform input[type=email],
  #registerform input[type=text],
  .wp-block-search__input,
  .woocommerce-input-wrapper input[type=text],
  .woocommerce-input-wrapper input[type=email],
  .woocommerce-input-wrapper input[type=password],
  .woocommerce-input-wrapper input[type=tel],
  .woocommerce-input-wrapper input[type=url],
  .woocommerce-input-wrapper input[type=date],
  .woocommerce-input-wrapper input[type=datetime-local],
  .woocommerce-input-wrapper input[type=month],
  .woocommerce-input-wrapper input[type=time],
  .woocommerce-input-wrapper input[type=week],
  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row input[type=text],
  .woocommerce form .form-row input[type=email],
  .woocommerce form .form-row input[type=tel],
  .woocommerce form .form-row input[type=password],
  .woocommerce-address-fields input[type=text],
  .woocommerce-address-fields input[type=email],
  .woocommerce-address-fields input[type=tel] {
    font-size: 15px;
    line-height: 28px;
  }
}
.wp-block-search__button, #loginform .input,
#registerform .input,
#lostpasswordform .input, .file-input-wrapper .file-input-text, select,
.comment-form select,
#commentform select,
#loginform select,
#registerform select,
.woocommerce-input-wrapper select,
.woocommerce form .form-row select,
.woocommerce form .form-row .select,
.woocommerce-address-fields select,
.woocommerce .address-field select,
#billing_country,
#billing_state,
#shipping_country,
#shipping_state,
.woocommerce .country_to_state,
select.country_select,
select.state_select, input[type=number],
.woocommerce-input-wrapper input[type=number],
.woocommerce form .form-row input[type=number],
.woocommerce .quantity input[type=number],
.woocommerce-cart .quantity input[type=number],
.woocommerce-checkout .quantity input[type=number], textarea,
.comment-form textarea,
#commentform textarea,
#comment,
#loginform textarea,
#registerform textarea,
.wp-block-search__textarea,
.woocommerce-input-wrapper textarea,
.woocommerce form .form-row textarea,
.woocommerce-address-fields textarea, input[type=text],
input[type=email],
input[type=password],
input[type=search],
input[type=tel],
input[type=url],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=time],
input[type=week],
input[type=color],
.comment-form input[type=text],
.comment-form input[type=email],
.comment-form input[type=url],
.comment-form input[type=password],
#commentform input[type=text],
#commentform input[type=email],
#commentform input[type=url],
#loginform input[type=text],
#loginform input[type=password],
#registerform input[type=email],
#registerform input[type=text],
.wp-block-search__input,
.woocommerce-input-wrapper input[type=text],
.woocommerce-input-wrapper input[type=email],
.woocommerce-input-wrapper input[type=password],
.woocommerce-input-wrapper input[type=tel],
.woocommerce-input-wrapper input[type=url],
.woocommerce-input-wrapper input[type=date],
.woocommerce-input-wrapper input[type=datetime-local],
.woocommerce-input-wrapper input[type=month],
.woocommerce-input-wrapper input[type=time],
.woocommerce-input-wrapper input[type=week],
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row input[type=text],
.woocommerce form .form-row input[type=email],
.woocommerce form .form-row input[type=tel],
.woocommerce form .form-row input[type=password],
.woocommerce-address-fields input[type=text],
.woocommerce-address-fields input[type=email],
.woocommerce-address-fields input[type=tel] {
  background-color: #FFFFFF;
  border: 1px solid #D8DAE2;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
}
.wp-block-search__button:focus, #loginform .input:focus,
#registerform .input:focus,
#lostpasswordform .input:focus, .file-input-wrapper .file-input-text:focus, select:focus,
#commentform select:focus,
#loginform select:focus,
#registerform select:focus,
.woocommerce form .form-row select:focus,
.woocommerce form .form-row .select:focus,
.woocommerce .address-field select:focus,
#billing_country:focus,
#billing_state:focus,
#shipping_country:focus,
#shipping_state:focus,
.woocommerce .country_to_state:focus, input[type=number]:focus,
.woocommerce form .form-row input[type=number]:focus,
.woocommerce .quantity input[type=number]:focus,
.woocommerce-cart .quantity input[type=number]:focus,
.woocommerce-checkout .quantity input[type=number]:focus, textarea:focus,
#commentform textarea:focus,
#comment:focus,
#loginform textarea:focus,
#registerform textarea:focus,
.wp-block-search__textarea:focus,
.woocommerce form .form-row textarea:focus, input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=date]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=month]:focus,
input[type=time]:focus,
input[type=week]:focus,
input[type=color]:focus,
#commentform input[type=text]:focus,
#commentform input[type=email]:focus,
#commentform input[type=url]:focus,
#loginform input[type=text]:focus,
#loginform input[type=password]:focus,
#registerform input[type=email]:focus,
#registerform input[type=text]:focus,
.wp-block-search__input:focus,
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row input[type=text]:focus,
.woocommerce form .form-row input[type=email]:focus,
.woocommerce form .form-row input[type=tel]:focus,
.woocommerce form .form-row input[type=password]:focus {
  outline: none;
  border-color: #262930;
  box-shadow: 0 0 0 2px rgba(38, 41, 48, 0.1);
}
.wp-block-search__button:hover:not(:disabled):not([readonly]), #loginform .input:hover:not(:disabled):not([readonly]),
#registerform .input:hover:not(:disabled):not([readonly]),
#lostpasswordform .input:hover:not(:disabled):not([readonly]), .file-input-wrapper .file-input-text:hover:not(:disabled):not([readonly]), select:hover:not(:disabled):not([readonly]),
#commentform select:hover:not(:disabled):not([readonly]),
#loginform select:hover:not(:disabled):not([readonly]),
#registerform select:hover:not(:disabled):not([readonly]),
.woocommerce form .form-row .select:hover:not(:disabled):not([readonly]),
#billing_country:hover:not(:disabled):not([readonly]),
#billing_state:hover:not(:disabled):not([readonly]),
#shipping_country:hover:not(:disabled):not([readonly]),
#shipping_state:hover:not(:disabled):not([readonly]),
.woocommerce .country_to_state:hover:not(:disabled):not([readonly]), input[type=number]:hover:not(:disabled):not([readonly]), textarea:hover:not(:disabled):not([readonly]),
#commentform textarea:hover:not(:disabled):not([readonly]),
#comment:hover:not(:disabled):not([readonly]),
#loginform textarea:hover:not(:disabled):not([readonly]),
#registerform textarea:hover:not(:disabled):not([readonly]),
.wp-block-search__textarea:hover:not(:disabled):not([readonly]), input[type=text]:hover:not(:disabled):not([readonly]),
input[type=email]:hover:not(:disabled):not([readonly]),
input[type=password]:hover:not(:disabled):not([readonly]),
input[type=search]:hover:not(:disabled):not([readonly]),
input[type=tel]:hover:not(:disabled):not([readonly]),
input[type=url]:hover:not(:disabled):not([readonly]),
input[type=date]:hover:not(:disabled):not([readonly]),
input[type=datetime]:hover:not(:disabled):not([readonly]),
input[type=datetime-local]:hover:not(:disabled):not([readonly]),
input[type=month]:hover:not(:disabled):not([readonly]),
input[type=time]:hover:not(:disabled):not([readonly]),
input[type=week]:hover:not(:disabled):not([readonly]),
input[type=color]:hover:not(:disabled):not([readonly]),
#commentform input[type=text]:hover:not(:disabled):not([readonly]),
#commentform input[type=email]:hover:not(:disabled):not([readonly]),
#commentform input[type=url]:hover:not(:disabled):not([readonly]),
#loginform input[type=text]:hover:not(:disabled):not([readonly]),
#loginform input[type=password]:hover:not(:disabled):not([readonly]),
#registerform input[type=email]:hover:not(:disabled):not([readonly]),
#registerform input[type=text]:hover:not(:disabled):not([readonly]),
.wp-block-search__input:hover:not(:disabled):not([readonly]),
.woocommerce form .form-row input.input-text:hover:not(:disabled):not([readonly]) {
  border-color: #FF4F60;
}
.wp-block-search__button:disabled, #loginform .input:disabled,
#registerform .input:disabled,
#lostpasswordform .input:disabled, .file-input-wrapper .file-input-text:disabled, select:disabled,
#commentform select:disabled,
#loginform select:disabled,
#registerform select:disabled,
.woocommerce form .form-row select:disabled,
.woocommerce form .form-row .select:disabled,
.woocommerce .address-field select:disabled,
#billing_country:disabled,
#billing_state:disabled,
#shipping_country:disabled,
#shipping_state:disabled,
.woocommerce .country_to_state:disabled, input[type=number]:disabled,
.woocommerce form .form-row input[type=number]:disabled,
.woocommerce .quantity input[type=number]:disabled,
.woocommerce-cart .quantity input[type=number]:disabled,
.woocommerce-checkout .quantity input[type=number]:disabled, textarea:disabled,
#commentform textarea:disabled,
#comment:disabled,
#loginform textarea:disabled,
#registerform textarea:disabled,
.wp-block-search__textarea:disabled,
.woocommerce form .form-row textarea:disabled, input[type=text]:disabled,
input[type=email]:disabled,
input[type=password]:disabled,
input[type=search]:disabled,
input[type=tel]:disabled,
input[type=url]:disabled,
input[type=date]:disabled,
input[type=datetime]:disabled,
input[type=datetime-local]:disabled,
input[type=month]:disabled,
input[type=time]:disabled,
input[type=week]:disabled,
input[type=color]:disabled,
#commentform input[type=text]:disabled,
#commentform input[type=email]:disabled,
#commentform input[type=url]:disabled,
#loginform input[type=text]:disabled,
#loginform input[type=password]:disabled,
#registerform input[type=email]:disabled,
#registerform input[type=text]:disabled,
.wp-block-search__input:disabled,
.woocommerce form .form-row input.input-text:disabled,
.woocommerce form .form-row input[type=text]:disabled,
.woocommerce form .form-row input[type=email]:disabled,
.woocommerce form .form-row input[type=tel]:disabled,
.woocommerce form .form-row input[type=password]:disabled,
[readonly].wp-block-search__button, #loginform [readonly].input,
#registerform [readonly].input,
#lostpasswordform [readonly].input, .file-input-wrapper [readonly].file-input-text, select[readonly],
#commentform select[readonly],
#loginform select[readonly],
#registerform select[readonly],
.woocommerce form .form-row select[readonly],
.woocommerce form .form-row [readonly].select,
.woocommerce .address-field select[readonly],
[readonly]#billing_country,
[readonly]#billing_state,
[readonly]#shipping_country,
[readonly]#shipping_state,
.woocommerce [readonly].country_to_state, input[readonly][type=number],
.woocommerce form .form-row input[readonly][type=number],
.woocommerce .quantity input[readonly][type=number],
.woocommerce-cart .quantity input[readonly][type=number],
.woocommerce-checkout .quantity input[readonly][type=number], textarea[readonly],
#commentform textarea[readonly],
[readonly]#comment,
#loginform textarea[readonly],
#registerform textarea[readonly],
[readonly].wp-block-search__textarea,
.woocommerce form .form-row textarea[readonly], input[readonly][type=text],
input[readonly][type=email],
input[readonly][type=password],
input[readonly][type=search],
input[readonly][type=tel],
input[readonly][type=url],
input[readonly][type=date],
input[readonly][type=datetime],
input[readonly][type=datetime-local],
input[readonly][type=month],
input[readonly][type=time],
input[readonly][type=week],
input[readonly][type=color],
#commentform input[readonly][type=text],
#commentform input[readonly][type=email],
#commentform input[readonly][type=url],
#loginform input[readonly][type=text],
#loginform input[readonly][type=password],
#registerform input[readonly][type=email],
#registerform input[readonly][type=text],
[readonly].wp-block-search__input,
.woocommerce form .form-row input[readonly].input-text,
.woocommerce form .form-row input[readonly][type=text],
.woocommerce form .form-row input[readonly][type=email],
.woocommerce form .form-row input[readonly][type=tel],
.woocommerce form .form-row input[readonly][type=password] {
  background-color: #F0F1F5;
  color: #8A8C95;
  cursor: not-allowed;
  opacity: 0.6;
}
.wp-block-search__button::placeholder, #loginform .input::placeholder,
#registerform .input::placeholder,
#lostpasswordform .input::placeholder, .file-input-wrapper .file-input-text::placeholder, select::placeholder,
.comment-form select::placeholder,
#commentform select::placeholder,
#loginform select::placeholder,
#registerform select::placeholder,
.woocommerce-input-wrapper select::placeholder,
.woocommerce form .form-row select::placeholder,
.woocommerce form .form-row .select::placeholder,
.woocommerce-address-fields select::placeholder,
.woocommerce .address-field select::placeholder,
#billing_country::placeholder,
#billing_state::placeholder,
#shipping_country::placeholder,
#shipping_state::placeholder,
.woocommerce .country_to_state::placeholder,
select.country_select::placeholder,
select.state_select::placeholder, input[type=number]::placeholder,
.woocommerce-input-wrapper input[type=number]::placeholder,
.woocommerce form .form-row input[type=number]::placeholder,
.woocommerce .quantity input[type=number]::placeholder,
.woocommerce-cart .quantity input[type=number]::placeholder,
.woocommerce-checkout .quantity input[type=number]::placeholder, textarea::placeholder,
.comment-form textarea::placeholder,
#commentform textarea::placeholder,
#comment::placeholder,
#loginform textarea::placeholder,
#registerform textarea::placeholder,
.wp-block-search__textarea::placeholder,
.woocommerce-input-wrapper textarea::placeholder,
.woocommerce form .form-row textarea::placeholder,
.woocommerce-address-fields textarea::placeholder, input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder,
input[type=date]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=month]::placeholder,
input[type=time]::placeholder,
input[type=week]::placeholder,
input[type=color]::placeholder,
.comment-form input[type=text]::placeholder,
.comment-form input[type=email]::placeholder,
.comment-form input[type=url]::placeholder,
.comment-form input[type=password]::placeholder,
#commentform input[type=text]::placeholder,
#commentform input[type=email]::placeholder,
#commentform input[type=url]::placeholder,
#loginform input[type=text]::placeholder,
#loginform input[type=password]::placeholder,
#registerform input[type=email]::placeholder,
#registerform input[type=text]::placeholder,
.wp-block-search__input::placeholder,
.woocommerce-input-wrapper input[type=text]::placeholder,
.woocommerce-input-wrapper input[type=email]::placeholder,
.woocommerce-input-wrapper input[type=password]::placeholder,
.woocommerce-input-wrapper input[type=tel]::placeholder,
.woocommerce-input-wrapper input[type=url]::placeholder,
.woocommerce-input-wrapper input[type=date]::placeholder,
.woocommerce-input-wrapper input[type=datetime-local]::placeholder,
.woocommerce-input-wrapper input[type=month]::placeholder,
.woocommerce-input-wrapper input[type=time]::placeholder,
.woocommerce-input-wrapper input[type=week]::placeholder,
.woocommerce form .form-row input.input-text::placeholder,
.woocommerce form .form-row input[type=text]::placeholder,
.woocommerce form .form-row input[type=email]::placeholder,
.woocommerce form .form-row input[type=tel]::placeholder,
.woocommerce form .form-row input[type=password]::placeholder,
.woocommerce-address-fields input[type=text]::placeholder,
.woocommerce-address-fields input[type=email]::placeholder,
.woocommerce-address-fields input[type=tel]::placeholder {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: rgba(38, 41, 48, 0.5);
  opacity: 1;
}
@media (min-width: 1920px) {
  .wp-block-search__button::placeholder, #loginform .input::placeholder,
  #registerform .input::placeholder,
  #lostpasswordform .input::placeholder, .file-input-wrapper .file-input-text::placeholder, select::placeholder,
  .comment-form select::placeholder,
  #commentform select::placeholder,
  #loginform select::placeholder,
  #registerform select::placeholder,
  .woocommerce-input-wrapper select::placeholder,
  .woocommerce form .form-row select::placeholder,
  .woocommerce form .form-row .select::placeholder,
  .woocommerce-address-fields select::placeholder,
  .woocommerce .address-field select::placeholder,
  #billing_country::placeholder,
  #billing_state::placeholder,
  #shipping_country::placeholder,
  #shipping_state::placeholder,
  .woocommerce .country_to_state::placeholder,
  select.country_select::placeholder,
  select.state_select::placeholder, input[type=number]::placeholder,
  .woocommerce-input-wrapper input[type=number]::placeholder,
  .woocommerce form .form-row input[type=number]::placeholder,
  .woocommerce .quantity input[type=number]::placeholder,
  .woocommerce-cart .quantity input[type=number]::placeholder,
  .woocommerce-checkout .quantity input[type=number]::placeholder, textarea::placeholder,
  .comment-form textarea::placeholder,
  #commentform textarea::placeholder,
  #comment::placeholder,
  #loginform textarea::placeholder,
  #registerform textarea::placeholder,
  .wp-block-search__textarea::placeholder,
  .woocommerce-input-wrapper textarea::placeholder,
  .woocommerce form .form-row textarea::placeholder,
  .woocommerce-address-fields textarea::placeholder, input[type=text]::placeholder,
  input[type=email]::placeholder,
  input[type=password]::placeholder,
  input[type=search]::placeholder,
  input[type=tel]::placeholder,
  input[type=url]::placeholder,
  input[type=date]::placeholder,
  input[type=datetime]::placeholder,
  input[type=datetime-local]::placeholder,
  input[type=month]::placeholder,
  input[type=time]::placeholder,
  input[type=week]::placeholder,
  input[type=color]::placeholder,
  .comment-form input[type=text]::placeholder,
  .comment-form input[type=email]::placeholder,
  .comment-form input[type=url]::placeholder,
  .comment-form input[type=password]::placeholder,
  #commentform input[type=text]::placeholder,
  #commentform input[type=email]::placeholder,
  #commentform input[type=url]::placeholder,
  #loginform input[type=text]::placeholder,
  #loginform input[type=password]::placeholder,
  #registerform input[type=email]::placeholder,
  #registerform input[type=text]::placeholder,
  .wp-block-search__input::placeholder,
  .woocommerce-input-wrapper input[type=text]::placeholder,
  .woocommerce-input-wrapper input[type=email]::placeholder,
  .woocommerce-input-wrapper input[type=password]::placeholder,
  .woocommerce-input-wrapper input[type=tel]::placeholder,
  .woocommerce-input-wrapper input[type=url]::placeholder,
  .woocommerce-input-wrapper input[type=date]::placeholder,
  .woocommerce-input-wrapper input[type=datetime-local]::placeholder,
  .woocommerce-input-wrapper input[type=month]::placeholder,
  .woocommerce-input-wrapper input[type=time]::placeholder,
  .woocommerce-input-wrapper input[type=week]::placeholder,
  .woocommerce form .form-row input.input-text::placeholder,
  .woocommerce form .form-row input[type=text]::placeholder,
  .woocommerce form .form-row input[type=email]::placeholder,
  .woocommerce form .form-row input[type=tel]::placeholder,
  .woocommerce form .form-row input[type=password]::placeholder,
  .woocommerce-address-fields input[type=text]::placeholder,
  .woocommerce-address-fields input[type=email]::placeholder,
  .woocommerce-address-fields input[type=tel]::placeholder {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .wp-block-search__button::placeholder, #loginform .input::placeholder,
  #registerform .input::placeholder,
  #lostpasswordform .input::placeholder, .file-input-wrapper .file-input-text::placeholder, select::placeholder,
  .comment-form select::placeholder,
  #commentform select::placeholder,
  #loginform select::placeholder,
  #registerform select::placeholder,
  .woocommerce-input-wrapper select::placeholder,
  .woocommerce form .form-row select::placeholder,
  .woocommerce form .form-row .select::placeholder,
  .woocommerce-address-fields select::placeholder,
  .woocommerce .address-field select::placeholder,
  #billing_country::placeholder,
  #billing_state::placeholder,
  #shipping_country::placeholder,
  #shipping_state::placeholder,
  .woocommerce .country_to_state::placeholder,
  select.country_select::placeholder,
  select.state_select::placeholder, input[type=number]::placeholder,
  .woocommerce-input-wrapper input[type=number]::placeholder,
  .woocommerce form .form-row input[type=number]::placeholder,
  .woocommerce .quantity input[type=number]::placeholder,
  .woocommerce-cart .quantity input[type=number]::placeholder,
  .woocommerce-checkout .quantity input[type=number]::placeholder, textarea::placeholder,
  .comment-form textarea::placeholder,
  #commentform textarea::placeholder,
  #comment::placeholder,
  #loginform textarea::placeholder,
  #registerform textarea::placeholder,
  .wp-block-search__textarea::placeholder,
  .woocommerce-input-wrapper textarea::placeholder,
  .woocommerce form .form-row textarea::placeholder,
  .woocommerce-address-fields textarea::placeholder, input[type=text]::placeholder,
  input[type=email]::placeholder,
  input[type=password]::placeholder,
  input[type=search]::placeholder,
  input[type=tel]::placeholder,
  input[type=url]::placeholder,
  input[type=date]::placeholder,
  input[type=datetime]::placeholder,
  input[type=datetime-local]::placeholder,
  input[type=month]::placeholder,
  input[type=time]::placeholder,
  input[type=week]::placeholder,
  input[type=color]::placeholder,
  .comment-form input[type=text]::placeholder,
  .comment-form input[type=email]::placeholder,
  .comment-form input[type=url]::placeholder,
  .comment-form input[type=password]::placeholder,
  #commentform input[type=text]::placeholder,
  #commentform input[type=email]::placeholder,
  #commentform input[type=url]::placeholder,
  #loginform input[type=text]::placeholder,
  #loginform input[type=password]::placeholder,
  #registerform input[type=email]::placeholder,
  #registerform input[type=text]::placeholder,
  .wp-block-search__input::placeholder,
  .woocommerce-input-wrapper input[type=text]::placeholder,
  .woocommerce-input-wrapper input[type=email]::placeholder,
  .woocommerce-input-wrapper input[type=password]::placeholder,
  .woocommerce-input-wrapper input[type=tel]::placeholder,
  .woocommerce-input-wrapper input[type=url]::placeholder,
  .woocommerce-input-wrapper input[type=date]::placeholder,
  .woocommerce-input-wrapper input[type=datetime-local]::placeholder,
  .woocommerce-input-wrapper input[type=month]::placeholder,
  .woocommerce-input-wrapper input[type=time]::placeholder,
  .woocommerce-input-wrapper input[type=week]::placeholder,
  .woocommerce form .form-row input.input-text::placeholder,
  .woocommerce form .form-row input[type=text]::placeholder,
  .woocommerce form .form-row input[type=email]::placeholder,
  .woocommerce form .form-row input[type=tel]::placeholder,
  .woocommerce form .form-row input[type=password]::placeholder,
  .woocommerce-address-fields input[type=text]::placeholder,
  .woocommerce-address-fields input[type=email]::placeholder,
  .woocommerce-address-fields input[type=tel]::placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .wp-block-search__button::placeholder, #loginform .input::placeholder,
  #registerform .input::placeholder,
  #lostpasswordform .input::placeholder, .file-input-wrapper .file-input-text::placeholder, select::placeholder,
  .comment-form select::placeholder,
  #commentform select::placeholder,
  #loginform select::placeholder,
  #registerform select::placeholder,
  .woocommerce-input-wrapper select::placeholder,
  .woocommerce form .form-row select::placeholder,
  .woocommerce form .form-row .select::placeholder,
  .woocommerce-address-fields select::placeholder,
  .woocommerce .address-field select::placeholder,
  #billing_country::placeholder,
  #billing_state::placeholder,
  #shipping_country::placeholder,
  #shipping_state::placeholder,
  .woocommerce .country_to_state::placeholder,
  select.country_select::placeholder,
  select.state_select::placeholder, input[type=number]::placeholder,
  .woocommerce-input-wrapper input[type=number]::placeholder,
  .woocommerce form .form-row input[type=number]::placeholder,
  .woocommerce .quantity input[type=number]::placeholder,
  .woocommerce-cart .quantity input[type=number]::placeholder,
  .woocommerce-checkout .quantity input[type=number]::placeholder, textarea::placeholder,
  .comment-form textarea::placeholder,
  #commentform textarea::placeholder,
  #comment::placeholder,
  #loginform textarea::placeholder,
  #registerform textarea::placeholder,
  .wp-block-search__textarea::placeholder,
  .woocommerce-input-wrapper textarea::placeholder,
  .woocommerce form .form-row textarea::placeholder,
  .woocommerce-address-fields textarea::placeholder, input[type=text]::placeholder,
  input[type=email]::placeholder,
  input[type=password]::placeholder,
  input[type=search]::placeholder,
  input[type=tel]::placeholder,
  input[type=url]::placeholder,
  input[type=date]::placeholder,
  input[type=datetime]::placeholder,
  input[type=datetime-local]::placeholder,
  input[type=month]::placeholder,
  input[type=time]::placeholder,
  input[type=week]::placeholder,
  input[type=color]::placeholder,
  .comment-form input[type=text]::placeholder,
  .comment-form input[type=email]::placeholder,
  .comment-form input[type=url]::placeholder,
  .comment-form input[type=password]::placeholder,
  #commentform input[type=text]::placeholder,
  #commentform input[type=email]::placeholder,
  #commentform input[type=url]::placeholder,
  #loginform input[type=text]::placeholder,
  #loginform input[type=password]::placeholder,
  #registerform input[type=email]::placeholder,
  #registerform input[type=text]::placeholder,
  .wp-block-search__input::placeholder,
  .woocommerce-input-wrapper input[type=text]::placeholder,
  .woocommerce-input-wrapper input[type=email]::placeholder,
  .woocommerce-input-wrapper input[type=password]::placeholder,
  .woocommerce-input-wrapper input[type=tel]::placeholder,
  .woocommerce-input-wrapper input[type=url]::placeholder,
  .woocommerce-input-wrapper input[type=date]::placeholder,
  .woocommerce-input-wrapper input[type=datetime-local]::placeholder,
  .woocommerce-input-wrapper input[type=month]::placeholder,
  .woocommerce-input-wrapper input[type=time]::placeholder,
  .woocommerce-input-wrapper input[type=week]::placeholder,
  .woocommerce form .form-row input.input-text::placeholder,
  .woocommerce form .form-row input[type=text]::placeholder,
  .woocommerce form .form-row input[type=email]::placeholder,
  .woocommerce form .form-row input[type=tel]::placeholder,
  .woocommerce form .form-row input[type=password]::placeholder,
  .woocommerce-address-fields input[type=text]::placeholder,
  .woocommerce-address-fields input[type=email]::placeholder,
  .woocommerce-address-fields input[type=tel]::placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
.wp-block-search__button::-webkit-input-placeholder, #loginform .input::-webkit-input-placeholder,
#registerform .input::-webkit-input-placeholder,
#lostpasswordform .input::-webkit-input-placeholder, .file-input-wrapper .file-input-text::-webkit-input-placeholder, select::-webkit-input-placeholder,
.comment-form select::-webkit-input-placeholder,
#commentform select::-webkit-input-placeholder,
#loginform select::-webkit-input-placeholder,
#registerform select::-webkit-input-placeholder,
.woocommerce-input-wrapper select::-webkit-input-placeholder,
.woocommerce form .form-row select::-webkit-input-placeholder,
.woocommerce form .form-row .select::-webkit-input-placeholder,
.woocommerce-address-fields select::-webkit-input-placeholder,
.woocommerce .address-field select::-webkit-input-placeholder,
#billing_country::-webkit-input-placeholder,
#billing_state::-webkit-input-placeholder,
#shipping_country::-webkit-input-placeholder,
#shipping_state::-webkit-input-placeholder,
.woocommerce .country_to_state::-webkit-input-placeholder,
select.country_select::-webkit-input-placeholder,
select.state_select::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder,
.woocommerce-input-wrapper input[type=number]::-webkit-input-placeholder,
.woocommerce form .form-row input[type=number]::-webkit-input-placeholder,
.woocommerce .quantity input[type=number]::-webkit-input-placeholder,
.woocommerce-cart .quantity input[type=number]::-webkit-input-placeholder,
.woocommerce-checkout .quantity input[type=number]::-webkit-input-placeholder, textarea::-webkit-input-placeholder,
.comment-form textarea::-webkit-input-placeholder,
#commentform textarea::-webkit-input-placeholder,
#comment::-webkit-input-placeholder,
#loginform textarea::-webkit-input-placeholder,
#registerform textarea::-webkit-input-placeholder,
.wp-block-search__textarea::-webkit-input-placeholder,
.woocommerce-input-wrapper textarea::-webkit-input-placeholder,
.woocommerce form .form-row textarea::-webkit-input-placeholder,
.woocommerce-address-fields textarea::-webkit-input-placeholder, input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
input[type=date]::-webkit-input-placeholder,
input[type=datetime]::-webkit-input-placeholder,
input[type=datetime-local]::-webkit-input-placeholder,
input[type=month]::-webkit-input-placeholder,
input[type=time]::-webkit-input-placeholder,
input[type=week]::-webkit-input-placeholder,
input[type=color]::-webkit-input-placeholder,
.comment-form input[type=text]::-webkit-input-placeholder,
.comment-form input[type=email]::-webkit-input-placeholder,
.comment-form input[type=url]::-webkit-input-placeholder,
.comment-form input[type=password]::-webkit-input-placeholder,
#commentform input[type=text]::-webkit-input-placeholder,
#commentform input[type=email]::-webkit-input-placeholder,
#commentform input[type=url]::-webkit-input-placeholder,
#loginform input[type=text]::-webkit-input-placeholder,
#loginform input[type=password]::-webkit-input-placeholder,
#registerform input[type=email]::-webkit-input-placeholder,
#registerform input[type=text]::-webkit-input-placeholder,
.wp-block-search__input::-webkit-input-placeholder,
.woocommerce-input-wrapper input[type=text]::-webkit-input-placeholder,
.woocommerce-input-wrapper input[type=email]::-webkit-input-placeholder,
.woocommerce-input-wrapper input[type=password]::-webkit-input-placeholder,
.woocommerce-input-wrapper input[type=tel]::-webkit-input-placeholder,
.woocommerce-input-wrapper input[type=url]::-webkit-input-placeholder,
.woocommerce-input-wrapper input[type=date]::-webkit-input-placeholder,
.woocommerce-input-wrapper input[type=datetime-local]::-webkit-input-placeholder,
.woocommerce-input-wrapper input[type=month]::-webkit-input-placeholder,
.woocommerce-input-wrapper input[type=time]::-webkit-input-placeholder,
.woocommerce-input-wrapper input[type=week]::-webkit-input-placeholder,
.woocommerce form .form-row input.input-text::-webkit-input-placeholder,
.woocommerce form .form-row input[type=text]::-webkit-input-placeholder,
.woocommerce form .form-row input[type=email]::-webkit-input-placeholder,
.woocommerce form .form-row input[type=tel]::-webkit-input-placeholder,
.woocommerce form .form-row input[type=password]::-webkit-input-placeholder,
.woocommerce-address-fields input[type=text]::-webkit-input-placeholder,
.woocommerce-address-fields input[type=email]::-webkit-input-placeholder,
.woocommerce-address-fields input[type=tel]::-webkit-input-placeholder {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: rgba(38, 41, 48, 0.5);
  opacity: 1;
}
@media (min-width: 1920px) {
  .wp-block-search__button::-webkit-input-placeholder, #loginform .input::-webkit-input-placeholder,
  #registerform .input::-webkit-input-placeholder,
  #lostpasswordform .input::-webkit-input-placeholder, .file-input-wrapper .file-input-text::-webkit-input-placeholder, select::-webkit-input-placeholder,
  .comment-form select::-webkit-input-placeholder,
  #commentform select::-webkit-input-placeholder,
  #loginform select::-webkit-input-placeholder,
  #registerform select::-webkit-input-placeholder,
  .woocommerce-input-wrapper select::-webkit-input-placeholder,
  .woocommerce form .form-row select::-webkit-input-placeholder,
  .woocommerce form .form-row .select::-webkit-input-placeholder,
  .woocommerce-address-fields select::-webkit-input-placeholder,
  .woocommerce .address-field select::-webkit-input-placeholder,
  #billing_country::-webkit-input-placeholder,
  #billing_state::-webkit-input-placeholder,
  #shipping_country::-webkit-input-placeholder,
  #shipping_state::-webkit-input-placeholder,
  .woocommerce .country_to_state::-webkit-input-placeholder,
  select.country_select::-webkit-input-placeholder,
  select.state_select::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=number]::-webkit-input-placeholder,
  .woocommerce form .form-row input[type=number]::-webkit-input-placeholder,
  .woocommerce .quantity input[type=number]::-webkit-input-placeholder,
  .woocommerce-cart .quantity input[type=number]::-webkit-input-placeholder,
  .woocommerce-checkout .quantity input[type=number]::-webkit-input-placeholder, textarea::-webkit-input-placeholder,
  .comment-form textarea::-webkit-input-placeholder,
  #commentform textarea::-webkit-input-placeholder,
  #comment::-webkit-input-placeholder,
  #loginform textarea::-webkit-input-placeholder,
  #registerform textarea::-webkit-input-placeholder,
  .wp-block-search__textarea::-webkit-input-placeholder,
  .woocommerce-input-wrapper textarea::-webkit-input-placeholder,
  .woocommerce form .form-row textarea::-webkit-input-placeholder,
  .woocommerce-address-fields textarea::-webkit-input-placeholder, input[type=text]::-webkit-input-placeholder,
  input[type=email]::-webkit-input-placeholder,
  input[type=password]::-webkit-input-placeholder,
  input[type=search]::-webkit-input-placeholder,
  input[type=tel]::-webkit-input-placeholder,
  input[type=url]::-webkit-input-placeholder,
  input[type=date]::-webkit-input-placeholder,
  input[type=datetime]::-webkit-input-placeholder,
  input[type=datetime-local]::-webkit-input-placeholder,
  input[type=month]::-webkit-input-placeholder,
  input[type=time]::-webkit-input-placeholder,
  input[type=week]::-webkit-input-placeholder,
  input[type=color]::-webkit-input-placeholder,
  .comment-form input[type=text]::-webkit-input-placeholder,
  .comment-form input[type=email]::-webkit-input-placeholder,
  .comment-form input[type=url]::-webkit-input-placeholder,
  .comment-form input[type=password]::-webkit-input-placeholder,
  #commentform input[type=text]::-webkit-input-placeholder,
  #commentform input[type=email]::-webkit-input-placeholder,
  #commentform input[type=url]::-webkit-input-placeholder,
  #loginform input[type=text]::-webkit-input-placeholder,
  #loginform input[type=password]::-webkit-input-placeholder,
  #registerform input[type=email]::-webkit-input-placeholder,
  #registerform input[type=text]::-webkit-input-placeholder,
  .wp-block-search__input::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=text]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=email]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=password]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=tel]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=url]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=date]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=datetime-local]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=month]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=time]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=week]::-webkit-input-placeholder,
  .woocommerce form .form-row input.input-text::-webkit-input-placeholder,
  .woocommerce form .form-row input[type=text]::-webkit-input-placeholder,
  .woocommerce form .form-row input[type=email]::-webkit-input-placeholder,
  .woocommerce form .form-row input[type=tel]::-webkit-input-placeholder,
  .woocommerce form .form-row input[type=password]::-webkit-input-placeholder,
  .woocommerce-address-fields input[type=text]::-webkit-input-placeholder,
  .woocommerce-address-fields input[type=email]::-webkit-input-placeholder,
  .woocommerce-address-fields input[type=tel]::-webkit-input-placeholder {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .wp-block-search__button::-webkit-input-placeholder, #loginform .input::-webkit-input-placeholder,
  #registerform .input::-webkit-input-placeholder,
  #lostpasswordform .input::-webkit-input-placeholder, .file-input-wrapper .file-input-text::-webkit-input-placeholder, select::-webkit-input-placeholder,
  .comment-form select::-webkit-input-placeholder,
  #commentform select::-webkit-input-placeholder,
  #loginform select::-webkit-input-placeholder,
  #registerform select::-webkit-input-placeholder,
  .woocommerce-input-wrapper select::-webkit-input-placeholder,
  .woocommerce form .form-row select::-webkit-input-placeholder,
  .woocommerce form .form-row .select::-webkit-input-placeholder,
  .woocommerce-address-fields select::-webkit-input-placeholder,
  .woocommerce .address-field select::-webkit-input-placeholder,
  #billing_country::-webkit-input-placeholder,
  #billing_state::-webkit-input-placeholder,
  #shipping_country::-webkit-input-placeholder,
  #shipping_state::-webkit-input-placeholder,
  .woocommerce .country_to_state::-webkit-input-placeholder,
  select.country_select::-webkit-input-placeholder,
  select.state_select::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=number]::-webkit-input-placeholder,
  .woocommerce form .form-row input[type=number]::-webkit-input-placeholder,
  .woocommerce .quantity input[type=number]::-webkit-input-placeholder,
  .woocommerce-cart .quantity input[type=number]::-webkit-input-placeholder,
  .woocommerce-checkout .quantity input[type=number]::-webkit-input-placeholder, textarea::-webkit-input-placeholder,
  .comment-form textarea::-webkit-input-placeholder,
  #commentform textarea::-webkit-input-placeholder,
  #comment::-webkit-input-placeholder,
  #loginform textarea::-webkit-input-placeholder,
  #registerform textarea::-webkit-input-placeholder,
  .wp-block-search__textarea::-webkit-input-placeholder,
  .woocommerce-input-wrapper textarea::-webkit-input-placeholder,
  .woocommerce form .form-row textarea::-webkit-input-placeholder,
  .woocommerce-address-fields textarea::-webkit-input-placeholder, input[type=text]::-webkit-input-placeholder,
  input[type=email]::-webkit-input-placeholder,
  input[type=password]::-webkit-input-placeholder,
  input[type=search]::-webkit-input-placeholder,
  input[type=tel]::-webkit-input-placeholder,
  input[type=url]::-webkit-input-placeholder,
  input[type=date]::-webkit-input-placeholder,
  input[type=datetime]::-webkit-input-placeholder,
  input[type=datetime-local]::-webkit-input-placeholder,
  input[type=month]::-webkit-input-placeholder,
  input[type=time]::-webkit-input-placeholder,
  input[type=week]::-webkit-input-placeholder,
  input[type=color]::-webkit-input-placeholder,
  .comment-form input[type=text]::-webkit-input-placeholder,
  .comment-form input[type=email]::-webkit-input-placeholder,
  .comment-form input[type=url]::-webkit-input-placeholder,
  .comment-form input[type=password]::-webkit-input-placeholder,
  #commentform input[type=text]::-webkit-input-placeholder,
  #commentform input[type=email]::-webkit-input-placeholder,
  #commentform input[type=url]::-webkit-input-placeholder,
  #loginform input[type=text]::-webkit-input-placeholder,
  #loginform input[type=password]::-webkit-input-placeholder,
  #registerform input[type=email]::-webkit-input-placeholder,
  #registerform input[type=text]::-webkit-input-placeholder,
  .wp-block-search__input::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=text]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=email]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=password]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=tel]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=url]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=date]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=datetime-local]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=month]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=time]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=week]::-webkit-input-placeholder,
  .woocommerce form .form-row input.input-text::-webkit-input-placeholder,
  .woocommerce form .form-row input[type=text]::-webkit-input-placeholder,
  .woocommerce form .form-row input[type=email]::-webkit-input-placeholder,
  .woocommerce form .form-row input[type=tel]::-webkit-input-placeholder,
  .woocommerce form .form-row input[type=password]::-webkit-input-placeholder,
  .woocommerce-address-fields input[type=text]::-webkit-input-placeholder,
  .woocommerce-address-fields input[type=email]::-webkit-input-placeholder,
  .woocommerce-address-fields input[type=tel]::-webkit-input-placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .wp-block-search__button::-webkit-input-placeholder, #loginform .input::-webkit-input-placeholder,
  #registerform .input::-webkit-input-placeholder,
  #lostpasswordform .input::-webkit-input-placeholder, .file-input-wrapper .file-input-text::-webkit-input-placeholder, select::-webkit-input-placeholder,
  .comment-form select::-webkit-input-placeholder,
  #commentform select::-webkit-input-placeholder,
  #loginform select::-webkit-input-placeholder,
  #registerform select::-webkit-input-placeholder,
  .woocommerce-input-wrapper select::-webkit-input-placeholder,
  .woocommerce form .form-row select::-webkit-input-placeholder,
  .woocommerce form .form-row .select::-webkit-input-placeholder,
  .woocommerce-address-fields select::-webkit-input-placeholder,
  .woocommerce .address-field select::-webkit-input-placeholder,
  #billing_country::-webkit-input-placeholder,
  #billing_state::-webkit-input-placeholder,
  #shipping_country::-webkit-input-placeholder,
  #shipping_state::-webkit-input-placeholder,
  .woocommerce .country_to_state::-webkit-input-placeholder,
  select.country_select::-webkit-input-placeholder,
  select.state_select::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=number]::-webkit-input-placeholder,
  .woocommerce form .form-row input[type=number]::-webkit-input-placeholder,
  .woocommerce .quantity input[type=number]::-webkit-input-placeholder,
  .woocommerce-cart .quantity input[type=number]::-webkit-input-placeholder,
  .woocommerce-checkout .quantity input[type=number]::-webkit-input-placeholder, textarea::-webkit-input-placeholder,
  .comment-form textarea::-webkit-input-placeholder,
  #commentform textarea::-webkit-input-placeholder,
  #comment::-webkit-input-placeholder,
  #loginform textarea::-webkit-input-placeholder,
  #registerform textarea::-webkit-input-placeholder,
  .wp-block-search__textarea::-webkit-input-placeholder,
  .woocommerce-input-wrapper textarea::-webkit-input-placeholder,
  .woocommerce form .form-row textarea::-webkit-input-placeholder,
  .woocommerce-address-fields textarea::-webkit-input-placeholder, input[type=text]::-webkit-input-placeholder,
  input[type=email]::-webkit-input-placeholder,
  input[type=password]::-webkit-input-placeholder,
  input[type=search]::-webkit-input-placeholder,
  input[type=tel]::-webkit-input-placeholder,
  input[type=url]::-webkit-input-placeholder,
  input[type=date]::-webkit-input-placeholder,
  input[type=datetime]::-webkit-input-placeholder,
  input[type=datetime-local]::-webkit-input-placeholder,
  input[type=month]::-webkit-input-placeholder,
  input[type=time]::-webkit-input-placeholder,
  input[type=week]::-webkit-input-placeholder,
  input[type=color]::-webkit-input-placeholder,
  .comment-form input[type=text]::-webkit-input-placeholder,
  .comment-form input[type=email]::-webkit-input-placeholder,
  .comment-form input[type=url]::-webkit-input-placeholder,
  .comment-form input[type=password]::-webkit-input-placeholder,
  #commentform input[type=text]::-webkit-input-placeholder,
  #commentform input[type=email]::-webkit-input-placeholder,
  #commentform input[type=url]::-webkit-input-placeholder,
  #loginform input[type=text]::-webkit-input-placeholder,
  #loginform input[type=password]::-webkit-input-placeholder,
  #registerform input[type=email]::-webkit-input-placeholder,
  #registerform input[type=text]::-webkit-input-placeholder,
  .wp-block-search__input::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=text]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=email]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=password]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=tel]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=url]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=date]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=datetime-local]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=month]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=time]::-webkit-input-placeholder,
  .woocommerce-input-wrapper input[type=week]::-webkit-input-placeholder,
  .woocommerce form .form-row input.input-text::-webkit-input-placeholder,
  .woocommerce form .form-row input[type=text]::-webkit-input-placeholder,
  .woocommerce form .form-row input[type=email]::-webkit-input-placeholder,
  .woocommerce form .form-row input[type=tel]::-webkit-input-placeholder,
  .woocommerce form .form-row input[type=password]::-webkit-input-placeholder,
  .woocommerce-address-fields input[type=text]::-webkit-input-placeholder,
  .woocommerce-address-fields input[type=email]::-webkit-input-placeholder,
  .woocommerce-address-fields input[type=tel]::-webkit-input-placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
.wp-block-search__button::-webkit-input-placeholder, #loginform .input::-webkit-input-placeholder,
#registerform .input::-webkit-input-placeholder,
#lostpasswordform .input::-webkit-input-placeholder, .file-input-wrapper .file-input-text::-webkit-input-placeholder, select::-webkit-input-placeholder,
.comment-form select::-webkit-input-placeholder,
#commentform select::-webkit-input-placeholder,
#loginform select::-webkit-input-placeholder,
#registerform select::-webkit-input-placeholder,
.woocommerce-input-wrapper select::-webkit-input-placeholder,
.woocommerce form .form-row select::-webkit-input-placeholder,
.woocommerce form .form-row .select::-webkit-input-placeholder,
.woocommerce-address-fields select::-webkit-input-placeholder,
.woocommerce .address-field select::-webkit-input-placeholder,
#billing_country::-webkit-input-placeholder,
#billing_state::-webkit-input-placeholder,
#shipping_country::-webkit-input-placeholder,
#shipping_state::-webkit-input-placeholder,
.woocommerce .country_to_state::-webkit-input-placeholder,
select.country_select::-webkit-input-placeholder,
select.state_select::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder,
.woocommerce-input-wrapper input[type=number]::-webkit-input-placeholder,
.woocommerce form .form-row input[type=number]::-webkit-input-placeholder,
.woocommerce .quantity input[type=number]::-webkit-input-placeholder,
.woocommerce-cart .quantity input[type=number]::-webkit-input-placeholder,
.woocommerce-checkout .quantity input[type=number]::-webkit-input-placeholder, textarea::-webkit-input-placeholder,
.comment-form textarea::-webkit-input-placeholder,
#commentform textarea::-webkit-input-placeholder,
#comment::-webkit-input-placeholder,
#loginform textarea::-webkit-input-placeholder,
#registerform textarea::-webkit-input-placeholder,
.wp-block-search__textarea::-webkit-input-placeholder,
.woocommerce-input-wrapper textarea::-webkit-input-placeholder,
.woocommerce form .form-row textarea::-webkit-input-placeholder,
.woocommerce-address-fields textarea::-webkit-input-placeholder, input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=search]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
input[type=date]::-webkit-input-placeholder,
input[type=datetime]::-webkit-input-placeholder,
input[type=datetime-local]::-webkit-input-placeholder,
input[type=month]::-webkit-input-placeholder,
input[type=time]::-webkit-input-placeholder,
input[type=week]::-webkit-input-placeholder,
input[type=color]::-webkit-input-placeholder,
.comment-form input[type=text]::-webkit-input-placeholder,
.comment-form input[type=email]::-webkit-input-placeholder,
.comment-form input[type=url]::-webkit-input-placeholder,
.comment-form input[type=password]::-webkit-input-placeholder,
#commentform input[type=text]::-webkit-input-placeholder,
#commentform input[type=email]::-webkit-input-placeholder,
#commentform input[type=url]::-webkit-input-placeholder,
#loginform input[type=text]::-webkit-input-placeholder,
#loginform input[type=password]::-webkit-input-placeholder,
#registerform input[type=email]::-webkit-input-placeholder,
#registerform input[type=text]::-webkit-input-placeholder,
.wp-block-search__input::-webkit-input-placeholder,
.woocommerce-input-wrapper input[type=text]::-webkit-input-placeholder,
.woocommerce-input-wrapper input[type=email]::-webkit-input-placeholder,
.woocommerce-input-wrapper input[type=password]::-webkit-input-placeholder,
.woocommerce-input-wrapper input[type=tel]::-webkit-input-placeholder,
.woocommerce-input-wrapper input[type=url]::-webkit-input-placeholder,
.woocommerce-input-wrapper input[type=date]::-webkit-input-placeholder,
.woocommerce-input-wrapper input[type=datetime-local]::-webkit-input-placeholder,
.woocommerce-input-wrapper input[type=month]::-webkit-input-placeholder,
.woocommerce-input-wrapper input[type=time]::-webkit-input-placeholder,
.woocommerce-input-wrapper input[type=week]::-webkit-input-placeholder,
.woocommerce form .form-row input.input-text::-webkit-input-placeholder,
.woocommerce form .form-row input[type=text]::-webkit-input-placeholder,
.woocommerce form .form-row input[type=email]::-webkit-input-placeholder,
.woocommerce form .form-row input[type=tel]::-webkit-input-placeholder,
.woocommerce form .form-row input[type=password]::-webkit-input-placeholder,
.woocommerce-address-fields input[type=text]::-webkit-input-placeholder,
.woocommerce-address-fields input[type=email]::-webkit-input-placeholder,
.woocommerce-address-fields input[type=tel]::-webkit-input-placeholder {
  opacity: 1;
}
.wp-block-search__button::-moz-placeholder, #loginform .input::-moz-placeholder,
#registerform .input::-moz-placeholder,
#lostpasswordform .input::-moz-placeholder, .file-input-wrapper .file-input-text::-moz-placeholder, select::-moz-placeholder,
.comment-form select::-moz-placeholder,
#commentform select::-moz-placeholder,
#loginform select::-moz-placeholder,
#registerform select::-moz-placeholder,
.woocommerce-input-wrapper select::-moz-placeholder,
.woocommerce form .form-row select::-moz-placeholder,
.woocommerce form .form-row .select::-moz-placeholder,
.woocommerce-address-fields select::-moz-placeholder,
.woocommerce .address-field select::-moz-placeholder,
#billing_country::-moz-placeholder,
#billing_state::-moz-placeholder,
#shipping_country::-moz-placeholder,
#shipping_state::-moz-placeholder,
.woocommerce .country_to_state::-moz-placeholder,
select.country_select::-moz-placeholder,
select.state_select::-moz-placeholder, input[type=number]::-moz-placeholder,
.woocommerce-input-wrapper input[type=number]::-moz-placeholder,
.woocommerce form .form-row input[type=number]::-moz-placeholder,
.woocommerce .quantity input[type=number]::-moz-placeholder,
.woocommerce-cart .quantity input[type=number]::-moz-placeholder,
.woocommerce-checkout .quantity input[type=number]::-moz-placeholder, textarea::-moz-placeholder,
.comment-form textarea::-moz-placeholder,
#commentform textarea::-moz-placeholder,
#comment::-moz-placeholder,
#loginform textarea::-moz-placeholder,
#registerform textarea::-moz-placeholder,
.wp-block-search__textarea::-moz-placeholder,
.woocommerce-input-wrapper textarea::-moz-placeholder,
.woocommerce form .form-row textarea::-moz-placeholder,
.woocommerce-address-fields textarea::-moz-placeholder, input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=search]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=url]::-moz-placeholder,
input[type=date]::-moz-placeholder,
input[type=datetime]::-moz-placeholder,
input[type=datetime-local]::-moz-placeholder,
input[type=month]::-moz-placeholder,
input[type=time]::-moz-placeholder,
input[type=week]::-moz-placeholder,
input[type=color]::-moz-placeholder,
.comment-form input[type=text]::-moz-placeholder,
.comment-form input[type=email]::-moz-placeholder,
.comment-form input[type=url]::-moz-placeholder,
.comment-form input[type=password]::-moz-placeholder,
#commentform input[type=text]::-moz-placeholder,
#commentform input[type=email]::-moz-placeholder,
#commentform input[type=url]::-moz-placeholder,
#loginform input[type=text]::-moz-placeholder,
#loginform input[type=password]::-moz-placeholder,
#registerform input[type=email]::-moz-placeholder,
#registerform input[type=text]::-moz-placeholder,
.wp-block-search__input::-moz-placeholder,
.woocommerce-input-wrapper input[type=text]::-moz-placeholder,
.woocommerce-input-wrapper input[type=email]::-moz-placeholder,
.woocommerce-input-wrapper input[type=password]::-moz-placeholder,
.woocommerce-input-wrapper input[type=tel]::-moz-placeholder,
.woocommerce-input-wrapper input[type=url]::-moz-placeholder,
.woocommerce-input-wrapper input[type=date]::-moz-placeholder,
.woocommerce-input-wrapper input[type=datetime-local]::-moz-placeholder,
.woocommerce-input-wrapper input[type=month]::-moz-placeholder,
.woocommerce-input-wrapper input[type=time]::-moz-placeholder,
.woocommerce-input-wrapper input[type=week]::-moz-placeholder,
.woocommerce form .form-row input.input-text::-moz-placeholder,
.woocommerce form .form-row input[type=text]::-moz-placeholder,
.woocommerce form .form-row input[type=email]::-moz-placeholder,
.woocommerce form .form-row input[type=tel]::-moz-placeholder,
.woocommerce form .form-row input[type=password]::-moz-placeholder,
.woocommerce-address-fields input[type=text]::-moz-placeholder,
.woocommerce-address-fields input[type=email]::-moz-placeholder,
.woocommerce-address-fields input[type=tel]::-moz-placeholder {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: rgba(38, 41, 48, 0.5);
  opacity: 1;
}
@media (min-width: 1920px) {
  .wp-block-search__button::-moz-placeholder, #loginform .input::-moz-placeholder,
  #registerform .input::-moz-placeholder,
  #lostpasswordform .input::-moz-placeholder, .file-input-wrapper .file-input-text::-moz-placeholder, select::-moz-placeholder,
  .comment-form select::-moz-placeholder,
  #commentform select::-moz-placeholder,
  #loginform select::-moz-placeholder,
  #registerform select::-moz-placeholder,
  .woocommerce-input-wrapper select::-moz-placeholder,
  .woocommerce form .form-row select::-moz-placeholder,
  .woocommerce form .form-row .select::-moz-placeholder,
  .woocommerce-address-fields select::-moz-placeholder,
  .woocommerce .address-field select::-moz-placeholder,
  #billing_country::-moz-placeholder,
  #billing_state::-moz-placeholder,
  #shipping_country::-moz-placeholder,
  #shipping_state::-moz-placeholder,
  .woocommerce .country_to_state::-moz-placeholder,
  select.country_select::-moz-placeholder,
  select.state_select::-moz-placeholder, input[type=number]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=number]::-moz-placeholder,
  .woocommerce form .form-row input[type=number]::-moz-placeholder,
  .woocommerce .quantity input[type=number]::-moz-placeholder,
  .woocommerce-cart .quantity input[type=number]::-moz-placeholder,
  .woocommerce-checkout .quantity input[type=number]::-moz-placeholder, textarea::-moz-placeholder,
  .comment-form textarea::-moz-placeholder,
  #commentform textarea::-moz-placeholder,
  #comment::-moz-placeholder,
  #loginform textarea::-moz-placeholder,
  #registerform textarea::-moz-placeholder,
  .wp-block-search__textarea::-moz-placeholder,
  .woocommerce-input-wrapper textarea::-moz-placeholder,
  .woocommerce form .form-row textarea::-moz-placeholder,
  .woocommerce-address-fields textarea::-moz-placeholder, input[type=text]::-moz-placeholder,
  input[type=email]::-moz-placeholder,
  input[type=password]::-moz-placeholder,
  input[type=search]::-moz-placeholder,
  input[type=tel]::-moz-placeholder,
  input[type=url]::-moz-placeholder,
  input[type=date]::-moz-placeholder,
  input[type=datetime]::-moz-placeholder,
  input[type=datetime-local]::-moz-placeholder,
  input[type=month]::-moz-placeholder,
  input[type=time]::-moz-placeholder,
  input[type=week]::-moz-placeholder,
  input[type=color]::-moz-placeholder,
  .comment-form input[type=text]::-moz-placeholder,
  .comment-form input[type=email]::-moz-placeholder,
  .comment-form input[type=url]::-moz-placeholder,
  .comment-form input[type=password]::-moz-placeholder,
  #commentform input[type=text]::-moz-placeholder,
  #commentform input[type=email]::-moz-placeholder,
  #commentform input[type=url]::-moz-placeholder,
  #loginform input[type=text]::-moz-placeholder,
  #loginform input[type=password]::-moz-placeholder,
  #registerform input[type=email]::-moz-placeholder,
  #registerform input[type=text]::-moz-placeholder,
  .wp-block-search__input::-moz-placeholder,
  .woocommerce-input-wrapper input[type=text]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=email]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=password]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=tel]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=url]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=date]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=datetime-local]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=month]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=time]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=week]::-moz-placeholder,
  .woocommerce form .form-row input.input-text::-moz-placeholder,
  .woocommerce form .form-row input[type=text]::-moz-placeholder,
  .woocommerce form .form-row input[type=email]::-moz-placeholder,
  .woocommerce form .form-row input[type=tel]::-moz-placeholder,
  .woocommerce form .form-row input[type=password]::-moz-placeholder,
  .woocommerce-address-fields input[type=text]::-moz-placeholder,
  .woocommerce-address-fields input[type=email]::-moz-placeholder,
  .woocommerce-address-fields input[type=tel]::-moz-placeholder {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .wp-block-search__button::-moz-placeholder, #loginform .input::-moz-placeholder,
  #registerform .input::-moz-placeholder,
  #lostpasswordform .input::-moz-placeholder, .file-input-wrapper .file-input-text::-moz-placeholder, select::-moz-placeholder,
  .comment-form select::-moz-placeholder,
  #commentform select::-moz-placeholder,
  #loginform select::-moz-placeholder,
  #registerform select::-moz-placeholder,
  .woocommerce-input-wrapper select::-moz-placeholder,
  .woocommerce form .form-row select::-moz-placeholder,
  .woocommerce form .form-row .select::-moz-placeholder,
  .woocommerce-address-fields select::-moz-placeholder,
  .woocommerce .address-field select::-moz-placeholder,
  #billing_country::-moz-placeholder,
  #billing_state::-moz-placeholder,
  #shipping_country::-moz-placeholder,
  #shipping_state::-moz-placeholder,
  .woocommerce .country_to_state::-moz-placeholder,
  select.country_select::-moz-placeholder,
  select.state_select::-moz-placeholder, input[type=number]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=number]::-moz-placeholder,
  .woocommerce form .form-row input[type=number]::-moz-placeholder,
  .woocommerce .quantity input[type=number]::-moz-placeholder,
  .woocommerce-cart .quantity input[type=number]::-moz-placeholder,
  .woocommerce-checkout .quantity input[type=number]::-moz-placeholder, textarea::-moz-placeholder,
  .comment-form textarea::-moz-placeholder,
  #commentform textarea::-moz-placeholder,
  #comment::-moz-placeholder,
  #loginform textarea::-moz-placeholder,
  #registerform textarea::-moz-placeholder,
  .wp-block-search__textarea::-moz-placeholder,
  .woocommerce-input-wrapper textarea::-moz-placeholder,
  .woocommerce form .form-row textarea::-moz-placeholder,
  .woocommerce-address-fields textarea::-moz-placeholder, input[type=text]::-moz-placeholder,
  input[type=email]::-moz-placeholder,
  input[type=password]::-moz-placeholder,
  input[type=search]::-moz-placeholder,
  input[type=tel]::-moz-placeholder,
  input[type=url]::-moz-placeholder,
  input[type=date]::-moz-placeholder,
  input[type=datetime]::-moz-placeholder,
  input[type=datetime-local]::-moz-placeholder,
  input[type=month]::-moz-placeholder,
  input[type=time]::-moz-placeholder,
  input[type=week]::-moz-placeholder,
  input[type=color]::-moz-placeholder,
  .comment-form input[type=text]::-moz-placeholder,
  .comment-form input[type=email]::-moz-placeholder,
  .comment-form input[type=url]::-moz-placeholder,
  .comment-form input[type=password]::-moz-placeholder,
  #commentform input[type=text]::-moz-placeholder,
  #commentform input[type=email]::-moz-placeholder,
  #commentform input[type=url]::-moz-placeholder,
  #loginform input[type=text]::-moz-placeholder,
  #loginform input[type=password]::-moz-placeholder,
  #registerform input[type=email]::-moz-placeholder,
  #registerform input[type=text]::-moz-placeholder,
  .wp-block-search__input::-moz-placeholder,
  .woocommerce-input-wrapper input[type=text]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=email]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=password]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=tel]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=url]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=date]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=datetime-local]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=month]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=time]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=week]::-moz-placeholder,
  .woocommerce form .form-row input.input-text::-moz-placeholder,
  .woocommerce form .form-row input[type=text]::-moz-placeholder,
  .woocommerce form .form-row input[type=email]::-moz-placeholder,
  .woocommerce form .form-row input[type=tel]::-moz-placeholder,
  .woocommerce form .form-row input[type=password]::-moz-placeholder,
  .woocommerce-address-fields input[type=text]::-moz-placeholder,
  .woocommerce-address-fields input[type=email]::-moz-placeholder,
  .woocommerce-address-fields input[type=tel]::-moz-placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .wp-block-search__button::-moz-placeholder, #loginform .input::-moz-placeholder,
  #registerform .input::-moz-placeholder,
  #lostpasswordform .input::-moz-placeholder, .file-input-wrapper .file-input-text::-moz-placeholder, select::-moz-placeholder,
  .comment-form select::-moz-placeholder,
  #commentform select::-moz-placeholder,
  #loginform select::-moz-placeholder,
  #registerform select::-moz-placeholder,
  .woocommerce-input-wrapper select::-moz-placeholder,
  .woocommerce form .form-row select::-moz-placeholder,
  .woocommerce form .form-row .select::-moz-placeholder,
  .woocommerce-address-fields select::-moz-placeholder,
  .woocommerce .address-field select::-moz-placeholder,
  #billing_country::-moz-placeholder,
  #billing_state::-moz-placeholder,
  #shipping_country::-moz-placeholder,
  #shipping_state::-moz-placeholder,
  .woocommerce .country_to_state::-moz-placeholder,
  select.country_select::-moz-placeholder,
  select.state_select::-moz-placeholder, input[type=number]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=number]::-moz-placeholder,
  .woocommerce form .form-row input[type=number]::-moz-placeholder,
  .woocommerce .quantity input[type=number]::-moz-placeholder,
  .woocommerce-cart .quantity input[type=number]::-moz-placeholder,
  .woocommerce-checkout .quantity input[type=number]::-moz-placeholder, textarea::-moz-placeholder,
  .comment-form textarea::-moz-placeholder,
  #commentform textarea::-moz-placeholder,
  #comment::-moz-placeholder,
  #loginform textarea::-moz-placeholder,
  #registerform textarea::-moz-placeholder,
  .wp-block-search__textarea::-moz-placeholder,
  .woocommerce-input-wrapper textarea::-moz-placeholder,
  .woocommerce form .form-row textarea::-moz-placeholder,
  .woocommerce-address-fields textarea::-moz-placeholder, input[type=text]::-moz-placeholder,
  input[type=email]::-moz-placeholder,
  input[type=password]::-moz-placeholder,
  input[type=search]::-moz-placeholder,
  input[type=tel]::-moz-placeholder,
  input[type=url]::-moz-placeholder,
  input[type=date]::-moz-placeholder,
  input[type=datetime]::-moz-placeholder,
  input[type=datetime-local]::-moz-placeholder,
  input[type=month]::-moz-placeholder,
  input[type=time]::-moz-placeholder,
  input[type=week]::-moz-placeholder,
  input[type=color]::-moz-placeholder,
  .comment-form input[type=text]::-moz-placeholder,
  .comment-form input[type=email]::-moz-placeholder,
  .comment-form input[type=url]::-moz-placeholder,
  .comment-form input[type=password]::-moz-placeholder,
  #commentform input[type=text]::-moz-placeholder,
  #commentform input[type=email]::-moz-placeholder,
  #commentform input[type=url]::-moz-placeholder,
  #loginform input[type=text]::-moz-placeholder,
  #loginform input[type=password]::-moz-placeholder,
  #registerform input[type=email]::-moz-placeholder,
  #registerform input[type=text]::-moz-placeholder,
  .wp-block-search__input::-moz-placeholder,
  .woocommerce-input-wrapper input[type=text]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=email]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=password]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=tel]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=url]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=date]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=datetime-local]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=month]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=time]::-moz-placeholder,
  .woocommerce-input-wrapper input[type=week]::-moz-placeholder,
  .woocommerce form .form-row input.input-text::-moz-placeholder,
  .woocommerce form .form-row input[type=text]::-moz-placeholder,
  .woocommerce form .form-row input[type=email]::-moz-placeholder,
  .woocommerce form .form-row input[type=tel]::-moz-placeholder,
  .woocommerce form .form-row input[type=password]::-moz-placeholder,
  .woocommerce-address-fields input[type=text]::-moz-placeholder,
  .woocommerce-address-fields input[type=email]::-moz-placeholder,
  .woocommerce-address-fields input[type=tel]::-moz-placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
.wp-block-search__button:-ms-input-placeholder, #loginform .input:-ms-input-placeholder,
#registerform .input:-ms-input-placeholder,
#lostpasswordform .input:-ms-input-placeholder, .file-input-wrapper .file-input-text:-ms-input-placeholder, select:-ms-input-placeholder,
#commentform select:-ms-input-placeholder,
#loginform select:-ms-input-placeholder,
#registerform select:-ms-input-placeholder,
.woocommerce form .form-row select:-ms-input-placeholder,
.woocommerce form .form-row .select:-ms-input-placeholder,
.woocommerce .address-field select:-ms-input-placeholder,
#billing_country:-ms-input-placeholder,
#billing_state:-ms-input-placeholder,
#shipping_country:-ms-input-placeholder,
#shipping_state:-ms-input-placeholder,
.woocommerce .country_to_state:-ms-input-placeholder, input[type=number]:-ms-input-placeholder,
.woocommerce form .form-row input[type=number]:-ms-input-placeholder,
.woocommerce .quantity input[type=number]:-ms-input-placeholder,
.woocommerce-cart .quantity input[type=number]:-ms-input-placeholder,
.woocommerce-checkout .quantity input[type=number]:-ms-input-placeholder, textarea:-ms-input-placeholder,
#commentform textarea:-ms-input-placeholder,
#comment:-ms-input-placeholder,
#loginform textarea:-ms-input-placeholder,
#registerform textarea:-ms-input-placeholder,
.wp-block-search__textarea:-ms-input-placeholder,
.woocommerce form .form-row textarea:-ms-input-placeholder, input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=search]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
input[type=date]:-ms-input-placeholder,
input[type=datetime]:-ms-input-placeholder,
input[type=datetime-local]:-ms-input-placeholder,
input[type=month]:-ms-input-placeholder,
input[type=time]:-ms-input-placeholder,
input[type=week]:-ms-input-placeholder,
input[type=color]:-ms-input-placeholder,
#commentform input[type=text]:-ms-input-placeholder,
#commentform input[type=email]:-ms-input-placeholder,
#commentform input[type=url]:-ms-input-placeholder,
#loginform input[type=text]:-ms-input-placeholder,
#loginform input[type=password]:-ms-input-placeholder,
#registerform input[type=email]:-ms-input-placeholder,
#registerform input[type=text]:-ms-input-placeholder,
.wp-block-search__input:-ms-input-placeholder,
.woocommerce form .form-row input.input-text:-ms-input-placeholder,
.woocommerce form .form-row input[type=text]:-ms-input-placeholder,
.woocommerce form .form-row input[type=email]:-ms-input-placeholder,
.woocommerce form .form-row input[type=tel]:-ms-input-placeholder,
.woocommerce form .form-row input[type=password]:-ms-input-placeholder {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: rgba(38, 41, 48, 0.5);
  opacity: 1;
}
@media (min-width: 1920px) {
  .wp-block-search__button:-ms-input-placeholder, #loginform .input:-ms-input-placeholder,
  #registerform .input:-ms-input-placeholder,
  #lostpasswordform .input:-ms-input-placeholder, .file-input-wrapper .file-input-text:-ms-input-placeholder, select:-ms-input-placeholder,
  #commentform select:-ms-input-placeholder,
  #loginform select:-ms-input-placeholder,
  #registerform select:-ms-input-placeholder,
  .woocommerce form .form-row select:-ms-input-placeholder,
  .woocommerce form .form-row .select:-ms-input-placeholder,
  .woocommerce .address-field select:-ms-input-placeholder,
  #billing_country:-ms-input-placeholder,
  #billing_state:-ms-input-placeholder,
  #shipping_country:-ms-input-placeholder,
  #shipping_state:-ms-input-placeholder,
  .woocommerce .country_to_state:-ms-input-placeholder, input[type=number]:-ms-input-placeholder,
  .woocommerce form .form-row input[type=number]:-ms-input-placeholder,
  .woocommerce .quantity input[type=number]:-ms-input-placeholder,
  .woocommerce-cart .quantity input[type=number]:-ms-input-placeholder,
  .woocommerce-checkout .quantity input[type=number]:-ms-input-placeholder, textarea:-ms-input-placeholder,
  #commentform textarea:-ms-input-placeholder,
  #comment:-ms-input-placeholder,
  #loginform textarea:-ms-input-placeholder,
  #registerform textarea:-ms-input-placeholder,
  .wp-block-search__textarea:-ms-input-placeholder,
  .woocommerce form .form-row textarea:-ms-input-placeholder, input[type=text]:-ms-input-placeholder,
  input[type=email]:-ms-input-placeholder,
  input[type=password]:-ms-input-placeholder,
  input[type=search]:-ms-input-placeholder,
  input[type=tel]:-ms-input-placeholder,
  input[type=url]:-ms-input-placeholder,
  input[type=date]:-ms-input-placeholder,
  input[type=datetime]:-ms-input-placeholder,
  input[type=datetime-local]:-ms-input-placeholder,
  input[type=month]:-ms-input-placeholder,
  input[type=time]:-ms-input-placeholder,
  input[type=week]:-ms-input-placeholder,
  input[type=color]:-ms-input-placeholder,
  #commentform input[type=text]:-ms-input-placeholder,
  #commentform input[type=email]:-ms-input-placeholder,
  #commentform input[type=url]:-ms-input-placeholder,
  #loginform input[type=text]:-ms-input-placeholder,
  #loginform input[type=password]:-ms-input-placeholder,
  #registerform input[type=email]:-ms-input-placeholder,
  #registerform input[type=text]:-ms-input-placeholder,
  .wp-block-search__input:-ms-input-placeholder,
  .woocommerce form .form-row input.input-text:-ms-input-placeholder,
  .woocommerce form .form-row input[type=text]:-ms-input-placeholder,
  .woocommerce form .form-row input[type=email]:-ms-input-placeholder,
  .woocommerce form .form-row input[type=tel]:-ms-input-placeholder,
  .woocommerce form .form-row input[type=password]:-ms-input-placeholder {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .wp-block-search__button:-ms-input-placeholder, #loginform .input:-ms-input-placeholder,
  #registerform .input:-ms-input-placeholder,
  #lostpasswordform .input:-ms-input-placeholder, .file-input-wrapper .file-input-text:-ms-input-placeholder, select:-ms-input-placeholder,
  #commentform select:-ms-input-placeholder,
  #loginform select:-ms-input-placeholder,
  #registerform select:-ms-input-placeholder,
  .woocommerce form .form-row select:-ms-input-placeholder,
  .woocommerce form .form-row .select:-ms-input-placeholder,
  .woocommerce .address-field select:-ms-input-placeholder,
  #billing_country:-ms-input-placeholder,
  #billing_state:-ms-input-placeholder,
  #shipping_country:-ms-input-placeholder,
  #shipping_state:-ms-input-placeholder,
  .woocommerce .country_to_state:-ms-input-placeholder, input[type=number]:-ms-input-placeholder,
  .woocommerce form .form-row input[type=number]:-ms-input-placeholder,
  .woocommerce .quantity input[type=number]:-ms-input-placeholder,
  .woocommerce-cart .quantity input[type=number]:-ms-input-placeholder,
  .woocommerce-checkout .quantity input[type=number]:-ms-input-placeholder, textarea:-ms-input-placeholder,
  #commentform textarea:-ms-input-placeholder,
  #comment:-ms-input-placeholder,
  #loginform textarea:-ms-input-placeholder,
  #registerform textarea:-ms-input-placeholder,
  .wp-block-search__textarea:-ms-input-placeholder,
  .woocommerce form .form-row textarea:-ms-input-placeholder, input[type=text]:-ms-input-placeholder,
  input[type=email]:-ms-input-placeholder,
  input[type=password]:-ms-input-placeholder,
  input[type=search]:-ms-input-placeholder,
  input[type=tel]:-ms-input-placeholder,
  input[type=url]:-ms-input-placeholder,
  input[type=date]:-ms-input-placeholder,
  input[type=datetime]:-ms-input-placeholder,
  input[type=datetime-local]:-ms-input-placeholder,
  input[type=month]:-ms-input-placeholder,
  input[type=time]:-ms-input-placeholder,
  input[type=week]:-ms-input-placeholder,
  input[type=color]:-ms-input-placeholder,
  #commentform input[type=text]:-ms-input-placeholder,
  #commentform input[type=email]:-ms-input-placeholder,
  #commentform input[type=url]:-ms-input-placeholder,
  #loginform input[type=text]:-ms-input-placeholder,
  #loginform input[type=password]:-ms-input-placeholder,
  #registerform input[type=email]:-ms-input-placeholder,
  #registerform input[type=text]:-ms-input-placeholder,
  .wp-block-search__input:-ms-input-placeholder,
  .woocommerce form .form-row input.input-text:-ms-input-placeholder,
  .woocommerce form .form-row input[type=text]:-ms-input-placeholder,
  .woocommerce form .form-row input[type=email]:-ms-input-placeholder,
  .woocommerce form .form-row input[type=tel]:-ms-input-placeholder,
  .woocommerce form .form-row input[type=password]:-ms-input-placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .wp-block-search__button:-ms-input-placeholder, #loginform .input:-ms-input-placeholder,
  #registerform .input:-ms-input-placeholder,
  #lostpasswordform .input:-ms-input-placeholder, .file-input-wrapper .file-input-text:-ms-input-placeholder, select:-ms-input-placeholder,
  #commentform select:-ms-input-placeholder,
  #loginform select:-ms-input-placeholder,
  #registerform select:-ms-input-placeholder,
  .woocommerce form .form-row select:-ms-input-placeholder,
  .woocommerce form .form-row .select:-ms-input-placeholder,
  .woocommerce .address-field select:-ms-input-placeholder,
  #billing_country:-ms-input-placeholder,
  #billing_state:-ms-input-placeholder,
  #shipping_country:-ms-input-placeholder,
  #shipping_state:-ms-input-placeholder,
  .woocommerce .country_to_state:-ms-input-placeholder, input[type=number]:-ms-input-placeholder,
  .woocommerce form .form-row input[type=number]:-ms-input-placeholder,
  .woocommerce .quantity input[type=number]:-ms-input-placeholder,
  .woocommerce-cart .quantity input[type=number]:-ms-input-placeholder,
  .woocommerce-checkout .quantity input[type=number]:-ms-input-placeholder, textarea:-ms-input-placeholder,
  #commentform textarea:-ms-input-placeholder,
  #comment:-ms-input-placeholder,
  #loginform textarea:-ms-input-placeholder,
  #registerform textarea:-ms-input-placeholder,
  .wp-block-search__textarea:-ms-input-placeholder,
  .woocommerce form .form-row textarea:-ms-input-placeholder, input[type=text]:-ms-input-placeholder,
  input[type=email]:-ms-input-placeholder,
  input[type=password]:-ms-input-placeholder,
  input[type=search]:-ms-input-placeholder,
  input[type=tel]:-ms-input-placeholder,
  input[type=url]:-ms-input-placeholder,
  input[type=date]:-ms-input-placeholder,
  input[type=datetime]:-ms-input-placeholder,
  input[type=datetime-local]:-ms-input-placeholder,
  input[type=month]:-ms-input-placeholder,
  input[type=time]:-ms-input-placeholder,
  input[type=week]:-ms-input-placeholder,
  input[type=color]:-ms-input-placeholder,
  #commentform input[type=text]:-ms-input-placeholder,
  #commentform input[type=email]:-ms-input-placeholder,
  #commentform input[type=url]:-ms-input-placeholder,
  #loginform input[type=text]:-ms-input-placeholder,
  #loginform input[type=password]:-ms-input-placeholder,
  #registerform input[type=email]:-ms-input-placeholder,
  #registerform input[type=text]:-ms-input-placeholder,
  .wp-block-search__input:-ms-input-placeholder,
  .woocommerce form .form-row input.input-text:-ms-input-placeholder,
  .woocommerce form .form-row input[type=text]:-ms-input-placeholder,
  .woocommerce form .form-row input[type=email]:-ms-input-placeholder,
  .woocommerce form .form-row input[type=tel]:-ms-input-placeholder,
  .woocommerce form .form-row input[type=password]:-ms-input-placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
.error.wp-block-search__button, #loginform .error.input,
#registerform .error.input,
#lostpasswordform .error.input, .file-input-wrapper .error.file-input-text, select.error,
#commentform select.error,
#loginform select.error,
#registerform select.error,
.woocommerce form .form-row select.error,
.woocommerce form .form-row .error.select,
.woocommerce .address-field select.error,
.error#billing_country,
.error#billing_state,
.error#shipping_country,
.error#shipping_state,
.woocommerce .error.country_to_state, input.error[type=number],
.woocommerce form .form-row input.error[type=number],
.woocommerce .quantity input.error[type=number],
.woocommerce-cart .quantity input.error[type=number],
.woocommerce-checkout .quantity input.error[type=number], textarea.error,
#commentform textarea.error,
.error#comment,
#loginform textarea.error,
#registerform textarea.error,
.error.wp-block-search__textarea,
.woocommerce form .form-row textarea.error, input.error[type=text],
input.error[type=email],
input.error[type=password],
input.error[type=search],
input.error[type=tel],
input.error[type=url],
input.error[type=date],
input.error[type=datetime],
input.error[type=datetime-local],
input.error[type=month],
input.error[type=time],
input.error[type=week],
input.error[type=color],
#commentform input.error[type=text],
#commentform input.error[type=email],
#commentform input.error[type=url],
#loginform input.error[type=text],
#loginform input.error[type=password],
#registerform input.error[type=email],
#registerform input.error[type=text],
.error.wp-block-search__input,
.woocommerce form .form-row input.error.input-text,
.woocommerce form .form-row input.error[type=text],
.woocommerce form .form-row input.error[type=email],
.woocommerce form .form-row input.error[type=tel],
.woocommerce form .form-row input.error[type=password],
.is-invalid.wp-block-search__button, #loginform .is-invalid.input,
#registerform .is-invalid.input,
#lostpasswordform .is-invalid.input, .file-input-wrapper .is-invalid.file-input-text, select.is-invalid,
#commentform select.is-invalid,
#loginform select.is-invalid,
#registerform select.is-invalid,
.woocommerce form .form-row select.is-invalid,
.woocommerce form .form-row .is-invalid.select,
.woocommerce .address-field select.is-invalid,
.is-invalid#billing_country,
.is-invalid#billing_state,
.is-invalid#shipping_country,
.is-invalid#shipping_state,
.woocommerce .is-invalid.country_to_state, input.is-invalid[type=number],
.woocommerce form .form-row input.is-invalid[type=number],
.woocommerce .quantity input.is-invalid[type=number],
.woocommerce-cart .quantity input.is-invalid[type=number],
.woocommerce-checkout .quantity input.is-invalid[type=number], textarea.is-invalid,
#commentform textarea.is-invalid,
.is-invalid#comment,
#loginform textarea.is-invalid,
#registerform textarea.is-invalid,
.is-invalid.wp-block-search__textarea,
.woocommerce form .form-row textarea.is-invalid, input.is-invalid[type=text],
input.is-invalid[type=email],
input.is-invalid[type=password],
input.is-invalid[type=search],
input.is-invalid[type=tel],
input.is-invalid[type=url],
input.is-invalid[type=date],
input.is-invalid[type=datetime],
input.is-invalid[type=datetime-local],
input.is-invalid[type=month],
input.is-invalid[type=time],
input.is-invalid[type=week],
input.is-invalid[type=color],
#commentform input.is-invalid[type=text],
#commentform input.is-invalid[type=email],
#commentform input.is-invalid[type=url],
#loginform input.is-invalid[type=text],
#loginform input.is-invalid[type=password],
#registerform input.is-invalid[type=email],
#registerform input.is-invalid[type=text],
.is-invalid.wp-block-search__input,
.woocommerce form .form-row input.is-invalid.input-text,
.woocommerce form .form-row input.is-invalid[type=text],
.woocommerce form .form-row input.is-invalid[type=email],
.woocommerce form .form-row input.is-invalid[type=tel],
.woocommerce form .form-row input.is-invalid[type=password],
.woocommerce-invalid.wp-block-search__button, #loginform .woocommerce-invalid.input,
#registerform .woocommerce-invalid.input,
#lostpasswordform .woocommerce-invalid.input, .file-input-wrapper .woocommerce-invalid.file-input-text, select.woocommerce-invalid,
#commentform select.woocommerce-invalid,
#loginform select.woocommerce-invalid,
#registerform select.woocommerce-invalid,
.woocommerce form .form-row select.woocommerce-invalid,
.woocommerce form .form-row .woocommerce-invalid.select,
.woocommerce .address-field select.woocommerce-invalid,
.woocommerce-invalid#billing_country,
.woocommerce-invalid#billing_state,
.woocommerce-invalid#shipping_country,
.woocommerce-invalid#shipping_state,
.woocommerce .woocommerce-invalid.country_to_state, input.woocommerce-invalid[type=number],
.woocommerce form .form-row input.woocommerce-invalid[type=number],
.woocommerce .quantity input.woocommerce-invalid[type=number],
.woocommerce-cart .quantity input.woocommerce-invalid[type=number],
.woocommerce-checkout .quantity input.woocommerce-invalid[type=number], textarea.woocommerce-invalid,
#commentform textarea.woocommerce-invalid,
.woocommerce-invalid#comment,
#loginform textarea.woocommerce-invalid,
#registerform textarea.woocommerce-invalid,
.woocommerce-invalid.wp-block-search__textarea,
.woocommerce form .form-row textarea.woocommerce-invalid, input.woocommerce-invalid[type=text],
input.woocommerce-invalid[type=email],
input.woocommerce-invalid[type=password],
input.woocommerce-invalid[type=search],
input.woocommerce-invalid[type=tel],
input.woocommerce-invalid[type=url],
input.woocommerce-invalid[type=date],
input.woocommerce-invalid[type=datetime],
input.woocommerce-invalid[type=datetime-local],
input.woocommerce-invalid[type=month],
input.woocommerce-invalid[type=time],
input.woocommerce-invalid[type=week],
input.woocommerce-invalid[type=color],
#commentform input.woocommerce-invalid[type=text],
#commentform input.woocommerce-invalid[type=email],
#commentform input.woocommerce-invalid[type=url],
#loginform input.woocommerce-invalid[type=text],
#loginform input.woocommerce-invalid[type=password],
#registerform input.woocommerce-invalid[type=email],
#registerform input.woocommerce-invalid[type=text],
.woocommerce-invalid.wp-block-search__input,
.woocommerce form .form-row input.woocommerce-invalid.input-text,
.woocommerce form .form-row input.woocommerce-invalid[type=text],
.woocommerce form .form-row input.woocommerce-invalid[type=email],
.woocommerce form .form-row input.woocommerce-invalid[type=tel],
.woocommerce form .form-row input.woocommerce-invalid[type=password] {
  border-color: #C5014C;
}
.error.wp-block-search__button:focus, #loginform .error.input:focus,
#registerform .error.input:focus,
#lostpasswordform .error.input:focus, .file-input-wrapper .error.file-input-text:focus, select.error:focus,
#commentform select.error:focus,
#loginform select.error:focus,
#registerform select.error:focus,
.woocommerce form .form-row select.error:focus,
.woocommerce form .form-row .error.select:focus,
.error#billing_country:focus,
.error#billing_state:focus,
.error#shipping_country:focus,
.error#shipping_state:focus,
.woocommerce .error.country_to_state:focus, input.error[type=number]:focus,
.woocommerce form .form-row input.error[type=number]:focus, textarea.error:focus,
#commentform textarea.error:focus,
.error#comment:focus,
#loginform textarea.error:focus,
#registerform textarea.error:focus,
.error.wp-block-search__textarea:focus,
.woocommerce form .form-row textarea.error:focus, input.error[type=text]:focus,
input.error[type=email]:focus,
input.error[type=password]:focus,
input.error[type=search]:focus,
input.error[type=tel]:focus,
input.error[type=url]:focus,
input.error[type=date]:focus,
input.error[type=datetime]:focus,
input.error[type=datetime-local]:focus,
input.error[type=month]:focus,
input.error[type=time]:focus,
input.error[type=week]:focus,
input.error[type=color]:focus,
#commentform input.error[type=text]:focus,
#commentform input.error[type=email]:focus,
#commentform input.error[type=url]:focus,
#loginform input.error[type=text]:focus,
#loginform input.error[type=password]:focus,
#registerform input.error[type=email]:focus,
#registerform input.error[type=text]:focus,
.error.wp-block-search__input:focus,
.woocommerce form .form-row input.error.input-text:focus,
.woocommerce form .form-row input.error[type=text]:focus,
.woocommerce form .form-row input.error[type=email]:focus,
.woocommerce form .form-row input.error[type=tel]:focus,
.woocommerce form .form-row input.error[type=password]:focus,
.is-invalid.wp-block-search__button:focus, #loginform .is-invalid.input:focus,
#registerform .is-invalid.input:focus,
#lostpasswordform .is-invalid.input:focus, .file-input-wrapper .is-invalid.file-input-text:focus, select.is-invalid:focus,
#commentform select.is-invalid:focus,
#loginform select.is-invalid:focus,
#registerform select.is-invalid:focus,
.woocommerce form .form-row select.is-invalid:focus,
.woocommerce form .form-row .is-invalid.select:focus,
.is-invalid#billing_country:focus,
.is-invalid#billing_state:focus,
.is-invalid#shipping_country:focus,
.is-invalid#shipping_state:focus,
.woocommerce .is-invalid.country_to_state:focus, input.is-invalid[type=number]:focus,
.woocommerce form .form-row input.is-invalid[type=number]:focus, textarea.is-invalid:focus,
#commentform textarea.is-invalid:focus,
.is-invalid#comment:focus,
#loginform textarea.is-invalid:focus,
#registerform textarea.is-invalid:focus,
.is-invalid.wp-block-search__textarea:focus,
.woocommerce form .form-row textarea.is-invalid:focus, input.is-invalid[type=text]:focus,
input.is-invalid[type=email]:focus,
input.is-invalid[type=password]:focus,
input.is-invalid[type=search]:focus,
input.is-invalid[type=tel]:focus,
input.is-invalid[type=url]:focus,
input.is-invalid[type=date]:focus,
input.is-invalid[type=datetime]:focus,
input.is-invalid[type=datetime-local]:focus,
input.is-invalid[type=month]:focus,
input.is-invalid[type=time]:focus,
input.is-invalid[type=week]:focus,
input.is-invalid[type=color]:focus,
#commentform input.is-invalid[type=text]:focus,
#commentform input.is-invalid[type=email]:focus,
#commentform input.is-invalid[type=url]:focus,
#loginform input.is-invalid[type=text]:focus,
#loginform input.is-invalid[type=password]:focus,
#registerform input.is-invalid[type=email]:focus,
#registerform input.is-invalid[type=text]:focus,
.is-invalid.wp-block-search__input:focus,
.woocommerce form .form-row input.is-invalid.input-text:focus,
.woocommerce form .form-row input.is-invalid[type=text]:focus,
.woocommerce form .form-row input.is-invalid[type=email]:focus,
.woocommerce form .form-row input.is-invalid[type=tel]:focus,
.woocommerce form .form-row input.is-invalid[type=password]:focus,
.woocommerce-invalid.wp-block-search__button:focus, #loginform .woocommerce-invalid.input:focus,
#registerform .woocommerce-invalid.input:focus,
#lostpasswordform .woocommerce-invalid.input:focus, .file-input-wrapper .woocommerce-invalid.file-input-text:focus, select.woocommerce-invalid:focus,
#commentform select.woocommerce-invalid:focus,
#loginform select.woocommerce-invalid:focus,
#registerform select.woocommerce-invalid:focus,
.woocommerce form .form-row select.woocommerce-invalid:focus,
.woocommerce form .form-row .woocommerce-invalid.select:focus,
.woocommerce-invalid#billing_country:focus,
.woocommerce-invalid#billing_state:focus,
.woocommerce-invalid#shipping_country:focus,
.woocommerce-invalid#shipping_state:focus,
.woocommerce .woocommerce-invalid.country_to_state:focus, input.woocommerce-invalid[type=number]:focus,
.woocommerce form .form-row input.woocommerce-invalid[type=number]:focus, textarea.woocommerce-invalid:focus,
#commentform textarea.woocommerce-invalid:focus,
.woocommerce-invalid#comment:focus,
#loginform textarea.woocommerce-invalid:focus,
#registerform textarea.woocommerce-invalid:focus,
.woocommerce-invalid.wp-block-search__textarea:focus,
.woocommerce form .form-row textarea.woocommerce-invalid:focus, input.woocommerce-invalid[type=text]:focus,
input.woocommerce-invalid[type=email]:focus,
input.woocommerce-invalid[type=password]:focus,
input.woocommerce-invalid[type=search]:focus,
input.woocommerce-invalid[type=tel]:focus,
input.woocommerce-invalid[type=url]:focus,
input.woocommerce-invalid[type=date]:focus,
input.woocommerce-invalid[type=datetime]:focus,
input.woocommerce-invalid[type=datetime-local]:focus,
input.woocommerce-invalid[type=month]:focus,
input.woocommerce-invalid[type=time]:focus,
input.woocommerce-invalid[type=week]:focus,
input.woocommerce-invalid[type=color]:focus,
#commentform input.woocommerce-invalid[type=text]:focus,
#commentform input.woocommerce-invalid[type=email]:focus,
#commentform input.woocommerce-invalid[type=url]:focus,
#loginform input.woocommerce-invalid[type=text]:focus,
#loginform input.woocommerce-invalid[type=password]:focus,
#registerform input.woocommerce-invalid[type=email]:focus,
#registerform input.woocommerce-invalid[type=text]:focus,
.woocommerce-invalid.wp-block-search__input:focus,
.woocommerce form .form-row input.woocommerce-invalid.input-text:focus,
.woocommerce form .form-row input.woocommerce-invalid[type=text]:focus,
.woocommerce form .form-row input.woocommerce-invalid[type=email]:focus,
.woocommerce form .form-row input.woocommerce-invalid[type=tel]:focus,
.woocommerce form .form-row input.woocommerce-invalid[type=password]:focus {
  box-shadow: 0 0 0 2px rgba(197, 1, 76, 0.1);
}

.field-with-button-wrapper .field-with-button-label, .quantity-field .quantity-label, label,
.woocommerce form .form-row label,
.woocommerce form label,
.comment-form label,
#commentform label,
.woocommerce-address-fields label,
.woocommerce-account .form-row label, .woocommerce-product-form .form-group label, .woocommerce-address-fields .form-row label,
.woocommerce-address-field .form-row label, #loginform label,
#registerform label,
#lostpasswordform label, .comment-form .comment-form-author label,
.comment-form .comment-form-email label,
.comment-form .comment-form-url label,
.comment-form .comment-form-comment label,
#commentform .comment-form-author label,
#commentform .comment-form-email label,
#commentform .comment-form-url label,
#commentform .comment-form-comment label, .form-group label,
.form-row label {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  color: #262930;
}
@media (min-width: 1920px) {
  .field-with-button-wrapper .field-with-button-label, .quantity-field .quantity-label, label,
  .woocommerce form .form-row label,
  .woocommerce form label,
  .comment-form label,
  #commentform label,
  .woocommerce-address-fields label,
  .woocommerce-account .form-row label, .woocommerce-product-form .form-group label, .woocommerce-address-fields .form-row label,
  .woocommerce-address-field .form-row label, #loginform label,
  #registerform label,
  #lostpasswordform label, .comment-form .comment-form-author label,
  .comment-form .comment-form-email label,
  .comment-form .comment-form-url label,
  .comment-form .comment-form-comment label,
  #commentform .comment-form-author label,
  #commentform .comment-form-email label,
  #commentform .comment-form-url label,
  #commentform .comment-form-comment label, .form-group label,
  .form-row label {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .field-with-button-wrapper .field-with-button-label, .quantity-field .quantity-label, label,
  .woocommerce form .form-row label,
  .woocommerce form label,
  .comment-form label,
  #commentform label,
  .woocommerce-address-fields label,
  .woocommerce-account .form-row label, .woocommerce-product-form .form-group label, .woocommerce-address-fields .form-row label,
  .woocommerce-address-field .form-row label, #loginform label,
  #registerform label,
  #lostpasswordform label, .comment-form .comment-form-author label,
  .comment-form .comment-form-email label,
  .comment-form .comment-form-url label,
  .comment-form .comment-form-comment label,
  #commentform .comment-form-author label,
  #commentform .comment-form-email label,
  #commentform .comment-form-url label,
  #commentform .comment-form-comment label, .form-group label,
  .form-row label {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 991px) {
  .field-with-button-wrapper .field-with-button-label, .quantity-field .quantity-label, label,
  .woocommerce form .form-row label,
  .woocommerce form label,
  .comment-form label,
  #commentform label,
  .woocommerce-address-fields label,
  .woocommerce-account .form-row label, .woocommerce-product-form .form-group label, .woocommerce-address-fields .form-row label,
  .woocommerce-address-field .form-row label, #loginform label,
  #registerform label,
  #lostpasswordform label, .comment-form .comment-form-author label,
  .comment-form .comment-form-email label,
  .comment-form .comment-form-url label,
  .comment-form .comment-form-comment label,
  #commentform .comment-form-author label,
  #commentform .comment-form-email label,
  #commentform .comment-form-url label,
  #commentform .comment-form-comment label, .form-group label,
  .form-row label {
    font-size: 12px;
    line-height: 16px;
  }
}
.field-with-button-wrapper .field-with-button-label, .quantity-field .quantity-label, label,
.woocommerce form .form-row label,
.woocommerce form label,
.comment-form label,
#commentform label,
.woocommerce-address-fields label,
.woocommerce-account .form-row label, .woocommerce-product-form .form-group label, .woocommerce-address-fields .form-row label,
.woocommerce-address-field .form-row label, #loginform label,
#registerform label,
#lostpasswordform label, .comment-form .comment-form-author label,
.comment-form .comment-form-email label,
.comment-form .comment-form-url label,
.comment-form .comment-form-comment label,
#commentform .comment-form-author label,
#commentform .comment-form-email label,
#commentform .comment-form-url label,
#commentform .comment-form-comment label, .form-group label,
.form-row label {
  display: block;
}
.field-with-button-wrapper .field-with-button-label .required, .quantity-field .quantity-label .required, label .required,
.woocommerce form label .required,
#commentform label .required,
.woocommerce-account .form-row label .required, #loginform label .required,
#registerform label .required,
#lostpasswordform label .required {
  color: #C5014C;
}

@media (min-width: 1920px) {
  input[type=text],
  input[type=email],
  input[type=password],
  input[type=search],
  input[type=tel],
  input[type=url],
  input[type=date],
  input[type=datetime],
  input[type=datetime-local],
  input[type=month],
  input[type=time],
  input[type=week],
  input[type=color],
  .comment-form input[type=text],
  .comment-form input[type=email],
  .comment-form input[type=url],
  .comment-form input[type=password],
  #commentform input[type=text],
  #commentform input[type=email],
  #commentform input[type=url],
  #loginform input[type=text],
  #loginform input[type=password],
  #registerform input[type=email],
  #registerform input[type=text],
  .wp-block-search__input,
  .woocommerce-input-wrapper input[type=text],
  .woocommerce-input-wrapper input[type=email],
  .woocommerce-input-wrapper input[type=password],
  .woocommerce-input-wrapper input[type=tel],
  .woocommerce-input-wrapper input[type=url],
  .woocommerce-input-wrapper input[type=date],
  .woocommerce-input-wrapper input[type=datetime-local],
  .woocommerce-input-wrapper input[type=month],
  .woocommerce-input-wrapper input[type=time],
  .woocommerce-input-wrapper input[type=week],
  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row input[type=text],
  .woocommerce form .form-row input[type=email],
  .woocommerce form .form-row input[type=tel],
  .woocommerce form .form-row input[type=password],
  .woocommerce-address-fields input[type=text],
  .woocommerce-address-fields input[type=email],
  .woocommerce-address-fields input[type=tel] {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  input[type=text],
  input[type=email],
  input[type=password],
  input[type=search],
  input[type=tel],
  input[type=url],
  input[type=date],
  input[type=datetime],
  input[type=datetime-local],
  input[type=month],
  input[type=time],
  input[type=week],
  input[type=color],
  .comment-form input[type=text],
  .comment-form input[type=email],
  .comment-form input[type=url],
  .comment-form input[type=password],
  #commentform input[type=text],
  #commentform input[type=email],
  #commentform input[type=url],
  #loginform input[type=text],
  #loginform input[type=password],
  #registerform input[type=email],
  #registerform input[type=text],
  .wp-block-search__input,
  .woocommerce-input-wrapper input[type=text],
  .woocommerce-input-wrapper input[type=email],
  .woocommerce-input-wrapper input[type=password],
  .woocommerce-input-wrapper input[type=tel],
  .woocommerce-input-wrapper input[type=url],
  .woocommerce-input-wrapper input[type=date],
  .woocommerce-input-wrapper input[type=datetime-local],
  .woocommerce-input-wrapper input[type=month],
  .woocommerce-input-wrapper input[type=time],
  .woocommerce-input-wrapper input[type=week],
  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row input[type=text],
  .woocommerce form .form-row input[type=email],
  .woocommerce form .form-row input[type=tel],
  .woocommerce form .form-row input[type=password],
  .woocommerce-address-fields input[type=text],
  .woocommerce-address-fields input[type=email],
  .woocommerce-address-fields input[type=tel] {
    height: 48px;
  }
}
@media (max-width: 991px) {
  input[type=text],
  input[type=email],
  input[type=password],
  input[type=search],
  input[type=tel],
  input[type=url],
  input[type=date],
  input[type=datetime],
  input[type=datetime-local],
  input[type=month],
  input[type=time],
  input[type=week],
  input[type=color],
  .comment-form input[type=text],
  .comment-form input[type=email],
  .comment-form input[type=url],
  .comment-form input[type=password],
  #commentform input[type=text],
  #commentform input[type=email],
  #commentform input[type=url],
  #loginform input[type=text],
  #loginform input[type=password],
  #registerform input[type=email],
  #registerform input[type=text],
  .wp-block-search__input,
  .woocommerce-input-wrapper input[type=text],
  .woocommerce-input-wrapper input[type=email],
  .woocommerce-input-wrapper input[type=password],
  .woocommerce-input-wrapper input[type=tel],
  .woocommerce-input-wrapper input[type=url],
  .woocommerce-input-wrapper input[type=date],
  .woocommerce-input-wrapper input[type=datetime-local],
  .woocommerce-input-wrapper input[type=month],
  .woocommerce-input-wrapper input[type=time],
  .woocommerce-input-wrapper input[type=week],
  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row input[type=text],
  .woocommerce form .form-row input[type=email],
  .woocommerce form .form-row input[type=tel],
  .woocommerce form .form-row input[type=password],
  .woocommerce-address-fields input[type=text],
  .woocommerce-address-fields input[type=email],
  .woocommerce-address-fields input[type=tel] {
    height: 40px;
  }
}

@media (min-width: 1920px) {
  input[type=color] {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  input[type=color] {
    height: 48px;
  }
}
@media (max-width: 991px) {
  input[type=color] {
    height: 40px;
  }
}
@media (min-width: 1920px) {
  input[type=color] {
    width: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  input[type=color] {
    width: 48px;
  }
}
@media (max-width: 991px) {
  input[type=color] {
    width: 40px;
  }
}
input[type=color] {
  padding: 2px;
  cursor: pointer;
}
input[type=color]::-webkit-color-swatch-wrapper {
  padding: 0;
}
input[type=color]::-webkit-color-swatch {
  border: none;
  border-radius: 4px;
}

input[type=text].field-small,
input[type=email].field-small,
input[type=password].field-small,
input[type=search].field-small,
input[type=tel].field-small,
input[type=url].field-small,
input[type=date].field-small,
input[type=datetime-local].field-small,
input[type=month].field-small,
input[type=time].field-small,
input[type=week].field-small {
  width: 100px;
}
@media (min-width: 1920px) {
  input[type=text].field-small,
  input[type=email].field-small,
  input[type=password].field-small,
  input[type=search].field-small,
  input[type=tel].field-small,
  input[type=url].field-small,
  input[type=date].field-small,
  input[type=datetime-local].field-small,
  input[type=month].field-small,
  input[type=time].field-small,
  input[type=week].field-small {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  input[type=text].field-small,
  input[type=email].field-small,
  input[type=password].field-small,
  input[type=search].field-small,
  input[type=tel].field-small,
  input[type=url].field-small,
  input[type=date].field-small,
  input[type=datetime-local].field-small,
  input[type=month].field-small,
  input[type=time].field-small,
  input[type=week].field-small {
    height: 48px;
  }
}
@media (max-width: 991px) {
  input[type=text].field-small,
  input[type=email].field-small,
  input[type=password].field-small,
  input[type=search].field-small,
  input[type=tel].field-small,
  input[type=url].field-small,
  input[type=date].field-small,
  input[type=datetime-local].field-small,
  input[type=month].field-small,
  input[type=time].field-small,
  input[type=week].field-small {
    height: 40px;
  }
}

textarea,
.comment-form textarea,
#commentform textarea,
#comment,
#loginform textarea,
#registerform textarea,
.wp-block-search__textarea,
.woocommerce-input-wrapper textarea,
.woocommerce form .form-row textarea,
.woocommerce-address-fields textarea {
  min-height: 80px;
  resize: vertical;
  font-family: inherit;
  padding-top: 8px;
  padding-bottom: 8px;
}

textarea.field-small {
  width: 100px;
}
@media (min-width: 1920px) {
  textarea.field-small {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  textarea.field-small {
    height: 48px;
  }
}
@media (max-width: 991px) {
  textarea.field-small {
    height: 40px;
  }
}
@media (min-width: 1920px) {
  textarea.field-small {
    min-height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  textarea.field-small {
    min-height: 48px;
  }
}
@media (max-width: 991px) {
  textarea.field-small {
    min-height: 40px;
  }
}

@media (min-width: 1920px) {
  input[type=number],
  .woocommerce-input-wrapper input[type=number],
  .woocommerce form .form-row input[type=number],
  .woocommerce .quantity input[type=number],
  .woocommerce-cart .quantity input[type=number],
  .woocommerce-checkout .quantity input[type=number] {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  input[type=number],
  .woocommerce-input-wrapper input[type=number],
  .woocommerce form .form-row input[type=number],
  .woocommerce .quantity input[type=number],
  .woocommerce-cart .quantity input[type=number],
  .woocommerce-checkout .quantity input[type=number] {
    height: 48px;
  }
}
@media (max-width: 991px) {
  input[type=number],
  .woocommerce-input-wrapper input[type=number],
  .woocommerce form .form-row input[type=number],
  .woocommerce .quantity input[type=number],
  .woocommerce-cart .quantity input[type=number],
  .woocommerce-checkout .quantity input[type=number] {
    height: 40px;
  }
}
input[type=number],
.woocommerce-input-wrapper input[type=number],
.woocommerce form .form-row input[type=number],
.woocommerce .quantity input[type=number],
.woocommerce-cart .quantity input[type=number],
.woocommerce-checkout .quantity input[type=number] {
  -moz-appearance: textfield;
  appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button,
.woocommerce-input-wrapper input[type=number]::-webkit-outer-spin-button,
.woocommerce-input-wrapper input[type=number]::-webkit-inner-spin-button,
.woocommerce form .form-row input[type=number]::-webkit-outer-spin-button,
.woocommerce form .form-row input[type=number]::-webkit-inner-spin-button,
.woocommerce .quantity input[type=number]::-webkit-outer-spin-button,
.woocommerce .quantity input[type=number]::-webkit-inner-spin-button,
.woocommerce-cart .quantity input[type=number]::-webkit-outer-spin-button,
.woocommerce-cart .quantity input[type=number]::-webkit-inner-spin-button,
.woocommerce-checkout .quantity input[type=number]::-webkit-outer-spin-button,
.woocommerce-checkout .quantity input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
input[type=number]::-webkit-inner-spin-button,
.woocommerce-input-wrapper input[type=number]::-webkit-inner-spin-button,
.woocommerce form .form-row input[type=number]::-webkit-inner-spin-button,
.woocommerce .quantity input[type=number]::-webkit-inner-spin-button,
.woocommerce-cart .quantity input[type=number]::-webkit-inner-spin-button,
.woocommerce-checkout .quantity input[type=number]::-webkit-inner-spin-button {
  opacity: 1;
  background: transparent;
  border-left: 1px solid #D8DAE2;
  width: 20px;
  height: 100%;
  cursor: pointer;
}

input[type=number].field-small {
  width: 100px;
}
@media (min-width: 1920px) {
  input[type=number].field-small {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  input[type=number].field-small {
    height: 48px;
  }
}
@media (max-width: 991px) {
  input[type=number].field-small {
    height: 40px;
  }
}

@media (min-width: 1920px) {
  select,
  .comment-form select,
  #commentform select,
  #loginform select,
  #registerform select,
  .woocommerce-input-wrapper select,
  .woocommerce form .form-row select,
  .woocommerce form .form-row .select,
  .woocommerce-address-fields select,
  .woocommerce .address-field select,
  #billing_country,
  #billing_state,
  #shipping_country,
  #shipping_state,
  .woocommerce .country_to_state,
  select.country_select,
  select.state_select {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  select,
  .comment-form select,
  #commentform select,
  #loginform select,
  #registerform select,
  .woocommerce-input-wrapper select,
  .woocommerce form .form-row select,
  .woocommerce form .form-row .select,
  .woocommerce-address-fields select,
  .woocommerce .address-field select,
  #billing_country,
  #billing_state,
  #shipping_country,
  #shipping_state,
  .woocommerce .country_to_state,
  select.country_select,
  select.state_select {
    height: 48px;
  }
}
@media (max-width: 991px) {
  select,
  .comment-form select,
  #commentform select,
  #loginform select,
  #registerform select,
  .woocommerce-input-wrapper select,
  .woocommerce form .form-row select,
  .woocommerce form .form-row .select,
  .woocommerce-address-fields select,
  .woocommerce .address-field select,
  #billing_country,
  #billing_state,
  #shipping_country,
  #shipping_state,
  .woocommerce .country_to_state,
  select.country_select,
  select.state_select {
    height: 40px;
  }
}
select,
.comment-form select,
#commentform select,
#loginform select,
#registerform select,
.woocommerce-input-wrapper select,
.woocommerce form .form-row select,
.woocommerce form .form-row .select,
.woocommerce-address-fields select,
.woocommerce .address-field select,
#billing_country,
#billing_state,
#shipping_country,
#shipping_state,
.woocommerce .country_to_state,
select.country_select,
select.state_select {
  padding-right: 32px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%235B5E67' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  appearance: none;
  cursor: pointer;
}
select:disabled,
.comment-form select:disabled,
#commentform select:disabled,
#loginform select:disabled,
#registerform select:disabled,
.woocommerce-input-wrapper select:disabled,
.woocommerce form .form-row select:disabled,
.woocommerce form .form-row .select:disabled,
.woocommerce-address-fields select:disabled,
.woocommerce .address-field select:disabled,
#billing_country:disabled,
#billing_state:disabled,
#shipping_country:disabled,
#shipping_state:disabled,
.woocommerce .country_to_state:disabled,
select.country_select:disabled,
select.state_select:disabled {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%238A8C95' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}
select.error, select.is-invalid, select.woocommerce-invalid,
.comment-form select.error,
.comment-form select.is-invalid,
.comment-form select.woocommerce-invalid,
#commentform select.error,
#commentform select.is-invalid,
#commentform select.woocommerce-invalid,
#loginform select.error,
#loginform select.is-invalid,
#loginform select.woocommerce-invalid,
#registerform select.error,
#registerform select.is-invalid,
#registerform select.woocommerce-invalid,
.woocommerce-input-wrapper select.error,
.woocommerce-input-wrapper select.is-invalid,
.woocommerce-input-wrapper select.woocommerce-invalid,
.woocommerce form .form-row select.error,
.woocommerce form .form-row select.is-invalid,
.woocommerce form .form-row select.woocommerce-invalid,
.woocommerce form .form-row .select.error,
.woocommerce form .form-row .select.is-invalid,
.woocommerce form .form-row .select.woocommerce-invalid,
.woocommerce-address-fields select.error,
.woocommerce-address-fields select.is-invalid,
.woocommerce-address-fields select.woocommerce-invalid,
.woocommerce .address-field select.error,
.woocommerce .address-field select.is-invalid,
.woocommerce .address-field select.woocommerce-invalid,
#billing_country.error,
#billing_country.is-invalid,
#billing_country.woocommerce-invalid,
#billing_state.error,
#billing_state.is-invalid,
#billing_state.woocommerce-invalid,
#shipping_country.error,
#shipping_country.is-invalid,
#shipping_country.woocommerce-invalid,
#shipping_state.error,
#shipping_state.is-invalid,
#shipping_state.woocommerce-invalid,
.woocommerce .country_to_state.error,
.woocommerce .country_to_state.is-invalid,
.woocommerce .country_to_state.woocommerce-invalid,
select.country_select.error,
select.country_select.is-invalid,
select.country_select.woocommerce-invalid,
select.state_select.error,
select.state_select.is-invalid,
select.state_select.woocommerce-invalid {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23C5014C' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

select[multiple] {
  min-height: 120px;
  padding: 8px 12px;
  background-image: none;
}
select[multiple] option {
  padding: 4px 12px;
}
select[multiple] option:checked {
  background-color: #FF4F60;
  color: #FFFFFF;
}

select.field-small {
  width: 100px;
}
@media (min-width: 1920px) {
  select.field-small {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  select.field-small {
    height: 48px;
  }
}
@media (max-width: 991px) {
  select.field-small {
    height: 40px;
  }
}

@media (min-width: 1920px) {
  input[type=checkbox],
  .comment-form input[type=checkbox],
  #commentform input[type=checkbox],
  #loginform input[type=checkbox],
  #registerform input[type=checkbox],
  .woocommerce-input-wrapper input[type=checkbox],
  .woocommerce form .form-row input[type=checkbox],
  .woocommerce form .input-checkbox,
  input.input-checkbox,
  .woocommerce .form-row input.input-checkbox {
    width: 28px;
    height: 28px;
    padding: 6px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  input[type=checkbox],
  .comment-form input[type=checkbox],
  #commentform input[type=checkbox],
  #loginform input[type=checkbox],
  #registerform input[type=checkbox],
  .woocommerce-input-wrapper input[type=checkbox],
  .woocommerce form .form-row input[type=checkbox],
  .woocommerce form .input-checkbox,
  input.input-checkbox,
  .woocommerce .form-row input.input-checkbox {
    width: 12px;
    height: 12px;
    padding: 0;
  }
}
@media (max-width: 991px) {
  input[type=checkbox],
  .comment-form input[type=checkbox],
  #commentform input[type=checkbox],
  #loginform input[type=checkbox],
  #registerform input[type=checkbox],
  .woocommerce-input-wrapper input[type=checkbox],
  .woocommerce form .form-row input[type=checkbox],
  .woocommerce form .input-checkbox,
  input.input-checkbox,
  .woocommerce .form-row input.input-checkbox {
    width: 12px;
    height: 12px;
    padding: 0;
  }
}
input[type=checkbox],
.comment-form input[type=checkbox],
#commentform input[type=checkbox],
#loginform input[type=checkbox],
#registerform input[type=checkbox],
.woocommerce-input-wrapper input[type=checkbox],
.woocommerce form .form-row input[type=checkbox],
.woocommerce form .input-checkbox,
input.input-checkbox,
.woocommerce .form-row input.input-checkbox {
  margin: 0 8px 0 0;
  cursor: pointer;
  appearance: none;
  border: 1px solid #D8DAE2;
  border-radius: 2px;
  background-color: #FFFFFF;
  transition: all 0.2s ease-in-out;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
}
input[type=checkbox]:hover:not(:disabled),
.comment-form input[type=checkbox]:hover:not(:disabled),
#commentform input[type=checkbox]:hover:not(:disabled),
#loginform input[type=checkbox]:hover:not(:disabled),
#registerform input[type=checkbox]:hover:not(:disabled),
.woocommerce-input-wrapper input[type=checkbox]:hover:not(:disabled),
.woocommerce form .form-row input[type=checkbox]:hover:not(:disabled),
.woocommerce form .input-checkbox:hover:not(:disabled),
input.input-checkbox:hover:not(:disabled),
.woocommerce .form-row input.input-checkbox:hover:not(:disabled) {
  border-color: #FF4F60;
}
input[type=checkbox]:focus,
.comment-form input[type=checkbox]:focus,
#commentform input[type=checkbox]:focus,
#loginform input[type=checkbox]:focus,
#registerform input[type=checkbox]:focus,
.woocommerce-input-wrapper input[type=checkbox]:focus,
.woocommerce form .form-row input[type=checkbox]:focus,
.woocommerce form .input-checkbox:focus,
input.input-checkbox:focus,
.woocommerce .form-row input.input-checkbox:focus {
  outline: none;
  border-color: #262930;
  box-shadow: 0 0 0 2px rgba(38, 41, 48, 0.1);
}
input[type=checkbox]:checked,
.comment-form input[type=checkbox]:checked,
#commentform input[type=checkbox]:checked,
#loginform input[type=checkbox]:checked,
#registerform input[type=checkbox]:checked,
.woocommerce-input-wrapper input[type=checkbox]:checked,
.woocommerce form .form-row input[type=checkbox]:checked,
.woocommerce form .input-checkbox:checked,
input.input-checkbox:checked,
.woocommerce .form-row input.input-checkbox:checked {
  background-color: #262930;
  border-color: #262930;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m3 8 2 2 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}
input[type=checkbox]:disabled,
.comment-form input[type=checkbox]:disabled,
#commentform input[type=checkbox]:disabled,
#loginform input[type=checkbox]:disabled,
#registerform input[type=checkbox]:disabled,
.woocommerce-input-wrapper input[type=checkbox]:disabled,
.woocommerce form .form-row input[type=checkbox]:disabled,
.woocommerce form .input-checkbox:disabled,
input.input-checkbox:disabled,
.woocommerce .form-row input.input-checkbox:disabled {
  background-color: #F0F1F5;
  border-color: #D8DAE2;
  cursor: not-allowed;
  opacity: 0.6;
}
input[type=checkbox].error, input[type=checkbox].is-invalid, input[type=checkbox].woocommerce-invalid,
.comment-form input[type=checkbox].error,
.comment-form input[type=checkbox].is-invalid,
.comment-form input[type=checkbox].woocommerce-invalid,
#commentform input[type=checkbox].error,
#commentform input[type=checkbox].is-invalid,
#commentform input[type=checkbox].woocommerce-invalid,
#loginform input[type=checkbox].error,
#loginform input[type=checkbox].is-invalid,
#loginform input[type=checkbox].woocommerce-invalid,
#registerform input[type=checkbox].error,
#registerform input[type=checkbox].is-invalid,
#registerform input[type=checkbox].woocommerce-invalid,
.woocommerce-input-wrapper input[type=checkbox].error,
.woocommerce-input-wrapper input[type=checkbox].is-invalid,
.woocommerce-input-wrapper input[type=checkbox].woocommerce-invalid,
.woocommerce form .form-row input[type=checkbox].error,
.woocommerce form .form-row input[type=checkbox].is-invalid,
.woocommerce form .form-row input[type=checkbox].woocommerce-invalid,
.woocommerce form .input-checkbox.error,
.woocommerce form .input-checkbox.is-invalid,
.woocommerce form .input-checkbox.woocommerce-invalid,
input.input-checkbox.error,
input.input-checkbox.is-invalid,
input.input-checkbox.woocommerce-invalid,
.woocommerce .form-row input.input-checkbox.error,
.woocommerce .form-row input.input-checkbox.is-invalid,
.woocommerce .form-row input.input-checkbox.woocommerce-invalid {
  border-color: #C5014C;
}
input[type=checkbox].error:focus, input[type=checkbox].is-invalid:focus, input[type=checkbox].woocommerce-invalid:focus,
.comment-form input[type=checkbox].error:focus,
.comment-form input[type=checkbox].is-invalid:focus,
.comment-form input[type=checkbox].woocommerce-invalid:focus,
#commentform input[type=checkbox].error:focus,
#commentform input[type=checkbox].is-invalid:focus,
#commentform input[type=checkbox].woocommerce-invalid:focus,
#loginform input[type=checkbox].error:focus,
#loginform input[type=checkbox].is-invalid:focus,
#loginform input[type=checkbox].woocommerce-invalid:focus,
#registerform input[type=checkbox].error:focus,
#registerform input[type=checkbox].is-invalid:focus,
#registerform input[type=checkbox].woocommerce-invalid:focus,
.woocommerce-input-wrapper input[type=checkbox].error:focus,
.woocommerce-input-wrapper input[type=checkbox].is-invalid:focus,
.woocommerce-input-wrapper input[type=checkbox].woocommerce-invalid:focus,
.woocommerce form .form-row input[type=checkbox].error:focus,
.woocommerce form .form-row input[type=checkbox].is-invalid:focus,
.woocommerce form .form-row input[type=checkbox].woocommerce-invalid:focus,
.woocommerce form .input-checkbox.error:focus,
.woocommerce form .input-checkbox.is-invalid:focus,
.woocommerce form .input-checkbox.woocommerce-invalid:focus,
input.input-checkbox.error:focus,
input.input-checkbox.is-invalid:focus,
input.input-checkbox.woocommerce-invalid:focus,
.woocommerce .form-row input.input-checkbox.error:focus,
.woocommerce .form-row input.input-checkbox.is-invalid:focus,
.woocommerce .form-row input.input-checkbox.woocommerce-invalid:focus {
  box-shadow: 0 0 0 2px rgba(197, 1, 76, 0.1);
}

label.checkbox,
.woocommerce form .form-row label.checkbox {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  color: #262930;
}
@media (min-width: 1920px) {
  label.checkbox,
  .woocommerce form .form-row label.checkbox {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  label.checkbox,
  .woocommerce form .form-row label.checkbox {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 991px) {
  label.checkbox,
  .woocommerce form .form-row label.checkbox {
    font-size: 12px;
    line-height: 16px;
  }
}
label.checkbox,
.woocommerce form .form-row label.checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
}
label.checkbox input[type=checkbox],
.woocommerce form .form-row label.checkbox input[type=checkbox] {
  margin-right: 8px;
}

input[type=checkbox].field-small {
  width: 20px;
  height: 20px;
}

@media (min-width: 1920px) {
  input[type=radio],
  .comment-form input[type=radio],
  #commentform input[type=radio],
  .woocommerce-input-wrapper input[type=radio],
  .woocommerce form .form-row input[type=radio],
  .woocommerce form .input-radio,
  input.input-radio,
  .woocommerce .form-row input.input-radio {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  input[type=radio],
  .comment-form input[type=radio],
  #commentform input[type=radio],
  .woocommerce-input-wrapper input[type=radio],
  .woocommerce form .form-row input[type=radio],
  .woocommerce form .input-radio,
  input.input-radio,
  .woocommerce .form-row input.input-radio {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 991px) {
  input[type=radio],
  .comment-form input[type=radio],
  #commentform input[type=radio],
  .woocommerce-input-wrapper input[type=radio],
  .woocommerce form .form-row input[type=radio],
  .woocommerce form .input-radio,
  input.input-radio,
  .woocommerce .form-row input.input-radio {
    width: 12px;
    height: 12px;
  }
}
input[type=radio],
.comment-form input[type=radio],
#commentform input[type=radio],
.woocommerce-input-wrapper input[type=radio],
.woocommerce form .form-row input[type=radio],
.woocommerce form .input-radio,
input.input-radio,
.woocommerce .form-row input.input-radio {
  margin: 0 8px 0 0;
  cursor: pointer;
  appearance: none;
  border: 1px solid #D8DAE2;
  border-radius: 50%;
  background-color: #FFFFFF;
  transition: all 0.2s ease-in-out;
  flex-shrink: 0;
}
input[type=radio]:hover:not(:disabled),
.comment-form input[type=radio]:hover:not(:disabled),
#commentform input[type=radio]:hover:not(:disabled),
.woocommerce-input-wrapper input[type=radio]:hover:not(:disabled),
.woocommerce form .form-row input[type=radio]:hover:not(:disabled),
.woocommerce form .input-radio:hover:not(:disabled),
input.input-radio:hover:not(:disabled),
.woocommerce .form-row input.input-radio:hover:not(:disabled) {
  border-color: #FF4F60;
}
input[type=radio]:focus,
.comment-form input[type=radio]:focus,
#commentform input[type=radio]:focus,
.woocommerce-input-wrapper input[type=radio]:focus,
.woocommerce form .form-row input[type=radio]:focus,
.woocommerce form .input-radio:focus,
input.input-radio:focus,
.woocommerce .form-row input.input-radio:focus {
  outline: none;
  border-color: #262930;
  box-shadow: 0 0 0 2px rgba(38, 41, 48, 0.1);
}
input[type=radio]:checked,
.comment-form input[type=radio]:checked,
#commentform input[type=radio]:checked,
.woocommerce-input-wrapper input[type=radio]:checked,
.woocommerce form .form-row input[type=radio]:checked,
.woocommerce form .input-radio:checked,
input.input-radio:checked,
.woocommerce .form-row input.input-radio:checked {
  background-color: #262930;
  border-color: #262930;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
}
input[type=radio]:disabled,
.comment-form input[type=radio]:disabled,
#commentform input[type=radio]:disabled,
.woocommerce-input-wrapper input[type=radio]:disabled,
.woocommerce form .form-row input[type=radio]:disabled,
.woocommerce form .input-radio:disabled,
input.input-radio:disabled,
.woocommerce .form-row input.input-radio:disabled {
  background-color: #F0F1F5;
  border-color: #D8DAE2;
  cursor: not-allowed;
  opacity: 0.6;
}
input[type=radio].error, input[type=radio].is-invalid, input[type=radio].woocommerce-invalid,
.comment-form input[type=radio].error,
.comment-form input[type=radio].is-invalid,
.comment-form input[type=radio].woocommerce-invalid,
#commentform input[type=radio].error,
#commentform input[type=radio].is-invalid,
#commentform input[type=radio].woocommerce-invalid,
.woocommerce-input-wrapper input[type=radio].error,
.woocommerce-input-wrapper input[type=radio].is-invalid,
.woocommerce-input-wrapper input[type=radio].woocommerce-invalid,
.woocommerce form .form-row input[type=radio].error,
.woocommerce form .form-row input[type=radio].is-invalid,
.woocommerce form .form-row input[type=radio].woocommerce-invalid,
.woocommerce form .input-radio.error,
.woocommerce form .input-radio.is-invalid,
.woocommerce form .input-radio.woocommerce-invalid,
input.input-radio.error,
input.input-radio.is-invalid,
input.input-radio.woocommerce-invalid,
.woocommerce .form-row input.input-radio.error,
.woocommerce .form-row input.input-radio.is-invalid,
.woocommerce .form-row input.input-radio.woocommerce-invalid {
  border-color: #C5014C;
}
input[type=radio].error:focus, input[type=radio].is-invalid:focus, input[type=radio].woocommerce-invalid:focus,
.comment-form input[type=radio].error:focus,
.comment-form input[type=radio].is-invalid:focus,
.comment-form input[type=radio].woocommerce-invalid:focus,
#commentform input[type=radio].error:focus,
#commentform input[type=radio].is-invalid:focus,
#commentform input[type=radio].woocommerce-invalid:focus,
.woocommerce-input-wrapper input[type=radio].error:focus,
.woocommerce-input-wrapper input[type=radio].is-invalid:focus,
.woocommerce-input-wrapper input[type=radio].woocommerce-invalid:focus,
.woocommerce form .form-row input[type=radio].error:focus,
.woocommerce form .form-row input[type=radio].is-invalid:focus,
.woocommerce form .form-row input[type=radio].woocommerce-invalid:focus,
.woocommerce form .input-radio.error:focus,
.woocommerce form .input-radio.is-invalid:focus,
.woocommerce form .input-radio.woocommerce-invalid:focus,
input.input-radio.error:focus,
input.input-radio.is-invalid:focus,
input.input-radio.woocommerce-invalid:focus,
.woocommerce .form-row input.input-radio.error:focus,
.woocommerce .form-row input.input-radio.is-invalid:focus,
.woocommerce .form-row input.input-radio.woocommerce-invalid:focus {
  box-shadow: 0 0 0 2px rgba(197, 1, 76, 0.1);
}

label.radio,
.woocommerce form .form-row label.radio {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  color: #262930;
}
@media (min-width: 1920px) {
  label.radio,
  .woocommerce form .form-row label.radio {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  label.radio,
  .woocommerce form .form-row label.radio {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 991px) {
  label.radio,
  .woocommerce form .form-row label.radio {
    font-size: 12px;
    line-height: 16px;
  }
}
label.radio,
.woocommerce form .form-row label.radio {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
}
label.radio input[type=radio],
.woocommerce form .form-row label.radio input[type=radio] {
  margin-right: 8px;
}

input[type=radio].field-small {
  width: 20px;
  height: 20px;
}

input[type=file],
.woocommerce-input-wrapper input[type=file] {
  display: none;
}

.file-input-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}
.file-input-wrapper .file-input-text {
  flex: 1;
}
@media (min-width: 1920px) {
  .file-input-wrapper .file-input-text {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .file-input-wrapper .file-input-text {
    height: 48px;
  }
}
@media (max-width: 991px) {
  .file-input-wrapper .file-input-text {
    height: 40px;
  }
}
.file-input-wrapper .file-input-text {
  cursor: pointer;
}
.file-input-wrapper .file-input-button {
  padding: 8px 16px;
}
@media (min-width: 1920px) {
  .file-input-wrapper .file-input-button {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .file-input-wrapper .file-input-button {
    height: 48px;
  }
}
@media (max-width: 991px) {
  .file-input-wrapper .file-input-button {
    height: 40px;
  }
}
.file-input-wrapper .file-input-button {
  white-space: nowrap;
  cursor: pointer;
}
.file-input-wrapper.disabled .file-input-text {
  background-color: #F0F1F5;
  color: #8A8C95;
  cursor: not-allowed;
}
.file-input-wrapper.disabled .file-input-button {
  background-color: #E4E4E6;
  color: #262930;
  cursor: not-allowed;
}
.file-input-wrapper.error .file-input-text {
  border-color: #C5014C;
}

.file-input-wrapper.field-small .file-input-text {
  width: 100px;
}
@media (min-width: 1920px) {
  .file-input-wrapper.field-small .file-input-text {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .file-input-wrapper.field-small .file-input-text {
    height: 48px;
  }
}
@media (max-width: 991px) {
  .file-input-wrapper.field-small .file-input-text {
    height: 40px;
  }
}
@media (min-width: 1920px) {
  .file-input-wrapper.field-small .file-input-button {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .file-input-wrapper.field-small .file-input-button {
    height: 48px;
  }
}
@media (max-width: 991px) {
  .file-input-wrapper.field-small .file-input-button {
    height: 40px;
  }
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}
.input-group .input-prefix,
.input-group .input-suffix {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(38, 41, 48, 0.5);
  font-size: 16px;
  pointer-events: none;
  z-index: 2;
}
.input-group .input-prefix {
  left: 12px;
}
.input-group .input-suffix {
  right: 12px;
}
.input-group input {
  padding-left: 32px;
}
.input-group input.has-suffix {
  padding-right: 32px;
}
.input-group.error .input-prefix,
.input-group.error .input-suffix {
  color: #C5014C;
}
.input-group.disabled .input-prefix,
.input-group.disabled .input-suffix {
  color: #8A8C95;
}

.input-group.field-small input {
  width: 100px;
}
@media (min-width: 1920px) {
  .input-group.field-small input {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .input-group.field-small input {
    height: 48px;
  }
}
@media (max-width: 991px) {
  .input-group.field-small input {
    height: 40px;
  }
}

span.field-icon + input[type=text],
span.field-icon + input[type=email],
span.field-icon + input[type=password],
span.field-icon + input[type=search],
span.field-icon + input[type=tel],
span.field-icon + input[type=url],
span.field-icon + input[type=date],
span.field-icon + input[type=datetime],
span.field-icon + input[type=datetime-local],
span.field-icon + input[type=month],
span.field-icon + input[type=time],
span.field-icon + input[type=week],
span.field-icon + input[type=number],
span.field-icon + select,
span.field-icon + textarea {
  padding-left: 40px;
}

.simple-dropdown {
  position: relative;
  display: inline-block;
  cursor: pointer;
  color: #262930;
  font-size: 16px;
}
.simple-dropdown::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 8px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(38, 41, 48, 0.5);
  vertical-align: middle;
}
.simple-dropdown:hover {
  color: #FF4F60;
}
.simple-dropdown:hover::after {
  border-top-color: #FF4F60;
}
.simple-dropdown:focus {
  outline: none;
  color: #262930;
}
.simple-dropdown:focus::after {
  border-top-color: #262930;
}
.simple-dropdown.error {
  color: #C5014C;
}
.simple-dropdown.error::after {
  border-top-color: #C5014C;
}
.simple-dropdown.disabled {
  color: #8A8C95;
  cursor: not-allowed;
}
.simple-dropdown.disabled::after {
  border-top-color: #8A8C95;
}

.simple-dropdown.field-small {
  width: 100px;
}
@media (min-width: 1920px) {
  .simple-dropdown.field-small {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .simple-dropdown.field-small {
    height: 48px;
  }
}
@media (max-width: 991px) {
  .simple-dropdown.field-small {
    height: 40px;
  }
}
@media (min-width: 1920px) {
  .simple-dropdown.field-small {
    line-height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .simple-dropdown.field-small {
    line-height: 48px;
  }
}
@media (max-width: 991px) {
  .simple-dropdown.field-small {
    line-height: 40px;
  }
}

@media (min-width: 1920px) {
  .simple-dropdown.field-height-only {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .simple-dropdown.field-height-only {
    height: 48px;
  }
}
@media (max-width: 991px) {
  .simple-dropdown.field-height-only {
    height: 40px;
  }
}
@media (min-width: 1920px) {
  .simple-dropdown.field-height-only {
    line-height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .simple-dropdown.field-height-only {
    line-height: 48px;
  }
}
@media (max-width: 991px) {
  .simple-dropdown.field-height-only {
    line-height: 40px;
  }
}

.select-underline {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 120px;
  padding: 0 12px 0 0;
  border: none;
  border-bottom: 1px solid #262930;
  border-radius: 0;
  background: transparent;
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .select-underline {
    font-size: 40px;
    line-height: 56px;
    letter-spacing: -1px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .select-underline {
    font-size: 32px;
    line-height: 48px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .select-underline {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (min-width: 1920px) {
  .select-underline {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .select-underline {
    height: 48px;
  }
}
@media (max-width: 991px) {
  .select-underline {
    height: 40px;
  }
}
.select-underline {
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
}
.select-underline:hover:not(.select-underline--disabled) {
  border-bottom-color: #FF4F60;
}
.select-underline.select-underline--open {
  border-bottom-color: #262930;
  outline: none;
}
.select-underline.select-underline--open .select-underline__arrow {
  transform: rotate(0deg);
}
.select-underline:focus {
  outline: none;
}
.select-underline:focus-visible {
  outline: 2px solid #262930;
  outline-offset: 2px;
}
.select-underline.select-underline--disabled {
  color: #8A8C95;
  border-bottom-color: #D8DAE2;
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.select-underline__label {
  flex: 1;
  min-width: 0;
  padding-right: 8px;
  color: #262930;
}
.select-underline--disabled .select-underline__label {
  color: #8A8C95;
}

.select-underline__arrow {
  flex-shrink: 0;
  display: inline-block;
  background: url("assets/icons/arrow-up.svg") no-repeat center;
  background-size: contain;
  transform: rotate(180deg);
  transition: transform all 0.2s ease-in-out;
}
@media (min-width: 1920px) {
  .select-underline__arrow {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 1919px) {
  .select-underline__arrow {
    width: 24px;
    height: 24px;
  }
}
.select-underline--disabled .select-underline__arrow {
  opacity: 0.4;
}

.select-underline__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 100%;
  margin-top: 2px;
  padding: 0;
  background: #FFFFFF;
  border: 1px solid #D8DAE2;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(38, 41, 48, 0.1);
  list-style: none;
  z-index: 100;
  display: none;
}
.select-underline--open .select-underline__dropdown {
  display: block;
}

.select-underline__option {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .select-underline__option {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .select-underline__option {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .select-underline__option {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.select-underline__option {
  padding: 8px 12px;
  color: #262930;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.select-underline__option:hover {
  background-color: #F7F9FB;
}
.select-underline__option:focus {
  outline: none;
  background-color: #F7F9FB;
}

.options-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.options-list .option-item {
  padding: 8px 12px;
  color: #262930;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.options-list .option-item:hover {
  background-color: #F0F1F5;
}
.options-list .option-item:focus {
  outline: none;
  background-color: #F0F1F5;
  box-shadow: 0 0 0 2px rgba(38, 41, 48, 0.1);
}
.options-list .option-item.error {
  color: #C5014C;
}
.options-list .option-item.disabled {
  color: #8A8C95;
  cursor: not-allowed;
}
.options-list .option-item.disabled:hover {
  background-color: transparent;
}

.options-list.field-small .option-item {
  width: 100px;
}
@media (min-width: 1920px) {
  .options-list.field-small .option-item {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .options-list.field-small .option-item {
    height: 48px;
  }
}
@media (max-width: 991px) {
  .options-list.field-small .option-item {
    height: 40px;
  }
}
@media (min-width: 1920px) {
  .options-list.field-small .option-item {
    line-height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .options-list.field-small .option-item {
    line-height: 48px;
  }
}
@media (max-width: 991px) {
  .options-list.field-small .option-item {
    line-height: 40px;
  }
}
.options-list.field-small .option-item {
  padding: 0 12px;
}

@media (min-width: 1920px) {
  .options-list.field-height-only .option-item {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .options-list.field-height-only .option-item {
    height: 48px;
  }
}
@media (max-width: 991px) {
  .options-list.field-height-only .option-item {
    height: 40px;
  }
}
@media (min-width: 1920px) {
  .options-list.field-height-only .option-item {
    line-height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .options-list.field-height-only .option-item {
    line-height: 48px;
  }
}
@media (max-width: 991px) {
  .options-list.field-height-only .option-item {
    line-height: 40px;
  }
}

.grouped-options {
  background-color: #F0F1F5;
  border-radius: 4px;
  padding: 12px;
}
.grouped-options .option-item {
  background-color: #FFFFFF;
  border-radius: 4px;
  margin-bottom: 12px;
}
.grouped-options .option-item:last-child {
  margin-bottom: 0;
}
.grouped-options .option-item:hover {
  background-color: #F7F9FB;
}
.grouped-options .option-item:focus {
  outline: none;
  background-color: #F7F9FB;
  box-shadow: 0 0 0 2px rgba(38, 41, 48, 0.1);
}
.grouped-options .option-item.error {
  color: #C5014C;
}
.grouped-options .option-item.disabled {
  color: #8A8C95;
  cursor: not-allowed;
}
.grouped-options .option-item.disabled:hover {
  background-color: #FFFFFF;
}

.grouped-options.field-small .option-item {
  width: 100px;
}
@media (min-width: 1920px) {
  .grouped-options.field-small .option-item {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .grouped-options.field-small .option-item {
    height: 48px;
  }
}
@media (max-width: 991px) {
  .grouped-options.field-small .option-item {
    height: 40px;
  }
}
@media (min-width: 1920px) {
  .grouped-options.field-small .option-item {
    line-height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .grouped-options.field-small .option-item {
    line-height: 48px;
  }
}
@media (max-width: 991px) {
  .grouped-options.field-small .option-item {
    line-height: 40px;
  }
}
.grouped-options.field-small .option-item {
  padding: 0 12px;
}

input[type=hidden],
input.input-hidden,
.woocommerce form input[type=hidden] {
  display: none;
  visibility: hidden;
}

.form-group,
.form-row {
  margin-bottom: 10px;
}
.form-group label.hidden,
.form-row label.hidden {
  visibility: hidden;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}
.form-group label.inline,
.form-row label.inline {
  display: inline-block;
  margin-right: 12px;
}
.form-group .form-help,
.form-group .description,
.form-row .form-help,
.form-row .description {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .form-group .form-help,
  .form-group .description,
  .form-row .form-help,
  .form-row .description {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .form-group .form-help,
  .form-group .description,
  .form-row .form-help,
  .form-row .description {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .form-group .form-help,
  .form-group .description,
  .form-row .form-help,
  .form-row .description {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.form-group .form-help,
.form-group .description,
.form-row .form-help,
.form-row .description {
  margin-top: 4px;
  color: rgba(38, 41, 48, 0.5);
}
.form-group .form-error,
.form-group .woocommerce-error,
.form-row .form-error,
.form-row .woocommerce-error {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .form-group .form-error,
  .form-group .woocommerce-error,
  .form-row .form-error,
  .form-row .woocommerce-error {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .form-group .form-error,
  .form-group .woocommerce-error,
  .form-row .form-error,
  .form-row .woocommerce-error {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .form-group .form-error,
  .form-group .woocommerce-error,
  .form-row .form-error,
  .form-row .woocommerce-error {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.form-group .form-error,
.form-group .woocommerce-error,
.form-row .form-error,
.form-row .woocommerce-error {
  margin-top: 4px;
  color: #C5014C;
}

.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}
.form-row.form-row-wide {
  flex-direction: column;
}
.form-row.form-row-first {
  flex: 1;
}
.form-row.form-row-last {
  flex: 1;
}
.form-row.woocommerce-invalid label {
  color: #C5014C;
}
.form-row.woocommerce-invalid input,
.form-row.woocommerce-invalid select,
.form-row.woocommerce-invalid textarea {
  border-color: #C5014C;
}
.form-row.woocommerce-validated input,
.form-row.woocommerce-validated select,
.form-row.woocommerce-validated textarea {
  border-color: #2AC769;
}

.comment-form .comment-form-author,
.comment-form .comment-form-email,
.comment-form .comment-form-url,
.comment-form .comment-form-comment,
#commentform .comment-form-author,
#commentform .comment-form-email,
#commentform .comment-form-url,
#commentform .comment-form-comment {
  margin-bottom: 10px;
}
@media (min-width: 1920px) {
  #loginform .input,
  #registerform .input,
  #lostpasswordform .input {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  #loginform .input,
  #registerform .input,
  #lostpasswordform .input {
    height: 48px;
  }
}
@media (max-width: 991px) {
  #loginform .input,
  #registerform .input,
  #lostpasswordform .input {
    height: 40px;
  }
}

p.form-row,
.woocommerce p.form-row,
.woocommerce-page p.form-row,
.woocommerce-checkout p.form-row,
.woocommerce-account p.form-row,
.woocommerce form p.form-row {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  gap: 0px;
}
p.form-row > label,
.woocommerce p.form-row > label,
.woocommerce-page p.form-row > label,
.woocommerce-checkout p.form-row > label,
.woocommerce-account p.form-row > label,
.woocommerce form p.form-row > label {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  color: #262930;
}
@media (min-width: 1920px) {
  p.form-row > label,
  .woocommerce p.form-row > label,
  .woocommerce-page p.form-row > label,
  .woocommerce-checkout p.form-row > label,
  .woocommerce-account p.form-row > label,
  .woocommerce form p.form-row > label {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  p.form-row > label,
  .woocommerce p.form-row > label,
  .woocommerce-page p.form-row > label,
  .woocommerce-checkout p.form-row > label,
  .woocommerce-account p.form-row > label,
  .woocommerce form p.form-row > label {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 991px) {
  p.form-row > label,
  .woocommerce p.form-row > label,
  .woocommerce-page p.form-row > label,
  .woocommerce-checkout p.form-row > label,
  .woocommerce-account p.form-row > label,
  .woocommerce form p.form-row > label {
    font-size: 12px;
    line-height: 16px;
  }
}
p.form-row > label,
.woocommerce p.form-row > label,
.woocommerce-page p.form-row > label,
.woocommerce-checkout p.form-row > label,
.woocommerce-account p.form-row > label,
.woocommerce form p.form-row > label {
  display: block;
  margin-bottom: 8px;
}
p.form-row > label .required,
.woocommerce p.form-row > label .required,
.woocommerce-page p.form-row > label .required,
.woocommerce-checkout p.form-row > label .required,
.woocommerce-account p.form-row > label .required,
.woocommerce form p.form-row > label .required {
  color: #C5014C;
  text-decoration: none;
}
p.form-row > label .optional,
.woocommerce p.form-row > label .optional,
.woocommerce-page p.form-row > label .optional,
.woocommerce-checkout p.form-row > label .optional,
.woocommerce-account p.form-row > label .optional,
.woocommerce form p.form-row > label .optional {
  color: rgba(38, 41, 48, 0.5);
  font-weight: var(--fw-regular);
}
p.form-row .woocommerce-input-wrapper,
.woocommerce p.form-row .woocommerce-input-wrapper,
.woocommerce-page p.form-row .woocommerce-input-wrapper,
.woocommerce-checkout p.form-row .woocommerce-input-wrapper,
.woocommerce-account p.form-row .woocommerce-input-wrapper,
.woocommerce form p.form-row .woocommerce-input-wrapper {
  position: relative;
  width: 100%;
}
p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
.woocommerce p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
.woocommerce-page p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
.woocommerce-checkout p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
.woocommerce-account p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
.woocommerce form p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  color: #262930;
}
@media (min-width: 1920px) {
  p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
  .woocommerce p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
  .woocommerce-page p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
  .woocommerce-checkout p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
  .woocommerce-account p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
  .woocommerce form p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
  .woocommerce p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
  .woocommerce-page p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
  .woocommerce-checkout p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
  .woocommerce-account p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
  .woocommerce form p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 991px) {
  p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
  .woocommerce p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
  .woocommerce-page p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
  .woocommerce-checkout p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
  .woocommerce-account p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
  .woocommerce form p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message {
    font-size: 12px;
    line-height: 16px;
  }
}
p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
.woocommerce p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
.woocommerce-page p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
.woocommerce-checkout p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
.woocommerce-account p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message,
.woocommerce form p.form-row .woocommerce-input-wrapper + .checkout-inline-error-message {
  order: 3;
  padding-top: 8px;
  color: #C5014C;
}
p.form-row > input[type=text],
p.form-row > input[type=email],
p.form-row > input[type=tel],
p.form-row > input[type=password],
p.form-row > input[type=number],
p.form-row > input[type=url],
p.form-row > input[type=date],
p.form-row > select,
p.form-row > textarea,
.woocommerce p.form-row > input[type=text],
.woocommerce p.form-row > input[type=email],
.woocommerce p.form-row > input[type=tel],
.woocommerce p.form-row > input[type=password],
.woocommerce p.form-row > input[type=number],
.woocommerce p.form-row > input[type=url],
.woocommerce p.form-row > input[type=date],
.woocommerce p.form-row > select,
.woocommerce p.form-row > textarea,
.woocommerce-page p.form-row > input[type=text],
.woocommerce-page p.form-row > input[type=email],
.woocommerce-page p.form-row > input[type=tel],
.woocommerce-page p.form-row > input[type=password],
.woocommerce-page p.form-row > input[type=number],
.woocommerce-page p.form-row > input[type=url],
.woocommerce-page p.form-row > input[type=date],
.woocommerce-page p.form-row > select,
.woocommerce-page p.form-row > textarea,
.woocommerce-checkout p.form-row > input[type=text],
.woocommerce-checkout p.form-row > input[type=email],
.woocommerce-checkout p.form-row > input[type=tel],
.woocommerce-checkout p.form-row > input[type=password],
.woocommerce-checkout p.form-row > input[type=number],
.woocommerce-checkout p.form-row > input[type=url],
.woocommerce-checkout p.form-row > input[type=date],
.woocommerce-checkout p.form-row > select,
.woocommerce-checkout p.form-row > textarea,
.woocommerce-account p.form-row > input[type=text],
.woocommerce-account p.form-row > input[type=email],
.woocommerce-account p.form-row > input[type=tel],
.woocommerce-account p.form-row > input[type=password],
.woocommerce-account p.form-row > input[type=number],
.woocommerce-account p.form-row > input[type=url],
.woocommerce-account p.form-row > input[type=date],
.woocommerce-account p.form-row > select,
.woocommerce-account p.form-row > textarea,
.woocommerce form p.form-row > input[type=text],
.woocommerce form p.form-row > input[type=email],
.woocommerce form p.form-row > input[type=tel],
.woocommerce form p.form-row > input[type=password],
.woocommerce form p.form-row > input[type=number],
.woocommerce form p.form-row > input[type=url],
.woocommerce form p.form-row > input[type=date],
.woocommerce form p.form-row > select,
.woocommerce form p.form-row > textarea {
  order: 2;
}
p.form-row input[type=text],
p.form-row input[type=email],
p.form-row input[type=tel],
p.form-row input[type=password],
p.form-row input[type=number],
p.form-row input[type=url],
p.form-row input[type=date],
p.form-row input[type=datetime-local],
p.form-row input[type=month],
p.form-row input[type=time],
p.form-row input[type=week],
p.form-row input.input-text,
p.form-row select,
p.form-row textarea,
.woocommerce p.form-row input[type=text],
.woocommerce p.form-row input[type=email],
.woocommerce p.form-row input[type=tel],
.woocommerce p.form-row input[type=password],
.woocommerce p.form-row input[type=number],
.woocommerce p.form-row input[type=url],
.woocommerce p.form-row input[type=date],
.woocommerce p.form-row input[type=datetime-local],
.woocommerce p.form-row input[type=month],
.woocommerce p.form-row input[type=time],
.woocommerce p.form-row input[type=week],
.woocommerce p.form-row input.input-text,
.woocommerce p.form-row select,
.woocommerce p.form-row textarea,
.woocommerce-page p.form-row input[type=text],
.woocommerce-page p.form-row input[type=email],
.woocommerce-page p.form-row input[type=tel],
.woocommerce-page p.form-row input[type=password],
.woocommerce-page p.form-row input[type=number],
.woocommerce-page p.form-row input[type=url],
.woocommerce-page p.form-row input[type=date],
.woocommerce-page p.form-row input[type=datetime-local],
.woocommerce-page p.form-row input[type=month],
.woocommerce-page p.form-row input[type=time],
.woocommerce-page p.form-row input[type=week],
.woocommerce-page p.form-row input.input-text,
.woocommerce-page p.form-row select,
.woocommerce-page p.form-row textarea,
.woocommerce-checkout p.form-row input[type=text],
.woocommerce-checkout p.form-row input[type=email],
.woocommerce-checkout p.form-row input[type=tel],
.woocommerce-checkout p.form-row input[type=password],
.woocommerce-checkout p.form-row input[type=number],
.woocommerce-checkout p.form-row input[type=url],
.woocommerce-checkout p.form-row input[type=date],
.woocommerce-checkout p.form-row input[type=datetime-local],
.woocommerce-checkout p.form-row input[type=month],
.woocommerce-checkout p.form-row input[type=time],
.woocommerce-checkout p.form-row input[type=week],
.woocommerce-checkout p.form-row input.input-text,
.woocommerce-checkout p.form-row select,
.woocommerce-checkout p.form-row textarea,
.woocommerce-account p.form-row input[type=text],
.woocommerce-account p.form-row input[type=email],
.woocommerce-account p.form-row input[type=tel],
.woocommerce-account p.form-row input[type=password],
.woocommerce-account p.form-row input[type=number],
.woocommerce-account p.form-row input[type=url],
.woocommerce-account p.form-row input[type=date],
.woocommerce-account p.form-row input[type=datetime-local],
.woocommerce-account p.form-row input[type=month],
.woocommerce-account p.form-row input[type=time],
.woocommerce-account p.form-row input[type=week],
.woocommerce-account p.form-row input.input-text,
.woocommerce-account p.form-row select,
.woocommerce-account p.form-row textarea,
.woocommerce form p.form-row input[type=text],
.woocommerce form p.form-row input[type=email],
.woocommerce form p.form-row input[type=tel],
.woocommerce form p.form-row input[type=password],
.woocommerce form p.form-row input[type=number],
.woocommerce form p.form-row input[type=url],
.woocommerce form p.form-row input[type=date],
.woocommerce form p.form-row input[type=datetime-local],
.woocommerce form p.form-row input[type=month],
.woocommerce form p.form-row input[type=time],
.woocommerce form p.form-row input[type=week],
.woocommerce form p.form-row input.input-text,
.woocommerce form p.form-row select,
.woocommerce form p.form-row textarea {
  display: block;
  width: 100%;
}
@media (min-width: 1920px) {
  p.form-row input[type=text],
  p.form-row input[type=email],
  p.form-row input[type=tel],
  p.form-row input[type=password],
  p.form-row input[type=number],
  p.form-row input[type=url],
  p.form-row input[type=date],
  p.form-row input[type=datetime-local],
  p.form-row input[type=month],
  p.form-row input[type=time],
  p.form-row input[type=week],
  p.form-row input.input-text,
  p.form-row select,
  p.form-row textarea,
  .woocommerce p.form-row input[type=text],
  .woocommerce p.form-row input[type=email],
  .woocommerce p.form-row input[type=tel],
  .woocommerce p.form-row input[type=password],
  .woocommerce p.form-row input[type=number],
  .woocommerce p.form-row input[type=url],
  .woocommerce p.form-row input[type=date],
  .woocommerce p.form-row input[type=datetime-local],
  .woocommerce p.form-row input[type=month],
  .woocommerce p.form-row input[type=time],
  .woocommerce p.form-row input[type=week],
  .woocommerce p.form-row input.input-text,
  .woocommerce p.form-row select,
  .woocommerce p.form-row textarea,
  .woocommerce-page p.form-row input[type=text],
  .woocommerce-page p.form-row input[type=email],
  .woocommerce-page p.form-row input[type=tel],
  .woocommerce-page p.form-row input[type=password],
  .woocommerce-page p.form-row input[type=number],
  .woocommerce-page p.form-row input[type=url],
  .woocommerce-page p.form-row input[type=date],
  .woocommerce-page p.form-row input[type=datetime-local],
  .woocommerce-page p.form-row input[type=month],
  .woocommerce-page p.form-row input[type=time],
  .woocommerce-page p.form-row input[type=week],
  .woocommerce-page p.form-row input.input-text,
  .woocommerce-page p.form-row select,
  .woocommerce-page p.form-row textarea,
  .woocommerce-checkout p.form-row input[type=text],
  .woocommerce-checkout p.form-row input[type=email],
  .woocommerce-checkout p.form-row input[type=tel],
  .woocommerce-checkout p.form-row input[type=password],
  .woocommerce-checkout p.form-row input[type=number],
  .woocommerce-checkout p.form-row input[type=url],
  .woocommerce-checkout p.form-row input[type=date],
  .woocommerce-checkout p.form-row input[type=datetime-local],
  .woocommerce-checkout p.form-row input[type=month],
  .woocommerce-checkout p.form-row input[type=time],
  .woocommerce-checkout p.form-row input[type=week],
  .woocommerce-checkout p.form-row input.input-text,
  .woocommerce-checkout p.form-row select,
  .woocommerce-checkout p.form-row textarea,
  .woocommerce-account p.form-row input[type=text],
  .woocommerce-account p.form-row input[type=email],
  .woocommerce-account p.form-row input[type=tel],
  .woocommerce-account p.form-row input[type=password],
  .woocommerce-account p.form-row input[type=number],
  .woocommerce-account p.form-row input[type=url],
  .woocommerce-account p.form-row input[type=date],
  .woocommerce-account p.form-row input[type=datetime-local],
  .woocommerce-account p.form-row input[type=month],
  .woocommerce-account p.form-row input[type=time],
  .woocommerce-account p.form-row input[type=week],
  .woocommerce-account p.form-row input.input-text,
  .woocommerce-account p.form-row select,
  .woocommerce-account p.form-row textarea,
  .woocommerce form p.form-row input[type=text],
  .woocommerce form p.form-row input[type=email],
  .woocommerce form p.form-row input[type=tel],
  .woocommerce form p.form-row input[type=password],
  .woocommerce form p.form-row input[type=number],
  .woocommerce form p.form-row input[type=url],
  .woocommerce form p.form-row input[type=date],
  .woocommerce form p.form-row input[type=datetime-local],
  .woocommerce form p.form-row input[type=month],
  .woocommerce form p.form-row input[type=time],
  .woocommerce form p.form-row input[type=week],
  .woocommerce form p.form-row input.input-text,
  .woocommerce form p.form-row select,
  .woocommerce form p.form-row textarea {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  p.form-row input[type=text],
  p.form-row input[type=email],
  p.form-row input[type=tel],
  p.form-row input[type=password],
  p.form-row input[type=number],
  p.form-row input[type=url],
  p.form-row input[type=date],
  p.form-row input[type=datetime-local],
  p.form-row input[type=month],
  p.form-row input[type=time],
  p.form-row input[type=week],
  p.form-row input.input-text,
  p.form-row select,
  p.form-row textarea,
  .woocommerce p.form-row input[type=text],
  .woocommerce p.form-row input[type=email],
  .woocommerce p.form-row input[type=tel],
  .woocommerce p.form-row input[type=password],
  .woocommerce p.form-row input[type=number],
  .woocommerce p.form-row input[type=url],
  .woocommerce p.form-row input[type=date],
  .woocommerce p.form-row input[type=datetime-local],
  .woocommerce p.form-row input[type=month],
  .woocommerce p.form-row input[type=time],
  .woocommerce p.form-row input[type=week],
  .woocommerce p.form-row input.input-text,
  .woocommerce p.form-row select,
  .woocommerce p.form-row textarea,
  .woocommerce-page p.form-row input[type=text],
  .woocommerce-page p.form-row input[type=email],
  .woocommerce-page p.form-row input[type=tel],
  .woocommerce-page p.form-row input[type=password],
  .woocommerce-page p.form-row input[type=number],
  .woocommerce-page p.form-row input[type=url],
  .woocommerce-page p.form-row input[type=date],
  .woocommerce-page p.form-row input[type=datetime-local],
  .woocommerce-page p.form-row input[type=month],
  .woocommerce-page p.form-row input[type=time],
  .woocommerce-page p.form-row input[type=week],
  .woocommerce-page p.form-row input.input-text,
  .woocommerce-page p.form-row select,
  .woocommerce-page p.form-row textarea,
  .woocommerce-checkout p.form-row input[type=text],
  .woocommerce-checkout p.form-row input[type=email],
  .woocommerce-checkout p.form-row input[type=tel],
  .woocommerce-checkout p.form-row input[type=password],
  .woocommerce-checkout p.form-row input[type=number],
  .woocommerce-checkout p.form-row input[type=url],
  .woocommerce-checkout p.form-row input[type=date],
  .woocommerce-checkout p.form-row input[type=datetime-local],
  .woocommerce-checkout p.form-row input[type=month],
  .woocommerce-checkout p.form-row input[type=time],
  .woocommerce-checkout p.form-row input[type=week],
  .woocommerce-checkout p.form-row input.input-text,
  .woocommerce-checkout p.form-row select,
  .woocommerce-checkout p.form-row textarea,
  .woocommerce-account p.form-row input[type=text],
  .woocommerce-account p.form-row input[type=email],
  .woocommerce-account p.form-row input[type=tel],
  .woocommerce-account p.form-row input[type=password],
  .woocommerce-account p.form-row input[type=number],
  .woocommerce-account p.form-row input[type=url],
  .woocommerce-account p.form-row input[type=date],
  .woocommerce-account p.form-row input[type=datetime-local],
  .woocommerce-account p.form-row input[type=month],
  .woocommerce-account p.form-row input[type=time],
  .woocommerce-account p.form-row input[type=week],
  .woocommerce-account p.form-row input.input-text,
  .woocommerce-account p.form-row select,
  .woocommerce-account p.form-row textarea,
  .woocommerce form p.form-row input[type=text],
  .woocommerce form p.form-row input[type=email],
  .woocommerce form p.form-row input[type=tel],
  .woocommerce form p.form-row input[type=password],
  .woocommerce form p.form-row input[type=number],
  .woocommerce form p.form-row input[type=url],
  .woocommerce form p.form-row input[type=date],
  .woocommerce form p.form-row input[type=datetime-local],
  .woocommerce form p.form-row input[type=month],
  .woocommerce form p.form-row input[type=time],
  .woocommerce form p.form-row input[type=week],
  .woocommerce form p.form-row input.input-text,
  .woocommerce form p.form-row select,
  .woocommerce form p.form-row textarea {
    height: 48px;
  }
}
@media (max-width: 991px) {
  p.form-row input[type=text],
  p.form-row input[type=email],
  p.form-row input[type=tel],
  p.form-row input[type=password],
  p.form-row input[type=number],
  p.form-row input[type=url],
  p.form-row input[type=date],
  p.form-row input[type=datetime-local],
  p.form-row input[type=month],
  p.form-row input[type=time],
  p.form-row input[type=week],
  p.form-row input.input-text,
  p.form-row select,
  p.form-row textarea,
  .woocommerce p.form-row input[type=text],
  .woocommerce p.form-row input[type=email],
  .woocommerce p.form-row input[type=tel],
  .woocommerce p.form-row input[type=password],
  .woocommerce p.form-row input[type=number],
  .woocommerce p.form-row input[type=url],
  .woocommerce p.form-row input[type=date],
  .woocommerce p.form-row input[type=datetime-local],
  .woocommerce p.form-row input[type=month],
  .woocommerce p.form-row input[type=time],
  .woocommerce p.form-row input[type=week],
  .woocommerce p.form-row input.input-text,
  .woocommerce p.form-row select,
  .woocommerce p.form-row textarea,
  .woocommerce-page p.form-row input[type=text],
  .woocommerce-page p.form-row input[type=email],
  .woocommerce-page p.form-row input[type=tel],
  .woocommerce-page p.form-row input[type=password],
  .woocommerce-page p.form-row input[type=number],
  .woocommerce-page p.form-row input[type=url],
  .woocommerce-page p.form-row input[type=date],
  .woocommerce-page p.form-row input[type=datetime-local],
  .woocommerce-page p.form-row input[type=month],
  .woocommerce-page p.form-row input[type=time],
  .woocommerce-page p.form-row input[type=week],
  .woocommerce-page p.form-row input.input-text,
  .woocommerce-page p.form-row select,
  .woocommerce-page p.form-row textarea,
  .woocommerce-checkout p.form-row input[type=text],
  .woocommerce-checkout p.form-row input[type=email],
  .woocommerce-checkout p.form-row input[type=tel],
  .woocommerce-checkout p.form-row input[type=password],
  .woocommerce-checkout p.form-row input[type=number],
  .woocommerce-checkout p.form-row input[type=url],
  .woocommerce-checkout p.form-row input[type=date],
  .woocommerce-checkout p.form-row input[type=datetime-local],
  .woocommerce-checkout p.form-row input[type=month],
  .woocommerce-checkout p.form-row input[type=time],
  .woocommerce-checkout p.form-row input[type=week],
  .woocommerce-checkout p.form-row input.input-text,
  .woocommerce-checkout p.form-row select,
  .woocommerce-checkout p.form-row textarea,
  .woocommerce-account p.form-row input[type=text],
  .woocommerce-account p.form-row input[type=email],
  .woocommerce-account p.form-row input[type=tel],
  .woocommerce-account p.form-row input[type=password],
  .woocommerce-account p.form-row input[type=number],
  .woocommerce-account p.form-row input[type=url],
  .woocommerce-account p.form-row input[type=date],
  .woocommerce-account p.form-row input[type=datetime-local],
  .woocommerce-account p.form-row input[type=month],
  .woocommerce-account p.form-row input[type=time],
  .woocommerce-account p.form-row input[type=week],
  .woocommerce-account p.form-row input.input-text,
  .woocommerce-account p.form-row select,
  .woocommerce-account p.form-row textarea,
  .woocommerce form p.form-row input[type=text],
  .woocommerce form p.form-row input[type=email],
  .woocommerce form p.form-row input[type=tel],
  .woocommerce form p.form-row input[type=password],
  .woocommerce form p.form-row input[type=number],
  .woocommerce form p.form-row input[type=url],
  .woocommerce form p.form-row input[type=date],
  .woocommerce form p.form-row input[type=datetime-local],
  .woocommerce form p.form-row input[type=month],
  .woocommerce form p.form-row input[type=time],
  .woocommerce form p.form-row input[type=week],
  .woocommerce form p.form-row input.input-text,
  .woocommerce form p.form-row select,
  .woocommerce form p.form-row textarea {
    height: 40px;
  }
}
p.form-row input[type=text],
p.form-row input[type=email],
p.form-row input[type=tel],
p.form-row input[type=password],
p.form-row input[type=number],
p.form-row input[type=url],
p.form-row input[type=date],
p.form-row input[type=datetime-local],
p.form-row input[type=month],
p.form-row input[type=time],
p.form-row input[type=week],
p.form-row input.input-text,
p.form-row select,
p.form-row textarea,
.woocommerce p.form-row input[type=text],
.woocommerce p.form-row input[type=email],
.woocommerce p.form-row input[type=tel],
.woocommerce p.form-row input[type=password],
.woocommerce p.form-row input[type=number],
.woocommerce p.form-row input[type=url],
.woocommerce p.form-row input[type=date],
.woocommerce p.form-row input[type=datetime-local],
.woocommerce p.form-row input[type=month],
.woocommerce p.form-row input[type=time],
.woocommerce p.form-row input[type=week],
.woocommerce p.form-row input.input-text,
.woocommerce p.form-row select,
.woocommerce p.form-row textarea,
.woocommerce-page p.form-row input[type=text],
.woocommerce-page p.form-row input[type=email],
.woocommerce-page p.form-row input[type=tel],
.woocommerce-page p.form-row input[type=password],
.woocommerce-page p.form-row input[type=number],
.woocommerce-page p.form-row input[type=url],
.woocommerce-page p.form-row input[type=date],
.woocommerce-page p.form-row input[type=datetime-local],
.woocommerce-page p.form-row input[type=month],
.woocommerce-page p.form-row input[type=time],
.woocommerce-page p.form-row input[type=week],
.woocommerce-page p.form-row input.input-text,
.woocommerce-page p.form-row select,
.woocommerce-page p.form-row textarea,
.woocommerce-checkout p.form-row input[type=text],
.woocommerce-checkout p.form-row input[type=email],
.woocommerce-checkout p.form-row input[type=tel],
.woocommerce-checkout p.form-row input[type=password],
.woocommerce-checkout p.form-row input[type=number],
.woocommerce-checkout p.form-row input[type=url],
.woocommerce-checkout p.form-row input[type=date],
.woocommerce-checkout p.form-row input[type=datetime-local],
.woocommerce-checkout p.form-row input[type=month],
.woocommerce-checkout p.form-row input[type=time],
.woocommerce-checkout p.form-row input[type=week],
.woocommerce-checkout p.form-row input.input-text,
.woocommerce-checkout p.form-row select,
.woocommerce-checkout p.form-row textarea,
.woocommerce-account p.form-row input[type=text],
.woocommerce-account p.form-row input[type=email],
.woocommerce-account p.form-row input[type=tel],
.woocommerce-account p.form-row input[type=password],
.woocommerce-account p.form-row input[type=number],
.woocommerce-account p.form-row input[type=url],
.woocommerce-account p.form-row input[type=date],
.woocommerce-account p.form-row input[type=datetime-local],
.woocommerce-account p.form-row input[type=month],
.woocommerce-account p.form-row input[type=time],
.woocommerce-account p.form-row input[type=week],
.woocommerce-account p.form-row input.input-text,
.woocommerce-account p.form-row select,
.woocommerce-account p.form-row textarea,
.woocommerce form p.form-row input[type=text],
.woocommerce form p.form-row input[type=email],
.woocommerce form p.form-row input[type=tel],
.woocommerce form p.form-row input[type=password],
.woocommerce form p.form-row input[type=number],
.woocommerce form p.form-row input[type=url],
.woocommerce form p.form-row input[type=date],
.woocommerce form p.form-row input[type=datetime-local],
.woocommerce form p.form-row input[type=month],
.woocommerce form p.form-row input[type=time],
.woocommerce form p.form-row input[type=week],
.woocommerce form p.form-row input.input-text,
.woocommerce form p.form-row select,
.woocommerce form p.form-row textarea {
  padding: 8px 12px;
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: #262930;
}
@media (min-width: 1920px) {
  p.form-row input[type=text],
  p.form-row input[type=email],
  p.form-row input[type=tel],
  p.form-row input[type=password],
  p.form-row input[type=number],
  p.form-row input[type=url],
  p.form-row input[type=date],
  p.form-row input[type=datetime-local],
  p.form-row input[type=month],
  p.form-row input[type=time],
  p.form-row input[type=week],
  p.form-row input.input-text,
  p.form-row select,
  p.form-row textarea,
  .woocommerce p.form-row input[type=text],
  .woocommerce p.form-row input[type=email],
  .woocommerce p.form-row input[type=tel],
  .woocommerce p.form-row input[type=password],
  .woocommerce p.form-row input[type=number],
  .woocommerce p.form-row input[type=url],
  .woocommerce p.form-row input[type=date],
  .woocommerce p.form-row input[type=datetime-local],
  .woocommerce p.form-row input[type=month],
  .woocommerce p.form-row input[type=time],
  .woocommerce p.form-row input[type=week],
  .woocommerce p.form-row input.input-text,
  .woocommerce p.form-row select,
  .woocommerce p.form-row textarea,
  .woocommerce-page p.form-row input[type=text],
  .woocommerce-page p.form-row input[type=email],
  .woocommerce-page p.form-row input[type=tel],
  .woocommerce-page p.form-row input[type=password],
  .woocommerce-page p.form-row input[type=number],
  .woocommerce-page p.form-row input[type=url],
  .woocommerce-page p.form-row input[type=date],
  .woocommerce-page p.form-row input[type=datetime-local],
  .woocommerce-page p.form-row input[type=month],
  .woocommerce-page p.form-row input[type=time],
  .woocommerce-page p.form-row input[type=week],
  .woocommerce-page p.form-row input.input-text,
  .woocommerce-page p.form-row select,
  .woocommerce-page p.form-row textarea,
  .woocommerce-checkout p.form-row input[type=text],
  .woocommerce-checkout p.form-row input[type=email],
  .woocommerce-checkout p.form-row input[type=tel],
  .woocommerce-checkout p.form-row input[type=password],
  .woocommerce-checkout p.form-row input[type=number],
  .woocommerce-checkout p.form-row input[type=url],
  .woocommerce-checkout p.form-row input[type=date],
  .woocommerce-checkout p.form-row input[type=datetime-local],
  .woocommerce-checkout p.form-row input[type=month],
  .woocommerce-checkout p.form-row input[type=time],
  .woocommerce-checkout p.form-row input[type=week],
  .woocommerce-checkout p.form-row input.input-text,
  .woocommerce-checkout p.form-row select,
  .woocommerce-checkout p.form-row textarea,
  .woocommerce-account p.form-row input[type=text],
  .woocommerce-account p.form-row input[type=email],
  .woocommerce-account p.form-row input[type=tel],
  .woocommerce-account p.form-row input[type=password],
  .woocommerce-account p.form-row input[type=number],
  .woocommerce-account p.form-row input[type=url],
  .woocommerce-account p.form-row input[type=date],
  .woocommerce-account p.form-row input[type=datetime-local],
  .woocommerce-account p.form-row input[type=month],
  .woocommerce-account p.form-row input[type=time],
  .woocommerce-account p.form-row input[type=week],
  .woocommerce-account p.form-row input.input-text,
  .woocommerce-account p.form-row select,
  .woocommerce-account p.form-row textarea,
  .woocommerce form p.form-row input[type=text],
  .woocommerce form p.form-row input[type=email],
  .woocommerce form p.form-row input[type=tel],
  .woocommerce form p.form-row input[type=password],
  .woocommerce form p.form-row input[type=number],
  .woocommerce form p.form-row input[type=url],
  .woocommerce form p.form-row input[type=date],
  .woocommerce form p.form-row input[type=datetime-local],
  .woocommerce form p.form-row input[type=month],
  .woocommerce form p.form-row input[type=time],
  .woocommerce form p.form-row input[type=week],
  .woocommerce form p.form-row input.input-text,
  .woocommerce form p.form-row select,
  .woocommerce form p.form-row textarea {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  p.form-row input[type=text],
  p.form-row input[type=email],
  p.form-row input[type=tel],
  p.form-row input[type=password],
  p.form-row input[type=number],
  p.form-row input[type=url],
  p.form-row input[type=date],
  p.form-row input[type=datetime-local],
  p.form-row input[type=month],
  p.form-row input[type=time],
  p.form-row input[type=week],
  p.form-row input.input-text,
  p.form-row select,
  p.form-row textarea,
  .woocommerce p.form-row input[type=text],
  .woocommerce p.form-row input[type=email],
  .woocommerce p.form-row input[type=tel],
  .woocommerce p.form-row input[type=password],
  .woocommerce p.form-row input[type=number],
  .woocommerce p.form-row input[type=url],
  .woocommerce p.form-row input[type=date],
  .woocommerce p.form-row input[type=datetime-local],
  .woocommerce p.form-row input[type=month],
  .woocommerce p.form-row input[type=time],
  .woocommerce p.form-row input[type=week],
  .woocommerce p.form-row input.input-text,
  .woocommerce p.form-row select,
  .woocommerce p.form-row textarea,
  .woocommerce-page p.form-row input[type=text],
  .woocommerce-page p.form-row input[type=email],
  .woocommerce-page p.form-row input[type=tel],
  .woocommerce-page p.form-row input[type=password],
  .woocommerce-page p.form-row input[type=number],
  .woocommerce-page p.form-row input[type=url],
  .woocommerce-page p.form-row input[type=date],
  .woocommerce-page p.form-row input[type=datetime-local],
  .woocommerce-page p.form-row input[type=month],
  .woocommerce-page p.form-row input[type=time],
  .woocommerce-page p.form-row input[type=week],
  .woocommerce-page p.form-row input.input-text,
  .woocommerce-page p.form-row select,
  .woocommerce-page p.form-row textarea,
  .woocommerce-checkout p.form-row input[type=text],
  .woocommerce-checkout p.form-row input[type=email],
  .woocommerce-checkout p.form-row input[type=tel],
  .woocommerce-checkout p.form-row input[type=password],
  .woocommerce-checkout p.form-row input[type=number],
  .woocommerce-checkout p.form-row input[type=url],
  .woocommerce-checkout p.form-row input[type=date],
  .woocommerce-checkout p.form-row input[type=datetime-local],
  .woocommerce-checkout p.form-row input[type=month],
  .woocommerce-checkout p.form-row input[type=time],
  .woocommerce-checkout p.form-row input[type=week],
  .woocommerce-checkout p.form-row input.input-text,
  .woocommerce-checkout p.form-row select,
  .woocommerce-checkout p.form-row textarea,
  .woocommerce-account p.form-row input[type=text],
  .woocommerce-account p.form-row input[type=email],
  .woocommerce-account p.form-row input[type=tel],
  .woocommerce-account p.form-row input[type=password],
  .woocommerce-account p.form-row input[type=number],
  .woocommerce-account p.form-row input[type=url],
  .woocommerce-account p.form-row input[type=date],
  .woocommerce-account p.form-row input[type=datetime-local],
  .woocommerce-account p.form-row input[type=month],
  .woocommerce-account p.form-row input[type=time],
  .woocommerce-account p.form-row input[type=week],
  .woocommerce-account p.form-row input.input-text,
  .woocommerce-account p.form-row select,
  .woocommerce-account p.form-row textarea,
  .woocommerce form p.form-row input[type=text],
  .woocommerce form p.form-row input[type=email],
  .woocommerce form p.form-row input[type=tel],
  .woocommerce form p.form-row input[type=password],
  .woocommerce form p.form-row input[type=number],
  .woocommerce form p.form-row input[type=url],
  .woocommerce form p.form-row input[type=date],
  .woocommerce form p.form-row input[type=datetime-local],
  .woocommerce form p.form-row input[type=month],
  .woocommerce form p.form-row input[type=time],
  .woocommerce form p.form-row input[type=week],
  .woocommerce form p.form-row input.input-text,
  .woocommerce form p.form-row select,
  .woocommerce form p.form-row textarea {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  p.form-row input[type=text],
  p.form-row input[type=email],
  p.form-row input[type=tel],
  p.form-row input[type=password],
  p.form-row input[type=number],
  p.form-row input[type=url],
  p.form-row input[type=date],
  p.form-row input[type=datetime-local],
  p.form-row input[type=month],
  p.form-row input[type=time],
  p.form-row input[type=week],
  p.form-row input.input-text,
  p.form-row select,
  p.form-row textarea,
  .woocommerce p.form-row input[type=text],
  .woocommerce p.form-row input[type=email],
  .woocommerce p.form-row input[type=tel],
  .woocommerce p.form-row input[type=password],
  .woocommerce p.form-row input[type=number],
  .woocommerce p.form-row input[type=url],
  .woocommerce p.form-row input[type=date],
  .woocommerce p.form-row input[type=datetime-local],
  .woocommerce p.form-row input[type=month],
  .woocommerce p.form-row input[type=time],
  .woocommerce p.form-row input[type=week],
  .woocommerce p.form-row input.input-text,
  .woocommerce p.form-row select,
  .woocommerce p.form-row textarea,
  .woocommerce-page p.form-row input[type=text],
  .woocommerce-page p.form-row input[type=email],
  .woocommerce-page p.form-row input[type=tel],
  .woocommerce-page p.form-row input[type=password],
  .woocommerce-page p.form-row input[type=number],
  .woocommerce-page p.form-row input[type=url],
  .woocommerce-page p.form-row input[type=date],
  .woocommerce-page p.form-row input[type=datetime-local],
  .woocommerce-page p.form-row input[type=month],
  .woocommerce-page p.form-row input[type=time],
  .woocommerce-page p.form-row input[type=week],
  .woocommerce-page p.form-row input.input-text,
  .woocommerce-page p.form-row select,
  .woocommerce-page p.form-row textarea,
  .woocommerce-checkout p.form-row input[type=text],
  .woocommerce-checkout p.form-row input[type=email],
  .woocommerce-checkout p.form-row input[type=tel],
  .woocommerce-checkout p.form-row input[type=password],
  .woocommerce-checkout p.form-row input[type=number],
  .woocommerce-checkout p.form-row input[type=url],
  .woocommerce-checkout p.form-row input[type=date],
  .woocommerce-checkout p.form-row input[type=datetime-local],
  .woocommerce-checkout p.form-row input[type=month],
  .woocommerce-checkout p.form-row input[type=time],
  .woocommerce-checkout p.form-row input[type=week],
  .woocommerce-checkout p.form-row input.input-text,
  .woocommerce-checkout p.form-row select,
  .woocommerce-checkout p.form-row textarea,
  .woocommerce-account p.form-row input[type=text],
  .woocommerce-account p.form-row input[type=email],
  .woocommerce-account p.form-row input[type=tel],
  .woocommerce-account p.form-row input[type=password],
  .woocommerce-account p.form-row input[type=number],
  .woocommerce-account p.form-row input[type=url],
  .woocommerce-account p.form-row input[type=date],
  .woocommerce-account p.form-row input[type=datetime-local],
  .woocommerce-account p.form-row input[type=month],
  .woocommerce-account p.form-row input[type=time],
  .woocommerce-account p.form-row input[type=week],
  .woocommerce-account p.form-row input.input-text,
  .woocommerce-account p.form-row select,
  .woocommerce-account p.form-row textarea,
  .woocommerce form p.form-row input[type=text],
  .woocommerce form p.form-row input[type=email],
  .woocommerce form p.form-row input[type=tel],
  .woocommerce form p.form-row input[type=password],
  .woocommerce form p.form-row input[type=number],
  .woocommerce form p.form-row input[type=url],
  .woocommerce form p.form-row input[type=date],
  .woocommerce form p.form-row input[type=datetime-local],
  .woocommerce form p.form-row input[type=month],
  .woocommerce form p.form-row input[type=time],
  .woocommerce form p.form-row input[type=week],
  .woocommerce form p.form-row input.input-text,
  .woocommerce form p.form-row select,
  .woocommerce form p.form-row textarea {
    font-size: 15px;
    line-height: 28px;
  }
}
p.form-row input[type=text],
p.form-row input[type=email],
p.form-row input[type=tel],
p.form-row input[type=password],
p.form-row input[type=number],
p.form-row input[type=url],
p.form-row input[type=date],
p.form-row input[type=datetime-local],
p.form-row input[type=month],
p.form-row input[type=time],
p.form-row input[type=week],
p.form-row input.input-text,
p.form-row select,
p.form-row textarea,
.woocommerce p.form-row input[type=text],
.woocommerce p.form-row input[type=email],
.woocommerce p.form-row input[type=tel],
.woocommerce p.form-row input[type=password],
.woocommerce p.form-row input[type=number],
.woocommerce p.form-row input[type=url],
.woocommerce p.form-row input[type=date],
.woocommerce p.form-row input[type=datetime-local],
.woocommerce p.form-row input[type=month],
.woocommerce p.form-row input[type=time],
.woocommerce p.form-row input[type=week],
.woocommerce p.form-row input.input-text,
.woocommerce p.form-row select,
.woocommerce p.form-row textarea,
.woocommerce-page p.form-row input[type=text],
.woocommerce-page p.form-row input[type=email],
.woocommerce-page p.form-row input[type=tel],
.woocommerce-page p.form-row input[type=password],
.woocommerce-page p.form-row input[type=number],
.woocommerce-page p.form-row input[type=url],
.woocommerce-page p.form-row input[type=date],
.woocommerce-page p.form-row input[type=datetime-local],
.woocommerce-page p.form-row input[type=month],
.woocommerce-page p.form-row input[type=time],
.woocommerce-page p.form-row input[type=week],
.woocommerce-page p.form-row input.input-text,
.woocommerce-page p.form-row select,
.woocommerce-page p.form-row textarea,
.woocommerce-checkout p.form-row input[type=text],
.woocommerce-checkout p.form-row input[type=email],
.woocommerce-checkout p.form-row input[type=tel],
.woocommerce-checkout p.form-row input[type=password],
.woocommerce-checkout p.form-row input[type=number],
.woocommerce-checkout p.form-row input[type=url],
.woocommerce-checkout p.form-row input[type=date],
.woocommerce-checkout p.form-row input[type=datetime-local],
.woocommerce-checkout p.form-row input[type=month],
.woocommerce-checkout p.form-row input[type=time],
.woocommerce-checkout p.form-row input[type=week],
.woocommerce-checkout p.form-row input.input-text,
.woocommerce-checkout p.form-row select,
.woocommerce-checkout p.form-row textarea,
.woocommerce-account p.form-row input[type=text],
.woocommerce-account p.form-row input[type=email],
.woocommerce-account p.form-row input[type=tel],
.woocommerce-account p.form-row input[type=password],
.woocommerce-account p.form-row input[type=number],
.woocommerce-account p.form-row input[type=url],
.woocommerce-account p.form-row input[type=date],
.woocommerce-account p.form-row input[type=datetime-local],
.woocommerce-account p.form-row input[type=month],
.woocommerce-account p.form-row input[type=time],
.woocommerce-account p.form-row input[type=week],
.woocommerce-account p.form-row input.input-text,
.woocommerce-account p.form-row select,
.woocommerce-account p.form-row textarea,
.woocommerce form p.form-row input[type=text],
.woocommerce form p.form-row input[type=email],
.woocommerce form p.form-row input[type=tel],
.woocommerce form p.form-row input[type=password],
.woocommerce form p.form-row input[type=number],
.woocommerce form p.form-row input[type=url],
.woocommerce form p.form-row input[type=date],
.woocommerce form p.form-row input[type=datetime-local],
.woocommerce form p.form-row input[type=month],
.woocommerce form p.form-row input[type=time],
.woocommerce form p.form-row input[type=week],
.woocommerce form p.form-row input.input-text,
.woocommerce form p.form-row select,
.woocommerce form p.form-row textarea {
  background-color: #FFFFFF;
  border: 1px solid #D8DAE2;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
}
p.form-row input[type=text]::placeholder,
p.form-row input[type=email]::placeholder,
p.form-row input[type=tel]::placeholder,
p.form-row input[type=password]::placeholder,
p.form-row input[type=number]::placeholder,
p.form-row input[type=url]::placeholder,
p.form-row input[type=date]::placeholder,
p.form-row input[type=datetime-local]::placeholder,
p.form-row input[type=month]::placeholder,
p.form-row input[type=time]::placeholder,
p.form-row input[type=week]::placeholder,
p.form-row input.input-text::placeholder,
p.form-row select::placeholder,
p.form-row textarea::placeholder,
.woocommerce p.form-row input[type=text]::placeholder,
.woocommerce p.form-row input[type=email]::placeholder,
.woocommerce p.form-row input[type=tel]::placeholder,
.woocommerce p.form-row input[type=password]::placeholder,
.woocommerce p.form-row input[type=number]::placeholder,
.woocommerce p.form-row input[type=url]::placeholder,
.woocommerce p.form-row input[type=date]::placeholder,
.woocommerce p.form-row input[type=datetime-local]::placeholder,
.woocommerce p.form-row input[type=month]::placeholder,
.woocommerce p.form-row input[type=time]::placeholder,
.woocommerce p.form-row input[type=week]::placeholder,
.woocommerce p.form-row input.input-text::placeholder,
.woocommerce p.form-row select::placeholder,
.woocommerce p.form-row textarea::placeholder,
.woocommerce-page p.form-row input[type=text]::placeholder,
.woocommerce-page p.form-row input[type=email]::placeholder,
.woocommerce-page p.form-row input[type=tel]::placeholder,
.woocommerce-page p.form-row input[type=password]::placeholder,
.woocommerce-page p.form-row input[type=number]::placeholder,
.woocommerce-page p.form-row input[type=url]::placeholder,
.woocommerce-page p.form-row input[type=date]::placeholder,
.woocommerce-page p.form-row input[type=datetime-local]::placeholder,
.woocommerce-page p.form-row input[type=month]::placeholder,
.woocommerce-page p.form-row input[type=time]::placeholder,
.woocommerce-page p.form-row input[type=week]::placeholder,
.woocommerce-page p.form-row input.input-text::placeholder,
.woocommerce-page p.form-row select::placeholder,
.woocommerce-page p.form-row textarea::placeholder,
.woocommerce-checkout p.form-row input[type=text]::placeholder,
.woocommerce-checkout p.form-row input[type=email]::placeholder,
.woocommerce-checkout p.form-row input[type=tel]::placeholder,
.woocommerce-checkout p.form-row input[type=password]::placeholder,
.woocommerce-checkout p.form-row input[type=number]::placeholder,
.woocommerce-checkout p.form-row input[type=url]::placeholder,
.woocommerce-checkout p.form-row input[type=date]::placeholder,
.woocommerce-checkout p.form-row input[type=datetime-local]::placeholder,
.woocommerce-checkout p.form-row input[type=month]::placeholder,
.woocommerce-checkout p.form-row input[type=time]::placeholder,
.woocommerce-checkout p.form-row input[type=week]::placeholder,
.woocommerce-checkout p.form-row input.input-text::placeholder,
.woocommerce-checkout p.form-row select::placeholder,
.woocommerce-checkout p.form-row textarea::placeholder,
.woocommerce-account p.form-row input[type=text]::placeholder,
.woocommerce-account p.form-row input[type=email]::placeholder,
.woocommerce-account p.form-row input[type=tel]::placeholder,
.woocommerce-account p.form-row input[type=password]::placeholder,
.woocommerce-account p.form-row input[type=number]::placeholder,
.woocommerce-account p.form-row input[type=url]::placeholder,
.woocommerce-account p.form-row input[type=date]::placeholder,
.woocommerce-account p.form-row input[type=datetime-local]::placeholder,
.woocommerce-account p.form-row input[type=month]::placeholder,
.woocommerce-account p.form-row input[type=time]::placeholder,
.woocommerce-account p.form-row input[type=week]::placeholder,
.woocommerce-account p.form-row input.input-text::placeholder,
.woocommerce-account p.form-row select::placeholder,
.woocommerce-account p.form-row textarea::placeholder,
.woocommerce form p.form-row input[type=text]::placeholder,
.woocommerce form p.form-row input[type=email]::placeholder,
.woocommerce form p.form-row input[type=tel]::placeholder,
.woocommerce form p.form-row input[type=password]::placeholder,
.woocommerce form p.form-row input[type=number]::placeholder,
.woocommerce form p.form-row input[type=url]::placeholder,
.woocommerce form p.form-row input[type=date]::placeholder,
.woocommerce form p.form-row input[type=datetime-local]::placeholder,
.woocommerce form p.form-row input[type=month]::placeholder,
.woocommerce form p.form-row input[type=time]::placeholder,
.woocommerce form p.form-row input[type=week]::placeholder,
.woocommerce form p.form-row input.input-text::placeholder,
.woocommerce form p.form-row select::placeholder,
.woocommerce form p.form-row textarea::placeholder {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: rgba(38, 41, 48, 0.5);
  opacity: 1;
}
@media (min-width: 1920px) {
  p.form-row input[type=text]::placeholder,
  p.form-row input[type=email]::placeholder,
  p.form-row input[type=tel]::placeholder,
  p.form-row input[type=password]::placeholder,
  p.form-row input[type=number]::placeholder,
  p.form-row input[type=url]::placeholder,
  p.form-row input[type=date]::placeholder,
  p.form-row input[type=datetime-local]::placeholder,
  p.form-row input[type=month]::placeholder,
  p.form-row input[type=time]::placeholder,
  p.form-row input[type=week]::placeholder,
  p.form-row input.input-text::placeholder,
  p.form-row select::placeholder,
  p.form-row textarea::placeholder,
  .woocommerce p.form-row input[type=text]::placeholder,
  .woocommerce p.form-row input[type=email]::placeholder,
  .woocommerce p.form-row input[type=tel]::placeholder,
  .woocommerce p.form-row input[type=password]::placeholder,
  .woocommerce p.form-row input[type=number]::placeholder,
  .woocommerce p.form-row input[type=url]::placeholder,
  .woocommerce p.form-row input[type=date]::placeholder,
  .woocommerce p.form-row input[type=datetime-local]::placeholder,
  .woocommerce p.form-row input[type=month]::placeholder,
  .woocommerce p.form-row input[type=time]::placeholder,
  .woocommerce p.form-row input[type=week]::placeholder,
  .woocommerce p.form-row input.input-text::placeholder,
  .woocommerce p.form-row select::placeholder,
  .woocommerce p.form-row textarea::placeholder,
  .woocommerce-page p.form-row input[type=text]::placeholder,
  .woocommerce-page p.form-row input[type=email]::placeholder,
  .woocommerce-page p.form-row input[type=tel]::placeholder,
  .woocommerce-page p.form-row input[type=password]::placeholder,
  .woocommerce-page p.form-row input[type=number]::placeholder,
  .woocommerce-page p.form-row input[type=url]::placeholder,
  .woocommerce-page p.form-row input[type=date]::placeholder,
  .woocommerce-page p.form-row input[type=datetime-local]::placeholder,
  .woocommerce-page p.form-row input[type=month]::placeholder,
  .woocommerce-page p.form-row input[type=time]::placeholder,
  .woocommerce-page p.form-row input[type=week]::placeholder,
  .woocommerce-page p.form-row input.input-text::placeholder,
  .woocommerce-page p.form-row select::placeholder,
  .woocommerce-page p.form-row textarea::placeholder,
  .woocommerce-checkout p.form-row input[type=text]::placeholder,
  .woocommerce-checkout p.form-row input[type=email]::placeholder,
  .woocommerce-checkout p.form-row input[type=tel]::placeholder,
  .woocommerce-checkout p.form-row input[type=password]::placeholder,
  .woocommerce-checkout p.form-row input[type=number]::placeholder,
  .woocommerce-checkout p.form-row input[type=url]::placeholder,
  .woocommerce-checkout p.form-row input[type=date]::placeholder,
  .woocommerce-checkout p.form-row input[type=datetime-local]::placeholder,
  .woocommerce-checkout p.form-row input[type=month]::placeholder,
  .woocommerce-checkout p.form-row input[type=time]::placeholder,
  .woocommerce-checkout p.form-row input[type=week]::placeholder,
  .woocommerce-checkout p.form-row input.input-text::placeholder,
  .woocommerce-checkout p.form-row select::placeholder,
  .woocommerce-checkout p.form-row textarea::placeholder,
  .woocommerce-account p.form-row input[type=text]::placeholder,
  .woocommerce-account p.form-row input[type=email]::placeholder,
  .woocommerce-account p.form-row input[type=tel]::placeholder,
  .woocommerce-account p.form-row input[type=password]::placeholder,
  .woocommerce-account p.form-row input[type=number]::placeholder,
  .woocommerce-account p.form-row input[type=url]::placeholder,
  .woocommerce-account p.form-row input[type=date]::placeholder,
  .woocommerce-account p.form-row input[type=datetime-local]::placeholder,
  .woocommerce-account p.form-row input[type=month]::placeholder,
  .woocommerce-account p.form-row input[type=time]::placeholder,
  .woocommerce-account p.form-row input[type=week]::placeholder,
  .woocommerce-account p.form-row input.input-text::placeholder,
  .woocommerce-account p.form-row select::placeholder,
  .woocommerce-account p.form-row textarea::placeholder,
  .woocommerce form p.form-row input[type=text]::placeholder,
  .woocommerce form p.form-row input[type=email]::placeholder,
  .woocommerce form p.form-row input[type=tel]::placeholder,
  .woocommerce form p.form-row input[type=password]::placeholder,
  .woocommerce form p.form-row input[type=number]::placeholder,
  .woocommerce form p.form-row input[type=url]::placeholder,
  .woocommerce form p.form-row input[type=date]::placeholder,
  .woocommerce form p.form-row input[type=datetime-local]::placeholder,
  .woocommerce form p.form-row input[type=month]::placeholder,
  .woocommerce form p.form-row input[type=time]::placeholder,
  .woocommerce form p.form-row input[type=week]::placeholder,
  .woocommerce form p.form-row input.input-text::placeholder,
  .woocommerce form p.form-row select::placeholder,
  .woocommerce form p.form-row textarea::placeholder {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  p.form-row input[type=text]::placeholder,
  p.form-row input[type=email]::placeholder,
  p.form-row input[type=tel]::placeholder,
  p.form-row input[type=password]::placeholder,
  p.form-row input[type=number]::placeholder,
  p.form-row input[type=url]::placeholder,
  p.form-row input[type=date]::placeholder,
  p.form-row input[type=datetime-local]::placeholder,
  p.form-row input[type=month]::placeholder,
  p.form-row input[type=time]::placeholder,
  p.form-row input[type=week]::placeholder,
  p.form-row input.input-text::placeholder,
  p.form-row select::placeholder,
  p.form-row textarea::placeholder,
  .woocommerce p.form-row input[type=text]::placeholder,
  .woocommerce p.form-row input[type=email]::placeholder,
  .woocommerce p.form-row input[type=tel]::placeholder,
  .woocommerce p.form-row input[type=password]::placeholder,
  .woocommerce p.form-row input[type=number]::placeholder,
  .woocommerce p.form-row input[type=url]::placeholder,
  .woocommerce p.form-row input[type=date]::placeholder,
  .woocommerce p.form-row input[type=datetime-local]::placeholder,
  .woocommerce p.form-row input[type=month]::placeholder,
  .woocommerce p.form-row input[type=time]::placeholder,
  .woocommerce p.form-row input[type=week]::placeholder,
  .woocommerce p.form-row input.input-text::placeholder,
  .woocommerce p.form-row select::placeholder,
  .woocommerce p.form-row textarea::placeholder,
  .woocommerce-page p.form-row input[type=text]::placeholder,
  .woocommerce-page p.form-row input[type=email]::placeholder,
  .woocommerce-page p.form-row input[type=tel]::placeholder,
  .woocommerce-page p.form-row input[type=password]::placeholder,
  .woocommerce-page p.form-row input[type=number]::placeholder,
  .woocommerce-page p.form-row input[type=url]::placeholder,
  .woocommerce-page p.form-row input[type=date]::placeholder,
  .woocommerce-page p.form-row input[type=datetime-local]::placeholder,
  .woocommerce-page p.form-row input[type=month]::placeholder,
  .woocommerce-page p.form-row input[type=time]::placeholder,
  .woocommerce-page p.form-row input[type=week]::placeholder,
  .woocommerce-page p.form-row input.input-text::placeholder,
  .woocommerce-page p.form-row select::placeholder,
  .woocommerce-page p.form-row textarea::placeholder,
  .woocommerce-checkout p.form-row input[type=text]::placeholder,
  .woocommerce-checkout p.form-row input[type=email]::placeholder,
  .woocommerce-checkout p.form-row input[type=tel]::placeholder,
  .woocommerce-checkout p.form-row input[type=password]::placeholder,
  .woocommerce-checkout p.form-row input[type=number]::placeholder,
  .woocommerce-checkout p.form-row input[type=url]::placeholder,
  .woocommerce-checkout p.form-row input[type=date]::placeholder,
  .woocommerce-checkout p.form-row input[type=datetime-local]::placeholder,
  .woocommerce-checkout p.form-row input[type=month]::placeholder,
  .woocommerce-checkout p.form-row input[type=time]::placeholder,
  .woocommerce-checkout p.form-row input[type=week]::placeholder,
  .woocommerce-checkout p.form-row input.input-text::placeholder,
  .woocommerce-checkout p.form-row select::placeholder,
  .woocommerce-checkout p.form-row textarea::placeholder,
  .woocommerce-account p.form-row input[type=text]::placeholder,
  .woocommerce-account p.form-row input[type=email]::placeholder,
  .woocommerce-account p.form-row input[type=tel]::placeholder,
  .woocommerce-account p.form-row input[type=password]::placeholder,
  .woocommerce-account p.form-row input[type=number]::placeholder,
  .woocommerce-account p.form-row input[type=url]::placeholder,
  .woocommerce-account p.form-row input[type=date]::placeholder,
  .woocommerce-account p.form-row input[type=datetime-local]::placeholder,
  .woocommerce-account p.form-row input[type=month]::placeholder,
  .woocommerce-account p.form-row input[type=time]::placeholder,
  .woocommerce-account p.form-row input[type=week]::placeholder,
  .woocommerce-account p.form-row input.input-text::placeholder,
  .woocommerce-account p.form-row select::placeholder,
  .woocommerce-account p.form-row textarea::placeholder,
  .woocommerce form p.form-row input[type=text]::placeholder,
  .woocommerce form p.form-row input[type=email]::placeholder,
  .woocommerce form p.form-row input[type=tel]::placeholder,
  .woocommerce form p.form-row input[type=password]::placeholder,
  .woocommerce form p.form-row input[type=number]::placeholder,
  .woocommerce form p.form-row input[type=url]::placeholder,
  .woocommerce form p.form-row input[type=date]::placeholder,
  .woocommerce form p.form-row input[type=datetime-local]::placeholder,
  .woocommerce form p.form-row input[type=month]::placeholder,
  .woocommerce form p.form-row input[type=time]::placeholder,
  .woocommerce form p.form-row input[type=week]::placeholder,
  .woocommerce form p.form-row input.input-text::placeholder,
  .woocommerce form p.form-row select::placeholder,
  .woocommerce form p.form-row textarea::placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  p.form-row input[type=text]::placeholder,
  p.form-row input[type=email]::placeholder,
  p.form-row input[type=tel]::placeholder,
  p.form-row input[type=password]::placeholder,
  p.form-row input[type=number]::placeholder,
  p.form-row input[type=url]::placeholder,
  p.form-row input[type=date]::placeholder,
  p.form-row input[type=datetime-local]::placeholder,
  p.form-row input[type=month]::placeholder,
  p.form-row input[type=time]::placeholder,
  p.form-row input[type=week]::placeholder,
  p.form-row input.input-text::placeholder,
  p.form-row select::placeholder,
  p.form-row textarea::placeholder,
  .woocommerce p.form-row input[type=text]::placeholder,
  .woocommerce p.form-row input[type=email]::placeholder,
  .woocommerce p.form-row input[type=tel]::placeholder,
  .woocommerce p.form-row input[type=password]::placeholder,
  .woocommerce p.form-row input[type=number]::placeholder,
  .woocommerce p.form-row input[type=url]::placeholder,
  .woocommerce p.form-row input[type=date]::placeholder,
  .woocommerce p.form-row input[type=datetime-local]::placeholder,
  .woocommerce p.form-row input[type=month]::placeholder,
  .woocommerce p.form-row input[type=time]::placeholder,
  .woocommerce p.form-row input[type=week]::placeholder,
  .woocommerce p.form-row input.input-text::placeholder,
  .woocommerce p.form-row select::placeholder,
  .woocommerce p.form-row textarea::placeholder,
  .woocommerce-page p.form-row input[type=text]::placeholder,
  .woocommerce-page p.form-row input[type=email]::placeholder,
  .woocommerce-page p.form-row input[type=tel]::placeholder,
  .woocommerce-page p.form-row input[type=password]::placeholder,
  .woocommerce-page p.form-row input[type=number]::placeholder,
  .woocommerce-page p.form-row input[type=url]::placeholder,
  .woocommerce-page p.form-row input[type=date]::placeholder,
  .woocommerce-page p.form-row input[type=datetime-local]::placeholder,
  .woocommerce-page p.form-row input[type=month]::placeholder,
  .woocommerce-page p.form-row input[type=time]::placeholder,
  .woocommerce-page p.form-row input[type=week]::placeholder,
  .woocommerce-page p.form-row input.input-text::placeholder,
  .woocommerce-page p.form-row select::placeholder,
  .woocommerce-page p.form-row textarea::placeholder,
  .woocommerce-checkout p.form-row input[type=text]::placeholder,
  .woocommerce-checkout p.form-row input[type=email]::placeholder,
  .woocommerce-checkout p.form-row input[type=tel]::placeholder,
  .woocommerce-checkout p.form-row input[type=password]::placeholder,
  .woocommerce-checkout p.form-row input[type=number]::placeholder,
  .woocommerce-checkout p.form-row input[type=url]::placeholder,
  .woocommerce-checkout p.form-row input[type=date]::placeholder,
  .woocommerce-checkout p.form-row input[type=datetime-local]::placeholder,
  .woocommerce-checkout p.form-row input[type=month]::placeholder,
  .woocommerce-checkout p.form-row input[type=time]::placeholder,
  .woocommerce-checkout p.form-row input[type=week]::placeholder,
  .woocommerce-checkout p.form-row input.input-text::placeholder,
  .woocommerce-checkout p.form-row select::placeholder,
  .woocommerce-checkout p.form-row textarea::placeholder,
  .woocommerce-account p.form-row input[type=text]::placeholder,
  .woocommerce-account p.form-row input[type=email]::placeholder,
  .woocommerce-account p.form-row input[type=tel]::placeholder,
  .woocommerce-account p.form-row input[type=password]::placeholder,
  .woocommerce-account p.form-row input[type=number]::placeholder,
  .woocommerce-account p.form-row input[type=url]::placeholder,
  .woocommerce-account p.form-row input[type=date]::placeholder,
  .woocommerce-account p.form-row input[type=datetime-local]::placeholder,
  .woocommerce-account p.form-row input[type=month]::placeholder,
  .woocommerce-account p.form-row input[type=time]::placeholder,
  .woocommerce-account p.form-row input[type=week]::placeholder,
  .woocommerce-account p.form-row input.input-text::placeholder,
  .woocommerce-account p.form-row select::placeholder,
  .woocommerce-account p.form-row textarea::placeholder,
  .woocommerce form p.form-row input[type=text]::placeholder,
  .woocommerce form p.form-row input[type=email]::placeholder,
  .woocommerce form p.form-row input[type=tel]::placeholder,
  .woocommerce form p.form-row input[type=password]::placeholder,
  .woocommerce form p.form-row input[type=number]::placeholder,
  .woocommerce form p.form-row input[type=url]::placeholder,
  .woocommerce form p.form-row input[type=date]::placeholder,
  .woocommerce form p.form-row input[type=datetime-local]::placeholder,
  .woocommerce form p.form-row input[type=month]::placeholder,
  .woocommerce form p.form-row input[type=time]::placeholder,
  .woocommerce form p.form-row input[type=week]::placeholder,
  .woocommerce form p.form-row input.input-text::placeholder,
  .woocommerce form p.form-row select::placeholder,
  .woocommerce form p.form-row textarea::placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
p.form-row input[type=text]::-webkit-input-placeholder,
p.form-row input[type=email]::-webkit-input-placeholder,
p.form-row input[type=tel]::-webkit-input-placeholder,
p.form-row input[type=password]::-webkit-input-placeholder,
p.form-row input[type=number]::-webkit-input-placeholder,
p.form-row input[type=url]::-webkit-input-placeholder,
p.form-row input[type=date]::-webkit-input-placeholder,
p.form-row input[type=datetime-local]::-webkit-input-placeholder,
p.form-row input[type=month]::-webkit-input-placeholder,
p.form-row input[type=time]::-webkit-input-placeholder,
p.form-row input[type=week]::-webkit-input-placeholder,
p.form-row input.input-text::-webkit-input-placeholder,
p.form-row select::-webkit-input-placeholder,
p.form-row textarea::-webkit-input-placeholder,
.woocommerce p.form-row input[type=text]::-webkit-input-placeholder,
.woocommerce p.form-row input[type=email]::-webkit-input-placeholder,
.woocommerce p.form-row input[type=tel]::-webkit-input-placeholder,
.woocommerce p.form-row input[type=password]::-webkit-input-placeholder,
.woocommerce p.form-row input[type=number]::-webkit-input-placeholder,
.woocommerce p.form-row input[type=url]::-webkit-input-placeholder,
.woocommerce p.form-row input[type=date]::-webkit-input-placeholder,
.woocommerce p.form-row input[type=datetime-local]::-webkit-input-placeholder,
.woocommerce p.form-row input[type=month]::-webkit-input-placeholder,
.woocommerce p.form-row input[type=time]::-webkit-input-placeholder,
.woocommerce p.form-row input[type=week]::-webkit-input-placeholder,
.woocommerce p.form-row input.input-text::-webkit-input-placeholder,
.woocommerce p.form-row select::-webkit-input-placeholder,
.woocommerce p.form-row textarea::-webkit-input-placeholder,
.woocommerce-page p.form-row input[type=text]::-webkit-input-placeholder,
.woocommerce-page p.form-row input[type=email]::-webkit-input-placeholder,
.woocommerce-page p.form-row input[type=tel]::-webkit-input-placeholder,
.woocommerce-page p.form-row input[type=password]::-webkit-input-placeholder,
.woocommerce-page p.form-row input[type=number]::-webkit-input-placeholder,
.woocommerce-page p.form-row input[type=url]::-webkit-input-placeholder,
.woocommerce-page p.form-row input[type=date]::-webkit-input-placeholder,
.woocommerce-page p.form-row input[type=datetime-local]::-webkit-input-placeholder,
.woocommerce-page p.form-row input[type=month]::-webkit-input-placeholder,
.woocommerce-page p.form-row input[type=time]::-webkit-input-placeholder,
.woocommerce-page p.form-row input[type=week]::-webkit-input-placeholder,
.woocommerce-page p.form-row input.input-text::-webkit-input-placeholder,
.woocommerce-page p.form-row select::-webkit-input-placeholder,
.woocommerce-page p.form-row textarea::-webkit-input-placeholder,
.woocommerce-checkout p.form-row input[type=text]::-webkit-input-placeholder,
.woocommerce-checkout p.form-row input[type=email]::-webkit-input-placeholder,
.woocommerce-checkout p.form-row input[type=tel]::-webkit-input-placeholder,
.woocommerce-checkout p.form-row input[type=password]::-webkit-input-placeholder,
.woocommerce-checkout p.form-row input[type=number]::-webkit-input-placeholder,
.woocommerce-checkout p.form-row input[type=url]::-webkit-input-placeholder,
.woocommerce-checkout p.form-row input[type=date]::-webkit-input-placeholder,
.woocommerce-checkout p.form-row input[type=datetime-local]::-webkit-input-placeholder,
.woocommerce-checkout p.form-row input[type=month]::-webkit-input-placeholder,
.woocommerce-checkout p.form-row input[type=time]::-webkit-input-placeholder,
.woocommerce-checkout p.form-row input[type=week]::-webkit-input-placeholder,
.woocommerce-checkout p.form-row input.input-text::-webkit-input-placeholder,
.woocommerce-checkout p.form-row select::-webkit-input-placeholder,
.woocommerce-checkout p.form-row textarea::-webkit-input-placeholder,
.woocommerce-account p.form-row input[type=text]::-webkit-input-placeholder,
.woocommerce-account p.form-row input[type=email]::-webkit-input-placeholder,
.woocommerce-account p.form-row input[type=tel]::-webkit-input-placeholder,
.woocommerce-account p.form-row input[type=password]::-webkit-input-placeholder,
.woocommerce-account p.form-row input[type=number]::-webkit-input-placeholder,
.woocommerce-account p.form-row input[type=url]::-webkit-input-placeholder,
.woocommerce-account p.form-row input[type=date]::-webkit-input-placeholder,
.woocommerce-account p.form-row input[type=datetime-local]::-webkit-input-placeholder,
.woocommerce-account p.form-row input[type=month]::-webkit-input-placeholder,
.woocommerce-account p.form-row input[type=time]::-webkit-input-placeholder,
.woocommerce-account p.form-row input[type=week]::-webkit-input-placeholder,
.woocommerce-account p.form-row input.input-text::-webkit-input-placeholder,
.woocommerce-account p.form-row select::-webkit-input-placeholder,
.woocommerce-account p.form-row textarea::-webkit-input-placeholder,
.woocommerce form p.form-row input[type=text]::-webkit-input-placeholder,
.woocommerce form p.form-row input[type=email]::-webkit-input-placeholder,
.woocommerce form p.form-row input[type=tel]::-webkit-input-placeholder,
.woocommerce form p.form-row input[type=password]::-webkit-input-placeholder,
.woocommerce form p.form-row input[type=number]::-webkit-input-placeholder,
.woocommerce form p.form-row input[type=url]::-webkit-input-placeholder,
.woocommerce form p.form-row input[type=date]::-webkit-input-placeholder,
.woocommerce form p.form-row input[type=datetime-local]::-webkit-input-placeholder,
.woocommerce form p.form-row input[type=month]::-webkit-input-placeholder,
.woocommerce form p.form-row input[type=time]::-webkit-input-placeholder,
.woocommerce form p.form-row input[type=week]::-webkit-input-placeholder,
.woocommerce form p.form-row input.input-text::-webkit-input-placeholder,
.woocommerce form p.form-row select::-webkit-input-placeholder,
.woocommerce form p.form-row textarea::-webkit-input-placeholder {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: rgba(38, 41, 48, 0.5);
  opacity: 1;
}
@media (min-width: 1920px) {
  p.form-row input[type=text]::-webkit-input-placeholder,
  p.form-row input[type=email]::-webkit-input-placeholder,
  p.form-row input[type=tel]::-webkit-input-placeholder,
  p.form-row input[type=password]::-webkit-input-placeholder,
  p.form-row input[type=number]::-webkit-input-placeholder,
  p.form-row input[type=url]::-webkit-input-placeholder,
  p.form-row input[type=date]::-webkit-input-placeholder,
  p.form-row input[type=datetime-local]::-webkit-input-placeholder,
  p.form-row input[type=month]::-webkit-input-placeholder,
  p.form-row input[type=time]::-webkit-input-placeholder,
  p.form-row input[type=week]::-webkit-input-placeholder,
  p.form-row input.input-text::-webkit-input-placeholder,
  p.form-row select::-webkit-input-placeholder,
  p.form-row textarea::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=text]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=email]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=tel]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=password]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=number]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=url]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=date]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=datetime-local]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=month]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=time]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=week]::-webkit-input-placeholder,
  .woocommerce p.form-row input.input-text::-webkit-input-placeholder,
  .woocommerce p.form-row select::-webkit-input-placeholder,
  .woocommerce p.form-row textarea::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=text]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=email]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=tel]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=password]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=number]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=url]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=date]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=datetime-local]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=month]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=time]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=week]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input.input-text::-webkit-input-placeholder,
  .woocommerce-page p.form-row select::-webkit-input-placeholder,
  .woocommerce-page p.form-row textarea::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=text]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=email]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=tel]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=password]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=number]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=url]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=date]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=datetime-local]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=month]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=time]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=week]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input.input-text::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row select::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row textarea::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=text]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=email]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=tel]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=password]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=number]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=url]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=date]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=datetime-local]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=month]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=time]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=week]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input.input-text::-webkit-input-placeholder,
  .woocommerce-account p.form-row select::-webkit-input-placeholder,
  .woocommerce-account p.form-row textarea::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=text]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=email]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=tel]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=password]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=number]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=url]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=date]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=datetime-local]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=month]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=time]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=week]::-webkit-input-placeholder,
  .woocommerce form p.form-row input.input-text::-webkit-input-placeholder,
  .woocommerce form p.form-row select::-webkit-input-placeholder,
  .woocommerce form p.form-row textarea::-webkit-input-placeholder {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  p.form-row input[type=text]::-webkit-input-placeholder,
  p.form-row input[type=email]::-webkit-input-placeholder,
  p.form-row input[type=tel]::-webkit-input-placeholder,
  p.form-row input[type=password]::-webkit-input-placeholder,
  p.form-row input[type=number]::-webkit-input-placeholder,
  p.form-row input[type=url]::-webkit-input-placeholder,
  p.form-row input[type=date]::-webkit-input-placeholder,
  p.form-row input[type=datetime-local]::-webkit-input-placeholder,
  p.form-row input[type=month]::-webkit-input-placeholder,
  p.form-row input[type=time]::-webkit-input-placeholder,
  p.form-row input[type=week]::-webkit-input-placeholder,
  p.form-row input.input-text::-webkit-input-placeholder,
  p.form-row select::-webkit-input-placeholder,
  p.form-row textarea::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=text]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=email]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=tel]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=password]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=number]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=url]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=date]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=datetime-local]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=month]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=time]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=week]::-webkit-input-placeholder,
  .woocommerce p.form-row input.input-text::-webkit-input-placeholder,
  .woocommerce p.form-row select::-webkit-input-placeholder,
  .woocommerce p.form-row textarea::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=text]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=email]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=tel]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=password]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=number]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=url]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=date]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=datetime-local]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=month]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=time]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=week]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input.input-text::-webkit-input-placeholder,
  .woocommerce-page p.form-row select::-webkit-input-placeholder,
  .woocommerce-page p.form-row textarea::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=text]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=email]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=tel]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=password]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=number]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=url]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=date]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=datetime-local]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=month]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=time]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=week]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input.input-text::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row select::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row textarea::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=text]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=email]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=tel]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=password]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=number]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=url]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=date]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=datetime-local]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=month]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=time]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=week]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input.input-text::-webkit-input-placeholder,
  .woocommerce-account p.form-row select::-webkit-input-placeholder,
  .woocommerce-account p.form-row textarea::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=text]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=email]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=tel]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=password]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=number]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=url]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=date]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=datetime-local]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=month]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=time]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=week]::-webkit-input-placeholder,
  .woocommerce form p.form-row input.input-text::-webkit-input-placeholder,
  .woocommerce form p.form-row select::-webkit-input-placeholder,
  .woocommerce form p.form-row textarea::-webkit-input-placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  p.form-row input[type=text]::-webkit-input-placeholder,
  p.form-row input[type=email]::-webkit-input-placeholder,
  p.form-row input[type=tel]::-webkit-input-placeholder,
  p.form-row input[type=password]::-webkit-input-placeholder,
  p.form-row input[type=number]::-webkit-input-placeholder,
  p.form-row input[type=url]::-webkit-input-placeholder,
  p.form-row input[type=date]::-webkit-input-placeholder,
  p.form-row input[type=datetime-local]::-webkit-input-placeholder,
  p.form-row input[type=month]::-webkit-input-placeholder,
  p.form-row input[type=time]::-webkit-input-placeholder,
  p.form-row input[type=week]::-webkit-input-placeholder,
  p.form-row input.input-text::-webkit-input-placeholder,
  p.form-row select::-webkit-input-placeholder,
  p.form-row textarea::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=text]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=email]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=tel]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=password]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=number]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=url]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=date]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=datetime-local]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=month]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=time]::-webkit-input-placeholder,
  .woocommerce p.form-row input[type=week]::-webkit-input-placeholder,
  .woocommerce p.form-row input.input-text::-webkit-input-placeholder,
  .woocommerce p.form-row select::-webkit-input-placeholder,
  .woocommerce p.form-row textarea::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=text]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=email]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=tel]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=password]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=number]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=url]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=date]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=datetime-local]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=month]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=time]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input[type=week]::-webkit-input-placeholder,
  .woocommerce-page p.form-row input.input-text::-webkit-input-placeholder,
  .woocommerce-page p.form-row select::-webkit-input-placeholder,
  .woocommerce-page p.form-row textarea::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=text]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=email]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=tel]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=password]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=number]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=url]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=date]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=datetime-local]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=month]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=time]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input[type=week]::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row input.input-text::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row select::-webkit-input-placeholder,
  .woocommerce-checkout p.form-row textarea::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=text]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=email]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=tel]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=password]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=number]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=url]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=date]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=datetime-local]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=month]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=time]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input[type=week]::-webkit-input-placeholder,
  .woocommerce-account p.form-row input.input-text::-webkit-input-placeholder,
  .woocommerce-account p.form-row select::-webkit-input-placeholder,
  .woocommerce-account p.form-row textarea::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=text]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=email]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=tel]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=password]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=number]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=url]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=date]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=datetime-local]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=month]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=time]::-webkit-input-placeholder,
  .woocommerce form p.form-row input[type=week]::-webkit-input-placeholder,
  .woocommerce form p.form-row input.input-text::-webkit-input-placeholder,
  .woocommerce form p.form-row select::-webkit-input-placeholder,
  .woocommerce form p.form-row textarea::-webkit-input-placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
p.form-row input[type=text]::-moz-placeholder,
p.form-row input[type=email]::-moz-placeholder,
p.form-row input[type=tel]::-moz-placeholder,
p.form-row input[type=password]::-moz-placeholder,
p.form-row input[type=number]::-moz-placeholder,
p.form-row input[type=url]::-moz-placeholder,
p.form-row input[type=date]::-moz-placeholder,
p.form-row input[type=datetime-local]::-moz-placeholder,
p.form-row input[type=month]::-moz-placeholder,
p.form-row input[type=time]::-moz-placeholder,
p.form-row input[type=week]::-moz-placeholder,
p.form-row input.input-text::-moz-placeholder,
p.form-row select::-moz-placeholder,
p.form-row textarea::-moz-placeholder,
.woocommerce p.form-row input[type=text]::-moz-placeholder,
.woocommerce p.form-row input[type=email]::-moz-placeholder,
.woocommerce p.form-row input[type=tel]::-moz-placeholder,
.woocommerce p.form-row input[type=password]::-moz-placeholder,
.woocommerce p.form-row input[type=number]::-moz-placeholder,
.woocommerce p.form-row input[type=url]::-moz-placeholder,
.woocommerce p.form-row input[type=date]::-moz-placeholder,
.woocommerce p.form-row input[type=datetime-local]::-moz-placeholder,
.woocommerce p.form-row input[type=month]::-moz-placeholder,
.woocommerce p.form-row input[type=time]::-moz-placeholder,
.woocommerce p.form-row input[type=week]::-moz-placeholder,
.woocommerce p.form-row input.input-text::-moz-placeholder,
.woocommerce p.form-row select::-moz-placeholder,
.woocommerce p.form-row textarea::-moz-placeholder,
.woocommerce-page p.form-row input[type=text]::-moz-placeholder,
.woocommerce-page p.form-row input[type=email]::-moz-placeholder,
.woocommerce-page p.form-row input[type=tel]::-moz-placeholder,
.woocommerce-page p.form-row input[type=password]::-moz-placeholder,
.woocommerce-page p.form-row input[type=number]::-moz-placeholder,
.woocommerce-page p.form-row input[type=url]::-moz-placeholder,
.woocommerce-page p.form-row input[type=date]::-moz-placeholder,
.woocommerce-page p.form-row input[type=datetime-local]::-moz-placeholder,
.woocommerce-page p.form-row input[type=month]::-moz-placeholder,
.woocommerce-page p.form-row input[type=time]::-moz-placeholder,
.woocommerce-page p.form-row input[type=week]::-moz-placeholder,
.woocommerce-page p.form-row input.input-text::-moz-placeholder,
.woocommerce-page p.form-row select::-moz-placeholder,
.woocommerce-page p.form-row textarea::-moz-placeholder,
.woocommerce-checkout p.form-row input[type=text]::-moz-placeholder,
.woocommerce-checkout p.form-row input[type=email]::-moz-placeholder,
.woocommerce-checkout p.form-row input[type=tel]::-moz-placeholder,
.woocommerce-checkout p.form-row input[type=password]::-moz-placeholder,
.woocommerce-checkout p.form-row input[type=number]::-moz-placeholder,
.woocommerce-checkout p.form-row input[type=url]::-moz-placeholder,
.woocommerce-checkout p.form-row input[type=date]::-moz-placeholder,
.woocommerce-checkout p.form-row input[type=datetime-local]::-moz-placeholder,
.woocommerce-checkout p.form-row input[type=month]::-moz-placeholder,
.woocommerce-checkout p.form-row input[type=time]::-moz-placeholder,
.woocommerce-checkout p.form-row input[type=week]::-moz-placeholder,
.woocommerce-checkout p.form-row input.input-text::-moz-placeholder,
.woocommerce-checkout p.form-row select::-moz-placeholder,
.woocommerce-checkout p.form-row textarea::-moz-placeholder,
.woocommerce-account p.form-row input[type=text]::-moz-placeholder,
.woocommerce-account p.form-row input[type=email]::-moz-placeholder,
.woocommerce-account p.form-row input[type=tel]::-moz-placeholder,
.woocommerce-account p.form-row input[type=password]::-moz-placeholder,
.woocommerce-account p.form-row input[type=number]::-moz-placeholder,
.woocommerce-account p.form-row input[type=url]::-moz-placeholder,
.woocommerce-account p.form-row input[type=date]::-moz-placeholder,
.woocommerce-account p.form-row input[type=datetime-local]::-moz-placeholder,
.woocommerce-account p.form-row input[type=month]::-moz-placeholder,
.woocommerce-account p.form-row input[type=time]::-moz-placeholder,
.woocommerce-account p.form-row input[type=week]::-moz-placeholder,
.woocommerce-account p.form-row input.input-text::-moz-placeholder,
.woocommerce-account p.form-row select::-moz-placeholder,
.woocommerce-account p.form-row textarea::-moz-placeholder,
.woocommerce form p.form-row input[type=text]::-moz-placeholder,
.woocommerce form p.form-row input[type=email]::-moz-placeholder,
.woocommerce form p.form-row input[type=tel]::-moz-placeholder,
.woocommerce form p.form-row input[type=password]::-moz-placeholder,
.woocommerce form p.form-row input[type=number]::-moz-placeholder,
.woocommerce form p.form-row input[type=url]::-moz-placeholder,
.woocommerce form p.form-row input[type=date]::-moz-placeholder,
.woocommerce form p.form-row input[type=datetime-local]::-moz-placeholder,
.woocommerce form p.form-row input[type=month]::-moz-placeholder,
.woocommerce form p.form-row input[type=time]::-moz-placeholder,
.woocommerce form p.form-row input[type=week]::-moz-placeholder,
.woocommerce form p.form-row input.input-text::-moz-placeholder,
.woocommerce form p.form-row select::-moz-placeholder,
.woocommerce form p.form-row textarea::-moz-placeholder {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: rgba(38, 41, 48, 0.5);
  opacity: 1;
}
@media (min-width: 1920px) {
  p.form-row input[type=text]::-moz-placeholder,
  p.form-row input[type=email]::-moz-placeholder,
  p.form-row input[type=tel]::-moz-placeholder,
  p.form-row input[type=password]::-moz-placeholder,
  p.form-row input[type=number]::-moz-placeholder,
  p.form-row input[type=url]::-moz-placeholder,
  p.form-row input[type=date]::-moz-placeholder,
  p.form-row input[type=datetime-local]::-moz-placeholder,
  p.form-row input[type=month]::-moz-placeholder,
  p.form-row input[type=time]::-moz-placeholder,
  p.form-row input[type=week]::-moz-placeholder,
  p.form-row input.input-text::-moz-placeholder,
  p.form-row select::-moz-placeholder,
  p.form-row textarea::-moz-placeholder,
  .woocommerce p.form-row input[type=text]::-moz-placeholder,
  .woocommerce p.form-row input[type=email]::-moz-placeholder,
  .woocommerce p.form-row input[type=tel]::-moz-placeholder,
  .woocommerce p.form-row input[type=password]::-moz-placeholder,
  .woocommerce p.form-row input[type=number]::-moz-placeholder,
  .woocommerce p.form-row input[type=url]::-moz-placeholder,
  .woocommerce p.form-row input[type=date]::-moz-placeholder,
  .woocommerce p.form-row input[type=datetime-local]::-moz-placeholder,
  .woocommerce p.form-row input[type=month]::-moz-placeholder,
  .woocommerce p.form-row input[type=time]::-moz-placeholder,
  .woocommerce p.form-row input[type=week]::-moz-placeholder,
  .woocommerce p.form-row input.input-text::-moz-placeholder,
  .woocommerce p.form-row select::-moz-placeholder,
  .woocommerce p.form-row textarea::-moz-placeholder,
  .woocommerce-page p.form-row input[type=text]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=email]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=tel]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=password]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=number]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=url]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=date]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=datetime-local]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=month]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=time]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=week]::-moz-placeholder,
  .woocommerce-page p.form-row input.input-text::-moz-placeholder,
  .woocommerce-page p.form-row select::-moz-placeholder,
  .woocommerce-page p.form-row textarea::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=text]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=email]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=tel]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=password]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=number]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=url]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=date]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=datetime-local]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=month]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=time]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=week]::-moz-placeholder,
  .woocommerce-checkout p.form-row input.input-text::-moz-placeholder,
  .woocommerce-checkout p.form-row select::-moz-placeholder,
  .woocommerce-checkout p.form-row textarea::-moz-placeholder,
  .woocommerce-account p.form-row input[type=text]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=email]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=tel]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=password]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=number]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=url]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=date]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=datetime-local]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=month]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=time]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=week]::-moz-placeholder,
  .woocommerce-account p.form-row input.input-text::-moz-placeholder,
  .woocommerce-account p.form-row select::-moz-placeholder,
  .woocommerce-account p.form-row textarea::-moz-placeholder,
  .woocommerce form p.form-row input[type=text]::-moz-placeholder,
  .woocommerce form p.form-row input[type=email]::-moz-placeholder,
  .woocommerce form p.form-row input[type=tel]::-moz-placeholder,
  .woocommerce form p.form-row input[type=password]::-moz-placeholder,
  .woocommerce form p.form-row input[type=number]::-moz-placeholder,
  .woocommerce form p.form-row input[type=url]::-moz-placeholder,
  .woocommerce form p.form-row input[type=date]::-moz-placeholder,
  .woocommerce form p.form-row input[type=datetime-local]::-moz-placeholder,
  .woocommerce form p.form-row input[type=month]::-moz-placeholder,
  .woocommerce form p.form-row input[type=time]::-moz-placeholder,
  .woocommerce form p.form-row input[type=week]::-moz-placeholder,
  .woocommerce form p.form-row input.input-text::-moz-placeholder,
  .woocommerce form p.form-row select::-moz-placeholder,
  .woocommerce form p.form-row textarea::-moz-placeholder {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  p.form-row input[type=text]::-moz-placeholder,
  p.form-row input[type=email]::-moz-placeholder,
  p.form-row input[type=tel]::-moz-placeholder,
  p.form-row input[type=password]::-moz-placeholder,
  p.form-row input[type=number]::-moz-placeholder,
  p.form-row input[type=url]::-moz-placeholder,
  p.form-row input[type=date]::-moz-placeholder,
  p.form-row input[type=datetime-local]::-moz-placeholder,
  p.form-row input[type=month]::-moz-placeholder,
  p.form-row input[type=time]::-moz-placeholder,
  p.form-row input[type=week]::-moz-placeholder,
  p.form-row input.input-text::-moz-placeholder,
  p.form-row select::-moz-placeholder,
  p.form-row textarea::-moz-placeholder,
  .woocommerce p.form-row input[type=text]::-moz-placeholder,
  .woocommerce p.form-row input[type=email]::-moz-placeholder,
  .woocommerce p.form-row input[type=tel]::-moz-placeholder,
  .woocommerce p.form-row input[type=password]::-moz-placeholder,
  .woocommerce p.form-row input[type=number]::-moz-placeholder,
  .woocommerce p.form-row input[type=url]::-moz-placeholder,
  .woocommerce p.form-row input[type=date]::-moz-placeholder,
  .woocommerce p.form-row input[type=datetime-local]::-moz-placeholder,
  .woocommerce p.form-row input[type=month]::-moz-placeholder,
  .woocommerce p.form-row input[type=time]::-moz-placeholder,
  .woocommerce p.form-row input[type=week]::-moz-placeholder,
  .woocommerce p.form-row input.input-text::-moz-placeholder,
  .woocommerce p.form-row select::-moz-placeholder,
  .woocommerce p.form-row textarea::-moz-placeholder,
  .woocommerce-page p.form-row input[type=text]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=email]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=tel]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=password]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=number]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=url]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=date]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=datetime-local]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=month]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=time]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=week]::-moz-placeholder,
  .woocommerce-page p.form-row input.input-text::-moz-placeholder,
  .woocommerce-page p.form-row select::-moz-placeholder,
  .woocommerce-page p.form-row textarea::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=text]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=email]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=tel]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=password]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=number]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=url]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=date]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=datetime-local]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=month]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=time]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=week]::-moz-placeholder,
  .woocommerce-checkout p.form-row input.input-text::-moz-placeholder,
  .woocommerce-checkout p.form-row select::-moz-placeholder,
  .woocommerce-checkout p.form-row textarea::-moz-placeholder,
  .woocommerce-account p.form-row input[type=text]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=email]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=tel]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=password]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=number]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=url]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=date]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=datetime-local]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=month]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=time]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=week]::-moz-placeholder,
  .woocommerce-account p.form-row input.input-text::-moz-placeholder,
  .woocommerce-account p.form-row select::-moz-placeholder,
  .woocommerce-account p.form-row textarea::-moz-placeholder,
  .woocommerce form p.form-row input[type=text]::-moz-placeholder,
  .woocommerce form p.form-row input[type=email]::-moz-placeholder,
  .woocommerce form p.form-row input[type=tel]::-moz-placeholder,
  .woocommerce form p.form-row input[type=password]::-moz-placeholder,
  .woocommerce form p.form-row input[type=number]::-moz-placeholder,
  .woocommerce form p.form-row input[type=url]::-moz-placeholder,
  .woocommerce form p.form-row input[type=date]::-moz-placeholder,
  .woocommerce form p.form-row input[type=datetime-local]::-moz-placeholder,
  .woocommerce form p.form-row input[type=month]::-moz-placeholder,
  .woocommerce form p.form-row input[type=time]::-moz-placeholder,
  .woocommerce form p.form-row input[type=week]::-moz-placeholder,
  .woocommerce form p.form-row input.input-text::-moz-placeholder,
  .woocommerce form p.form-row select::-moz-placeholder,
  .woocommerce form p.form-row textarea::-moz-placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  p.form-row input[type=text]::-moz-placeholder,
  p.form-row input[type=email]::-moz-placeholder,
  p.form-row input[type=tel]::-moz-placeholder,
  p.form-row input[type=password]::-moz-placeholder,
  p.form-row input[type=number]::-moz-placeholder,
  p.form-row input[type=url]::-moz-placeholder,
  p.form-row input[type=date]::-moz-placeholder,
  p.form-row input[type=datetime-local]::-moz-placeholder,
  p.form-row input[type=month]::-moz-placeholder,
  p.form-row input[type=time]::-moz-placeholder,
  p.form-row input[type=week]::-moz-placeholder,
  p.form-row input.input-text::-moz-placeholder,
  p.form-row select::-moz-placeholder,
  p.form-row textarea::-moz-placeholder,
  .woocommerce p.form-row input[type=text]::-moz-placeholder,
  .woocommerce p.form-row input[type=email]::-moz-placeholder,
  .woocommerce p.form-row input[type=tel]::-moz-placeholder,
  .woocommerce p.form-row input[type=password]::-moz-placeholder,
  .woocommerce p.form-row input[type=number]::-moz-placeholder,
  .woocommerce p.form-row input[type=url]::-moz-placeholder,
  .woocommerce p.form-row input[type=date]::-moz-placeholder,
  .woocommerce p.form-row input[type=datetime-local]::-moz-placeholder,
  .woocommerce p.form-row input[type=month]::-moz-placeholder,
  .woocommerce p.form-row input[type=time]::-moz-placeholder,
  .woocommerce p.form-row input[type=week]::-moz-placeholder,
  .woocommerce p.form-row input.input-text::-moz-placeholder,
  .woocommerce p.form-row select::-moz-placeholder,
  .woocommerce p.form-row textarea::-moz-placeholder,
  .woocommerce-page p.form-row input[type=text]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=email]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=tel]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=password]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=number]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=url]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=date]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=datetime-local]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=month]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=time]::-moz-placeholder,
  .woocommerce-page p.form-row input[type=week]::-moz-placeholder,
  .woocommerce-page p.form-row input.input-text::-moz-placeholder,
  .woocommerce-page p.form-row select::-moz-placeholder,
  .woocommerce-page p.form-row textarea::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=text]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=email]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=tel]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=password]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=number]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=url]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=date]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=datetime-local]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=month]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=time]::-moz-placeholder,
  .woocommerce-checkout p.form-row input[type=week]::-moz-placeholder,
  .woocommerce-checkout p.form-row input.input-text::-moz-placeholder,
  .woocommerce-checkout p.form-row select::-moz-placeholder,
  .woocommerce-checkout p.form-row textarea::-moz-placeholder,
  .woocommerce-account p.form-row input[type=text]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=email]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=tel]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=password]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=number]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=url]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=date]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=datetime-local]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=month]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=time]::-moz-placeholder,
  .woocommerce-account p.form-row input[type=week]::-moz-placeholder,
  .woocommerce-account p.form-row input.input-text::-moz-placeholder,
  .woocommerce-account p.form-row select::-moz-placeholder,
  .woocommerce-account p.form-row textarea::-moz-placeholder,
  .woocommerce form p.form-row input[type=text]::-moz-placeholder,
  .woocommerce form p.form-row input[type=email]::-moz-placeholder,
  .woocommerce form p.form-row input[type=tel]::-moz-placeholder,
  .woocommerce form p.form-row input[type=password]::-moz-placeholder,
  .woocommerce form p.form-row input[type=number]::-moz-placeholder,
  .woocommerce form p.form-row input[type=url]::-moz-placeholder,
  .woocommerce form p.form-row input[type=date]::-moz-placeholder,
  .woocommerce form p.form-row input[type=datetime-local]::-moz-placeholder,
  .woocommerce form p.form-row input[type=month]::-moz-placeholder,
  .woocommerce form p.form-row input[type=time]::-moz-placeholder,
  .woocommerce form p.form-row input[type=week]::-moz-placeholder,
  .woocommerce form p.form-row input.input-text::-moz-placeholder,
  .woocommerce form p.form-row select::-moz-placeholder,
  .woocommerce form p.form-row textarea::-moz-placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
p.form-row input[type=text]:-ms-input-placeholder,
p.form-row input[type=email]:-ms-input-placeholder,
p.form-row input[type=tel]:-ms-input-placeholder,
p.form-row input[type=password]:-ms-input-placeholder,
p.form-row input[type=number]:-ms-input-placeholder,
p.form-row input[type=url]:-ms-input-placeholder,
p.form-row input[type=date]:-ms-input-placeholder,
p.form-row input[type=datetime-local]:-ms-input-placeholder,
p.form-row input[type=month]:-ms-input-placeholder,
p.form-row input[type=time]:-ms-input-placeholder,
p.form-row input[type=week]:-ms-input-placeholder,
p.form-row input.input-text:-ms-input-placeholder,
p.form-row select:-ms-input-placeholder,
p.form-row textarea:-ms-input-placeholder,
.woocommerce p.form-row input[type=text]:-ms-input-placeholder,
.woocommerce p.form-row input[type=email]:-ms-input-placeholder,
.woocommerce p.form-row input[type=tel]:-ms-input-placeholder,
.woocommerce p.form-row input[type=password]:-ms-input-placeholder,
.woocommerce p.form-row input[type=number]:-ms-input-placeholder,
.woocommerce p.form-row input[type=url]:-ms-input-placeholder,
.woocommerce p.form-row input[type=date]:-ms-input-placeholder,
.woocommerce p.form-row input[type=datetime-local]:-ms-input-placeholder,
.woocommerce p.form-row input[type=month]:-ms-input-placeholder,
.woocommerce p.form-row input[type=time]:-ms-input-placeholder,
.woocommerce p.form-row input[type=week]:-ms-input-placeholder,
.woocommerce p.form-row input.input-text:-ms-input-placeholder,
.woocommerce p.form-row select:-ms-input-placeholder,
.woocommerce p.form-row textarea:-ms-input-placeholder,
.woocommerce-page p.form-row input[type=text]:-ms-input-placeholder,
.woocommerce-page p.form-row input[type=email]:-ms-input-placeholder,
.woocommerce-page p.form-row input[type=tel]:-ms-input-placeholder,
.woocommerce-page p.form-row input[type=password]:-ms-input-placeholder,
.woocommerce-page p.form-row input[type=number]:-ms-input-placeholder,
.woocommerce-page p.form-row input[type=url]:-ms-input-placeholder,
.woocommerce-page p.form-row input[type=date]:-ms-input-placeholder,
.woocommerce-page p.form-row input[type=datetime-local]:-ms-input-placeholder,
.woocommerce-page p.form-row input[type=month]:-ms-input-placeholder,
.woocommerce-page p.form-row input[type=time]:-ms-input-placeholder,
.woocommerce-page p.form-row input[type=week]:-ms-input-placeholder,
.woocommerce-page p.form-row input.input-text:-ms-input-placeholder,
.woocommerce-page p.form-row select:-ms-input-placeholder,
.woocommerce-page p.form-row textarea:-ms-input-placeholder,
.woocommerce-checkout p.form-row input[type=text]:-ms-input-placeholder,
.woocommerce-checkout p.form-row input[type=email]:-ms-input-placeholder,
.woocommerce-checkout p.form-row input[type=tel]:-ms-input-placeholder,
.woocommerce-checkout p.form-row input[type=password]:-ms-input-placeholder,
.woocommerce-checkout p.form-row input[type=number]:-ms-input-placeholder,
.woocommerce-checkout p.form-row input[type=url]:-ms-input-placeholder,
.woocommerce-checkout p.form-row input[type=date]:-ms-input-placeholder,
.woocommerce-checkout p.form-row input[type=datetime-local]:-ms-input-placeholder,
.woocommerce-checkout p.form-row input[type=month]:-ms-input-placeholder,
.woocommerce-checkout p.form-row input[type=time]:-ms-input-placeholder,
.woocommerce-checkout p.form-row input[type=week]:-ms-input-placeholder,
.woocommerce-checkout p.form-row input.input-text:-ms-input-placeholder,
.woocommerce-checkout p.form-row select:-ms-input-placeholder,
.woocommerce-checkout p.form-row textarea:-ms-input-placeholder,
.woocommerce-account p.form-row input[type=text]:-ms-input-placeholder,
.woocommerce-account p.form-row input[type=email]:-ms-input-placeholder,
.woocommerce-account p.form-row input[type=tel]:-ms-input-placeholder,
.woocommerce-account p.form-row input[type=password]:-ms-input-placeholder,
.woocommerce-account p.form-row input[type=number]:-ms-input-placeholder,
.woocommerce-account p.form-row input[type=url]:-ms-input-placeholder,
.woocommerce-account p.form-row input[type=date]:-ms-input-placeholder,
.woocommerce-account p.form-row input[type=datetime-local]:-ms-input-placeholder,
.woocommerce-account p.form-row input[type=month]:-ms-input-placeholder,
.woocommerce-account p.form-row input[type=time]:-ms-input-placeholder,
.woocommerce-account p.form-row input[type=week]:-ms-input-placeholder,
.woocommerce-account p.form-row input.input-text:-ms-input-placeholder,
.woocommerce-account p.form-row select:-ms-input-placeholder,
.woocommerce-account p.form-row textarea:-ms-input-placeholder,
.woocommerce form p.form-row input[type=text]:-ms-input-placeholder,
.woocommerce form p.form-row input[type=email]:-ms-input-placeholder,
.woocommerce form p.form-row input[type=tel]:-ms-input-placeholder,
.woocommerce form p.form-row input[type=password]:-ms-input-placeholder,
.woocommerce form p.form-row input[type=number]:-ms-input-placeholder,
.woocommerce form p.form-row input[type=url]:-ms-input-placeholder,
.woocommerce form p.form-row input[type=date]:-ms-input-placeholder,
.woocommerce form p.form-row input[type=datetime-local]:-ms-input-placeholder,
.woocommerce form p.form-row input[type=month]:-ms-input-placeholder,
.woocommerce form p.form-row input[type=time]:-ms-input-placeholder,
.woocommerce form p.form-row input[type=week]:-ms-input-placeholder,
.woocommerce form p.form-row input.input-text:-ms-input-placeholder,
.woocommerce form p.form-row select:-ms-input-placeholder,
.woocommerce form p.form-row textarea:-ms-input-placeholder {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: rgba(38, 41, 48, 0.5);
  opacity: 1;
}
@media (min-width: 1920px) {
  p.form-row input[type=text]:-ms-input-placeholder,
  p.form-row input[type=email]:-ms-input-placeholder,
  p.form-row input[type=tel]:-ms-input-placeholder,
  p.form-row input[type=password]:-ms-input-placeholder,
  p.form-row input[type=number]:-ms-input-placeholder,
  p.form-row input[type=url]:-ms-input-placeholder,
  p.form-row input[type=date]:-ms-input-placeholder,
  p.form-row input[type=datetime-local]:-ms-input-placeholder,
  p.form-row input[type=month]:-ms-input-placeholder,
  p.form-row input[type=time]:-ms-input-placeholder,
  p.form-row input[type=week]:-ms-input-placeholder,
  p.form-row input.input-text:-ms-input-placeholder,
  p.form-row select:-ms-input-placeholder,
  p.form-row textarea:-ms-input-placeholder,
  .woocommerce p.form-row input[type=text]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=email]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=tel]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=password]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=number]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=url]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=date]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=datetime-local]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=month]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=time]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=week]:-ms-input-placeholder,
  .woocommerce p.form-row input.input-text:-ms-input-placeholder,
  .woocommerce p.form-row select:-ms-input-placeholder,
  .woocommerce p.form-row textarea:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=text]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=email]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=tel]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=password]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=number]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=url]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=date]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=datetime-local]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=month]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=time]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=week]:-ms-input-placeholder,
  .woocommerce-page p.form-row input.input-text:-ms-input-placeholder,
  .woocommerce-page p.form-row select:-ms-input-placeholder,
  .woocommerce-page p.form-row textarea:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=text]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=email]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=tel]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=password]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=number]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=url]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=date]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=datetime-local]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=month]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=time]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=week]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input.input-text:-ms-input-placeholder,
  .woocommerce-checkout p.form-row select:-ms-input-placeholder,
  .woocommerce-checkout p.form-row textarea:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=text]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=email]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=tel]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=password]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=number]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=url]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=date]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=datetime-local]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=month]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=time]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=week]:-ms-input-placeholder,
  .woocommerce-account p.form-row input.input-text:-ms-input-placeholder,
  .woocommerce-account p.form-row select:-ms-input-placeholder,
  .woocommerce-account p.form-row textarea:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=text]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=email]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=tel]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=password]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=number]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=url]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=date]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=datetime-local]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=month]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=time]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=week]:-ms-input-placeholder,
  .woocommerce form p.form-row input.input-text:-ms-input-placeholder,
  .woocommerce form p.form-row select:-ms-input-placeholder,
  .woocommerce form p.form-row textarea:-ms-input-placeholder {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  p.form-row input[type=text]:-ms-input-placeholder,
  p.form-row input[type=email]:-ms-input-placeholder,
  p.form-row input[type=tel]:-ms-input-placeholder,
  p.form-row input[type=password]:-ms-input-placeholder,
  p.form-row input[type=number]:-ms-input-placeholder,
  p.form-row input[type=url]:-ms-input-placeholder,
  p.form-row input[type=date]:-ms-input-placeholder,
  p.form-row input[type=datetime-local]:-ms-input-placeholder,
  p.form-row input[type=month]:-ms-input-placeholder,
  p.form-row input[type=time]:-ms-input-placeholder,
  p.form-row input[type=week]:-ms-input-placeholder,
  p.form-row input.input-text:-ms-input-placeholder,
  p.form-row select:-ms-input-placeholder,
  p.form-row textarea:-ms-input-placeholder,
  .woocommerce p.form-row input[type=text]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=email]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=tel]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=password]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=number]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=url]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=date]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=datetime-local]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=month]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=time]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=week]:-ms-input-placeholder,
  .woocommerce p.form-row input.input-text:-ms-input-placeholder,
  .woocommerce p.form-row select:-ms-input-placeholder,
  .woocommerce p.form-row textarea:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=text]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=email]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=tel]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=password]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=number]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=url]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=date]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=datetime-local]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=month]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=time]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=week]:-ms-input-placeholder,
  .woocommerce-page p.form-row input.input-text:-ms-input-placeholder,
  .woocommerce-page p.form-row select:-ms-input-placeholder,
  .woocommerce-page p.form-row textarea:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=text]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=email]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=tel]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=password]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=number]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=url]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=date]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=datetime-local]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=month]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=time]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=week]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input.input-text:-ms-input-placeholder,
  .woocommerce-checkout p.form-row select:-ms-input-placeholder,
  .woocommerce-checkout p.form-row textarea:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=text]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=email]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=tel]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=password]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=number]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=url]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=date]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=datetime-local]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=month]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=time]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=week]:-ms-input-placeholder,
  .woocommerce-account p.form-row input.input-text:-ms-input-placeholder,
  .woocommerce-account p.form-row select:-ms-input-placeholder,
  .woocommerce-account p.form-row textarea:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=text]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=email]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=tel]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=password]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=number]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=url]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=date]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=datetime-local]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=month]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=time]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=week]:-ms-input-placeholder,
  .woocommerce form p.form-row input.input-text:-ms-input-placeholder,
  .woocommerce form p.form-row select:-ms-input-placeholder,
  .woocommerce form p.form-row textarea:-ms-input-placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  p.form-row input[type=text]:-ms-input-placeholder,
  p.form-row input[type=email]:-ms-input-placeholder,
  p.form-row input[type=tel]:-ms-input-placeholder,
  p.form-row input[type=password]:-ms-input-placeholder,
  p.form-row input[type=number]:-ms-input-placeholder,
  p.form-row input[type=url]:-ms-input-placeholder,
  p.form-row input[type=date]:-ms-input-placeholder,
  p.form-row input[type=datetime-local]:-ms-input-placeholder,
  p.form-row input[type=month]:-ms-input-placeholder,
  p.form-row input[type=time]:-ms-input-placeholder,
  p.form-row input[type=week]:-ms-input-placeholder,
  p.form-row input.input-text:-ms-input-placeholder,
  p.form-row select:-ms-input-placeholder,
  p.form-row textarea:-ms-input-placeholder,
  .woocommerce p.form-row input[type=text]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=email]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=tel]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=password]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=number]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=url]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=date]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=datetime-local]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=month]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=time]:-ms-input-placeholder,
  .woocommerce p.form-row input[type=week]:-ms-input-placeholder,
  .woocommerce p.form-row input.input-text:-ms-input-placeholder,
  .woocommerce p.form-row select:-ms-input-placeholder,
  .woocommerce p.form-row textarea:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=text]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=email]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=tel]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=password]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=number]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=url]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=date]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=datetime-local]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=month]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=time]:-ms-input-placeholder,
  .woocommerce-page p.form-row input[type=week]:-ms-input-placeholder,
  .woocommerce-page p.form-row input.input-text:-ms-input-placeholder,
  .woocommerce-page p.form-row select:-ms-input-placeholder,
  .woocommerce-page p.form-row textarea:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=text]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=email]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=tel]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=password]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=number]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=url]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=date]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=datetime-local]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=month]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=time]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input[type=week]:-ms-input-placeholder,
  .woocommerce-checkout p.form-row input.input-text:-ms-input-placeholder,
  .woocommerce-checkout p.form-row select:-ms-input-placeholder,
  .woocommerce-checkout p.form-row textarea:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=text]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=email]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=tel]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=password]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=number]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=url]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=date]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=datetime-local]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=month]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=time]:-ms-input-placeholder,
  .woocommerce-account p.form-row input[type=week]:-ms-input-placeholder,
  .woocommerce-account p.form-row input.input-text:-ms-input-placeholder,
  .woocommerce-account p.form-row select:-ms-input-placeholder,
  .woocommerce-account p.form-row textarea:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=text]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=email]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=tel]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=password]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=number]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=url]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=date]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=datetime-local]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=month]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=time]:-ms-input-placeholder,
  .woocommerce form p.form-row input[type=week]:-ms-input-placeholder,
  .woocommerce form p.form-row input.input-text:-ms-input-placeholder,
  .woocommerce form p.form-row select:-ms-input-placeholder,
  .woocommerce form p.form-row textarea:-ms-input-placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
p.form-row input[type=text]:hover:not(:disabled):not([readonly]):not(:focus),
p.form-row input[type=email]:hover:not(:disabled):not([readonly]):not(:focus),
p.form-row input[type=tel]:hover:not(:disabled):not([readonly]):not(:focus),
p.form-row input[type=password]:hover:not(:disabled):not([readonly]):not(:focus),
p.form-row input[type=number]:hover:not(:disabled):not([readonly]):not(:focus),
p.form-row input[type=url]:hover:not(:disabled):not([readonly]):not(:focus),
p.form-row input[type=date]:hover:not(:disabled):not([readonly]):not(:focus),
p.form-row input[type=datetime-local]:hover:not(:disabled):not([readonly]):not(:focus),
p.form-row input[type=month]:hover:not(:disabled):not([readonly]):not(:focus),
p.form-row input[type=time]:hover:not(:disabled):not([readonly]):not(:focus),
p.form-row input[type=week]:hover:not(:disabled):not([readonly]):not(:focus),
p.form-row input.input-text:hover:not(:disabled):not([readonly]):not(:focus),
p.form-row select:hover:not(:disabled):not([readonly]):not(:focus),
p.form-row textarea:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce p.form-row input[type=text]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce p.form-row input[type=email]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce p.form-row input[type=tel]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce p.form-row input[type=password]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce p.form-row input[type=number]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce p.form-row input[type=url]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce p.form-row input[type=date]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce p.form-row input[type=datetime-local]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce p.form-row input[type=month]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce p.form-row input[type=time]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce p.form-row input[type=week]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce p.form-row input.input-text:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce p.form-row select:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce p.form-row textarea:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-page p.form-row input[type=text]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-page p.form-row input[type=email]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-page p.form-row input[type=tel]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-page p.form-row input[type=password]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-page p.form-row input[type=number]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-page p.form-row input[type=url]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-page p.form-row input[type=date]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-page p.form-row input[type=datetime-local]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-page p.form-row input[type=month]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-page p.form-row input[type=time]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-page p.form-row input[type=week]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-page p.form-row input.input-text:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-page p.form-row select:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-page p.form-row textarea:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-checkout p.form-row input[type=text]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-checkout p.form-row input[type=email]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-checkout p.form-row input[type=tel]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-checkout p.form-row input[type=password]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-checkout p.form-row input[type=number]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-checkout p.form-row input[type=url]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-checkout p.form-row input[type=date]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-checkout p.form-row input[type=datetime-local]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-checkout p.form-row input[type=month]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-checkout p.form-row input[type=time]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-checkout p.form-row input[type=week]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-checkout p.form-row input.input-text:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-checkout p.form-row select:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-checkout p.form-row textarea:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-account p.form-row input[type=text]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-account p.form-row input[type=email]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-account p.form-row input[type=tel]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-account p.form-row input[type=password]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-account p.form-row input[type=number]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-account p.form-row input[type=url]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-account p.form-row input[type=date]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-account p.form-row input[type=datetime-local]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-account p.form-row input[type=month]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-account p.form-row input[type=time]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-account p.form-row input[type=week]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-account p.form-row input.input-text:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-account p.form-row select:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce-account p.form-row textarea:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce form p.form-row input[type=text]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce form p.form-row input[type=email]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce form p.form-row input[type=tel]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce form p.form-row input[type=password]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce form p.form-row input[type=number]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce form p.form-row input[type=url]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce form p.form-row input[type=date]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce form p.form-row input[type=datetime-local]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce form p.form-row input[type=month]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce form p.form-row input[type=time]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce form p.form-row input[type=week]:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce form p.form-row input.input-text:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce form p.form-row select:hover:not(:disabled):not([readonly]):not(:focus),
.woocommerce form p.form-row textarea:hover:not(:disabled):not([readonly]):not(:focus) {
  border-color: #FF4F60;
}
p.form-row input[type=text]:focus,
p.form-row input[type=email]:focus,
p.form-row input[type=tel]:focus,
p.form-row input[type=password]:focus,
p.form-row input[type=number]:focus,
p.form-row input[type=url]:focus,
p.form-row input[type=date]:focus,
p.form-row input[type=datetime-local]:focus,
p.form-row input[type=month]:focus,
p.form-row input[type=time]:focus,
p.form-row input[type=week]:focus,
p.form-row input.input-text:focus,
p.form-row select:focus,
p.form-row textarea:focus,
.woocommerce p.form-row input[type=text]:focus,
.woocommerce p.form-row input[type=email]:focus,
.woocommerce p.form-row input[type=tel]:focus,
.woocommerce p.form-row input[type=password]:focus,
.woocommerce p.form-row input[type=number]:focus,
.woocommerce p.form-row input[type=url]:focus,
.woocommerce p.form-row input[type=date]:focus,
.woocommerce p.form-row input[type=datetime-local]:focus,
.woocommerce p.form-row input[type=month]:focus,
.woocommerce p.form-row input[type=time]:focus,
.woocommerce p.form-row input[type=week]:focus,
.woocommerce p.form-row input.input-text:focus,
.woocommerce p.form-row select:focus,
.woocommerce p.form-row textarea:focus,
.woocommerce-page p.form-row input[type=text]:focus,
.woocommerce-page p.form-row input[type=email]:focus,
.woocommerce-page p.form-row input[type=tel]:focus,
.woocommerce-page p.form-row input[type=password]:focus,
.woocommerce-page p.form-row input[type=number]:focus,
.woocommerce-page p.form-row input[type=url]:focus,
.woocommerce-page p.form-row input[type=date]:focus,
.woocommerce-page p.form-row input[type=datetime-local]:focus,
.woocommerce-page p.form-row input[type=month]:focus,
.woocommerce-page p.form-row input[type=time]:focus,
.woocommerce-page p.form-row input[type=week]:focus,
.woocommerce-page p.form-row input.input-text:focus,
.woocommerce-page p.form-row select:focus,
.woocommerce-page p.form-row textarea:focus,
.woocommerce-checkout p.form-row input[type=text]:focus,
.woocommerce-checkout p.form-row input[type=email]:focus,
.woocommerce-checkout p.form-row input[type=tel]:focus,
.woocommerce-checkout p.form-row input[type=password]:focus,
.woocommerce-checkout p.form-row input[type=number]:focus,
.woocommerce-checkout p.form-row input[type=url]:focus,
.woocommerce-checkout p.form-row input[type=date]:focus,
.woocommerce-checkout p.form-row input[type=datetime-local]:focus,
.woocommerce-checkout p.form-row input[type=month]:focus,
.woocommerce-checkout p.form-row input[type=time]:focus,
.woocommerce-checkout p.form-row input[type=week]:focus,
.woocommerce-checkout p.form-row input.input-text:focus,
.woocommerce-checkout p.form-row select:focus,
.woocommerce-checkout p.form-row textarea:focus,
.woocommerce-account p.form-row input[type=text]:focus,
.woocommerce-account p.form-row input[type=email]:focus,
.woocommerce-account p.form-row input[type=tel]:focus,
.woocommerce-account p.form-row input[type=password]:focus,
.woocommerce-account p.form-row input[type=number]:focus,
.woocommerce-account p.form-row input[type=url]:focus,
.woocommerce-account p.form-row input[type=date]:focus,
.woocommerce-account p.form-row input[type=datetime-local]:focus,
.woocommerce-account p.form-row input[type=month]:focus,
.woocommerce-account p.form-row input[type=time]:focus,
.woocommerce-account p.form-row input[type=week]:focus,
.woocommerce-account p.form-row input.input-text:focus,
.woocommerce-account p.form-row select:focus,
.woocommerce-account p.form-row textarea:focus,
.woocommerce form p.form-row input[type=text]:focus,
.woocommerce form p.form-row input[type=email]:focus,
.woocommerce form p.form-row input[type=tel]:focus,
.woocommerce form p.form-row input[type=password]:focus,
.woocommerce form p.form-row input[type=number]:focus,
.woocommerce form p.form-row input[type=url]:focus,
.woocommerce form p.form-row input[type=date]:focus,
.woocommerce form p.form-row input[type=datetime-local]:focus,
.woocommerce form p.form-row input[type=month]:focus,
.woocommerce form p.form-row input[type=time]:focus,
.woocommerce form p.form-row input[type=week]:focus,
.woocommerce form p.form-row input.input-text:focus,
.woocommerce form p.form-row select:focus,
.woocommerce form p.form-row textarea:focus {
  outline: none;
  border-color: #262930;
  box-shadow: 0 0 0 2px rgba(38, 41, 48, 0.1);
}
p.form-row input[type=text]:not(:placeholder-shown):not(:focus),
p.form-row input[type=email]:not(:placeholder-shown):not(:focus),
p.form-row input[type=tel]:not(:placeholder-shown):not(:focus),
p.form-row input[type=password]:not(:placeholder-shown):not(:focus),
p.form-row input[type=number]:not(:placeholder-shown):not(:focus),
p.form-row input[type=url]:not(:placeholder-shown):not(:focus),
p.form-row input[type=date]:not(:placeholder-shown):not(:focus),
p.form-row input[type=datetime-local]:not(:placeholder-shown):not(:focus),
p.form-row input[type=month]:not(:placeholder-shown):not(:focus),
p.form-row input[type=time]:not(:placeholder-shown):not(:focus),
p.form-row input[type=week]:not(:placeholder-shown):not(:focus),
p.form-row input.input-text:not(:placeholder-shown):not(:focus),
p.form-row select:not(:placeholder-shown):not(:focus),
p.form-row textarea:not(:placeholder-shown):not(:focus),
.woocommerce p.form-row input[type=text]:not(:placeholder-shown):not(:focus),
.woocommerce p.form-row input[type=email]:not(:placeholder-shown):not(:focus),
.woocommerce p.form-row input[type=tel]:not(:placeholder-shown):not(:focus),
.woocommerce p.form-row input[type=password]:not(:placeholder-shown):not(:focus),
.woocommerce p.form-row input[type=number]:not(:placeholder-shown):not(:focus),
.woocommerce p.form-row input[type=url]:not(:placeholder-shown):not(:focus),
.woocommerce p.form-row input[type=date]:not(:placeholder-shown):not(:focus),
.woocommerce p.form-row input[type=datetime-local]:not(:placeholder-shown):not(:focus),
.woocommerce p.form-row input[type=month]:not(:placeholder-shown):not(:focus),
.woocommerce p.form-row input[type=time]:not(:placeholder-shown):not(:focus),
.woocommerce p.form-row input[type=week]:not(:placeholder-shown):not(:focus),
.woocommerce p.form-row input.input-text:not(:placeholder-shown):not(:focus),
.woocommerce p.form-row select:not(:placeholder-shown):not(:focus),
.woocommerce p.form-row textarea:not(:placeholder-shown):not(:focus),
.woocommerce-page p.form-row input[type=text]:not(:placeholder-shown):not(:focus),
.woocommerce-page p.form-row input[type=email]:not(:placeholder-shown):not(:focus),
.woocommerce-page p.form-row input[type=tel]:not(:placeholder-shown):not(:focus),
.woocommerce-page p.form-row input[type=password]:not(:placeholder-shown):not(:focus),
.woocommerce-page p.form-row input[type=number]:not(:placeholder-shown):not(:focus),
.woocommerce-page p.form-row input[type=url]:not(:placeholder-shown):not(:focus),
.woocommerce-page p.form-row input[type=date]:not(:placeholder-shown):not(:focus),
.woocommerce-page p.form-row input[type=datetime-local]:not(:placeholder-shown):not(:focus),
.woocommerce-page p.form-row input[type=month]:not(:placeholder-shown):not(:focus),
.woocommerce-page p.form-row input[type=time]:not(:placeholder-shown):not(:focus),
.woocommerce-page p.form-row input[type=week]:not(:placeholder-shown):not(:focus),
.woocommerce-page p.form-row input.input-text:not(:placeholder-shown):not(:focus),
.woocommerce-page p.form-row select:not(:placeholder-shown):not(:focus),
.woocommerce-page p.form-row textarea:not(:placeholder-shown):not(:focus),
.woocommerce-checkout p.form-row input[type=text]:not(:placeholder-shown):not(:focus),
.woocommerce-checkout p.form-row input[type=email]:not(:placeholder-shown):not(:focus),
.woocommerce-checkout p.form-row input[type=tel]:not(:placeholder-shown):not(:focus),
.woocommerce-checkout p.form-row input[type=password]:not(:placeholder-shown):not(:focus),
.woocommerce-checkout p.form-row input[type=number]:not(:placeholder-shown):not(:focus),
.woocommerce-checkout p.form-row input[type=url]:not(:placeholder-shown):not(:focus),
.woocommerce-checkout p.form-row input[type=date]:not(:placeholder-shown):not(:focus),
.woocommerce-checkout p.form-row input[type=datetime-local]:not(:placeholder-shown):not(:focus),
.woocommerce-checkout p.form-row input[type=month]:not(:placeholder-shown):not(:focus),
.woocommerce-checkout p.form-row input[type=time]:not(:placeholder-shown):not(:focus),
.woocommerce-checkout p.form-row input[type=week]:not(:placeholder-shown):not(:focus),
.woocommerce-checkout p.form-row input.input-text:not(:placeholder-shown):not(:focus),
.woocommerce-checkout p.form-row select:not(:placeholder-shown):not(:focus),
.woocommerce-checkout p.form-row textarea:not(:placeholder-shown):not(:focus),
.woocommerce-account p.form-row input[type=text]:not(:placeholder-shown):not(:focus),
.woocommerce-account p.form-row input[type=email]:not(:placeholder-shown):not(:focus),
.woocommerce-account p.form-row input[type=tel]:not(:placeholder-shown):not(:focus),
.woocommerce-account p.form-row input[type=password]:not(:placeholder-shown):not(:focus),
.woocommerce-account p.form-row input[type=number]:not(:placeholder-shown):not(:focus),
.woocommerce-account p.form-row input[type=url]:not(:placeholder-shown):not(:focus),
.woocommerce-account p.form-row input[type=date]:not(:placeholder-shown):not(:focus),
.woocommerce-account p.form-row input[type=datetime-local]:not(:placeholder-shown):not(:focus),
.woocommerce-account p.form-row input[type=month]:not(:placeholder-shown):not(:focus),
.woocommerce-account p.form-row input[type=time]:not(:placeholder-shown):not(:focus),
.woocommerce-account p.form-row input[type=week]:not(:placeholder-shown):not(:focus),
.woocommerce-account p.form-row input.input-text:not(:placeholder-shown):not(:focus),
.woocommerce-account p.form-row select:not(:placeholder-shown):not(:focus),
.woocommerce-account p.form-row textarea:not(:placeholder-shown):not(:focus),
.woocommerce form p.form-row input[type=text]:not(:placeholder-shown):not(:focus),
.woocommerce form p.form-row input[type=email]:not(:placeholder-shown):not(:focus),
.woocommerce form p.form-row input[type=tel]:not(:placeholder-shown):not(:focus),
.woocommerce form p.form-row input[type=password]:not(:placeholder-shown):not(:focus),
.woocommerce form p.form-row input[type=number]:not(:placeholder-shown):not(:focus),
.woocommerce form p.form-row input[type=url]:not(:placeholder-shown):not(:focus),
.woocommerce form p.form-row input[type=date]:not(:placeholder-shown):not(:focus),
.woocommerce form p.form-row input[type=datetime-local]:not(:placeholder-shown):not(:focus),
.woocommerce form p.form-row input[type=month]:not(:placeholder-shown):not(:focus),
.woocommerce form p.form-row input[type=time]:not(:placeholder-shown):not(:focus),
.woocommerce form p.form-row input[type=week]:not(:placeholder-shown):not(:focus),
.woocommerce form p.form-row input.input-text:not(:placeholder-shown):not(:focus),
.woocommerce form p.form-row select:not(:placeholder-shown):not(:focus),
.woocommerce form p.form-row textarea:not(:placeholder-shown):not(:focus) {
  border-color: #262930;
}
p.form-row input[type=text]:disabled, p.form-row input[type=text][readonly],
p.form-row input[type=email]:disabled,
p.form-row input[type=email][readonly],
p.form-row input[type=tel]:disabled,
p.form-row input[type=tel][readonly],
p.form-row input[type=password]:disabled,
p.form-row input[type=password][readonly],
p.form-row input[type=number]:disabled,
p.form-row input[type=number][readonly],
p.form-row input[type=url]:disabled,
p.form-row input[type=url][readonly],
p.form-row input[type=date]:disabled,
p.form-row input[type=date][readonly],
p.form-row input[type=datetime-local]:disabled,
p.form-row input[type=datetime-local][readonly],
p.form-row input[type=month]:disabled,
p.form-row input[type=month][readonly],
p.form-row input[type=time]:disabled,
p.form-row input[type=time][readonly],
p.form-row input[type=week]:disabled,
p.form-row input[type=week][readonly],
p.form-row input.input-text:disabled,
p.form-row input.input-text[readonly],
p.form-row select:disabled,
p.form-row select[readonly],
p.form-row textarea:disabled,
p.form-row textarea[readonly],
.woocommerce p.form-row input[type=text]:disabled,
.woocommerce p.form-row input[type=text][readonly],
.woocommerce p.form-row input[type=email]:disabled,
.woocommerce p.form-row input[type=email][readonly],
.woocommerce p.form-row input[type=tel]:disabled,
.woocommerce p.form-row input[type=tel][readonly],
.woocommerce p.form-row input[type=password]:disabled,
.woocommerce p.form-row input[type=password][readonly],
.woocommerce p.form-row input[type=number]:disabled,
.woocommerce p.form-row input[type=number][readonly],
.woocommerce p.form-row input[type=url]:disabled,
.woocommerce p.form-row input[type=url][readonly],
.woocommerce p.form-row input[type=date]:disabled,
.woocommerce p.form-row input[type=date][readonly],
.woocommerce p.form-row input[type=datetime-local]:disabled,
.woocommerce p.form-row input[type=datetime-local][readonly],
.woocommerce p.form-row input[type=month]:disabled,
.woocommerce p.form-row input[type=month][readonly],
.woocommerce p.form-row input[type=time]:disabled,
.woocommerce p.form-row input[type=time][readonly],
.woocommerce p.form-row input[type=week]:disabled,
.woocommerce p.form-row input[type=week][readonly],
.woocommerce p.form-row input.input-text:disabled,
.woocommerce p.form-row input.input-text[readonly],
.woocommerce p.form-row select:disabled,
.woocommerce p.form-row select[readonly],
.woocommerce p.form-row textarea:disabled,
.woocommerce p.form-row textarea[readonly],
.woocommerce-page p.form-row input[type=text]:disabled,
.woocommerce-page p.form-row input[type=text][readonly],
.woocommerce-page p.form-row input[type=email]:disabled,
.woocommerce-page p.form-row input[type=email][readonly],
.woocommerce-page p.form-row input[type=tel]:disabled,
.woocommerce-page p.form-row input[type=tel][readonly],
.woocommerce-page p.form-row input[type=password]:disabled,
.woocommerce-page p.form-row input[type=password][readonly],
.woocommerce-page p.form-row input[type=number]:disabled,
.woocommerce-page p.form-row input[type=number][readonly],
.woocommerce-page p.form-row input[type=url]:disabled,
.woocommerce-page p.form-row input[type=url][readonly],
.woocommerce-page p.form-row input[type=date]:disabled,
.woocommerce-page p.form-row input[type=date][readonly],
.woocommerce-page p.form-row input[type=datetime-local]:disabled,
.woocommerce-page p.form-row input[type=datetime-local][readonly],
.woocommerce-page p.form-row input[type=month]:disabled,
.woocommerce-page p.form-row input[type=month][readonly],
.woocommerce-page p.form-row input[type=time]:disabled,
.woocommerce-page p.form-row input[type=time][readonly],
.woocommerce-page p.form-row input[type=week]:disabled,
.woocommerce-page p.form-row input[type=week][readonly],
.woocommerce-page p.form-row input.input-text:disabled,
.woocommerce-page p.form-row input.input-text[readonly],
.woocommerce-page p.form-row select:disabled,
.woocommerce-page p.form-row select[readonly],
.woocommerce-page p.form-row textarea:disabled,
.woocommerce-page p.form-row textarea[readonly],
.woocommerce-checkout p.form-row input[type=text]:disabled,
.woocommerce-checkout p.form-row input[type=text][readonly],
.woocommerce-checkout p.form-row input[type=email]:disabled,
.woocommerce-checkout p.form-row input[type=email][readonly],
.woocommerce-checkout p.form-row input[type=tel]:disabled,
.woocommerce-checkout p.form-row input[type=tel][readonly],
.woocommerce-checkout p.form-row input[type=password]:disabled,
.woocommerce-checkout p.form-row input[type=password][readonly],
.woocommerce-checkout p.form-row input[type=number]:disabled,
.woocommerce-checkout p.form-row input[type=number][readonly],
.woocommerce-checkout p.form-row input[type=url]:disabled,
.woocommerce-checkout p.form-row input[type=url][readonly],
.woocommerce-checkout p.form-row input[type=date]:disabled,
.woocommerce-checkout p.form-row input[type=date][readonly],
.woocommerce-checkout p.form-row input[type=datetime-local]:disabled,
.woocommerce-checkout p.form-row input[type=datetime-local][readonly],
.woocommerce-checkout p.form-row input[type=month]:disabled,
.woocommerce-checkout p.form-row input[type=month][readonly],
.woocommerce-checkout p.form-row input[type=time]:disabled,
.woocommerce-checkout p.form-row input[type=time][readonly],
.woocommerce-checkout p.form-row input[type=week]:disabled,
.woocommerce-checkout p.form-row input[type=week][readonly],
.woocommerce-checkout p.form-row input.input-text:disabled,
.woocommerce-checkout p.form-row input.input-text[readonly],
.woocommerce-checkout p.form-row select:disabled,
.woocommerce-checkout p.form-row select[readonly],
.woocommerce-checkout p.form-row textarea:disabled,
.woocommerce-checkout p.form-row textarea[readonly],
.woocommerce-account p.form-row input[type=text]:disabled,
.woocommerce-account p.form-row input[type=text][readonly],
.woocommerce-account p.form-row input[type=email]:disabled,
.woocommerce-account p.form-row input[type=email][readonly],
.woocommerce-account p.form-row input[type=tel]:disabled,
.woocommerce-account p.form-row input[type=tel][readonly],
.woocommerce-account p.form-row input[type=password]:disabled,
.woocommerce-account p.form-row input[type=password][readonly],
.woocommerce-account p.form-row input[type=number]:disabled,
.woocommerce-account p.form-row input[type=number][readonly],
.woocommerce-account p.form-row input[type=url]:disabled,
.woocommerce-account p.form-row input[type=url][readonly],
.woocommerce-account p.form-row input[type=date]:disabled,
.woocommerce-account p.form-row input[type=date][readonly],
.woocommerce-account p.form-row input[type=datetime-local]:disabled,
.woocommerce-account p.form-row input[type=datetime-local][readonly],
.woocommerce-account p.form-row input[type=month]:disabled,
.woocommerce-account p.form-row input[type=month][readonly],
.woocommerce-account p.form-row input[type=time]:disabled,
.woocommerce-account p.form-row input[type=time][readonly],
.woocommerce-account p.form-row input[type=week]:disabled,
.woocommerce-account p.form-row input[type=week][readonly],
.woocommerce-account p.form-row input.input-text:disabled,
.woocommerce-account p.form-row input.input-text[readonly],
.woocommerce-account p.form-row select:disabled,
.woocommerce-account p.form-row select[readonly],
.woocommerce-account p.form-row textarea:disabled,
.woocommerce-account p.form-row textarea[readonly],
.woocommerce form p.form-row input[type=text]:disabled,
.woocommerce form p.form-row input[type=text][readonly],
.woocommerce form p.form-row input[type=email]:disabled,
.woocommerce form p.form-row input[type=email][readonly],
.woocommerce form p.form-row input[type=tel]:disabled,
.woocommerce form p.form-row input[type=tel][readonly],
.woocommerce form p.form-row input[type=password]:disabled,
.woocommerce form p.form-row input[type=password][readonly],
.woocommerce form p.form-row input[type=number]:disabled,
.woocommerce form p.form-row input[type=number][readonly],
.woocommerce form p.form-row input[type=url]:disabled,
.woocommerce form p.form-row input[type=url][readonly],
.woocommerce form p.form-row input[type=date]:disabled,
.woocommerce form p.form-row input[type=date][readonly],
.woocommerce form p.form-row input[type=datetime-local]:disabled,
.woocommerce form p.form-row input[type=datetime-local][readonly],
.woocommerce form p.form-row input[type=month]:disabled,
.woocommerce form p.form-row input[type=month][readonly],
.woocommerce form p.form-row input[type=time]:disabled,
.woocommerce form p.form-row input[type=time][readonly],
.woocommerce form p.form-row input[type=week]:disabled,
.woocommerce form p.form-row input[type=week][readonly],
.woocommerce form p.form-row input.input-text:disabled,
.woocommerce form p.form-row input.input-text[readonly],
.woocommerce form p.form-row select:disabled,
.woocommerce form p.form-row select[readonly],
.woocommerce form p.form-row textarea:disabled,
.woocommerce form p.form-row textarea[readonly] {
  background-color: #F0F1F5;
  color: #8A8C95;
  border-color: #D8DAE2;
  cursor: not-allowed;
  opacity: 0.6;
}
p.form-row input[type=text]:disabled:hover, p.form-row input[type=text][readonly]:hover,
p.form-row input[type=email]:disabled:hover,
p.form-row input[type=email][readonly]:hover,
p.form-row input[type=tel]:disabled:hover,
p.form-row input[type=tel][readonly]:hover,
p.form-row input[type=password]:disabled:hover,
p.form-row input[type=password][readonly]:hover,
p.form-row input[type=number]:disabled:hover,
p.form-row input[type=number][readonly]:hover,
p.form-row input[type=url]:disabled:hover,
p.form-row input[type=url][readonly]:hover,
p.form-row input[type=date]:disabled:hover,
p.form-row input[type=date][readonly]:hover,
p.form-row input[type=datetime-local]:disabled:hover,
p.form-row input[type=datetime-local][readonly]:hover,
p.form-row input[type=month]:disabled:hover,
p.form-row input[type=month][readonly]:hover,
p.form-row input[type=time]:disabled:hover,
p.form-row input[type=time][readonly]:hover,
p.form-row input[type=week]:disabled:hover,
p.form-row input[type=week][readonly]:hover,
p.form-row input.input-text:disabled:hover,
p.form-row input.input-text[readonly]:hover,
p.form-row select:disabled:hover,
p.form-row select[readonly]:hover,
p.form-row textarea:disabled:hover,
p.form-row textarea[readonly]:hover,
.woocommerce p.form-row input[type=text]:disabled:hover,
.woocommerce p.form-row input[type=text][readonly]:hover,
.woocommerce p.form-row input[type=email]:disabled:hover,
.woocommerce p.form-row input[type=email][readonly]:hover,
.woocommerce p.form-row input[type=tel]:disabled:hover,
.woocommerce p.form-row input[type=tel][readonly]:hover,
.woocommerce p.form-row input[type=password]:disabled:hover,
.woocommerce p.form-row input[type=password][readonly]:hover,
.woocommerce p.form-row input[type=number]:disabled:hover,
.woocommerce p.form-row input[type=number][readonly]:hover,
.woocommerce p.form-row input[type=url]:disabled:hover,
.woocommerce p.form-row input[type=url][readonly]:hover,
.woocommerce p.form-row input[type=date]:disabled:hover,
.woocommerce p.form-row input[type=date][readonly]:hover,
.woocommerce p.form-row input[type=datetime-local]:disabled:hover,
.woocommerce p.form-row input[type=datetime-local][readonly]:hover,
.woocommerce p.form-row input[type=month]:disabled:hover,
.woocommerce p.form-row input[type=month][readonly]:hover,
.woocommerce p.form-row input[type=time]:disabled:hover,
.woocommerce p.form-row input[type=time][readonly]:hover,
.woocommerce p.form-row input[type=week]:disabled:hover,
.woocommerce p.form-row input[type=week][readonly]:hover,
.woocommerce p.form-row input.input-text:disabled:hover,
.woocommerce p.form-row input.input-text[readonly]:hover,
.woocommerce p.form-row select:disabled:hover,
.woocommerce p.form-row select[readonly]:hover,
.woocommerce p.form-row textarea:disabled:hover,
.woocommerce p.form-row textarea[readonly]:hover,
.woocommerce-page p.form-row input[type=text]:disabled:hover,
.woocommerce-page p.form-row input[type=text][readonly]:hover,
.woocommerce-page p.form-row input[type=email]:disabled:hover,
.woocommerce-page p.form-row input[type=email][readonly]:hover,
.woocommerce-page p.form-row input[type=tel]:disabled:hover,
.woocommerce-page p.form-row input[type=tel][readonly]:hover,
.woocommerce-page p.form-row input[type=password]:disabled:hover,
.woocommerce-page p.form-row input[type=password][readonly]:hover,
.woocommerce-page p.form-row input[type=number]:disabled:hover,
.woocommerce-page p.form-row input[type=number][readonly]:hover,
.woocommerce-page p.form-row input[type=url]:disabled:hover,
.woocommerce-page p.form-row input[type=url][readonly]:hover,
.woocommerce-page p.form-row input[type=date]:disabled:hover,
.woocommerce-page p.form-row input[type=date][readonly]:hover,
.woocommerce-page p.form-row input[type=datetime-local]:disabled:hover,
.woocommerce-page p.form-row input[type=datetime-local][readonly]:hover,
.woocommerce-page p.form-row input[type=month]:disabled:hover,
.woocommerce-page p.form-row input[type=month][readonly]:hover,
.woocommerce-page p.form-row input[type=time]:disabled:hover,
.woocommerce-page p.form-row input[type=time][readonly]:hover,
.woocommerce-page p.form-row input[type=week]:disabled:hover,
.woocommerce-page p.form-row input[type=week][readonly]:hover,
.woocommerce-page p.form-row input.input-text:disabled:hover,
.woocommerce-page p.form-row input.input-text[readonly]:hover,
.woocommerce-page p.form-row select:disabled:hover,
.woocommerce-page p.form-row select[readonly]:hover,
.woocommerce-page p.form-row textarea:disabled:hover,
.woocommerce-page p.form-row textarea[readonly]:hover,
.woocommerce-checkout p.form-row input[type=text]:disabled:hover,
.woocommerce-checkout p.form-row input[type=text][readonly]:hover,
.woocommerce-checkout p.form-row input[type=email]:disabled:hover,
.woocommerce-checkout p.form-row input[type=email][readonly]:hover,
.woocommerce-checkout p.form-row input[type=tel]:disabled:hover,
.woocommerce-checkout p.form-row input[type=tel][readonly]:hover,
.woocommerce-checkout p.form-row input[type=password]:disabled:hover,
.woocommerce-checkout p.form-row input[type=password][readonly]:hover,
.woocommerce-checkout p.form-row input[type=number]:disabled:hover,
.woocommerce-checkout p.form-row input[type=number][readonly]:hover,
.woocommerce-checkout p.form-row input[type=url]:disabled:hover,
.woocommerce-checkout p.form-row input[type=url][readonly]:hover,
.woocommerce-checkout p.form-row input[type=date]:disabled:hover,
.woocommerce-checkout p.form-row input[type=date][readonly]:hover,
.woocommerce-checkout p.form-row input[type=datetime-local]:disabled:hover,
.woocommerce-checkout p.form-row input[type=datetime-local][readonly]:hover,
.woocommerce-checkout p.form-row input[type=month]:disabled:hover,
.woocommerce-checkout p.form-row input[type=month][readonly]:hover,
.woocommerce-checkout p.form-row input[type=time]:disabled:hover,
.woocommerce-checkout p.form-row input[type=time][readonly]:hover,
.woocommerce-checkout p.form-row input[type=week]:disabled:hover,
.woocommerce-checkout p.form-row input[type=week][readonly]:hover,
.woocommerce-checkout p.form-row input.input-text:disabled:hover,
.woocommerce-checkout p.form-row input.input-text[readonly]:hover,
.woocommerce-checkout p.form-row select:disabled:hover,
.woocommerce-checkout p.form-row select[readonly]:hover,
.woocommerce-checkout p.form-row textarea:disabled:hover,
.woocommerce-checkout p.form-row textarea[readonly]:hover,
.woocommerce-account p.form-row input[type=text]:disabled:hover,
.woocommerce-account p.form-row input[type=text][readonly]:hover,
.woocommerce-account p.form-row input[type=email]:disabled:hover,
.woocommerce-account p.form-row input[type=email][readonly]:hover,
.woocommerce-account p.form-row input[type=tel]:disabled:hover,
.woocommerce-account p.form-row input[type=tel][readonly]:hover,
.woocommerce-account p.form-row input[type=password]:disabled:hover,
.woocommerce-account p.form-row input[type=password][readonly]:hover,
.woocommerce-account p.form-row input[type=number]:disabled:hover,
.woocommerce-account p.form-row input[type=number][readonly]:hover,
.woocommerce-account p.form-row input[type=url]:disabled:hover,
.woocommerce-account p.form-row input[type=url][readonly]:hover,
.woocommerce-account p.form-row input[type=date]:disabled:hover,
.woocommerce-account p.form-row input[type=date][readonly]:hover,
.woocommerce-account p.form-row input[type=datetime-local]:disabled:hover,
.woocommerce-account p.form-row input[type=datetime-local][readonly]:hover,
.woocommerce-account p.form-row input[type=month]:disabled:hover,
.woocommerce-account p.form-row input[type=month][readonly]:hover,
.woocommerce-account p.form-row input[type=time]:disabled:hover,
.woocommerce-account p.form-row input[type=time][readonly]:hover,
.woocommerce-account p.form-row input[type=week]:disabled:hover,
.woocommerce-account p.form-row input[type=week][readonly]:hover,
.woocommerce-account p.form-row input.input-text:disabled:hover,
.woocommerce-account p.form-row input.input-text[readonly]:hover,
.woocommerce-account p.form-row select:disabled:hover,
.woocommerce-account p.form-row select[readonly]:hover,
.woocommerce-account p.form-row textarea:disabled:hover,
.woocommerce-account p.form-row textarea[readonly]:hover,
.woocommerce form p.form-row input[type=text]:disabled:hover,
.woocommerce form p.form-row input[type=text][readonly]:hover,
.woocommerce form p.form-row input[type=email]:disabled:hover,
.woocommerce form p.form-row input[type=email][readonly]:hover,
.woocommerce form p.form-row input[type=tel]:disabled:hover,
.woocommerce form p.form-row input[type=tel][readonly]:hover,
.woocommerce form p.form-row input[type=password]:disabled:hover,
.woocommerce form p.form-row input[type=password][readonly]:hover,
.woocommerce form p.form-row input[type=number]:disabled:hover,
.woocommerce form p.form-row input[type=number][readonly]:hover,
.woocommerce form p.form-row input[type=url]:disabled:hover,
.woocommerce form p.form-row input[type=url][readonly]:hover,
.woocommerce form p.form-row input[type=date]:disabled:hover,
.woocommerce form p.form-row input[type=date][readonly]:hover,
.woocommerce form p.form-row input[type=datetime-local]:disabled:hover,
.woocommerce form p.form-row input[type=datetime-local][readonly]:hover,
.woocommerce form p.form-row input[type=month]:disabled:hover,
.woocommerce form p.form-row input[type=month][readonly]:hover,
.woocommerce form p.form-row input[type=time]:disabled:hover,
.woocommerce form p.form-row input[type=time][readonly]:hover,
.woocommerce form p.form-row input[type=week]:disabled:hover,
.woocommerce form p.form-row input[type=week][readonly]:hover,
.woocommerce form p.form-row input.input-text:disabled:hover,
.woocommerce form p.form-row input.input-text[readonly]:hover,
.woocommerce form p.form-row select:disabled:hover,
.woocommerce form p.form-row select[readonly]:hover,
.woocommerce form p.form-row textarea:disabled:hover,
.woocommerce form p.form-row textarea[readonly]:hover {
  border-color: #D8DAE2;
}
p.form-row textarea,
.woocommerce p.form-row textarea,
.woocommerce-page p.form-row textarea,
.woocommerce-checkout p.form-row textarea,
.woocommerce-account p.form-row textarea,
.woocommerce form p.form-row textarea {
  height: auto;
  min-height: 100px;
  padding: 12px;
  resize: vertical;
}
p.form-row select,
.woocommerce p.form-row select,
.woocommerce-page p.form-row select,
.woocommerce-checkout p.form-row select,
.woocommerce-account p.form-row select,
.woocommerce form p.form-row select {
  appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%235B5E67' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  cursor: pointer;
}
p.form-row select:not([value=""]):not(:focus),
.woocommerce p.form-row select:not([value=""]):not(:focus),
.woocommerce-page p.form-row select:not([value=""]):not(:focus),
.woocommerce-checkout p.form-row select:not([value=""]):not(:focus),
.woocommerce-account p.form-row select:not([value=""]):not(:focus),
.woocommerce form p.form-row select:not([value=""]):not(:focus) {
  border-color: #262930;
}
p.form-row .woocommerce-error,
p.form-row .error-message,
p.form-row .field-error,
.woocommerce p.form-row .woocommerce-error,
.woocommerce p.form-row .error-message,
.woocommerce p.form-row .field-error,
.woocommerce-page p.form-row .woocommerce-error,
.woocommerce-page p.form-row .error-message,
.woocommerce-page p.form-row .field-error,
.woocommerce-checkout p.form-row .woocommerce-error,
.woocommerce-checkout p.form-row .error-message,
.woocommerce-checkout p.form-row .field-error,
.woocommerce-account p.form-row .woocommerce-error,
.woocommerce-account p.form-row .error-message,
.woocommerce-account p.form-row .field-error,
.woocommerce form p.form-row .woocommerce-error,
.woocommerce form p.form-row .error-message,
.woocommerce form p.form-row .field-error {
  order: 3;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  p.form-row .woocommerce-error,
  p.form-row .error-message,
  p.form-row .field-error,
  .woocommerce p.form-row .woocommerce-error,
  .woocommerce p.form-row .error-message,
  .woocommerce p.form-row .field-error,
  .woocommerce-page p.form-row .woocommerce-error,
  .woocommerce-page p.form-row .error-message,
  .woocommerce-page p.form-row .field-error,
  .woocommerce-checkout p.form-row .woocommerce-error,
  .woocommerce-checkout p.form-row .error-message,
  .woocommerce-checkout p.form-row .field-error,
  .woocommerce-account p.form-row .woocommerce-error,
  .woocommerce-account p.form-row .error-message,
  .woocommerce-account p.form-row .field-error,
  .woocommerce form p.form-row .woocommerce-error,
  .woocommerce form p.form-row .error-message,
  .woocommerce form p.form-row .field-error {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  p.form-row .woocommerce-error,
  p.form-row .error-message,
  p.form-row .field-error,
  .woocommerce p.form-row .woocommerce-error,
  .woocommerce p.form-row .error-message,
  .woocommerce p.form-row .field-error,
  .woocommerce-page p.form-row .woocommerce-error,
  .woocommerce-page p.form-row .error-message,
  .woocommerce-page p.form-row .field-error,
  .woocommerce-checkout p.form-row .woocommerce-error,
  .woocommerce-checkout p.form-row .error-message,
  .woocommerce-checkout p.form-row .field-error,
  .woocommerce-account p.form-row .woocommerce-error,
  .woocommerce-account p.form-row .error-message,
  .woocommerce-account p.form-row .field-error,
  .woocommerce form p.form-row .woocommerce-error,
  .woocommerce form p.form-row .error-message,
  .woocommerce form p.form-row .field-error {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  p.form-row .woocommerce-error,
  p.form-row .error-message,
  p.form-row .field-error,
  .woocommerce p.form-row .woocommerce-error,
  .woocommerce p.form-row .error-message,
  .woocommerce p.form-row .field-error,
  .woocommerce-page p.form-row .woocommerce-error,
  .woocommerce-page p.form-row .error-message,
  .woocommerce-page p.form-row .field-error,
  .woocommerce-checkout p.form-row .woocommerce-error,
  .woocommerce-checkout p.form-row .error-message,
  .woocommerce-checkout p.form-row .field-error,
  .woocommerce-account p.form-row .woocommerce-error,
  .woocommerce-account p.form-row .error-message,
  .woocommerce-account p.form-row .field-error,
  .woocommerce form p.form-row .woocommerce-error,
  .woocommerce form p.form-row .error-message,
  .woocommerce form p.form-row .field-error {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
p.form-row .woocommerce-error,
p.form-row .error-message,
p.form-row .field-error,
.woocommerce p.form-row .woocommerce-error,
.woocommerce p.form-row .error-message,
.woocommerce p.form-row .field-error,
.woocommerce-page p.form-row .woocommerce-error,
.woocommerce-page p.form-row .error-message,
.woocommerce-page p.form-row .field-error,
.woocommerce-checkout p.form-row .woocommerce-error,
.woocommerce-checkout p.form-row .error-message,
.woocommerce-checkout p.form-row .field-error,
.woocommerce-account p.form-row .woocommerce-error,
.woocommerce-account p.form-row .error-message,
.woocommerce-account p.form-row .field-error,
.woocommerce form p.form-row .woocommerce-error,
.woocommerce form p.form-row .error-message,
.woocommerce form p.form-row .field-error {
  color: #C5014C;
  margin-top: 8px;
  display: block;
}
p.form-row .description,
p.form-row .form-help,
.woocommerce p.form-row .description,
.woocommerce p.form-row .form-help,
.woocommerce-page p.form-row .description,
.woocommerce-page p.form-row .form-help,
.woocommerce-checkout p.form-row .description,
.woocommerce-checkout p.form-row .form-help,
.woocommerce-account p.form-row .description,
.woocommerce-account p.form-row .form-help,
.woocommerce form p.form-row .description,
.woocommerce form p.form-row .form-help {
  order: 4;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  p.form-row .description,
  p.form-row .form-help,
  .woocommerce p.form-row .description,
  .woocommerce p.form-row .form-help,
  .woocommerce-page p.form-row .description,
  .woocommerce-page p.form-row .form-help,
  .woocommerce-checkout p.form-row .description,
  .woocommerce-checkout p.form-row .form-help,
  .woocommerce-account p.form-row .description,
  .woocommerce-account p.form-row .form-help,
  .woocommerce form p.form-row .description,
  .woocommerce form p.form-row .form-help {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  p.form-row .description,
  p.form-row .form-help,
  .woocommerce p.form-row .description,
  .woocommerce p.form-row .form-help,
  .woocommerce-page p.form-row .description,
  .woocommerce-page p.form-row .form-help,
  .woocommerce-checkout p.form-row .description,
  .woocommerce-checkout p.form-row .form-help,
  .woocommerce-account p.form-row .description,
  .woocommerce-account p.form-row .form-help,
  .woocommerce form p.form-row .description,
  .woocommerce form p.form-row .form-help {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  p.form-row .description,
  p.form-row .form-help,
  .woocommerce p.form-row .description,
  .woocommerce p.form-row .form-help,
  .woocommerce-page p.form-row .description,
  .woocommerce-page p.form-row .form-help,
  .woocommerce-checkout p.form-row .description,
  .woocommerce-checkout p.form-row .form-help,
  .woocommerce-account p.form-row .description,
  .woocommerce-account p.form-row .form-help,
  .woocommerce form p.form-row .description,
  .woocommerce form p.form-row .form-help {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
p.form-row .description,
p.form-row .form-help,
.woocommerce p.form-row .description,
.woocommerce p.form-row .form-help,
.woocommerce-page p.form-row .description,
.woocommerce-page p.form-row .form-help,
.woocommerce-checkout p.form-row .description,
.woocommerce-checkout p.form-row .form-help,
.woocommerce-account p.form-row .description,
.woocommerce-account p.form-row .form-help,
.woocommerce form p.form-row .description,
.woocommerce form p.form-row .form-help {
  color: rgba(38, 41, 48, 0.5);
  margin-top: 4px;
}
p.form-row.woocommerce-invalid > label, p.form-row.has-error > label,
.woocommerce p.form-row.woocommerce-invalid > label,
.woocommerce p.form-row.has-error > label,
.woocommerce-page p.form-row.woocommerce-invalid > label,
.woocommerce-page p.form-row.has-error > label,
.woocommerce-checkout p.form-row.woocommerce-invalid > label,
.woocommerce-checkout p.form-row.has-error > label,
.woocommerce-account p.form-row.woocommerce-invalid > label,
.woocommerce-account p.form-row.has-error > label,
.woocommerce form p.form-row.woocommerce-invalid > label,
.woocommerce form p.form-row.has-error > label {
  color: #C5014C;
}
p.form-row.woocommerce-invalid input[type=text],
p.form-row.woocommerce-invalid input[type=email],
p.form-row.woocommerce-invalid input[type=tel],
p.form-row.woocommerce-invalid input[type=password],
p.form-row.woocommerce-invalid input[type=number],
p.form-row.woocommerce-invalid input[type=url],
p.form-row.woocommerce-invalid input[type=date],
p.form-row.woocommerce-invalid input.input-text,
p.form-row.woocommerce-invalid select,
p.form-row.woocommerce-invalid textarea, p.form-row.has-error input[type=text],
p.form-row.has-error input[type=email],
p.form-row.has-error input[type=tel],
p.form-row.has-error input[type=password],
p.form-row.has-error input[type=number],
p.form-row.has-error input[type=url],
p.form-row.has-error input[type=date],
p.form-row.has-error input.input-text,
p.form-row.has-error select,
p.form-row.has-error textarea,
.woocommerce p.form-row.woocommerce-invalid input[type=text],
.woocommerce p.form-row.woocommerce-invalid input[type=email],
.woocommerce p.form-row.woocommerce-invalid input[type=tel],
.woocommerce p.form-row.woocommerce-invalid input[type=password],
.woocommerce p.form-row.woocommerce-invalid input[type=number],
.woocommerce p.form-row.woocommerce-invalid input[type=url],
.woocommerce p.form-row.woocommerce-invalid input[type=date],
.woocommerce p.form-row.woocommerce-invalid input.input-text,
.woocommerce p.form-row.woocommerce-invalid select,
.woocommerce p.form-row.woocommerce-invalid textarea,
.woocommerce p.form-row.has-error input[type=text],
.woocommerce p.form-row.has-error input[type=email],
.woocommerce p.form-row.has-error input[type=tel],
.woocommerce p.form-row.has-error input[type=password],
.woocommerce p.form-row.has-error input[type=number],
.woocommerce p.form-row.has-error input[type=url],
.woocommerce p.form-row.has-error input[type=date],
.woocommerce p.form-row.has-error input.input-text,
.woocommerce p.form-row.has-error select,
.woocommerce p.form-row.has-error textarea,
.woocommerce-page p.form-row.woocommerce-invalid input[type=text],
.woocommerce-page p.form-row.woocommerce-invalid input[type=email],
.woocommerce-page p.form-row.woocommerce-invalid input[type=tel],
.woocommerce-page p.form-row.woocommerce-invalid input[type=password],
.woocommerce-page p.form-row.woocommerce-invalid input[type=number],
.woocommerce-page p.form-row.woocommerce-invalid input[type=url],
.woocommerce-page p.form-row.woocommerce-invalid input[type=date],
.woocommerce-page p.form-row.woocommerce-invalid input.input-text,
.woocommerce-page p.form-row.woocommerce-invalid select,
.woocommerce-page p.form-row.woocommerce-invalid textarea,
.woocommerce-page p.form-row.has-error input[type=text],
.woocommerce-page p.form-row.has-error input[type=email],
.woocommerce-page p.form-row.has-error input[type=tel],
.woocommerce-page p.form-row.has-error input[type=password],
.woocommerce-page p.form-row.has-error input[type=number],
.woocommerce-page p.form-row.has-error input[type=url],
.woocommerce-page p.form-row.has-error input[type=date],
.woocommerce-page p.form-row.has-error input.input-text,
.woocommerce-page p.form-row.has-error select,
.woocommerce-page p.form-row.has-error textarea,
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=text],
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=email],
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=tel],
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=password],
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=number],
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=url],
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=date],
.woocommerce-checkout p.form-row.woocommerce-invalid input.input-text,
.woocommerce-checkout p.form-row.woocommerce-invalid select,
.woocommerce-checkout p.form-row.woocommerce-invalid textarea,
.woocommerce-checkout p.form-row.has-error input[type=text],
.woocommerce-checkout p.form-row.has-error input[type=email],
.woocommerce-checkout p.form-row.has-error input[type=tel],
.woocommerce-checkout p.form-row.has-error input[type=password],
.woocommerce-checkout p.form-row.has-error input[type=number],
.woocommerce-checkout p.form-row.has-error input[type=url],
.woocommerce-checkout p.form-row.has-error input[type=date],
.woocommerce-checkout p.form-row.has-error input.input-text,
.woocommerce-checkout p.form-row.has-error select,
.woocommerce-checkout p.form-row.has-error textarea,
.woocommerce-account p.form-row.woocommerce-invalid input[type=text],
.woocommerce-account p.form-row.woocommerce-invalid input[type=email],
.woocommerce-account p.form-row.woocommerce-invalid input[type=tel],
.woocommerce-account p.form-row.woocommerce-invalid input[type=password],
.woocommerce-account p.form-row.woocommerce-invalid input[type=number],
.woocommerce-account p.form-row.woocommerce-invalid input[type=url],
.woocommerce-account p.form-row.woocommerce-invalid input[type=date],
.woocommerce-account p.form-row.woocommerce-invalid input.input-text,
.woocommerce-account p.form-row.woocommerce-invalid select,
.woocommerce-account p.form-row.woocommerce-invalid textarea,
.woocommerce-account p.form-row.has-error input[type=text],
.woocommerce-account p.form-row.has-error input[type=email],
.woocommerce-account p.form-row.has-error input[type=tel],
.woocommerce-account p.form-row.has-error input[type=password],
.woocommerce-account p.form-row.has-error input[type=number],
.woocommerce-account p.form-row.has-error input[type=url],
.woocommerce-account p.form-row.has-error input[type=date],
.woocommerce-account p.form-row.has-error input.input-text,
.woocommerce-account p.form-row.has-error select,
.woocommerce-account p.form-row.has-error textarea,
.woocommerce form p.form-row.woocommerce-invalid input[type=text],
.woocommerce form p.form-row.woocommerce-invalid input[type=email],
.woocommerce form p.form-row.woocommerce-invalid input[type=tel],
.woocommerce form p.form-row.woocommerce-invalid input[type=password],
.woocommerce form p.form-row.woocommerce-invalid input[type=number],
.woocommerce form p.form-row.woocommerce-invalid input[type=url],
.woocommerce form p.form-row.woocommerce-invalid input[type=date],
.woocommerce form p.form-row.woocommerce-invalid input.input-text,
.woocommerce form p.form-row.woocommerce-invalid select,
.woocommerce form p.form-row.woocommerce-invalid textarea,
.woocommerce form p.form-row.has-error input[type=text],
.woocommerce form p.form-row.has-error input[type=email],
.woocommerce form p.form-row.has-error input[type=tel],
.woocommerce form p.form-row.has-error input[type=password],
.woocommerce form p.form-row.has-error input[type=number],
.woocommerce form p.form-row.has-error input[type=url],
.woocommerce form p.form-row.has-error input[type=date],
.woocommerce form p.form-row.has-error input.input-text,
.woocommerce form p.form-row.has-error select,
.woocommerce form p.form-row.has-error textarea {
  border-color: #C5014C;
}
p.form-row.woocommerce-invalid input[type=text]:hover:not(:disabled),
p.form-row.woocommerce-invalid input[type=email]:hover:not(:disabled),
p.form-row.woocommerce-invalid input[type=tel]:hover:not(:disabled),
p.form-row.woocommerce-invalid input[type=password]:hover:not(:disabled),
p.form-row.woocommerce-invalid input[type=number]:hover:not(:disabled),
p.form-row.woocommerce-invalid input[type=url]:hover:not(:disabled),
p.form-row.woocommerce-invalid input[type=date]:hover:not(:disabled),
p.form-row.woocommerce-invalid input.input-text:hover:not(:disabled),
p.form-row.woocommerce-invalid select:hover:not(:disabled),
p.form-row.woocommerce-invalid textarea:hover:not(:disabled), p.form-row.has-error input[type=text]:hover:not(:disabled),
p.form-row.has-error input[type=email]:hover:not(:disabled),
p.form-row.has-error input[type=tel]:hover:not(:disabled),
p.form-row.has-error input[type=password]:hover:not(:disabled),
p.form-row.has-error input[type=number]:hover:not(:disabled),
p.form-row.has-error input[type=url]:hover:not(:disabled),
p.form-row.has-error input[type=date]:hover:not(:disabled),
p.form-row.has-error input.input-text:hover:not(:disabled),
p.form-row.has-error select:hover:not(:disabled),
p.form-row.has-error textarea:hover:not(:disabled),
.woocommerce p.form-row.woocommerce-invalid input[type=text]:hover:not(:disabled),
.woocommerce p.form-row.woocommerce-invalid input[type=email]:hover:not(:disabled),
.woocommerce p.form-row.woocommerce-invalid input[type=tel]:hover:not(:disabled),
.woocommerce p.form-row.woocommerce-invalid input[type=password]:hover:not(:disabled),
.woocommerce p.form-row.woocommerce-invalid input[type=number]:hover:not(:disabled),
.woocommerce p.form-row.woocommerce-invalid input[type=url]:hover:not(:disabled),
.woocommerce p.form-row.woocommerce-invalid input[type=date]:hover:not(:disabled),
.woocommerce p.form-row.woocommerce-invalid input.input-text:hover:not(:disabled),
.woocommerce p.form-row.woocommerce-invalid select:hover:not(:disabled),
.woocommerce p.form-row.woocommerce-invalid textarea:hover:not(:disabled),
.woocommerce p.form-row.has-error input[type=text]:hover:not(:disabled),
.woocommerce p.form-row.has-error input[type=email]:hover:not(:disabled),
.woocommerce p.form-row.has-error input[type=tel]:hover:not(:disabled),
.woocommerce p.form-row.has-error input[type=password]:hover:not(:disabled),
.woocommerce p.form-row.has-error input[type=number]:hover:not(:disabled),
.woocommerce p.form-row.has-error input[type=url]:hover:not(:disabled),
.woocommerce p.form-row.has-error input[type=date]:hover:not(:disabled),
.woocommerce p.form-row.has-error input.input-text:hover:not(:disabled),
.woocommerce p.form-row.has-error select:hover:not(:disabled),
.woocommerce p.form-row.has-error textarea:hover:not(:disabled),
.woocommerce-page p.form-row.woocommerce-invalid input[type=text]:hover:not(:disabled),
.woocommerce-page p.form-row.woocommerce-invalid input[type=email]:hover:not(:disabled),
.woocommerce-page p.form-row.woocommerce-invalid input[type=tel]:hover:not(:disabled),
.woocommerce-page p.form-row.woocommerce-invalid input[type=password]:hover:not(:disabled),
.woocommerce-page p.form-row.woocommerce-invalid input[type=number]:hover:not(:disabled),
.woocommerce-page p.form-row.woocommerce-invalid input[type=url]:hover:not(:disabled),
.woocommerce-page p.form-row.woocommerce-invalid input[type=date]:hover:not(:disabled),
.woocommerce-page p.form-row.woocommerce-invalid input.input-text:hover:not(:disabled),
.woocommerce-page p.form-row.woocommerce-invalid select:hover:not(:disabled),
.woocommerce-page p.form-row.woocommerce-invalid textarea:hover:not(:disabled),
.woocommerce-page p.form-row.has-error input[type=text]:hover:not(:disabled),
.woocommerce-page p.form-row.has-error input[type=email]:hover:not(:disabled),
.woocommerce-page p.form-row.has-error input[type=tel]:hover:not(:disabled),
.woocommerce-page p.form-row.has-error input[type=password]:hover:not(:disabled),
.woocommerce-page p.form-row.has-error input[type=number]:hover:not(:disabled),
.woocommerce-page p.form-row.has-error input[type=url]:hover:not(:disabled),
.woocommerce-page p.form-row.has-error input[type=date]:hover:not(:disabled),
.woocommerce-page p.form-row.has-error input.input-text:hover:not(:disabled),
.woocommerce-page p.form-row.has-error select:hover:not(:disabled),
.woocommerce-page p.form-row.has-error textarea:hover:not(:disabled),
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=text]:hover:not(:disabled),
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=email]:hover:not(:disabled),
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=tel]:hover:not(:disabled),
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=password]:hover:not(:disabled),
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=number]:hover:not(:disabled),
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=url]:hover:not(:disabled),
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=date]:hover:not(:disabled),
.woocommerce-checkout p.form-row.woocommerce-invalid input.input-text:hover:not(:disabled),
.woocommerce-checkout p.form-row.woocommerce-invalid select:hover:not(:disabled),
.woocommerce-checkout p.form-row.woocommerce-invalid textarea:hover:not(:disabled),
.woocommerce-checkout p.form-row.has-error input[type=text]:hover:not(:disabled),
.woocommerce-checkout p.form-row.has-error input[type=email]:hover:not(:disabled),
.woocommerce-checkout p.form-row.has-error input[type=tel]:hover:not(:disabled),
.woocommerce-checkout p.form-row.has-error input[type=password]:hover:not(:disabled),
.woocommerce-checkout p.form-row.has-error input[type=number]:hover:not(:disabled),
.woocommerce-checkout p.form-row.has-error input[type=url]:hover:not(:disabled),
.woocommerce-checkout p.form-row.has-error input[type=date]:hover:not(:disabled),
.woocommerce-checkout p.form-row.has-error input.input-text:hover:not(:disabled),
.woocommerce-checkout p.form-row.has-error select:hover:not(:disabled),
.woocommerce-checkout p.form-row.has-error textarea:hover:not(:disabled),
.woocommerce-account p.form-row.woocommerce-invalid input[type=text]:hover:not(:disabled),
.woocommerce-account p.form-row.woocommerce-invalid input[type=email]:hover:not(:disabled),
.woocommerce-account p.form-row.woocommerce-invalid input[type=tel]:hover:not(:disabled),
.woocommerce-account p.form-row.woocommerce-invalid input[type=password]:hover:not(:disabled),
.woocommerce-account p.form-row.woocommerce-invalid input[type=number]:hover:not(:disabled),
.woocommerce-account p.form-row.woocommerce-invalid input[type=url]:hover:not(:disabled),
.woocommerce-account p.form-row.woocommerce-invalid input[type=date]:hover:not(:disabled),
.woocommerce-account p.form-row.woocommerce-invalid input.input-text:hover:not(:disabled),
.woocommerce-account p.form-row.woocommerce-invalid select:hover:not(:disabled),
.woocommerce-account p.form-row.woocommerce-invalid textarea:hover:not(:disabled),
.woocommerce-account p.form-row.has-error input[type=text]:hover:not(:disabled),
.woocommerce-account p.form-row.has-error input[type=email]:hover:not(:disabled),
.woocommerce-account p.form-row.has-error input[type=tel]:hover:not(:disabled),
.woocommerce-account p.form-row.has-error input[type=password]:hover:not(:disabled),
.woocommerce-account p.form-row.has-error input[type=number]:hover:not(:disabled),
.woocommerce-account p.form-row.has-error input[type=url]:hover:not(:disabled),
.woocommerce-account p.form-row.has-error input[type=date]:hover:not(:disabled),
.woocommerce-account p.form-row.has-error input.input-text:hover:not(:disabled),
.woocommerce-account p.form-row.has-error select:hover:not(:disabled),
.woocommerce-account p.form-row.has-error textarea:hover:not(:disabled),
.woocommerce form p.form-row.woocommerce-invalid input[type=text]:hover:not(:disabled),
.woocommerce form p.form-row.woocommerce-invalid input[type=email]:hover:not(:disabled),
.woocommerce form p.form-row.woocommerce-invalid input[type=tel]:hover:not(:disabled),
.woocommerce form p.form-row.woocommerce-invalid input[type=password]:hover:not(:disabled),
.woocommerce form p.form-row.woocommerce-invalid input[type=number]:hover:not(:disabled),
.woocommerce form p.form-row.woocommerce-invalid input[type=url]:hover:not(:disabled),
.woocommerce form p.form-row.woocommerce-invalid input[type=date]:hover:not(:disabled),
.woocommerce form p.form-row.woocommerce-invalid input.input-text:hover:not(:disabled),
.woocommerce form p.form-row.woocommerce-invalid select:hover:not(:disabled),
.woocommerce form p.form-row.woocommerce-invalid textarea:hover:not(:disabled),
.woocommerce form p.form-row.has-error input[type=text]:hover:not(:disabled),
.woocommerce form p.form-row.has-error input[type=email]:hover:not(:disabled),
.woocommerce form p.form-row.has-error input[type=tel]:hover:not(:disabled),
.woocommerce form p.form-row.has-error input[type=password]:hover:not(:disabled),
.woocommerce form p.form-row.has-error input[type=number]:hover:not(:disabled),
.woocommerce form p.form-row.has-error input[type=url]:hover:not(:disabled),
.woocommerce form p.form-row.has-error input[type=date]:hover:not(:disabled),
.woocommerce form p.form-row.has-error input.input-text:hover:not(:disabled),
.woocommerce form p.form-row.has-error select:hover:not(:disabled),
.woocommerce form p.form-row.has-error textarea:hover:not(:disabled) {
  border-color: #C5014C;
}
p.form-row.woocommerce-invalid input[type=text]:focus,
p.form-row.woocommerce-invalid input[type=email]:focus,
p.form-row.woocommerce-invalid input[type=tel]:focus,
p.form-row.woocommerce-invalid input[type=password]:focus,
p.form-row.woocommerce-invalid input[type=number]:focus,
p.form-row.woocommerce-invalid input[type=url]:focus,
p.form-row.woocommerce-invalid input[type=date]:focus,
p.form-row.woocommerce-invalid input.input-text:focus,
p.form-row.woocommerce-invalid select:focus,
p.form-row.woocommerce-invalid textarea:focus, p.form-row.has-error input[type=text]:focus,
p.form-row.has-error input[type=email]:focus,
p.form-row.has-error input[type=tel]:focus,
p.form-row.has-error input[type=password]:focus,
p.form-row.has-error input[type=number]:focus,
p.form-row.has-error input[type=url]:focus,
p.form-row.has-error input[type=date]:focus,
p.form-row.has-error input.input-text:focus,
p.form-row.has-error select:focus,
p.form-row.has-error textarea:focus,
.woocommerce p.form-row.woocommerce-invalid input[type=text]:focus,
.woocommerce p.form-row.woocommerce-invalid input[type=email]:focus,
.woocommerce p.form-row.woocommerce-invalid input[type=tel]:focus,
.woocommerce p.form-row.woocommerce-invalid input[type=password]:focus,
.woocommerce p.form-row.woocommerce-invalid input[type=number]:focus,
.woocommerce p.form-row.woocommerce-invalid input[type=url]:focus,
.woocommerce p.form-row.woocommerce-invalid input[type=date]:focus,
.woocommerce p.form-row.woocommerce-invalid input.input-text:focus,
.woocommerce p.form-row.woocommerce-invalid select:focus,
.woocommerce p.form-row.woocommerce-invalid textarea:focus,
.woocommerce p.form-row.has-error input[type=text]:focus,
.woocommerce p.form-row.has-error input[type=email]:focus,
.woocommerce p.form-row.has-error input[type=tel]:focus,
.woocommerce p.form-row.has-error input[type=password]:focus,
.woocommerce p.form-row.has-error input[type=number]:focus,
.woocommerce p.form-row.has-error input[type=url]:focus,
.woocommerce p.form-row.has-error input[type=date]:focus,
.woocommerce p.form-row.has-error input.input-text:focus,
.woocommerce p.form-row.has-error select:focus,
.woocommerce p.form-row.has-error textarea:focus,
.woocommerce-page p.form-row.woocommerce-invalid input[type=text]:focus,
.woocommerce-page p.form-row.woocommerce-invalid input[type=email]:focus,
.woocommerce-page p.form-row.woocommerce-invalid input[type=tel]:focus,
.woocommerce-page p.form-row.woocommerce-invalid input[type=password]:focus,
.woocommerce-page p.form-row.woocommerce-invalid input[type=number]:focus,
.woocommerce-page p.form-row.woocommerce-invalid input[type=url]:focus,
.woocommerce-page p.form-row.woocommerce-invalid input[type=date]:focus,
.woocommerce-page p.form-row.woocommerce-invalid input.input-text:focus,
.woocommerce-page p.form-row.woocommerce-invalid select:focus,
.woocommerce-page p.form-row.woocommerce-invalid textarea:focus,
.woocommerce-page p.form-row.has-error input[type=text]:focus,
.woocommerce-page p.form-row.has-error input[type=email]:focus,
.woocommerce-page p.form-row.has-error input[type=tel]:focus,
.woocommerce-page p.form-row.has-error input[type=password]:focus,
.woocommerce-page p.form-row.has-error input[type=number]:focus,
.woocommerce-page p.form-row.has-error input[type=url]:focus,
.woocommerce-page p.form-row.has-error input[type=date]:focus,
.woocommerce-page p.form-row.has-error input.input-text:focus,
.woocommerce-page p.form-row.has-error select:focus,
.woocommerce-page p.form-row.has-error textarea:focus,
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=text]:focus,
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=email]:focus,
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=tel]:focus,
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=password]:focus,
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=number]:focus,
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=url]:focus,
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=date]:focus,
.woocommerce-checkout p.form-row.woocommerce-invalid input.input-text:focus,
.woocommerce-checkout p.form-row.woocommerce-invalid select:focus,
.woocommerce-checkout p.form-row.woocommerce-invalid textarea:focus,
.woocommerce-checkout p.form-row.has-error input[type=text]:focus,
.woocommerce-checkout p.form-row.has-error input[type=email]:focus,
.woocommerce-checkout p.form-row.has-error input[type=tel]:focus,
.woocommerce-checkout p.form-row.has-error input[type=password]:focus,
.woocommerce-checkout p.form-row.has-error input[type=number]:focus,
.woocommerce-checkout p.form-row.has-error input[type=url]:focus,
.woocommerce-checkout p.form-row.has-error input[type=date]:focus,
.woocommerce-checkout p.form-row.has-error input.input-text:focus,
.woocommerce-checkout p.form-row.has-error select:focus,
.woocommerce-checkout p.form-row.has-error textarea:focus,
.woocommerce-account p.form-row.woocommerce-invalid input[type=text]:focus,
.woocommerce-account p.form-row.woocommerce-invalid input[type=email]:focus,
.woocommerce-account p.form-row.woocommerce-invalid input[type=tel]:focus,
.woocommerce-account p.form-row.woocommerce-invalid input[type=password]:focus,
.woocommerce-account p.form-row.woocommerce-invalid input[type=number]:focus,
.woocommerce-account p.form-row.woocommerce-invalid input[type=url]:focus,
.woocommerce-account p.form-row.woocommerce-invalid input[type=date]:focus,
.woocommerce-account p.form-row.woocommerce-invalid input.input-text:focus,
.woocommerce-account p.form-row.woocommerce-invalid select:focus,
.woocommerce-account p.form-row.woocommerce-invalid textarea:focus,
.woocommerce-account p.form-row.has-error input[type=text]:focus,
.woocommerce-account p.form-row.has-error input[type=email]:focus,
.woocommerce-account p.form-row.has-error input[type=tel]:focus,
.woocommerce-account p.form-row.has-error input[type=password]:focus,
.woocommerce-account p.form-row.has-error input[type=number]:focus,
.woocommerce-account p.form-row.has-error input[type=url]:focus,
.woocommerce-account p.form-row.has-error input[type=date]:focus,
.woocommerce-account p.form-row.has-error input.input-text:focus,
.woocommerce-account p.form-row.has-error select:focus,
.woocommerce-account p.form-row.has-error textarea:focus,
.woocommerce form p.form-row.woocommerce-invalid input[type=text]:focus,
.woocommerce form p.form-row.woocommerce-invalid input[type=email]:focus,
.woocommerce form p.form-row.woocommerce-invalid input[type=tel]:focus,
.woocommerce form p.form-row.woocommerce-invalid input[type=password]:focus,
.woocommerce form p.form-row.woocommerce-invalid input[type=number]:focus,
.woocommerce form p.form-row.woocommerce-invalid input[type=url]:focus,
.woocommerce form p.form-row.woocommerce-invalid input[type=date]:focus,
.woocommerce form p.form-row.woocommerce-invalid input.input-text:focus,
.woocommerce form p.form-row.woocommerce-invalid select:focus,
.woocommerce form p.form-row.woocommerce-invalid textarea:focus,
.woocommerce form p.form-row.has-error input[type=text]:focus,
.woocommerce form p.form-row.has-error input[type=email]:focus,
.woocommerce form p.form-row.has-error input[type=tel]:focus,
.woocommerce form p.form-row.has-error input[type=password]:focus,
.woocommerce form p.form-row.has-error input[type=number]:focus,
.woocommerce form p.form-row.has-error input[type=url]:focus,
.woocommerce form p.form-row.has-error input[type=date]:focus,
.woocommerce form p.form-row.has-error input.input-text:focus,
.woocommerce form p.form-row.has-error select:focus,
.woocommerce form p.form-row.has-error textarea:focus {
  border-color: #C5014C;
  box-shadow: 0 0 0 2px rgba(197, 1, 76, 0.1);
}
p.form-row.woocommerce-invalid input[type=text]:not(:placeholder-shown),
p.form-row.woocommerce-invalid input[type=email]:not(:placeholder-shown),
p.form-row.woocommerce-invalid input[type=tel]:not(:placeholder-shown),
p.form-row.woocommerce-invalid input[type=password]:not(:placeholder-shown),
p.form-row.woocommerce-invalid input[type=number]:not(:placeholder-shown),
p.form-row.woocommerce-invalid input[type=url]:not(:placeholder-shown),
p.form-row.woocommerce-invalid input[type=date]:not(:placeholder-shown),
p.form-row.woocommerce-invalid input.input-text:not(:placeholder-shown),
p.form-row.woocommerce-invalid select:not(:placeholder-shown),
p.form-row.woocommerce-invalid textarea:not(:placeholder-shown), p.form-row.has-error input[type=text]:not(:placeholder-shown),
p.form-row.has-error input[type=email]:not(:placeholder-shown),
p.form-row.has-error input[type=tel]:not(:placeholder-shown),
p.form-row.has-error input[type=password]:not(:placeholder-shown),
p.form-row.has-error input[type=number]:not(:placeholder-shown),
p.form-row.has-error input[type=url]:not(:placeholder-shown),
p.form-row.has-error input[type=date]:not(:placeholder-shown),
p.form-row.has-error input.input-text:not(:placeholder-shown),
p.form-row.has-error select:not(:placeholder-shown),
p.form-row.has-error textarea:not(:placeholder-shown),
.woocommerce p.form-row.woocommerce-invalid input[type=text]:not(:placeholder-shown),
.woocommerce p.form-row.woocommerce-invalid input[type=email]:not(:placeholder-shown),
.woocommerce p.form-row.woocommerce-invalid input[type=tel]:not(:placeholder-shown),
.woocommerce p.form-row.woocommerce-invalid input[type=password]:not(:placeholder-shown),
.woocommerce p.form-row.woocommerce-invalid input[type=number]:not(:placeholder-shown),
.woocommerce p.form-row.woocommerce-invalid input[type=url]:not(:placeholder-shown),
.woocommerce p.form-row.woocommerce-invalid input[type=date]:not(:placeholder-shown),
.woocommerce p.form-row.woocommerce-invalid input.input-text:not(:placeholder-shown),
.woocommerce p.form-row.woocommerce-invalid select:not(:placeholder-shown),
.woocommerce p.form-row.woocommerce-invalid textarea:not(:placeholder-shown),
.woocommerce p.form-row.has-error input[type=text]:not(:placeholder-shown),
.woocommerce p.form-row.has-error input[type=email]:not(:placeholder-shown),
.woocommerce p.form-row.has-error input[type=tel]:not(:placeholder-shown),
.woocommerce p.form-row.has-error input[type=password]:not(:placeholder-shown),
.woocommerce p.form-row.has-error input[type=number]:not(:placeholder-shown),
.woocommerce p.form-row.has-error input[type=url]:not(:placeholder-shown),
.woocommerce p.form-row.has-error input[type=date]:not(:placeholder-shown),
.woocommerce p.form-row.has-error input.input-text:not(:placeholder-shown),
.woocommerce p.form-row.has-error select:not(:placeholder-shown),
.woocommerce p.form-row.has-error textarea:not(:placeholder-shown),
.woocommerce-page p.form-row.woocommerce-invalid input[type=text]:not(:placeholder-shown),
.woocommerce-page p.form-row.woocommerce-invalid input[type=email]:not(:placeholder-shown),
.woocommerce-page p.form-row.woocommerce-invalid input[type=tel]:not(:placeholder-shown),
.woocommerce-page p.form-row.woocommerce-invalid input[type=password]:not(:placeholder-shown),
.woocommerce-page p.form-row.woocommerce-invalid input[type=number]:not(:placeholder-shown),
.woocommerce-page p.form-row.woocommerce-invalid input[type=url]:not(:placeholder-shown),
.woocommerce-page p.form-row.woocommerce-invalid input[type=date]:not(:placeholder-shown),
.woocommerce-page p.form-row.woocommerce-invalid input.input-text:not(:placeholder-shown),
.woocommerce-page p.form-row.woocommerce-invalid select:not(:placeholder-shown),
.woocommerce-page p.form-row.woocommerce-invalid textarea:not(:placeholder-shown),
.woocommerce-page p.form-row.has-error input[type=text]:not(:placeholder-shown),
.woocommerce-page p.form-row.has-error input[type=email]:not(:placeholder-shown),
.woocommerce-page p.form-row.has-error input[type=tel]:not(:placeholder-shown),
.woocommerce-page p.form-row.has-error input[type=password]:not(:placeholder-shown),
.woocommerce-page p.form-row.has-error input[type=number]:not(:placeholder-shown),
.woocommerce-page p.form-row.has-error input[type=url]:not(:placeholder-shown),
.woocommerce-page p.form-row.has-error input[type=date]:not(:placeholder-shown),
.woocommerce-page p.form-row.has-error input.input-text:not(:placeholder-shown),
.woocommerce-page p.form-row.has-error select:not(:placeholder-shown),
.woocommerce-page p.form-row.has-error textarea:not(:placeholder-shown),
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=text]:not(:placeholder-shown),
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=email]:not(:placeholder-shown),
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=tel]:not(:placeholder-shown),
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=password]:not(:placeholder-shown),
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=number]:not(:placeholder-shown),
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=url]:not(:placeholder-shown),
.woocommerce-checkout p.form-row.woocommerce-invalid input[type=date]:not(:placeholder-shown),
.woocommerce-checkout p.form-row.woocommerce-invalid input.input-text:not(:placeholder-shown),
.woocommerce-checkout p.form-row.woocommerce-invalid select:not(:placeholder-shown),
.woocommerce-checkout p.form-row.woocommerce-invalid textarea:not(:placeholder-shown),
.woocommerce-checkout p.form-row.has-error input[type=text]:not(:placeholder-shown),
.woocommerce-checkout p.form-row.has-error input[type=email]:not(:placeholder-shown),
.woocommerce-checkout p.form-row.has-error input[type=tel]:not(:placeholder-shown),
.woocommerce-checkout p.form-row.has-error input[type=password]:not(:placeholder-shown),
.woocommerce-checkout p.form-row.has-error input[type=number]:not(:placeholder-shown),
.woocommerce-checkout p.form-row.has-error input[type=url]:not(:placeholder-shown),
.woocommerce-checkout p.form-row.has-error input[type=date]:not(:placeholder-shown),
.woocommerce-checkout p.form-row.has-error input.input-text:not(:placeholder-shown),
.woocommerce-checkout p.form-row.has-error select:not(:placeholder-shown),
.woocommerce-checkout p.form-row.has-error textarea:not(:placeholder-shown),
.woocommerce-account p.form-row.woocommerce-invalid input[type=text]:not(:placeholder-shown),
.woocommerce-account p.form-row.woocommerce-invalid input[type=email]:not(:placeholder-shown),
.woocommerce-account p.form-row.woocommerce-invalid input[type=tel]:not(:placeholder-shown),
.woocommerce-account p.form-row.woocommerce-invalid input[type=password]:not(:placeholder-shown),
.woocommerce-account p.form-row.woocommerce-invalid input[type=number]:not(:placeholder-shown),
.woocommerce-account p.form-row.woocommerce-invalid input[type=url]:not(:placeholder-shown),
.woocommerce-account p.form-row.woocommerce-invalid input[type=date]:not(:placeholder-shown),
.woocommerce-account p.form-row.woocommerce-invalid input.input-text:not(:placeholder-shown),
.woocommerce-account p.form-row.woocommerce-invalid select:not(:placeholder-shown),
.woocommerce-account p.form-row.woocommerce-invalid textarea:not(:placeholder-shown),
.woocommerce-account p.form-row.has-error input[type=text]:not(:placeholder-shown),
.woocommerce-account p.form-row.has-error input[type=email]:not(:placeholder-shown),
.woocommerce-account p.form-row.has-error input[type=tel]:not(:placeholder-shown),
.woocommerce-account p.form-row.has-error input[type=password]:not(:placeholder-shown),
.woocommerce-account p.form-row.has-error input[type=number]:not(:placeholder-shown),
.woocommerce-account p.form-row.has-error input[type=url]:not(:placeholder-shown),
.woocommerce-account p.form-row.has-error input[type=date]:not(:placeholder-shown),
.woocommerce-account p.form-row.has-error input.input-text:not(:placeholder-shown),
.woocommerce-account p.form-row.has-error select:not(:placeholder-shown),
.woocommerce-account p.form-row.has-error textarea:not(:placeholder-shown),
.woocommerce form p.form-row.woocommerce-invalid input[type=text]:not(:placeholder-shown),
.woocommerce form p.form-row.woocommerce-invalid input[type=email]:not(:placeholder-shown),
.woocommerce form p.form-row.woocommerce-invalid input[type=tel]:not(:placeholder-shown),
.woocommerce form p.form-row.woocommerce-invalid input[type=password]:not(:placeholder-shown),
.woocommerce form p.form-row.woocommerce-invalid input[type=number]:not(:placeholder-shown),
.woocommerce form p.form-row.woocommerce-invalid input[type=url]:not(:placeholder-shown),
.woocommerce form p.form-row.woocommerce-invalid input[type=date]:not(:placeholder-shown),
.woocommerce form p.form-row.woocommerce-invalid input.input-text:not(:placeholder-shown),
.woocommerce form p.form-row.woocommerce-invalid select:not(:placeholder-shown),
.woocommerce form p.form-row.woocommerce-invalid textarea:not(:placeholder-shown),
.woocommerce form p.form-row.has-error input[type=text]:not(:placeholder-shown),
.woocommerce form p.form-row.has-error input[type=email]:not(:placeholder-shown),
.woocommerce form p.form-row.has-error input[type=tel]:not(:placeholder-shown),
.woocommerce form p.form-row.has-error input[type=password]:not(:placeholder-shown),
.woocommerce form p.form-row.has-error input[type=number]:not(:placeholder-shown),
.woocommerce form p.form-row.has-error input[type=url]:not(:placeholder-shown),
.woocommerce form p.form-row.has-error input[type=date]:not(:placeholder-shown),
.woocommerce form p.form-row.has-error input.input-text:not(:placeholder-shown),
.woocommerce form p.form-row.has-error select:not(:placeholder-shown),
.woocommerce form p.form-row.has-error textarea:not(:placeholder-shown) {
  border-color: #C5014C;
}
p.form-row.woocommerce-invalid select, p.form-row.has-error select,
.woocommerce p.form-row.woocommerce-invalid select,
.woocommerce p.form-row.has-error select,
.woocommerce-page p.form-row.woocommerce-invalid select,
.woocommerce-page p.form-row.has-error select,
.woocommerce-checkout p.form-row.woocommerce-invalid select,
.woocommerce-checkout p.form-row.has-error select,
.woocommerce-account p.form-row.woocommerce-invalid select,
.woocommerce-account p.form-row.has-error select,
.woocommerce form p.form-row.woocommerce-invalid select,
.woocommerce form p.form-row.has-error select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23C5014C' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}
p.form-row.woocommerce-invalid .woocommerce-error,
p.form-row.woocommerce-invalid .error-message,
p.form-row.woocommerce-invalid .field-error, p.form-row.has-error .woocommerce-error,
p.form-row.has-error .error-message,
p.form-row.has-error .field-error,
.woocommerce p.form-row.woocommerce-invalid .woocommerce-error,
.woocommerce p.form-row.woocommerce-invalid .error-message,
.woocommerce p.form-row.woocommerce-invalid .field-error,
.woocommerce p.form-row.has-error .woocommerce-error,
.woocommerce p.form-row.has-error .error-message,
.woocommerce p.form-row.has-error .field-error,
.woocommerce-page p.form-row.woocommerce-invalid .woocommerce-error,
.woocommerce-page p.form-row.woocommerce-invalid .error-message,
.woocommerce-page p.form-row.woocommerce-invalid .field-error,
.woocommerce-page p.form-row.has-error .woocommerce-error,
.woocommerce-page p.form-row.has-error .error-message,
.woocommerce-page p.form-row.has-error .field-error,
.woocommerce-checkout p.form-row.woocommerce-invalid .woocommerce-error,
.woocommerce-checkout p.form-row.woocommerce-invalid .error-message,
.woocommerce-checkout p.form-row.woocommerce-invalid .field-error,
.woocommerce-checkout p.form-row.has-error .woocommerce-error,
.woocommerce-checkout p.form-row.has-error .error-message,
.woocommerce-checkout p.form-row.has-error .field-error,
.woocommerce-account p.form-row.woocommerce-invalid .woocommerce-error,
.woocommerce-account p.form-row.woocommerce-invalid .error-message,
.woocommerce-account p.form-row.woocommerce-invalid .field-error,
.woocommerce-account p.form-row.has-error .woocommerce-error,
.woocommerce-account p.form-row.has-error .error-message,
.woocommerce-account p.form-row.has-error .field-error,
.woocommerce form p.form-row.woocommerce-invalid .woocommerce-error,
.woocommerce form p.form-row.woocommerce-invalid .error-message,
.woocommerce form p.form-row.woocommerce-invalid .field-error,
.woocommerce form p.form-row.has-error .woocommerce-error,
.woocommerce form p.form-row.has-error .error-message,
.woocommerce form p.form-row.has-error .field-error {
  display: block;
}
p.form-row.woocommerce-validated input[type=text],
p.form-row.woocommerce-validated input[type=email],
p.form-row.woocommerce-validated input[type=tel],
p.form-row.woocommerce-validated input[type=password],
p.form-row.woocommerce-validated input[type=number],
p.form-row.woocommerce-validated input[type=url],
p.form-row.woocommerce-validated input[type=date],
p.form-row.woocommerce-validated input.input-text,
p.form-row.woocommerce-validated select,
p.form-row.woocommerce-validated textarea,
.woocommerce p.form-row.woocommerce-validated input[type=text],
.woocommerce p.form-row.woocommerce-validated input[type=email],
.woocommerce p.form-row.woocommerce-validated input[type=tel],
.woocommerce p.form-row.woocommerce-validated input[type=password],
.woocommerce p.form-row.woocommerce-validated input[type=number],
.woocommerce p.form-row.woocommerce-validated input[type=url],
.woocommerce p.form-row.woocommerce-validated input[type=date],
.woocommerce p.form-row.woocommerce-validated input.input-text,
.woocommerce p.form-row.woocommerce-validated select,
.woocommerce p.form-row.woocommerce-validated textarea,
.woocommerce-page p.form-row.woocommerce-validated input[type=text],
.woocommerce-page p.form-row.woocommerce-validated input[type=email],
.woocommerce-page p.form-row.woocommerce-validated input[type=tel],
.woocommerce-page p.form-row.woocommerce-validated input[type=password],
.woocommerce-page p.form-row.woocommerce-validated input[type=number],
.woocommerce-page p.form-row.woocommerce-validated input[type=url],
.woocommerce-page p.form-row.woocommerce-validated input[type=date],
.woocommerce-page p.form-row.woocommerce-validated input.input-text,
.woocommerce-page p.form-row.woocommerce-validated select,
.woocommerce-page p.form-row.woocommerce-validated textarea,
.woocommerce-checkout p.form-row.woocommerce-validated input[type=text],
.woocommerce-checkout p.form-row.woocommerce-validated input[type=email],
.woocommerce-checkout p.form-row.woocommerce-validated input[type=tel],
.woocommerce-checkout p.form-row.woocommerce-validated input[type=password],
.woocommerce-checkout p.form-row.woocommerce-validated input[type=number],
.woocommerce-checkout p.form-row.woocommerce-validated input[type=url],
.woocommerce-checkout p.form-row.woocommerce-validated input[type=date],
.woocommerce-checkout p.form-row.woocommerce-validated input.input-text,
.woocommerce-checkout p.form-row.woocommerce-validated select,
.woocommerce-checkout p.form-row.woocommerce-validated textarea,
.woocommerce-account p.form-row.woocommerce-validated input[type=text],
.woocommerce-account p.form-row.woocommerce-validated input[type=email],
.woocommerce-account p.form-row.woocommerce-validated input[type=tel],
.woocommerce-account p.form-row.woocommerce-validated input[type=password],
.woocommerce-account p.form-row.woocommerce-validated input[type=number],
.woocommerce-account p.form-row.woocommerce-validated input[type=url],
.woocommerce-account p.form-row.woocommerce-validated input[type=date],
.woocommerce-account p.form-row.woocommerce-validated input.input-text,
.woocommerce-account p.form-row.woocommerce-validated select,
.woocommerce-account p.form-row.woocommerce-validated textarea,
.woocommerce form p.form-row.woocommerce-validated input[type=text],
.woocommerce form p.form-row.woocommerce-validated input[type=email],
.woocommerce form p.form-row.woocommerce-validated input[type=tel],
.woocommerce form p.form-row.woocommerce-validated input[type=password],
.woocommerce form p.form-row.woocommerce-validated input[type=number],
.woocommerce form p.form-row.woocommerce-validated input[type=url],
.woocommerce form p.form-row.woocommerce-validated input[type=date],
.woocommerce form p.form-row.woocommerce-validated input.input-text,
.woocommerce form p.form-row.woocommerce-validated select,
.woocommerce form p.form-row.woocommerce-validated textarea {
  border-color: #2AC769;
}
p.form-row.woocommerce-validated input[type=text]:focus,
p.form-row.woocommerce-validated input[type=email]:focus,
p.form-row.woocommerce-validated input[type=tel]:focus,
p.form-row.woocommerce-validated input[type=password]:focus,
p.form-row.woocommerce-validated input[type=number]:focus,
p.form-row.woocommerce-validated input[type=url]:focus,
p.form-row.woocommerce-validated input[type=date]:focus,
p.form-row.woocommerce-validated input.input-text:focus,
p.form-row.woocommerce-validated select:focus,
p.form-row.woocommerce-validated textarea:focus,
.woocommerce p.form-row.woocommerce-validated input[type=text]:focus,
.woocommerce p.form-row.woocommerce-validated input[type=email]:focus,
.woocommerce p.form-row.woocommerce-validated input[type=tel]:focus,
.woocommerce p.form-row.woocommerce-validated input[type=password]:focus,
.woocommerce p.form-row.woocommerce-validated input[type=number]:focus,
.woocommerce p.form-row.woocommerce-validated input[type=url]:focus,
.woocommerce p.form-row.woocommerce-validated input[type=date]:focus,
.woocommerce p.form-row.woocommerce-validated input.input-text:focus,
.woocommerce p.form-row.woocommerce-validated select:focus,
.woocommerce p.form-row.woocommerce-validated textarea:focus,
.woocommerce-page p.form-row.woocommerce-validated input[type=text]:focus,
.woocommerce-page p.form-row.woocommerce-validated input[type=email]:focus,
.woocommerce-page p.form-row.woocommerce-validated input[type=tel]:focus,
.woocommerce-page p.form-row.woocommerce-validated input[type=password]:focus,
.woocommerce-page p.form-row.woocommerce-validated input[type=number]:focus,
.woocommerce-page p.form-row.woocommerce-validated input[type=url]:focus,
.woocommerce-page p.form-row.woocommerce-validated input[type=date]:focus,
.woocommerce-page p.form-row.woocommerce-validated input.input-text:focus,
.woocommerce-page p.form-row.woocommerce-validated select:focus,
.woocommerce-page p.form-row.woocommerce-validated textarea:focus,
.woocommerce-checkout p.form-row.woocommerce-validated input[type=text]:focus,
.woocommerce-checkout p.form-row.woocommerce-validated input[type=email]:focus,
.woocommerce-checkout p.form-row.woocommerce-validated input[type=tel]:focus,
.woocommerce-checkout p.form-row.woocommerce-validated input[type=password]:focus,
.woocommerce-checkout p.form-row.woocommerce-validated input[type=number]:focus,
.woocommerce-checkout p.form-row.woocommerce-validated input[type=url]:focus,
.woocommerce-checkout p.form-row.woocommerce-validated input[type=date]:focus,
.woocommerce-checkout p.form-row.woocommerce-validated input.input-text:focus,
.woocommerce-checkout p.form-row.woocommerce-validated select:focus,
.woocommerce-checkout p.form-row.woocommerce-validated textarea:focus,
.woocommerce-account p.form-row.woocommerce-validated input[type=text]:focus,
.woocommerce-account p.form-row.woocommerce-validated input[type=email]:focus,
.woocommerce-account p.form-row.woocommerce-validated input[type=tel]:focus,
.woocommerce-account p.form-row.woocommerce-validated input[type=password]:focus,
.woocommerce-account p.form-row.woocommerce-validated input[type=number]:focus,
.woocommerce-account p.form-row.woocommerce-validated input[type=url]:focus,
.woocommerce-account p.form-row.woocommerce-validated input[type=date]:focus,
.woocommerce-account p.form-row.woocommerce-validated input.input-text:focus,
.woocommerce-account p.form-row.woocommerce-validated select:focus,
.woocommerce-account p.form-row.woocommerce-validated textarea:focus,
.woocommerce form p.form-row.woocommerce-validated input[type=text]:focus,
.woocommerce form p.form-row.woocommerce-validated input[type=email]:focus,
.woocommerce form p.form-row.woocommerce-validated input[type=tel]:focus,
.woocommerce form p.form-row.woocommerce-validated input[type=password]:focus,
.woocommerce form p.form-row.woocommerce-validated input[type=number]:focus,
.woocommerce form p.form-row.woocommerce-validated input[type=url]:focus,
.woocommerce form p.form-row.woocommerce-validated input[type=date]:focus,
.woocommerce form p.form-row.woocommerce-validated input.input-text:focus,
.woocommerce form p.form-row.woocommerce-validated select:focus,
.woocommerce form p.form-row.woocommerce-validated textarea:focus {
  box-shadow: 0 0 0 2px rgba(42, 199, 105, 0.1);
}
p.form-row.form-row-disabled,
.woocommerce p.form-row.form-row-disabled,
.woocommerce-page p.form-row.form-row-disabled,
.woocommerce-checkout p.form-row.form-row-disabled,
.woocommerce-account p.form-row.form-row-disabled,
.woocommerce form p.form-row.form-row-disabled {
  opacity: 0.6;
  pointer-events: none;
}
p.form-row.form-row-disabled > label,
.woocommerce p.form-row.form-row-disabled > label,
.woocommerce-page p.form-row.form-row-disabled > label,
.woocommerce-checkout p.form-row.form-row-disabled > label,
.woocommerce-account p.form-row.form-row-disabled > label,
.woocommerce form p.form-row.form-row-disabled > label {
  color: #8A8C95;
}
p.form-row.form-row-disabled input,
p.form-row.form-row-disabled select,
p.form-row.form-row-disabled textarea,
.woocommerce p.form-row.form-row-disabled input,
.woocommerce p.form-row.form-row-disabled select,
.woocommerce p.form-row.form-row-disabled textarea,
.woocommerce-page p.form-row.form-row-disabled input,
.woocommerce-page p.form-row.form-row-disabled select,
.woocommerce-page p.form-row.form-row-disabled textarea,
.woocommerce-checkout p.form-row.form-row-disabled input,
.woocommerce-checkout p.form-row.form-row-disabled select,
.woocommerce-checkout p.form-row.form-row-disabled textarea,
.woocommerce-account p.form-row.form-row-disabled input,
.woocommerce-account p.form-row.form-row-disabled select,
.woocommerce-account p.form-row.form-row-disabled textarea,
.woocommerce form p.form-row.form-row-disabled input,
.woocommerce form p.form-row.form-row-disabled select,
.woocommerce form p.form-row.form-row-disabled textarea {
  background-color: #F0F1F5;
  color: #8A8C95;
  border-color: #D8DAE2;
  cursor: not-allowed;
}
p.form-row.form-row-wide,
.woocommerce p.form-row.form-row-wide,
.woocommerce-page p.form-row.form-row-wide,
.woocommerce-checkout p.form-row.form-row-wide,
.woocommerce-account p.form-row.form-row-wide,
.woocommerce form p.form-row.form-row-wide {
  width: 100%;
}
p.form-row.form-row-first, p.form-row.form-row-last,
.woocommerce p.form-row.form-row-first,
.woocommerce p.form-row.form-row-last,
.woocommerce-page p.form-row.form-row-first,
.woocommerce-page p.form-row.form-row-last,
.woocommerce-checkout p.form-row.form-row-first,
.woocommerce-checkout p.form-row.form-row-last,
.woocommerce-account p.form-row.form-row-first,
.woocommerce-account p.form-row.form-row-last,
.woocommerce form p.form-row.form-row-first,
.woocommerce form p.form-row.form-row-last {
  width: calc(50% - 12px / 2);
}
p.form-row.form-row-hidden,
.woocommerce p.form-row.form-row-hidden,
.woocommerce-page p.form-row.form-row-hidden,
.woocommerce-checkout p.form-row.form-row-hidden,
.woocommerce-account p.form-row.form-row-hidden,
.woocommerce form p.form-row.form-row-hidden {
  display: none !important;
}

.woocommerce-address-fields .form-row,
.woocommerce-address-field .form-row {
  margin-bottom: 10px;
}
.woocommerce-product-form .form-group {
  margin-bottom: 10px;
}
.select2-container {
  width: 100% !important;
}
.select2-container .select2-selection {
  display: block;
  width: 100%;
}
@media (min-width: 1920px) {
  .select2-container .select2-selection {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .select2-container .select2-selection {
    height: 48px;
  }
}
@media (max-width: 991px) {
  .select2-container .select2-selection {
    height: 40px;
  }
}
.select2-container .select2-selection {
  padding: 0;
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: #262930;
}
@media (min-width: 1920px) {
  .select2-container .select2-selection {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .select2-container .select2-selection {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .select2-container .select2-selection {
    font-size: 15px;
    line-height: 28px;
  }
}
.select2-container .select2-selection {
  background-color: #FFFFFF;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
  cursor: pointer;
}
.select2-container .select2-selection .select2-selection__rendered {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: #262930;
}
@media (min-width: 1920px) {
  .select2-container .select2-selection .select2-selection__rendered {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .select2-container .select2-selection .select2-selection__rendered {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .select2-container .select2-selection .select2-selection__rendered {
    font-size: 15px;
    line-height: 28px;
  }
}
.select2-container .select2-selection .select2-selection__rendered {
  padding: 8px 12px;
  padding-right: 40px;
}
@media (min-width: 1920px) {
  .select2-container .select2-selection .select2-selection__rendered {
    line-height: 40px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .select2-container .select2-selection .select2-selection__rendered {
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .select2-container .select2-selection .select2-selection__rendered {
    line-height: 24px;
  }
}
.select2-container .select2-selection .select2-selection__rendered .select2-selection__placeholder {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: rgba(38, 41, 48, 0.5);
  opacity: 1;
}
@media (min-width: 1920px) {
  .select2-container .select2-selection .select2-selection__rendered .select2-selection__placeholder {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .select2-container .select2-selection .select2-selection__rendered .select2-selection__placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .select2-container .select2-selection .select2-selection__rendered .select2-selection__placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (min-width: 1920px) {
  .select2-container .select2-selection .select2-selection__arrow {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .select2-container .select2-selection .select2-selection__arrow {
    height: 48px;
  }
}
@media (max-width: 991px) {
  .select2-container .select2-selection .select2-selection__arrow {
    height: 40px;
  }
}
.select2-container .select2-selection .select2-selection__arrow {
  width: 40px;
  right: 0;
  top: 0;
  position: absolute;
}
.select2-container .select2-selection .select2-selection__arrow b {
  border-color: #5B5E67 transparent transparent transparent;
  border-style: solid;
  border-width: 5px 4px 0 4px;
  height: 0;
  left: 50%;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container:not(.select2-container--disabled):not(.select2-container--open):hover .select2-selection {
  border-color: #FF4F60;
}
.select2-container.select2-container--open .select2-selection {
  border-color: #262930;
  box-shadow: 0 0 0 2px rgba(38, 41, 48, 0.1);
}
.select2-container.select2-container--open .select2-selection .select2-selection__arrow b {
  border-color: transparent transparent #5B5E67 transparent;
  border-width: 0 4px 5px 4px;
}
.select2-container.select2-container--default .select2-selection--single .select2-selection__rendered:not(:empty):not(.select2-selection__placeholder) {
  color: #262930;
}
.select2-container:not(.select2-container--open):not(.select2-container--disabled) .select2-selection--single .select2-selection__rendered:not([title=""]):not(:empty) ~ .select2-selection {
  border-color: #262930;
}
.select2-container.select2-container--disabled .select2-selection {
  background-color: #F0F1F5;
  color: #8A8C95;
  border-color: #D8DAE2;
  cursor: not-allowed;
  opacity: 0.6;
}
.select2-container.select2-container--disabled .select2-selection .select2-selection__rendered {
  color: #8A8C95;
}
.select2-container.select2-container--disabled .select2-selection .select2-selection__arrow b {
  border-color: #8A8C95 transparent transparent transparent;
}
.select2-container.select2-container--disabled .select2-selection:hover {
  border-color: #D8DAE2;
}

.woocommerce-invalid .select2-container .select2-selection,
.has-error .select2-container .select2-selection {
  border-color: #C5014C;
}
.woocommerce-invalid .select2-container .select2-selection .select2-selection__arrow b,
.has-error .select2-container .select2-selection .select2-selection__arrow b {
  border-color: #C5014C transparent transparent transparent;
}
.woocommerce-invalid .select2-container:hover .select2-selection,
.has-error .select2-container:hover .select2-selection {
  border-color: #C5014C;
}
.woocommerce-invalid .select2-container.select2-container--open .select2-selection,
.has-error .select2-container.select2-container--open .select2-selection {
  border-color: #C5014C;
  box-shadow: 0 0 0 2px rgba(197, 1, 76, 0.1);
}

.woocommerce-validated .select2-container .select2-selection {
  border-color: #2AC769;
}
.woocommerce-validated .select2-container.select2-container--open .select2-selection {
  box-shadow: 0 0 0 2px rgba(42, 199, 105, 0.1);
}

.select2-dropdown {
  background-color: #FFFFFF;
  border: 1px solid #D8DAE2;
  border-radius: 4px;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(38, 41, 48, 0.1);
  z-index: 10000;
}
.select2-dropdown .select2-search {
  padding: 12px;
}
.select2-dropdown .select2-search .select2-search__field {
  display: block;
  width: 100%;
}
@media (min-width: 1920px) {
  .select2-dropdown .select2-search .select2-search__field {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .select2-dropdown .select2-search .select2-search__field {
    height: 48px;
  }
}
@media (max-width: 991px) {
  .select2-dropdown .select2-search .select2-search__field {
    height: 40px;
  }
}
.select2-dropdown .select2-search .select2-search__field {
  padding: 8px 12px;
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: #262930;
}
@media (min-width: 1920px) {
  .select2-dropdown .select2-search .select2-search__field {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .select2-dropdown .select2-search .select2-search__field {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .select2-dropdown .select2-search .select2-search__field {
    font-size: 15px;
    line-height: 28px;
  }
}
.select2-dropdown .select2-search .select2-search__field {
  background-color: #FFFFFF;
  border: 1px solid #D8DAE2;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
}
.select2-dropdown .select2-search .select2-search__field::placeholder {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: rgba(38, 41, 48, 0.5);
  opacity: 1;
}
@media (min-width: 1920px) {
  .select2-dropdown .select2-search .select2-search__field::placeholder {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .select2-dropdown .select2-search .select2-search__field::placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .select2-dropdown .select2-search .select2-search__field::placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
.select2-dropdown .select2-search .select2-search__field:hover {
  border-color: #FF4F60;
}
.select2-dropdown .select2-search .select2-search__field:focus {
  outline: none;
  border-color: #262930;
  box-shadow: 0 0 0 2px rgba(38, 41, 48, 0.1);
}
.select2-dropdown .select2-results {
  max-height: 250px;
  overflow-y: auto;
}
.select2-dropdown .select2-results .select2-results__option {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: #262930;
}
@media (min-width: 1920px) {
  .select2-dropdown .select2-results .select2-results__option {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .select2-dropdown .select2-results .select2-results__option {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .select2-dropdown .select2-results .select2-results__option {
    font-size: 15px;
    line-height: 28px;
  }
}
.select2-dropdown .select2-results .select2-results__option {
  padding: 8px 12px;
  color: #262930;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.select2-dropdown .select2-results .select2-results__option:hover {
  background-color: #F7F9FB;
}
.select2-dropdown .select2-results .select2-results__option[aria-selected=true], .select2-dropdown .select2-results .select2-results__option[data-selected=true] {
  background-color: #F0F1F5;
  color: #262930;
}
.select2-dropdown .select2-results .select2-results__option--highlighted, .select2-dropdown .select2-results .select2-results__option.select2-results__option--highlighted {
  background-color: #FF4F60;
  color: #FFFFFF;
}
.select2-dropdown .select2-results .select2-results__option[aria-disabled=true] {
  color: #8A8C95;
  cursor: not-allowed;
}
.select2-dropdown .select2-results .select2-results__option[aria-disabled=true]:hover {
  background-color: transparent;
}

.required,
label .required,
abbr.required {
  color: #C5014C;
  text-decoration: none;
}

@media (min-width: 1920px) {
  .wp-block-search__input {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .wp-block-search__input {
    height: 48px;
  }
}
@media (max-width: 991px) {
  .wp-block-search__input {
    height: 40px;
  }
}

.wp-block-search__textarea {
  min-height: 80px;
}

@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }
  .form-row.form-row-first, .form-row.form-row-last {
    flex: none;
  }
  .file-input-wrapper {
    flex-direction: column;
  }
  .file-input-wrapper .file-input-button {
    width: 100%;
  }
  .input-group {
    flex-direction: column;
    align-items: stretch;
  }
  .input-group .input-prefix,
  .input-group .input-suffix {
    position: static;
    transform: none;
    padding: 8px 12px;
    background-color: #F0F1F5;
    border: 1px solid #D8DAE2;
    border-radius: 4px 4px 0 0;
  }
  .input-group .input-suffix {
    border-radius: 0 0 4px 4px;
    border-top: 0;
  }
  .input-group input {
    padding-left: 12px;
  }
  .input-group input.has-suffix {
    padding-right: 12px;
    border-radius: 0;
    border-top: 0;
  }
}
*:focus-visible {
  outline: 2px solid #262930;
  outline-offset: 2px;
}

@media (prefers-contrast: high) {
  input[type=text],
  input[type=email],
  input[type=password],
  input[type=search],
  input[type=tel],
  input[type=url],
  input[type=date],
  input[type=datetime],
  input[type=datetime-local],
  input[type=month],
  input[type=time],
  input[type=week],
  input[type=color],
  .comment-form input[type=text],
  .comment-form input[type=email],
  .comment-form input[type=url],
  .comment-form input[type=password],
  #commentform input[type=text],
  #commentform input[type=email],
  #commentform input[type=url],
  #loginform input[type=text],
  #loginform input[type=password],
  #registerform input[type=email],
  #registerform input[type=text],
  .wp-block-search__input,
  .woocommerce-input-wrapper input[type=text],
  .woocommerce-input-wrapper input[type=email],
  .woocommerce-input-wrapper input[type=password],
  .woocommerce-input-wrapper input[type=tel],
  .woocommerce-input-wrapper input[type=url],
  .woocommerce-input-wrapper input[type=date],
  .woocommerce-input-wrapper input[type=datetime-local],
  .woocommerce-input-wrapper input[type=month],
  .woocommerce-input-wrapper input[type=time],
  .woocommerce-input-wrapper input[type=week],
  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row input[type=text],
  .woocommerce form .form-row input[type=email],
  .woocommerce form .form-row input[type=tel],
  .woocommerce form .form-row input[type=password],
  .woocommerce-address-fields input[type=text],
  .woocommerce-address-fields input[type=email],
  .woocommerce-address-fields input[type=tel], textarea,
  .comment-form textarea,
  #commentform textarea,
  #comment,
  #loginform textarea,
  #registerform textarea,
  .wp-block-search__textarea,
  .woocommerce-input-wrapper textarea,
  .woocommerce form .form-row textarea,
  .woocommerce-address-fields textarea, input[type=number],
  .woocommerce-input-wrapper input[type=number],
  .woocommerce form .form-row input[type=number],
  .woocommerce .quantity input[type=number],
  .woocommerce-cart .quantity input[type=number],
  .woocommerce-checkout .quantity input[type=number], select,
  .comment-form select,
  #commentform select,
  #loginform select,
  #registerform select,
  .woocommerce-input-wrapper select,
  .woocommerce form .form-row select,
  .woocommerce form .form-row .select,
  .woocommerce-address-fields select,
  .woocommerce .address-field select,
  #billing_country,
  #billing_state,
  #shipping_country,
  #shipping_state,
  .woocommerce .country_to_state,
  select.country_select,
  select.state_select, .file-input-wrapper .file-input-text, #loginform .input,
  #registerform .input,
  #lostpasswordform .input,
  .wp-block-search__button {
    border-width: 2px;
  }
  input[type=checkbox],
  input[type=radio] {
    border-width: 2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  input[type=text],
  input[type=email],
  input[type=password],
  input[type=search],
  input[type=tel],
  input[type=url],
  input[type=date],
  input[type=datetime],
  input[type=datetime-local],
  input[type=month],
  input[type=time],
  input[type=week],
  input[type=color],
  .comment-form input[type=text],
  .comment-form input[type=email],
  .comment-form input[type=url],
  .comment-form input[type=password],
  #commentform input[type=text],
  #commentform input[type=email],
  #commentform input[type=url],
  #loginform input[type=text],
  #loginform input[type=password],
  #registerform input[type=email],
  #registerform input[type=text],
  .wp-block-search__input,
  .woocommerce-input-wrapper input[type=text],
  .woocommerce-input-wrapper input[type=email],
  .woocommerce-input-wrapper input[type=password],
  .woocommerce-input-wrapper input[type=tel],
  .woocommerce-input-wrapper input[type=url],
  .woocommerce-input-wrapper input[type=date],
  .woocommerce-input-wrapper input[type=datetime-local],
  .woocommerce-input-wrapper input[type=month],
  .woocommerce-input-wrapper input[type=time],
  .woocommerce-input-wrapper input[type=week],
  .woocommerce form .form-row input.input-text,
  .woocommerce form .form-row input[type=text],
  .woocommerce form .form-row input[type=email],
  .woocommerce form .form-row input[type=tel],
  .woocommerce form .form-row input[type=password],
  .woocommerce-address-fields input[type=text],
  .woocommerce-address-fields input[type=email],
  .woocommerce-address-fields input[type=tel], textarea,
  .comment-form textarea,
  #commentform textarea,
  #comment,
  #loginform textarea,
  #registerform textarea,
  .wp-block-search__textarea,
  .woocommerce-input-wrapper textarea,
  .woocommerce form .form-row textarea,
  .woocommerce-address-fields textarea, input[type=number],
  .woocommerce-input-wrapper input[type=number],
  .woocommerce form .form-row input[type=number],
  .woocommerce .quantity input[type=number],
  .woocommerce-cart .quantity input[type=number],
  .woocommerce-checkout .quantity input[type=number], select,
  .comment-form select,
  #commentform select,
  #loginform select,
  #registerform select,
  .woocommerce-input-wrapper select,
  .woocommerce form .form-row select,
  .woocommerce form .form-row .select,
  .woocommerce-address-fields select,
  .woocommerce .address-field select,
  #billing_country,
  #billing_state,
  #shipping_country,
  #shipping_state,
  .woocommerce .country_to_state,
  select.country_select,
  select.state_select, .file-input-wrapper .file-input-text, #loginform .input,
  #registerform .input,
  #lostpasswordform .input,
  .wp-block-search__button,
  input[type=checkbox],
  input[type=radio],
  .option-item,
  .simple-dropdown {
    transition: none;
  }
}
.quantity {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid #D8DAE2;
  border-radius: 4px;
  background: #FFFFFF;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.quantity:focus-within {
  border-color: #262930;
}
.quantity.has-error, .quantity.error {
  border-color: #C5014C;
}
.quantity.has-error .qty-btn, .quantity.error .qty-btn {
  color: #C5014C;
}
.quantity.has-error .qty-btn:hover:not(:disabled), .quantity.error .qty-btn:hover:not(:disabled) {
  color: #C5014C;
  background: rgba(197, 1, 76, 0.05);
}
.quantity.disabled, .quantity:has(.qty:disabled) {
  background: #F0F1F5;
  opacity: 0.6;
  pointer-events: none;
}
.quantity.disabled .qty-btn, .quantity:has(.qty:disabled) .qty-btn {
  color: #8A8C95;
  cursor: not-allowed;
}
.quantity.disabled .qty, .quantity:has(.qty:disabled) .qty {
  color: #8A8C95;
  cursor: not-allowed;
}
.quantity .qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1920px) {
  .quantity .qty-btn {
    width: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .quantity .qty-btn {
    width: 48px;
  }
}
@media (max-width: 991px) {
  .quantity .qty-btn {
    width: 40px;
  }
}
@media (min-width: 1920px) {
  .quantity .qty-btn {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .quantity .qty-btn {
    height: 48px;
  }
}
@media (max-width: 991px) {
  .quantity .qty-btn {
    height: 40px;
  }
}
.quantity .qty-btn {
  background: transparent;
  border: none;
  color: #262930;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  padding: 0;
  font-size: 18px;
  font-weight: var(--fw-regular);
  line-height: 1;
  flex-shrink: 0;
}
.quantity .qty-btn:hover:not(:disabled) {
  background: #F7F9FB;
  color: #FF0019;
  border-radius: 8px;
}
.quantity .qty-btn:focus {
  outline: none;
}
.quantity .qty-btn:focus-visible {
  outline: 2px solid #262930;
  outline-offset: -2px;
}
.quantity .qty-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.quantity .qty-btn:disabled:hover {
  background: transparent;
  color: #262930;
}
.quantity .qty-btn svg {
  width: 16px;
  height: 16px;
}
.quantity .qty,
.quantity input[type=number].qty,
.quantity input.input-text.qty {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: #262930;
}
@media (min-width: 1920px) {
  .quantity .qty,
  .quantity input[type=number].qty,
  .quantity input.input-text.qty {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .quantity .qty,
  .quantity input[type=number].qty,
  .quantity input.input-text.qty {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .quantity .qty,
  .quantity input[type=number].qty,
  .quantity input.input-text.qty {
    font-size: 15px;
    line-height: 28px;
  }
}
.quantity .qty,
.quantity input[type=number].qty,
.quantity input.input-text.qty {
  width: 48px;
}
@media (min-width: 1920px) {
  .quantity .qty,
  .quantity input[type=number].qty,
  .quantity input.input-text.qty {
    height: 56px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .quantity .qty,
  .quantity input[type=number].qty,
  .quantity input.input-text.qty {
    height: 48px;
  }
}
@media (max-width: 991px) {
  .quantity .qty,
  .quantity input[type=number].qty,
  .quantity input.input-text.qty {
    height: 40px;
  }
}
.quantity .qty,
.quantity input[type=number].qty,
.quantity input.input-text.qty {
  text-align: center;
  border: none;
  background: transparent;
  font-weight: var(--fw-medium);
  padding: 0 4px;
  margin: 0;
  appearance: textfield;
  -moz-appearance: textfield;
}
.quantity .qty::-webkit-outer-spin-button, .quantity .qty::-webkit-inner-spin-button,
.quantity input[type=number].qty::-webkit-outer-spin-button,
.quantity input[type=number].qty::-webkit-inner-spin-button,
.quantity input.input-text.qty::-webkit-outer-spin-button,
.quantity input.input-text.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
.quantity .qty:focus,
.quantity input[type=number].qty:focus,
.quantity input.input-text.qty:focus {
  outline: none;
  background: #F7F9FB;
}
.quantity .qty:disabled,
.quantity input[type=number].qty:disabled,
.quantity input.input-text.qty:disabled {
  color: #8A8C95;
  cursor: not-allowed;
}

.quantity-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.quantity-field .quantity-error {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .quantity-field .quantity-error {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .quantity-field .quantity-error {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .quantity-field .quantity-error {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.quantity-field .quantity-error {
  color: #C5014C;
  margin-top: 4px;
}

@media (max-width: 991px) {
  .quantity .qty-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
  .quantity .qty,
  .quantity input[type=number].qty,
  .quantity input.input-text.qty {
    width: 40px;
    height: 36px;
  }
}
.field-with-button {
  display: flex;
  align-items: center;
  padding: 8px 8px 8px 20px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #D8DAE2;
  gap: 8px;
  transition: all 0.2s ease-in-out;
}
.field-with-button:focus-within {
  border-color: #262930;
  box-shadow: 0 0 0 2px rgba(38, 41, 48, 0.1);
}
.field-with-button:hover:not(.disabled):not(.error) {
  border-color: #FF4F60;
}
.field-with-button.error, .field-with-button.has-error {
  border-color: #C5014C;
}
.field-with-button.error:focus-within, .field-with-button.has-error:focus-within {
  box-shadow: 0 0 0 2px rgba(197, 1, 76, 0.1);
}
.field-with-button.disabled {
  background: #F0F1F5;
  opacity: 0.6;
  pointer-events: none;
}
.field-with-button.disabled input {
  color: #8A8C95;
  cursor: not-allowed;
}
.field-with-button.disabled .field-with-button__submit {
  background: #E4E4E6;
  color: #262930;
  cursor: not-allowed;
}
.field-with-button input {
  flex: 1 1 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: #262930;
}
@media (min-width: 1920px) {
  .field-with-button input {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .field-with-button input {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .field-with-button input {
    font-size: 15px;
    line-height: 28px;
  }
}
.field-with-button input {
  min-width: 0;
}
.field-with-button input::placeholder {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: rgba(38, 41, 48, 0.5);
  opacity: 1;
}
@media (min-width: 1920px) {
  .field-with-button input::placeholder {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .field-with-button input::placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .field-with-button input::placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
.field-with-button input::-webkit-input-placeholder {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: rgba(38, 41, 48, 0.5);
  opacity: 1;
}
@media (min-width: 1920px) {
  .field-with-button input::-webkit-input-placeholder {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .field-with-button input::-webkit-input-placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .field-with-button input::-webkit-input-placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
.field-with-button input::-moz-placeholder {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: rgba(38, 41, 48, 0.5);
  opacity: 1;
}
@media (min-width: 1920px) {
  .field-with-button input::-moz-placeholder {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .field-with-button input::-moz-placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .field-with-button input::-moz-placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
.field-with-button input:-ms-input-placeholder {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  color: rgba(38, 41, 48, 0.5);
  opacity: 1;
}
@media (min-width: 1920px) {
  .field-with-button input:-ms-input-placeholder {
    font-size: 18px;
    line-height: 32px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .field-with-button input:-ms-input-placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
@media (max-width: 991px) {
  .field-with-button input:-ms-input-placeholder {
    font-size: 15px;
    line-height: 28px;
  }
}
.field-with-button input:focus {
  outline: none;
  box-shadow: none;
}
.field-with-button .field-with-button__submit {
  flex-shrink: 0;
  padding: 18px 32px;
  background: #262930;
  border-radius: 4px;
  color: #FFFFFF;
  font-size: 15px;
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  line-height: 20px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.field-with-button .field-with-button__submit:hover {
  background: #5B5E67;
}
.field-with-button .field-with-button__submit:active {
  transform: scale(0.98);
}
.field-with-button .field-with-button__submit:focus {
  outline: none;
}
.field-with-button .field-with-button__submit:focus-visible {
  outline: 2px solid #262930;
  outline-offset: 2px;
}

.field-with-button-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-with-button-wrapper .field-with-button-error {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .field-with-button-wrapper .field-with-button-error {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .field-with-button-wrapper .field-with-button-error {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .field-with-button-wrapper .field-with-button-error {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.field-with-button-wrapper .field-with-button-error {
  color: #C5014C;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .field-with-button {
    padding: 6px 6px 6px 16px;
  }
  .field-with-button .field-with-button__submit {
    padding: 14px 24px;
    font-size: 14px;
  }
}
/* Components */
#page,
.site {
  background-color: #FFFFFF;
  overflow: hidden;
}

.site-main {
  max-width: 1744px;
  margin: 0 auto;
  padding-left: 88px;
  padding-right: 88px;
  min-width: 1744px;
  max-width: none;
  min-width: auto;
}
.site-main .entry-content {
  display: flex;
  flex-direction: column;
}
.site-main .entry-content.type-page, .site-main .entry-content.front-page {
  gap: 64px;
}
@media (max-width: 1919px) {
  .site-main {
    max-width: 1743px;
    margin: 0 auto;
    padding-left: 56px;
    padding-right: 56px;
  }
}
@media (max-width: 991px) {
  .site-main {
    max-width: 943px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
  }
}

/**
 * Header Component
 * 
 * This file contains all styles for the site header including
 * the top bar and main header sections.
 */
.site-header {
  width: 100%;
  position: relative;
  z-index: 1000;
}

.top-bar {
  background-color: #F7F9FB;
  padding: 16px 20px;
  font-size: 15px;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-bar-center {
  flex: 1;
  text-align: center;
}

.promo-message {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  font-size: 15px;
  color: #262930;
}

.top-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
}
.top-navigation a {
  text-decoration: underline;
  color: #262930;
  font-size: 15px;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
.top-navigation a:hover {
  color: #FF0019;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.flag-icon {
  font-size: 18px;
}

.chevron {
  font-size: 10px;
  color: #8A8C95;
}

.wcml-dropdown.product.wcml_currency_switcher {
  display: inline-flex;
  width: auto !important;
  max-width: none !important;
  position: relative;
  margin: 0 !important;
}
.wcml-dropdown.product.wcml_currency_switcher > ul {
  display: inline-flex;
  padding: 0;
  margin: 0 !important;
  list-style: none;
}
.wcml-dropdown.product.wcml_currency_switcher > ul > li.wcml-cs-active-currency {
  display: inline-flex;
  align-items: center;
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0;
  border: none !important;
  background: transparent !important;
}
.wcml-dropdown.product.wcml_currency_switcher > ul > li.wcml-cs-active-currency:hover, .wcml-dropdown.product.wcml_currency_switcher > ul > li.wcml-cs-active-currency:focus, .wcml-dropdown.product.wcml_currency_switcher > ul > li.wcml-cs-active-currency:focus-within {
  background: transparent !important;
}
.wcml-dropdown.product.wcml_currency_switcher > ul > li.wcml-cs-active-currency:hover .wcml-cs-submenu, .wcml-dropdown.product.wcml_currency_switcher > ul > li.wcml-cs-active-currency:focus .wcml-cs-submenu, .wcml-dropdown.product.wcml_currency_switcher > ul > li.wcml-cs-active-currency:focus-within .wcml-cs-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.wcml-dropdown.product.wcml_currency_switcher > ul > li.wcml-cs-active-currency:hover > a.wcml-cs-item-toggle::after, .wcml-dropdown.product.wcml_currency_switcher > ul > li.wcml-cs-active-currency:focus > a.wcml-cs-item-toggle::after, .wcml-dropdown.product.wcml_currency_switcher > ul > li.wcml-cs-active-currency:focus-within > a.wcml-cs-item-toggle::after {
  transform: rotate(0deg);
}
.wcml-dropdown.product.wcml_currency_switcher a.wcml-cs-item-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #262930;
  font-size: 15px;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  cursor: pointer;
  box-shadow: none !important;
  background: none;
  border: none;
  padding: 0;
}
.wcml-dropdown.product.wcml_currency_switcher a.wcml-cs-item-toggle::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("assets/icons/arrow-up.svg") no-repeat center;
  background-size: contain;
  transform: rotate(180deg);
  transition: transform 0.2s ease;
  border: none !important;
  position: relative;
  top: 0;
  right: 0;
}
.wcml-dropdown.product.wcml_currency_switcher a.wcml-cs-item-toggle:hover {
  color: #FF0019;
  text-decoration: none;
  box-shadow: none !important;
}
.wcml-dropdown.product.wcml_currency_switcher .wcml-cs-submenu {
  position: absolute;
  top: 100%;
  left: -55%;
  right: auto;
  min-width: max-content;
  background: #FFFFFF;
  border: 1px solid #E4E4E6;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 1002;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
}
.wcml-dropdown.product.wcml_currency_switcher .wcml-cs-submenu li {
  list-style: none;
  padding: 0;
  margin: 0;
  border: none !important;
  background: transparent !important;
}
.wcml-dropdown.product.wcml_currency_switcher .wcml-cs-submenu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  text-decoration: none;
  color: #262930;
  font-size: 15px;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  transition: background-color 0.2s ease, color 0.2s ease;
  box-shadow: none !important;
  cursor: pointer;
}
.wcml-dropdown.product.wcml_currency_switcher .wcml-cs-submenu a::after {
  content: none;
}
.wcml-dropdown.product.wcml_currency_switcher .wcml-cs-submenu a:hover {
  background-color: #F7F9FB;
  color: #FF0019;
  text-decoration: none;
  box-shadow: none !important;
}
.wcml-dropdown.product.wcml_currency_switcher .wcml-cs-submenu a:focus {
  outline: none;
  background-color: #F7F9FB;
}
.wcml-dropdown.product.wcml_currency_switcher .wcml-cs-submenu a:focus-visible {
  outline: 2px solid #262930;
  outline-offset: -2px;
}
.wcml-dropdown.product.wcml_currency_switcher .wcml-spinner {
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  display: inline-block;
  vertical-align: middle;
  margin-left: 4px;
}

.woocommerce .wcml-dropdown.product.wcml_currency_switcher {
  margin: 0 !important;
}

.wpml-ls-menu-item {
  display: flex;
  align-items: center;
  position: relative;
  list-style: none;
}
.wpml-ls-menu-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: #262930;
  font-size: 15px;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  cursor: pointer;
}
.wpml-ls-menu-item > a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("assets/icons/arrow-up.svg") no-repeat center;
  background-size: contain;
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}
.wpml-ls-menu-item > a:hover {
  color: #FF0019;
}
.wpml-ls-menu-item .sub-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: max-content;
  background: #FFFFFF;
  border: 1px solid #E4E4E6;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 100;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.wpml-ls-menu-item .sub-menu li {
  list-style: none;
}
.wpml-ls-menu-item .sub-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  text-decoration: none;
  color: #262930;
  font-size: 15px;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.wpml-ls-menu-item .sub-menu a:hover {
  background-color: #F7F9FB;
  color: #FF0019;
}
.wpml-ls-menu-item .sub-menu a::after {
  content: none;
}
.wpml-ls-menu-item .sub-menu img {
  width: 20px;
  height: auto;
  border-radius: 2px;
}
.wpml-ls-menu-item.is-open > a::after {
  transform: rotate(0deg);
}
.wpml-ls-menu-item.is-open .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-header {
  background-color: #FFFFFF;
  padding: 24px 0;
  transition: box-shadow 0.3s ease;
}
.main-header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

.main-header-placeholder {
  display: none;
}
.main-header-placeholder.is-visible {
  display: block;
}

.main-header-container {
  max-width: 1744px;
  margin: 0 auto;
  padding-left: 88px;
  padding-right: 88px;
  min-width: 1744px;
  max-width: none;
  min-width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-branding {
  display: flex;
  align-items: center;
}
.site-branding img {
  height: 64px;
  width: auto;
}

.site-title {
  margin: 0;
  font-size: 0;
}
.site-title a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #FF0019;
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  font-size: 21px;
  line-height: 32px;
}
.site-title a::before {
  content: "Bird";
  display: block;
}
.site-title a::after {
  content: "Busters";
  display: block;
}

.main-navigation-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}

.shop-by-section {
  display: flex;
  gap: 24px;
}

.shop-by-label {
  color: #262930;
  font-size: 15px;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  margin-right: 8px;
  line-height: 24px;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}
.main-navigation a {
  color: #262930;
  text-decoration: none;
  font-size: 21px;
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  gap: 5px;
}
.main-navigation a:hover {
  color: #FF0019;
}
.main-navigation .dropdown-arrow {
  background: url("assets/icons/arrow-up.svg") no-repeat center;
  width: 10px;
  height: 10px;
  font-size: 10px;
  color: #262930;
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}
.main-navigation .dropdown-arrow:hover {
  color: #FF0019;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-container {
  position: relative;
}

.search-form {
  display: flex;
  align-items: center;
}

.search-label {
  display: block;
  cursor: pointer;
}

.search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-field {
  width: 200px;
  height: 40px;
  padding: 0 15px 0 45px;
  border: 1px solid #D8DAE2;
  border-radius: 6px;
  background-color: #ffffff;
  font-size: 18px;
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  outline: none;
  transition: border-color 0.2s ease;
}
.search-field:focus {
  border-color: #8A8C95;
}
.search-field::placeholder {
  color: #8A8C95;
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  z-index: 1;
  pointer-events: none;
}
.search-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cart-container {
  position: relative;
}

.cart-icon {
  font-size: 21px;
  color: #fff;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #FF0019;
  color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-family: var(--font-primary);
  font-weight: var(--fw-semibold);
}

.mega-menu-container {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
.mega-menu-container.mega-menu-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.mega-menu-content {
  position: relative;
  width: 100%;
  background: #FFFFFF;
  box-shadow: 0px 64px 64px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px);
  z-index: 1;
  margin-top: 0;
  padding-top: 48px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.mega-menu-body {
  padding-left: 88px;
  padding-right: 88px;
}

.mega-menu-categories {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  align-content: flex-start;
}

.mega-menu-category-item {
  width: 412px;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.mega-menu-category-item:hover {
  transform: translateY(-2px);
}
.mega-menu-category-item:hover .mega-menu-category-name {
  color: #FF0019;
}

.mega-menu-category-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.mega-menu-category-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.mega-menu-category-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.mega-menu-category-content {
  flex: 1;
}

.mega-menu-category-name {
  color: #262930;
  font-size: 21px;
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  line-height: 32px;
  margin: 0;
  transition: color 0.2s ease;
}

.mega-menu-footer {
  border-top: 1px solid #E4E4E6;
  margin-top: 8px;
  padding: 0 88px;
}

.menu-header-features {
  padding: 24px 0;
  background-color: #FFFFFF;
  max-width: 1744px;
  margin: 0 auto;
  padding-left: 88px;
  padding-right: 88px;
  min-width: 1744px;
  max-width: none;
  min-width: auto;
}
.menu-header-features .header-features-container {
  border-radius: 8px;
  color: #262930;
  background-color: #F7F9FB;
}
.menu-header-features .header-features-container .header-feature:first-of-type {
  padding-left: 20px;
}
.menu-header-features .header-features-container .header-feature:last-of-type {
  padding-right: 20px;
}
.menu-header-features.hidden {
  opacity: 0;
  max-height: 0;
  padding: 0;
}

.main-navigation .has-dropdown.mega-menu-active > a {
  color: #FF0019;
}
.main-navigation .has-dropdown.mega-menu-active > a .dropdown-arrow {
  color: #FF0019;
  transform: rotate(0deg);
}

@media (max-width: 1919px) {
  .site-branding img {
    height: 56px;
  }
  .top-bar-left,
  .top-bar-right {
    gap: 12px;
  }
  .main-header-container {
    max-width: 1743px;
    margin: 0 auto;
    padding-left: 56px;
    padding-right: 56px;
    gap: 24px;
  }
  .main-navigation-wrapper {
    gap: 24px;
  }
  .shop-by-section {
    gap: 16px;
  }
  .shop-by-label {
    font-size: 13px;
    margin-right: 8px;
  }
  .main-navigation ul {
    gap: 16px;
  }
  .main-navigation a {
    font-size: 15px;
  }
  .header-actions {
    gap: 24px;
  }
  .search-field {
    width: 160px;
    height: 40px;
    font-size: 13px;
  }
  .search-icon {
    width: 18px;
    height: 18px;
  }
  .cart-link {
    width: 48px;
    height: 48px;
  }
  .cart-icon {
    font-size: 20px;
  }
  .cart-count {
    width: 18px;
    height: 18px;
    font-size: 10px;
    top: -4px;
    right: -4px;
  }
  .menu-header-features {
    max-width: 1743px;
    margin: 0 auto;
    padding-left: 56px;
    padding-right: 56px;
  }
  .menu-header-features .header-features-container {
    gap: 12px;
  }
  .menu-header-features .header-features-container .header-feature {
    min-width: 200px;
    gap: 6px;
  }
  .mega-menu-content {
    margin-top: 0;
  }
  .mega-menu-categories {
    gap: 24px;
  }
  .mega-menu-category-item {
    width: 320px;
  }
  .mega-menu-category-inner {
    gap: 12px;
    margin-bottom: 32px;
  }
  .mega-menu-category-icon {
    width: 48px;
    height: 48px;
  }
  .mega-menu-category-icon img {
    width: 48px;
    height: 48px;
  }
  .mega-menu-category-name {
    font-size: 18px;
    line-height: 28px;
  }
  .mega-menu-feature {
    gap: 6px;
  }
  .mega-menu-feature-text {
    font-size: 13px;
    line-height: 20px;
  }
}
@media (max-width: 991px) {
  .top-bar-left,
  .top-bar-right {
    display: none !important;
  }
  .top-bar {
    padding: 10px 20px;
  }
  .top-bar-container {
    justify-content: center;
    text-align: center;
  }
  .main-header {
    padding: 0;
  }
  .main-header-container {
    max-width: 943px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    gap: 16px;
  }
  .custom-logo {
    width: 80px;
    height: 40px;
  }
  .main-navigation-wrapper {
    display: none !important;
  }
  .shop-by-section {
    display: none !important;
  }
  .search-container {
    display: none !important;
  }
  .cart-icon {
    font-size: 18px;
  }
  .cart-count {
    width: 16px;
    height: 16px;
    font-size: 9px;
    top: -3px;
    right: -3px;
  }
  .mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
  }
  .mobile-menu-toggle svg {
    width: 24px;
    height: 24px;
  }
  .mobile-menu-toggle svg path {
    fill: #262930;
  }
  .menu-header-features {
    max-width: 943px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
  }
  .menu-header-features .header-features-container {
    gap: 12px;
  }
  .menu-header-features .header-features-container .header-feature {
    min-width: 200px;
    gap: 6px;
  }
  .header-features {
    max-width: 943px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
  }
  .header-features .header-features-container .header-feature {
    min-width: auto;
  }
  .header-features .header-features-container .header-feature:nth-child(2), .header-features .header-features-container .header-feature:nth-child(3) {
    display: none;
  }
  .mega-menu-container {
    display: none !important;
  }
  .mega-menu-category-inner {
    gap: 12px;
    margin-bottom: 24px;
  }
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #262930;
  cursor: pointer;
  padding: 0;
}

@media (max-width: 991px) {
  .main-navigation ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    padding: 16px;
    gap: 12px;
  }
  .main-navigation.toggled ul {
    display: flex;
  }
  .main-navigation .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: transparent;
    padding: 10px 0 0 20px;
    margin: 0;
    min-width: auto;
    max-width: none;
    display: none;
    grid-template-columns: 1fr;
  }
  .main-navigation .dropdown-menu.active {
    display: block;
  }
  .main-navigation .dropdown-menu::before {
    display: none;
  }
  .main-navigation .dropdown-menu li {
    padding: 5px 0;
    border-radius: 0;
    text-align: left;
  }
  .main-navigation .dropdown-menu li:hover {
    background-color: transparent;
  }
  .main-navigation .dropdown-menu a {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 0;
    gap: 10px;
  }
  .main-navigation .dropdown-menu a::before {
    font-size: 16px;
  }
  .main-navigation .has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }
  .wpml-ls-menu-item .sub-menu {
    top: unset;
    bottom: 100%;
    padding: 0;
  }
}
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: white;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow: hidden;
}
.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-container {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}

.mobile-menu-promo {
  background-color: #F7F9FB;
  padding: 10px 20px;
  text-align: center;
  flex-shrink: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  flex-shrink: 0;
}

.mobile-menu-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.mobile-menu-cart .cart-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #262930;
  border-radius: 4px;
  text-decoration: none;
  position: relative;
}
.mobile-menu-cart .cart-icon svg {
  width: 24px;
  height: 24px;
}
.mobile-menu-cart .cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #FF0019;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  line-height: 20px;
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu-close svg {
  width: 24px;
  height: 24px;
}
.mobile-menu-close svg path {
  stroke: #262930;
}

.mobile-menu-search {
  padding: 0 24px 24px;
  flex-shrink: 0;
}
.mobile-menu-search .search-form {
  width: 100%;
}
.mobile-menu-search .search-label {
  display: block;
  width: 100%;
}
.mobile-menu-search .search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.mobile-menu-search .search-field {
  width: 100%;
  height: 56px;
  padding: 12px 16px 12px 48px;
  border: 1px solid #E4E4E6;
  border-radius: 4px;
  background-color: #fff;
  font-size: 18px;
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  line-height: 32px;
  outline: none;
}
.mobile-menu-search .search-field::placeholder {
  color: rgba(38, 41, 48, 0.5);
}
.mobile-menu-search .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  pointer-events: none;
}
.mobile-menu-search .search-icon svg {
  width: 100%;
  height: 100%;
}

.mobile-menu-nav {
  padding: 0 24px 24px;
  flex: 1;
}

.mobile-nav-label {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  font-size: 15px;
  line-height: 24px;
  color: #262930;
  margin: 0 0 16px 0;
  text-align: center;
}

.mobile-menu-accordion .mobile-menu-accordion-link {
  text-decoration: none;
}
.mobile-menu-accordion .accordion-item__content {
  padding-bottom: 0;
}

.mobile-nav-subcategories {
  padding: 24px 32px;
  background: #F7F9FB;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav-subcat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.mobile-nav-subcat-item:hover {
  transform: translateX(4px);
}
.mobile-nav-subcat-item:hover .mobile-nav-subcat-name {
  color: #FF0019;
}

.mobile-nav-subcat-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-subcat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mobile-nav-subcat-name {
  flex: 1;
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  font-size: 18px;
  line-height: 28px;
  color: #262930;
  transition: color 0.2s ease;
}

.mobile-nav-subcat-count {
  background: white;
  border-radius: 48px;
  padding: 2px 4px;
  min-width: 16px;
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  font-size: 12px;
  line-height: 16px;
  color: #262930;
  text-align: center;
}

.mobile-menu-footer {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  flex-shrink: 0;
}
.mobile-menu-footer #mobile-menu-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  flex-shrink: 0;
  list-style: none;
}

.mobile-language-selector {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-left: 24px;
}

@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none !important;
  }
  .mobile-menu-overlay {
    display: none !important;
  }
}
body.mobile-menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

body.mega-menu-open {
  overflow: hidden;
}

/**
 * Footer Component
 * 
 * This file contains all styles for the site footer including
 * the newsletter section, main footer, and payment/delivery sections.
 */
.site-footer {
  width: 100%;
  position: relative;
  background-color: #ffffff;
  margin-top: 64px;
}
@media (max-width: 991px) {
  .site-footer {
    margin-top: 48px;
  }
}

.footer-wrapper {
  max-width: 1744px;
  margin: 0 auto;
  padding-left: 88px;
  padding-right: 88px;
  min-width: 1744px;
  max-width: none;
  min-width: auto;
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
@media (max-width: 1919px) {
  .footer-wrapper {
    max-width: 1743px;
    margin: 0 auto;
    padding-left: 56px;
    padding-right: 56px;
  }
}
@media (max-width: 991px) {
  .footer-wrapper {
    max-width: 943px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
  }
}

.footer-newsletter {
  align-self: stretch;
  padding: 48px 80px;
  background: #FF0019;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  justify-content: flex-start;
  align-items: center;
  gap: 180px;
  display: flex;
}
@media (max-width: 991px) {
  .footer-newsletter {
    flex-direction: column;
    gap: 32px;
    padding: 32px 40px;
  }
}
@media (max-width: 768px) {
  .footer-newsletter {
    padding: 32px 20px;
  }
}

.newsletter-content {
  flex: 1 1 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}
@media (max-width: 991px) {
  .newsletter-content {
    width: 100%;
  }
}

.newsletter-heading {
  align-self: stretch;
  color: #ffffff;
  font-size: 32px;
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  line-height: 48px;
  word-wrap: break-word;
}
@media (max-width: 991px) {
  .newsletter-heading {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (max-width: 768px) {
  .newsletter-heading {
    font-size: 21px;
    line-height: 28px;
  }
}

.newsletter-form {
  flex: 1 1 0;
  display: flex;
}
@media (max-width: 991px) {
  .newsletter-form {
    width: 100%;
  }
}
.newsletter-form form {
  flex: 1;
}

.newsletter-form__message {
  margin-top: 0.75rem;
  font-size: 0.875rem;
}
.newsletter-form__message--error {
  color: #FFFFFF;
  opacity: 0.95;
}

.footer-main {
  align-self: stretch;
  padding: 80px;
  background: #262930;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 180px;
  display: flex;
}
@media (max-width: 991px) {
  .footer-main {
    flex-direction: column;
    gap: 64px;
    padding: 40px 24px;
  }
}

.footer-info {
  width: 412px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}
@media (max-width: 991px) {
  .footer-info {
    width: 100%;
    gap: 32px;
  }
}

.footer-logo {
  width: 160px;
  height: 80px;
  position: relative;
  margin-bottom: 32px;
}
.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}
.footer-logo svg {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .footer-logo {
    margin-bottom: 10px;
  }
}

.footer-contact {
  align-self: stretch;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-contact-text {
  align-self: stretch;
  color: #ffffff;
  font-size: 18px;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  line-height: 28px;
}
.footer-contact-text a {
  color: #ffffff;
  text-decoration: underline;
}
.footer-contact-text a:hover {
  color: #FF4F60;
}

.footer-trustpilot {
  justify-content: flex-start;
  align-items: center;
  gap: 13px;
  display: flex;
  margin-bottom: 32px;
}

.trustpilot-label {
  color: #ffffff;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: var(--fw-bold);
  line-height: 24px;
}

.trustpilot-rating {
  color: #ffffff;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  line-height: 24px;
}
.trustpilot-rating .rating-score {
  font-weight: var(--fw-bold);
}
.trustpilot-rating .rating-text {
  font-weight: var(--fw-regular);
}

.trustpilot-brand {
  justify-content: center;
  align-items: center;
  gap: 4px;
  display: flex;
}
.trustpilot-brand .trustpilot-icon {
  width: 18px;
  height: 18px;
  background: #ffffff;
}
.trustpilot-brand .trustpilot-name {
  color: #ffffff;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: var(--fw-bold);
  line-height: 24px;
}

.footer-copyright {
  align-self: stretch;
  color: #ffffff;
  font-size: 18px;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  line-height: 28px;
}
.footer-copyright.mobile {
  display: none;
}
@media (max-width: 991px) {
  .footer-copyright.mobile {
    display: block;
  }
  .footer-copyright:not(.mobile) {
    display: none;
  }
}

.footer-navigation {
  flex: 1 1 0;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  display: flex;
}
@media (max-width: 991px) {
  .footer-navigation {
    flex-direction: column;
    width: 100%;
  }
}

.footer-nav-column {
  min-width: 400px;
}
@media (max-width: 1919px) {
  .footer-nav-column {
    min-width: 200px;
  }
}
.footer-nav-column .footer-nav-menu {
  flex: 1 1 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  display: flex;
  padding: 0;
}
@media (max-width: 991px) {
  .footer-nav-column .footer-nav-menu {
    width: 100%;
  }
}
.footer-nav-column .footer-nav-menu .menu-item {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}
.footer-nav-column .footer-nav-menu .menu-item a {
  padding: 8px 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: var(--fw-bold);
  line-height: 24px;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.footer-nav-column .footer-nav-menu .menu-item a:hover {
  color: #FF0019;
}

.footer-social {
  flex: 1 1 0;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 16px;
  display: flex;
}
@media (max-width: 991px) {
  .footer-social {
    justify-content: flex-start;
    width: 100%;
  }
}

.social-icon {
  width: 32px;
  height: 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.social-icon svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
  stroke: #ffffff;
  stroke-width: 1.5px;
}
.social-icon:hover {
  transform: scale(1.1);
}
.social-icon:hover svg {
  fill: #FF0019;
  stroke: #FF0019;
}

.footer-payment-delivery {
  justify-content: space-between;
  width: 100%;
  display: flex;
  padding: 40px 40px;
}
@media (max-width: 991px) {
  .footer-payment-delivery {
    flex-direction: column;
    gap: 24px;
  }
}

.payment-delivery-section {
  align-items: center;
  display: flex;
  min-height: 40px;
  gap: 32px;
}
.payment-delivery-section p {
  margin: 0;
}
.payment-delivery-section .payment-delivery-icons {
  display: flex;
  gap: 32px;
}
@media (max-width: 991px) {
  .payment-delivery-section {
    flex-direction: column;
    width: 100%;
  }
  .payment-delivery-section .payment-delivery-icons {
    display: flex;
    gap: 16px;
  }
}

@media (max-width: 991px) {
  .footer-newsletter,
  .footer-main {
    padding: 40px 24px;
  }
  .footer-contact-text,
  .section-label {
    font-size: 15px;
  }
}
.footer-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 32px 0;
}

.footer-flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.footer-flex-column {
  display: flex;
  flex-direction: column;
}

.footer-text-center {
  text-align: center;
}

.newsletter-message {
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 16px 32px;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  animation: slideInRight 0.3s ease-out;
}
.newsletter-message p {
  margin: 0;
  color: #262930;
  font-size: 15px;
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
  line-height: 1.5;
}
.newsletter-message--success {
  border-left: 4px solid #2AC769;
}
.newsletter-message--error {
  border-left: 4px solid #C5014C;
}
.newsletter-message--info {
  border-left: 4px solid #FFCC00;
}
@media (max-width: 768px) {
  .newsletter-message {
    top: 10px;
    right: 10px;
    left: 10px;
    padding: 8px 16px;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.breadcrumb,
.woocommerce .woocommerce-breadcrumb,
.woocommerce-page .woocommerce-breadcrumb {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .breadcrumb,
  .woocommerce .woocommerce-breadcrumb,
  .woocommerce-page .woocommerce-breadcrumb {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .breadcrumb,
  .woocommerce .woocommerce-breadcrumb,
  .woocommerce-page .woocommerce-breadcrumb {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .breadcrumb,
  .woocommerce .woocommerce-breadcrumb,
  .woocommerce-page .woocommerce-breadcrumb {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.breadcrumb,
.woocommerce .woocommerce-breadcrumb,
.woocommerce-page .woocommerce-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  margin: 0 0 24px 0;
  padding: 0;
  font-family: var(--font-primary);
  color: #262930;
}
.breadcrumb a,
.woocommerce .woocommerce-breadcrumb a,
.woocommerce-page .woocommerce-breadcrumb a {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .breadcrumb a,
  .woocommerce .woocommerce-breadcrumb a,
  .woocommerce-page .woocommerce-breadcrumb a {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .breadcrumb a,
  .woocommerce .woocommerce-breadcrumb a,
  .woocommerce-page .woocommerce-breadcrumb a {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .breadcrumb a,
  .woocommerce .woocommerce-breadcrumb a,
  .woocommerce-page .woocommerce-breadcrumb a {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.breadcrumb a,
.woocommerce .woocommerce-breadcrumb a,
.woocommerce-page .woocommerce-breadcrumb a {
  color: #262930;
  text-decoration: underline;
  opacity: 0.5;
}
.breadcrumb a:hover,
.woocommerce .woocommerce-breadcrumb a:hover,
.woocommerce-page .woocommerce-breadcrumb a:hover {
  color: #FF4F60;
  opacity: 1;
}
.breadcrumb a:hover + span,
.woocommerce .woocommerce-breadcrumb a:hover + span,
.woocommerce-page .woocommerce-breadcrumb a:hover + span {
  color: #FF4F60;
  opacity: 1;
}
.breadcrumb span,
.woocommerce .woocommerce-breadcrumb span,
.woocommerce-page .woocommerce-breadcrumb span {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .breadcrumb span,
  .woocommerce .woocommerce-breadcrumb span,
  .woocommerce-page .woocommerce-breadcrumb span {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .breadcrumb span,
  .woocommerce .woocommerce-breadcrumb span,
  .woocommerce-page .woocommerce-breadcrumb span {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .breadcrumb span,
  .woocommerce .woocommerce-breadcrumb span,
  .woocommerce-page .woocommerce-breadcrumb span {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.breadcrumb span,
.woocommerce .woocommerce-breadcrumb span,
.woocommerce-page .woocommerce-breadcrumb span {
  color: #262930;
  opacity: 0.5;
}
.breadcrumb .breadcrumb-separator,
.woocommerce .woocommerce-breadcrumb .breadcrumb-separator,
.woocommerce-page .woocommerce-breadcrumb .breadcrumb-separator {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .breadcrumb .breadcrumb-separator,
  .woocommerce .woocommerce-breadcrumb .breadcrumb-separator,
  .woocommerce-page .woocommerce-breadcrumb .breadcrumb-separator {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .breadcrumb .breadcrumb-separator,
  .woocommerce .woocommerce-breadcrumb .breadcrumb-separator,
  .woocommerce-page .woocommerce-breadcrumb .breadcrumb-separator {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .breadcrumb .breadcrumb-separator,
  .woocommerce .woocommerce-breadcrumb .breadcrumb-separator,
  .woocommerce-page .woocommerce-breadcrumb .breadcrumb-separator {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.breadcrumb .breadcrumb-separator,
.woocommerce .woocommerce-breadcrumb .breadcrumb-separator,
.woocommerce-page .woocommerce-breadcrumb .breadcrumb-separator {
  color: #262930;
  opacity: 0.5;
  margin: 0 12px;
}
.breadcrumb .breadcrumb_last,
.woocommerce .woocommerce-breadcrumb .breadcrumb_last,
.woocommerce-page .woocommerce-breadcrumb .breadcrumb_last {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .breadcrumb .breadcrumb_last,
  .woocommerce .woocommerce-breadcrumb .breadcrumb_last,
  .woocommerce-page .woocommerce-breadcrumb .breadcrumb_last {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .breadcrumb .breadcrumb_last,
  .woocommerce .woocommerce-breadcrumb .breadcrumb_last,
  .woocommerce-page .woocommerce-breadcrumb .breadcrumb_last {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .breadcrumb .breadcrumb_last,
  .woocommerce .woocommerce-breadcrumb .breadcrumb_last,
  .woocommerce-page .woocommerce-breadcrumb .breadcrumb_last {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.breadcrumb .breadcrumb_last,
.woocommerce .woocommerce-breadcrumb .breadcrumb_last,
.woocommerce-page .woocommerce-breadcrumb .breadcrumb_last {
  color: #262930;
  opacity: 1;
}
@media (max-width: 1919px) {
  .breadcrumb,
  .woocommerce .woocommerce-breadcrumb,
  .woocommerce-page .woocommerce-breadcrumb {
    gap: 16px;
  }
}

/**
 * Hero Section Component
 *
 * A prominent hero section with background image, heading, and CTA button.
 * Usage: [hero_section] shortcode
 */
.hero-section {
  position: relative;
  min-height: 400px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 40px;
}
@media (min-width: 1920px) {
  .hero-section {
    min-height: 560px;
    padding-left: 88px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .hero-section {
    min-height: 480px;
    padding-left: 56px;
  }
}
@media (max-width: 991px) {
  .hero-section {
    min-height: 640px;
    padding: 24px;
    padding-bottom: 0;
  }
}

.hero-section__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-section__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
}

.hero-section__tagline {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .hero-section__tagline {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .hero-section__tagline {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .hero-section__tagline {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.hero-section__tagline {
  color: #262930;
  margin: 0 0 24px 0;
  font-weight: var(--fw-regular);
}
@media (max-width: 991px) {
  .hero-section__tagline {
    margin-bottom: 16px;
  }
}

.hero-section__heading {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .hero-section__heading {
    font-size: 48px;
    line-height: 64px;
    letter-spacing: -1px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .hero-section__heading {
    font-size: 36px;
    line-height: 48px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .hero-section__heading {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
.hero-section__heading {
  color: #262930;
  margin: 0 0 40px 0;
  font-weight: var(--fw-bold);
}
@media (max-width: 1919px) and (min-width: 992px) {
  .hero-section__heading {
    margin-bottom: 32px;
  }
}
@media (max-width: 991px) {
  .hero-section__heading {
    margin-bottom: 24px;
  }
}

.hero-section__underlined {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.hero-section__heading .select-underline {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .hero-section__heading .select-underline {
    font-size: 48px;
    line-height: 64px;
    letter-spacing: -1px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .hero-section__heading .select-underline {
    font-size: 36px;
    line-height: 48px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .hero-section__heading .select-underline {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
.hero-section__heading .select-underline {
  min-height: 0;
  height: auto;
  line-height: inherit;
  padding-bottom: 4px;
}
@media (max-width: 1919px) and (min-width: 992px) {
  .hero-section__heading .select-underline {
    padding-bottom: 3px;
  }
}
@media (max-width: 991px) {
  .hero-section__heading .select-underline {
    padding-bottom: 2px;
  }
}
.hero-section__heading .select-underline__dropdown {
  z-index: 110;
}

.hero-section__cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 991px) {
  .hero-section__cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 1920px) {
  .hero-section__heading br {
    display: none;
  }
}
@media (max-width: 991px) {
  .hero-section {
    align-items: flex-start;
    justify-content: center;
  }
  .hero-section__content {
    max-width: 100%;
  }
  .hero-section__heading {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .hero-section__underlined {
    white-space: normal;
  }
}
/**
 * Brand Logos Section
 *
 * Displays brand logos in a horizontal layout.
 * Desktop: Static grid layout (>= 991px)
 * Mobile: Uses generic slider component (< 991px)
 */
.brand-logos {
  width: 100%;
}
.brand-logos__heading {
  text-align: center;
  margin-bottom: 24px;
}
.brand-logos__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) {
  .brand-logos__grid {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .brand-logos__grid {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .brand-logos__grid--desktop {
    display: none;
  }
}
.brand-logos__grid--mobile {
  display: none;
}
@media (max-width: 991px) {
  .brand-logos__grid--mobile {
    display: flex;
    justify-content: center;
  }
}
.brand-logos__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 200px;
}
@media (max-width: 768px) {
  .brand-logos__item {
    max-width: 120px;
  }
}
@media (max-width: 480px) {
  .brand-logos__item {
    max-width: 100px;
  }
}
.brand-logos__image {
  max-width: 100%;
  height: auto;
  display: block;
}
.brand-logos .slider__slide {
  gap: 40px;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .brand-logos .slider__slide {
    gap: 30px;
    padding: 0 15px;
  }
}
@media (max-width: 480px) {
  .brand-logos .slider__slide {
    gap: 20px;
    padding: 0 10px;
  }
}
.brand-logos .slider__slide .brand-logos__item {
  flex: 1 1 0;
  max-width: 150px;
}
@media (max-width: 768px) {
  .brand-logos .slider__slide .brand-logos__item {
    max-width: 120px;
  }
}
@media (max-width: 480px) {
  .brand-logos .slider__slide .brand-logos__item {
    max-width: 100px;
  }
}

/**
 * Product Loop Component
 * 
 * Styles for WooCommerce product loop/grid items
 * Includes responsive layouts for different viewports
 */
.products-grid, .woocommerce-cart .cross-sells ul.products, .woocommerce ul.products {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  padding: 40px 0 32px;
  margin: 0px -32px;
}
@media (max-width: 991px) {
  .products-grid, .woocommerce-cart .cross-sells ul.products, .woocommerce ul.products {
    gap: 24px;
    padding: 24px 16px;
  }
}

.product-card, .woocommerce ul.products li.product {
  flex: 1 1 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
}
@media (max-width: 991px) {
  .product-card, .woocommerce ul.products li.product {
    flex: 0 0 100%;
    flex-direction: row;
    gap: 16px;
    padding-bottom: 32px;
    border-bottom: 1px solid #E4E4E6;
    width: 100%;
    min-width: 100%;
  }
  .product-card:last-child, .woocommerce ul.products li.product:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.product-card:hover .product-card__add-to-cart, .woocommerce ul.products li.product:hover .product-card__add-to-cart {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.product-card:hover .product-card__title-link, .product-card:hover .woocommerce ul.products li.product h2 a, .woocommerce ul.products li.product h2 .product-card:hover a,
.product-card:hover .woocommerce ul.products li.product .woocommerce-loop-product__title a,
.woocommerce ul.products li.product .woocommerce-loop-product__title .product-card:hover a, .woocommerce ul.products li.product:hover .product-card__title-link, .woocommerce ul.products li.product:hover h2 a,
.woocommerce ul.products li.product:hover .woocommerce-loop-product__title a {
  text-decoration: underline;
}

.product-card__image-wrapper, .woocommerce ul.products li.product .woocommerce-loop-product__link {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #E4E4E6;
  border-radius: 8px;
  padding: 1px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .product-card__image-wrapper, .woocommerce ul.products li.product .woocommerce-loop-product__link {
    width: 148px;
    min-width: 148px;
    height: 128px;
  }
}

.product-card__image, .woocommerce ul.products li.product a img {
  width: 100%;
  height: 288px;
  object-fit: contain;
  border-radius: 8px;
  margin: 0;
}
@media (max-width: 1919px) and (min-width: 992px) {
  .product-card__image, .woocommerce ul.products li.product a img {
    height: 184px;
  }
}
@media (max-width: 991px) {
  .product-card__image, .woocommerce ul.products li.product a img {
    height: 100%;
  }
}

.product-card__badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 8px;
  z-index: 2;
}
@media (max-width: 991px) {
  .product-card__badges {
    top: 4px;
    left: 4px;
    gap: 4px;
  }
}

.product-badge, .woocommerce ul.products li.product .onsale {
  padding: 4px 8px;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-weight: var(--fw-semibold);
}
@media (min-width: 1920px) {
  .product-badge, .woocommerce ul.products li.product .onsale {
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .product-badge, .woocommerce ul.products li.product .onsale {
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .product-badge, .woocommerce ul.products li.product .onsale {
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0px;
  }
}
.product-badge, .woocommerce ul.products li.product .onsale {
  text-align: center;
  color: white;
}
.product-badge--sale, .woocommerce ul.products li.product .onsale {
  background: #FF0019;
}
.product-badge--new {
  background: #262930;
}

.product-card__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
@media (max-width: 991px) {
  .product-card__content {
    justify-content: flex-start;
  }
}

.product-card__spacer {
  height: 16px;
}
@media (max-width: 991px) {
  .product-card__spacer {
    display: none;
  }
}

.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.product-card__category {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .product-card__category {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .product-card__category {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .product-card__category {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.product-card__category {
  color: #262930;
}
@media (min-width: 1920px) {
  .product-card__category {
    font-size: 15px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .product-card__category {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  .product-card__category {
    font-size: 15px;
  }
}

.product-card__title, .woocommerce ul.products li.product h2,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  margin: 0;
  line-height: 0;
}

.product-card__title-link, .woocommerce ul.products li.product h2 a,
.woocommerce ul.products li.product .woocommerce-loop-product__title a {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .product-card__title-link, .woocommerce ul.products li.product h2 a,
  .woocommerce ul.products li.product .woocommerce-loop-product__title a {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .product-card__title-link, .woocommerce ul.products li.product h2 a,
  .woocommerce ul.products li.product .woocommerce-loop-product__title a {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .product-card__title-link, .woocommerce ul.products li.product h2 a,
  .woocommerce ul.products li.product .woocommerce-loop-product__title a {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.product-card__title-link, .woocommerce ul.products li.product h2 a,
.woocommerce ul.products li.product .woocommerce-loop-product__title a {
  color: #262930;
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}
@media (max-width: 991px) {
  .product-card__title-link, .woocommerce ul.products li.product h2 a,
  .woocommerce ul.products li.product .woocommerce-loop-product__title a {
    font-family: var(--font-primary);
    font-weight: var(--fw-bold);
  }
}
@media (max-width: 991px) and (min-width: 1920px) {
  .product-card__title-link, .woocommerce ul.products li.product h2 a,
  .woocommerce ul.products li.product .woocommerce-loop-product__title a {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) and (max-width: 1919px) and (min-width: 992px) {
  .product-card__title-link, .woocommerce ul.products li.product h2 a,
  .woocommerce ul.products li.product .woocommerce-loop-product__title a {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .product-card__title-link, .woocommerce ul.products li.product h2 a,
  .woocommerce ul.products li.product .woocommerce-loop-product__title a {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}

.product-card__price-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.product-card__price-wrapper .woocommerce-price-suffix {
  display: none;
}
.product-card__price-wrapper ins {
  text-decoration: none;
  font-weight: 700;
  color: #FF0019;
}
@media (max-width: 991px) {
  .product-card__price-wrapper {
    font-size: 15px;
    line-height: 24px;
  }
}

.product-card__price, .woocommerce ul.products li.product .price {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .product-card__price, .woocommerce ul.products li.product .price {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .product-card__price, .woocommerce ul.products li.product .price {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .product-card__price, .woocommerce ul.products li.product .price {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.product-card__price, .woocommerce ul.products li.product .price {
  color: #262930;
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 991px) {
  .product-card__rating {
    margin-bottom: 12px;
  }
}

.product-card__stars, .woocommerce ul.products li.product .star-rating {
  display: flex;
  gap: 0;
  align-items: center;
}
.product-card__stars svg, .woocommerce ul.products li.product .star-rating svg,
.product-card__stars img,
.woocommerce ul.products li.product .star-rating img {
  width: 20px;
  height: 20px;
}
@media (max-width: 1919px) and (min-width: 992px) {
  .product-card__stars svg, .woocommerce ul.products li.product .star-rating svg,
  .product-card__stars img,
  .woocommerce ul.products li.product .star-rating img {
    width: 16px;
    height: 16px;
  }
}
@media (max-width: 991px) {
  .product-card__stars svg, .woocommerce ul.products li.product .star-rating svg,
  .product-card__stars img,
  .woocommerce ul.products li.product .star-rating img {
    width: 20px;
    height: 20px;
  }
}

.product-card__rating-count {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .product-card__rating-count {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .product-card__rating-count {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .product-card__rating-count {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.product-card__rating-count {
  color: #262930;
  text-decoration: underline;
}
@media (max-width: 1919px) and (min-width: 992px) {
  .product-card__rating-count {
    font-size: 12px;
    line-height: 20px;
  }
}
@media (max-width: 991px) {
  .product-card__rating-count {
    font-size: 12px;
    line-height: 20px;
  }
}

@media (min-width: 992px) {
  .product-card__add-to-cart {
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
}
@media (max-width: 991px) {
  .product-card__add-to-cart {
    margin-top: 0;
  }
}
.product-card__add-to-cart .button {
  width: 100%;
  padding: 18px 32px;
  background: #262930;
  color: white;
  border: none;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .product-card__add-to-cart .button {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .product-card__add-to-cart .button {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .product-card__add-to-cart .button {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
.product-card__add-to-cart .button {
  font-weight: var(--fw-bold);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1919px) and (min-width: 992px) {
  .product-card__add-to-cart .button {
    padding: 18px 24px;
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 991px) {
  .product-card__add-to-cart .button {
    padding: 6px 12px;
    background: transparent;
    color: #262930;
    border: 1px solid #262930;
    font-size: 15px;
    line-height: 24px;
    font-weight: var(--fw-regular);
  }
}
.product-card__add-to-cart .button:hover {
  background: #FF0019;
  color: white;
}
@media (max-width: 991px) {
  .product-card__add-to-cart .button:hover {
    background: #FF0019;
    border-color: #FF0019;
  }
}
.product-card__add-to-cart .button:disabled {
  background: #E4E4E6;
  color: #262930;
  cursor: not-allowed;
  opacity: 0.32;
}

.woocommerce ul.products li.product .button {
  width: 100%;
  padding: 18px 32px;
  background: #262930;
  color: white;
  border: none;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce ul.products li.product .button {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce ul.products li.product .button {
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce ul.products li.product .button {
    font-size: 15px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
.woocommerce ul.products li.product .button {
  font-weight: var(--fw-bold);
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce ul.products li.product .button {
    padding: 18px 24px;
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 991px) {
  .woocommerce ul.products li.product .button {
    padding: 6px 12px;
    background: transparent;
    color: #262930;
    border: 1px solid #262930;
    font-size: 15px;
    line-height: 24px;
    font-weight: var(--fw-regular);
  }
}
.woocommerce ul.products li.product .button:hover {
  background: #FF0019;
  color: white;
}
@media (max-width: 991px) {
  .woocommerce ul.products li.product .button:hover {
    background: #FF0019;
    border-color: #FF0019;
  }
}
.woocommerce ul.products li.product .button:disabled {
  background: #E4E4E6;
  color: #262930;
  cursor: not-allowed;
  opacity: 0.32;
}

/**
 * Product Summary Styles
 * 
 * Comprehensive styling for WooCommerce single product summary section.
 * Includes category display, ratings, price, quantity selector, 
 * stock info, features, and Trustpilot integration.
 */
.woocommerce div.product .product-main-wrapper {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .woocommerce div.product .product-main-wrapper {
    flex-direction: column;
    gap: 32px;
  }
}
.woocommerce div.product .product-gallery-tabs-wrapper {
  flex: 1;
  max-width: 60%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.woocommerce div.product .product-gallery-tabs-wrapper .woocommerce-product-gallery {
  width: 100%;
}
@media (max-width: 991px) {
  .woocommerce div.product .product-gallery-tabs-wrapper .woocommerce-product-gallery {
    order: 1;
    display: none;
  }
  .woocommerce div.product .product-gallery-tabs-wrapper .woocommerce-product-gallery__wrapper {
    height: 100%;
  }
}
@media (max-width: 991px) {
  .woocommerce div.product .product-gallery-tabs-wrapper {
    display: contents;
  }
}
.woocommerce div.product .summary.entry-summary {
  flex: 1;
  max-width: 600px;
  padding-left: 40px;
}
@media (max-width: 991px) {
  .woocommerce div.product .summary.entry-summary {
    max-width: 100%;
    padding-left: 0;
    order: 2;
  }
}
.woocommerce div.product .woocommerce-tabs .toggle-text {
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .woocommerce div.product .woocommerce-tabs {
    order: 3;
  }
}

.product-category {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .product-category {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .product-category {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .product-category {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.product-category {
  color: #5B5E67;
  margin-bottom: 8px;
  display: block;
  text-decoration: none;
}

.woocommerce div.product .product_title {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce div.product .product_title {
    font-size: 32px;
    line-height: 48px;
    letter-spacing: -0.5px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce div.product .product_title {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce div.product .product_title {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
.woocommerce div.product .product_title {
  margin: 0 0 16px;
  color: #262930;
}

.woocommerce div.product .woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}
.woocommerce div.product .woocommerce-product-rating .star-rating {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  line-height: 1;
  color: #FFCC00;
}
.woocommerce div.product .woocommerce-product-rating .star-rating::before {
  content: "★★★★★";
  color: #D8DAE2;
  letter-spacing: 2px;
}
.woocommerce div.product .woocommerce-product-rating .star-rating span {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
}
.woocommerce div.product .woocommerce-product-rating .star-rating span::before {
  content: "★★★★★";
  color: #FFCC00;
  letter-spacing: 2px;
}
.woocommerce div.product .woocommerce-product-rating .rating-number {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce div.product .woocommerce-product-rating .rating-number {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce div.product .woocommerce-product-rating .rating-number {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce div.product .woocommerce-product-rating .rating-number {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce div.product .woocommerce-product-rating .rating-number {
  color: #262930;
  font-weight: var(--fw-bold);
  margin: 0 4px 0 0;
}
.woocommerce div.product .woocommerce-product-rating .woocommerce-review-link {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce div.product .woocommerce-product-rating .woocommerce-review-link {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce div.product .woocommerce-product-rating .woocommerce-review-link {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce div.product .woocommerce-product-rating .woocommerce-review-link {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce div.product .woocommerce-product-rating .woocommerce-review-link {
  color: #5B5E67;
  text-decoration: none;
  transition: color 0.2s ease;
}
.woocommerce div.product .woocommerce-product-rating .woocommerce-review-link:hover {
  color: #FF0019;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce div.product .woocommerce-product-details__short-description {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce div.product .woocommerce-product-details__short-description {
  color: #5B5E67;
  margin-bottom: 24px;
}
.woocommerce div.product .woocommerce-product-details__short-description p {
  margin: 0 0 1em;
}
.woocommerce div.product .woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
}

.woocommerce div.product p.price {
  margin-bottom: 8px;
}
.woocommerce div.product p.price .woocommerce-Price-amount {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce div.product p.price .woocommerce-Price-amount {
    font-size: 40px;
    line-height: 56px;
    letter-spacing: -1px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce div.product p.price .woocommerce-Price-amount {
    font-size: 32px;
    line-height: 48px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce div.product p.price .woocommerce-Price-amount {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
.woocommerce div.product p.price .woocommerce-Price-amount {
  color: #262930;
  font-weight: var(--fw-bold);
}
.woocommerce div.product p.price .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
  font-weight: inherit;
}
.woocommerce div.product p.price del .woocommerce-Price-amount {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce div.product p.price del .woocommerce-Price-amount {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce div.product p.price del .woocommerce-Price-amount {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce div.product p.price del .woocommerce-Price-amount {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce div.product p.price del .woocommerce-Price-amount {
  color: #8A8C95;
  font-weight: var(--fw-regular);
}
.woocommerce div.product p.price ins {
  text-decoration: none;
  background: none;
}
.woocommerce div.product .price-suffix {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce div.product .price-suffix {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce div.product .price-suffix {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce div.product .price-suffix {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.woocommerce div.product .price-suffix {
  color: #5B5E67;
  margin-bottom: 24px;
  display: block;
}
.woocommerce div.product .price-suffix a {
  color: #262930;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.woocommerce div.product .price-suffix a:hover {
  color: #FF0019;
}

.woocommerce div.product form.cart {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.woocommerce div.product form.cart .quantity {
  height: 56px;
}
.woocommerce div.product form.cart .single_add_to_cart_button {
  height: 56px;
  width: auto;
}
.woocommerce div.product form.cart .variations {
  margin-bottom: 24px;
}
.woocommerce div.product form.cart .variations .label {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce div.product form.cart .variations .label {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce div.product form.cart .variations .label {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce div.product form.cart .variations .label {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.woocommerce div.product form.cart .variations .label {
  color: #262930;
  display: block;
  margin-bottom: 8px;
}
.woocommerce div.product form.cart .variations select {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce div.product form.cart .variations select {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce div.product form.cart .variations select {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce div.product form.cart .variations select {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce div.product form.cart .variations select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E4E4E6;
  border-radius: 4px;
  background: white;
  color: #262930;
  cursor: pointer;
}
.woocommerce div.product form.cart .variations select:focus {
  outline: none;
  border-color: #1C1C1C;
}

.product-stock-info {
  margin-bottom: 24px;
}
.product-stock-info .stock-status {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .product-stock-info .stock-status {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .product-stock-info .stock-status {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .product-stock-info .stock-status {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.product-stock-info .stock-status {
  color: #262930;
  display: block;
  margin-bottom: 4px;
}
.product-stock-info .recent-purchases {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .product-stock-info .recent-purchases {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .product-stock-info .recent-purchases {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .product-stock-info .recent-purchases {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.product-stock-info .recent-purchases {
  color: #5B5E67;
  display: block;
}

.woocommerce div.product p.stock {
  display: none;
}

.product-features {
  margin-bottom: 32px;
  padding: 16px 24px;
  background-color: #F7F9FB;
  border: 1px solid #F0F1F5;
  border-radius: 8px;
}
.product-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.product-features .feature-item:last-child {
  margin-bottom: 0;
}
.product-features .feature-item .feature-text {
  margin: 0;
}

.product-trustpilot {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #E4E4E6;
}
.product-trustpilot .trustpilot-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.product-trustpilot .trustpilot-header .trustpilot-rating {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .product-trustpilot .trustpilot-header .trustpilot-rating {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .product-trustpilot .trustpilot-header .trustpilot-rating {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .product-trustpilot .trustpilot-header .trustpilot-rating {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.product-trustpilot .trustpilot-header .trustpilot-rating {
  color: #262930;
  font-weight: var(--fw-bold);
  margin: 0;
}
.product-trustpilot .trustpilot-header .trustpilot-label {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .product-trustpilot .trustpilot-header .trustpilot-label {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .product-trustpilot .trustpilot-header .trustpilot-label {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .product-trustpilot .trustpilot-header .trustpilot-label {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.product-trustpilot .trustpilot-header .trustpilot-label {
  color: #5B5E67;
  margin: 0;
}
.product-trustpilot .trustpilot-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-trustpilot .trustpilot-stars .star {
  color: #2AC769;
  font-size: 20px;
}
.product-trustpilot .trustpilot-stars .star.star-empty {
  color: #D8DAE2;
}
.product-trustpilot .trustpilot-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.product-trustpilot .trustpilot-logo svg,
.product-trustpilot .trustpilot-logo img {
  height: 24px;
  width: auto;
}
.product-trustpilot .trustpilot-widget {
  margin-top: 16px;
}

.woocommerce div.product .product_meta {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce div.product .product_meta {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce div.product .product_meta {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce div.product .product_meta {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.woocommerce div.product .product_meta {
  color: #5B5E67;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #E4E4E6;
}
.woocommerce div.product .product_meta > span {
  display: block;
  margin-bottom: 8px;
}
.woocommerce div.product .product_meta > span:last-child {
  margin-bottom: 0;
}
.woocommerce div.product .product_meta .sku_wrapper,
.woocommerce div.product .product_meta .posted_in,
.woocommerce div.product .product_meta .tagged_as {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce div.product .product_meta .sku_wrapper,
  .woocommerce div.product .product_meta .posted_in,
  .woocommerce div.product .product_meta .tagged_as {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce div.product .product_meta .sku_wrapper,
  .woocommerce div.product .product_meta .posted_in,
  .woocommerce div.product .product_meta .tagged_as {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce div.product .product_meta .sku_wrapper,
  .woocommerce div.product .product_meta .posted_in,
  .woocommerce div.product .product_meta .tagged_as {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.woocommerce div.product .product_meta .sku_wrapper .sku,
.woocommerce div.product .product_meta .sku_wrapper a,
.woocommerce div.product .product_meta .posted_in .sku,
.woocommerce div.product .product_meta .posted_in a,
.woocommerce div.product .product_meta .tagged_as .sku,
.woocommerce div.product .product_meta .tagged_as a {
  color: #262930;
  text-decoration: none;
  font-weight: var(--fw-medium);
}
.woocommerce div.product .product_meta .sku_wrapper .sku:hover,
.woocommerce div.product .product_meta .sku_wrapper a:hover,
.woocommerce div.product .product_meta .posted_in .sku:hover,
.woocommerce div.product .product_meta .posted_in a:hover,
.woocommerce div.product .product_meta .tagged_as .sku:hover,
.woocommerce div.product .product_meta .tagged_as a:hover {
  color: #FF0019;
}

@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce div.product .product-main-wrapper {
    gap: 32px;
  }
  .woocommerce div.product .summary.entry-summary {
    max-width: 500px;
  }
  .woocommerce div.product form.cart .quantity .qty-btn {
    width: 44px;
    height: 44px;
  }
  .woocommerce div.product form.cart .quantity .qty,
  .woocommerce div.product form.cart .quantity .input-text.qty {
    width: 56px;
    height: 44px;
  }
}
@media (max-width: 991px) {
  .woocommerce div.product .woocommerce-product-rating {
    flex-wrap: wrap;
    gap: 8px;
  }
  .woocommerce div.product .woocommerce-product-rating .star-rating {
    font-size: 16px;
  }
  .woocommerce div.product form.cart .quantity {
    width: 100%;
    justify-content: space-between;
    margin-right: 0;
    margin-bottom: 16px;
  }
  .woocommerce div.product form.cart .quantity .qty-btn {
    width: 40px;
    height: 40px;
  }
  .woocommerce div.product form.cart .quantity .qty,
  .woocommerce div.product form.cart .quantity .input-text.qty {
    flex: 1;
    width: auto;
    height: 40px;
  }
  .product-features {
    margin-bottom: 24px;
  }
  .product-features .feature-item {
    gap: 8px;
  }
}
.woocommerce div.product .woocommerce-product-gallery {
  width: 100%;
}
.woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
  margin-bottom: 16px;
}
.woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__image {
  border-radius: 8px;
  overflow: hidden;
}
.woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  display: block;
}
.woocommerce div.product .woocommerce-product-gallery .flex-control-nav-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 80px;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 488px;
  margin-bottom: 8px;
}
@media (max-width: 1919px) {
  .woocommerce div.product .woocommerce-product-gallery .flex-control-nav-wrapper {
    height: 48px;
    width: 302px;
  }
}
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  height: 100%;
}
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs::-webkit-scrollbar {
  display: none;
}
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs li {
  flex: 0 0 auto;
  width: 25%;
  height: 100%;
}
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 3px solid transparent;
}
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs li img:hover {
  transform: scale(1.02);
}
.woocommerce div.product .woocommerce-product-gallery .flex-control-thumbs li.flex-active-slide img {
  border-color: #FF0019;
}
.woocommerce div.product .woocommerce-product-gallery .thumb-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  transition: background-color 0.2s ease;
  z-index: 2;
}
.woocommerce div.product .woocommerce-product-gallery .thumb-nav-btn--prev {
  left: -5%;
}
.woocommerce div.product .woocommerce-product-gallery .thumb-nav-btn--next {
  right: -5%;
}

.woocommerce div.product .product-gallery-desktop {
  display: block;
}
@media (max-width: 991px) {
  .woocommerce div.product .product-gallery-desktop {
    display: none;
  }
}
.woocommerce div.product .product-gallery-mobile {
  display: none;
}
@media (max-width: 991px) {
  .woocommerce div.product .product-gallery-mobile {
    display: block;
  }
}

.product-gallery-mobile {
  width: 100%;
}
.product-gallery-mobile__slider {
  width: 100%;
}
.product-gallery-mobile__slide {
  width: 100%;
}
.product-gallery-mobile__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.product-gallery-mobile .slider__track {
  border-radius: 8px;
  overflow: hidden;
}
.product-gallery-mobile .slider__slide {
  border-radius: 8px;
}
.product-gallery-mobile .slider__navigation {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.woocommerce div.product .onsale {
  font-family: var(--font-primary);
  font-weight: var(--fw-semibold);
}
@media (min-width: 1920px) {
  .woocommerce div.product .onsale {
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce div.product .onsale {
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce div.product .onsale {
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0px;
  }
}
.woocommerce div.product .onsale {
  background: #FF0019;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
  font-weight: var(--fw-semibold);
  min-height: fit-content;
}

.woocommerce div.product form.cart .single_add_to_cart_button.loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}
.woocommerce div.product form.cart .single_add_to_cart_button.loading::after {
  content: "";
  position: absolute;
  right: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .woocommerce div.product form.cart .single_add_to_cart_button.loading::after {
    animation: none;
  }
  * {
    transition: none !important;
  }
}
@media print {
  .product-features,
  .product-trustpilot,
  .woocommerce div.product form.cart .single_add_to_cart_button {
    display: none;
  }
  .woocommerce div.product {
    display: block;
  }
  .woocommerce div.product .product-main-wrapper {
    display: block;
  }
  .woocommerce div.product .product-gallery-tabs-wrapper {
    max-width: 100%;
    page-break-inside: avoid;
  }
  .woocommerce div.product .woocommerce-product-gallery {
    max-width: 100%;
    page-break-inside: avoid;
  }
  .woocommerce div.product .summary.entry-summary {
    max-width: 100%;
    page-break-inside: avoid;
  }
}
/**
 * Shop Layout Component
 * 
 * Two-column layout for WooCommerce shop pages
 * Uses grid system from _grid.scss
 */
.woocommerce .products ul::after, .woocommerce .products ul::before, .woocommerce ul.products::after, .woocommerce ul.products::before {
  content: none;
}

.shop-layout {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .shop-layout {
    flex-direction: column;
    margin-top: 24px;
    align-items: unset;
  }
}

.shop-layout__sidebar {
  width: 411px;
  flex-shrink: 0;
}
@media (max-width: 1919px) and (min-width: 992px) {
  .shop-layout__sidebar {
    width: 320px;
  }
}
@media (max-width: 991px) and (min-width: 992px) {
  .shop-layout__sidebar {
    width: 100%;
    order: 2;
    margin-top: 40px;
  }
}
@media (max-width: 991px) {
  .shop-layout__sidebar {
    position: absolute;
    width: 0;
    height: 0;
    overflow: visible;
    margin: 0;
  }
}

.shop-layout__main {
  flex: 1;
  min-width: 0;
}

.shop-controls {
  margin-bottom: 16px;
}
.shop-controls__wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 991px) {
  .shop-controls__wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

.woocommerce-result-count {
  margin: 0;
  color: #262930;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 991px) {
  .woocommerce-result-count {
    font-size: 15px;
    line-height: 24px;
  }
}

.woocommerce-ordering {
  margin: 0;
}
.woocommerce-ordering select {
  width: 264px;
  padding: 12px 16px;
  background: white;
  border: 1px solid #E4E4E6;
  border-radius: 4px;
  color: #262930;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 32px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%23262930' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}
@media (max-width: 991px) {
  .woocommerce-ordering select {
    width: 100%;
    font-size: 15px;
    line-height: 24px;
  }
}
.woocommerce-ordering select:focus {
  outline: 2px solid #FF0019;
  outline-offset: 2px;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 32px;
  row-gap: 80px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) {
  .woocommerce ul.products {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 0;
  }
}

.shop-pagination {
  margin-top: 80px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .shop-pagination {
    margin-top: 40px;
  }
}

.shop-info-container {
  display: flex;
  gap: 32px;
}
@media (max-width: 991px) {
  .shop-info-container {
    flex-direction: column;
  }
}
.shop-info-container .shop-long-description {
  padding: 64px 0;
}
@media (max-width: 991px) {
  .shop-info-container .shop-long-description {
    padding: 40px 0;
  }
}
.shop-info-container .shop-long-description__content {
  width: 411px;
}
@media (max-width: 991px) {
  .shop-info-container .shop-long-description__content {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }
}
.shop-info-container .shop-long-description__title {
  flex-shrink: 0;
  margin: 0 0 40px 0;
  color: #262930;
  font-size: 40px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 56px;
}
@media (max-width: 1919px) and (min-width: 992px) {
  .shop-info-container .shop-long-description__title {
    width: 320px;
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 991px) {
  .shop-info-container .shop-long-description__title {
    width: 100%;
    font-size: 32px;
    line-height: 40px;
  }
}
.shop-info-container .shop-long-description__text {
  flex: 1;
  color: #262930;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 28px;
}
.shop-info-container .shop-long-description__text p {
  margin: 0 0 1em 0;
}
.shop-info-container .shop-long-description__text p:last-child {
  margin-bottom: 0;
}
.shop-info-container .shop-long-description__text a {
  color: #262930;
  text-decoration: underline;
}
.shop-info-container .shop-long-description__text a:hover {
  color: #FF0019;
}
@media (max-width: 991px) {
  .shop-info-container .shop-long-description__text {
    font-size: 15px;
    line-height: 24px;
  }
}

.woocommerce-no-products-found,
.woocommerce-info {
  padding: 40px;
  background: #F7F9FB;
  border-radius: 8px;
  text-align: center;
  color: #262930;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 28px;
  margin: 0 0 40px 0;
}
@media (max-width: 991px) {
  .woocommerce-no-products-found,
  .woocommerce-info {
    padding: 24px;
    font-size: 15px;
    line-height: 24px;
  }
}

/**
 * Shop Sidebar Component
 * 
 * Styles for the shop sidebar including:
 * - Bird categories list
 * - Filter sections
 * - Trustpilot widget
 */
.shop-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shop-sidebar__birds {
  margin-bottom: 24px;
}

.shop-sidebar__section {
  padding: 32px;
  background: #F7F9FB;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shop-sidebar__bird-item {
  display: flex;
  align-items: flex-start;
  padding: 8px 0;
  text-decoration: none;
  transition: all 0.2s ease;
}
.shop-sidebar__bird-item:hover .shop-sidebar__bird-name {
  text-decoration: underline;
}
.shop-sidebar__bird-item.active .shop-sidebar__bird-name {
  color: #FF0019;
}

.shop-sidebar__bird-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 8px;
}

.shop-sidebar__bird-name {
  flex: 1;
  color: #262930;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 24px;
  transition: color 0.2s ease;
}

.shop-sidebar__bird-count {
  padding: 2px 4px;
  background: white;
  border-radius: 48px;
  color: #262930;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 16px;
  text-align: center;
  min-width: 16px;
}

.shop-sidebar__filters {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shop-sidebar__filters .shop-widget {
  padding: 32px;
  background: #F7F9FB;
  border-radius: 8px;
}
.shop-sidebar__filters .shop-widget-title {
  margin: 0 0 24px 0;
  color: #262930;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 24px;
}

.shop-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  user-select: none;
}
.shop-filter-header__title {
  flex: 1;
  margin: 0;
  color: #262930;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 24px;
}
.shop-filter-header__toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.shop-filter-header__toggle svg {
  width: 16px;
  height: 16px;
  stroke: #262930;
  transition: transform 0.2s ease;
}
.shop-filter-header.collapsed .shop-filter-header__toggle svg {
  transform: rotate(-90deg);
}

.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item {
  margin: 0;
  padding: 0;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  text-decoration: none;
  color: #262930;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 20px;
  transition: color 0.2s ease;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a:hover {
  color: #FF0019;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 1px solid #E4E4E6;
  border-radius: 4px;
  background: white;
  flex-shrink: 0;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.chosen a, .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.woocommerce-widget-layered-nav-list__item--chosen a {
  font-weight: 500;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.chosen a::before, .woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item.woocommerce-widget-layered-nav-list__item--chosen a::before {
  background: #FF0019;
  border-color: #FF0019;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6L5 9L10 3' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.woocommerce-widget-layered-nav .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item .count {
  padding: 2px 4px;
  background: white;
  border-radius: 48px;
  color: #262930;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  line-height: 16px;
  min-width: 16px;
  text-align: center;
}

.shop-sidebar__clear-filters {
  margin-top: 16px;
}
.shop-sidebar__clear-filters a {
  display: inline-block;
  color: #262930;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-decoration: underline;
  line-height: 24px;
  transition: color 0.2s ease;
}
.shop-sidebar__clear-filters a:hover {
  color: #FF0019;
}

.shop-filter-toggle {
  display: none;
}
@media (max-width: 991px) {
  .shop-filter-toggle {
    display: flex;
  }
}
.shop-filter-toggle__badge {
  position: absolute;
  top: -12px;
  right: -12px;
  background: #262930;
  color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  width: 24px;
  height: 24px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.shop-controls__filters {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.shop-controls__filters .shop-controls__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .shop-controls__filters .shop-controls__actions {
    gap: 12px;
  }
}

.shop-sidebar-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
@media (max-width: 991px) {
  .shop-sidebar-backdrop {
    display: block;
  }
}
.shop-sidebar-backdrop.is-visible {
  pointer-events: auto;
}

.shop-sidebar__filters-header {
  display: flex;
  justify-content: space-between;
}
.shop-sidebar__filters-header .shop-sidebar__close {
  height: fit-content;
  display: none;
}
@media (max-width: 991px) {
  .shop-sidebar__filters-header .shop-sidebar__close {
    display: block;
  }
}

@media (max-width: 991px) {
  .shop-sidebar {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    background: #F7F9FB;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    padding: 24px;
  }
  .shop-sidebar.is-open {
    transform: translateX(0);
  }
  body.sidebar-shop-open {
    overflow: hidden;
  }
  .shop-sidebar__birds,
  .shop-sidebar__filters {
    margin-bottom: 24px;
  }
  .shop-sidebar__section {
    padding: 0;
  }
  .shop-sidebar__filters .shop-widget {
    padding: 16px 0;
    border-bottom: 1px solid #F0F1F5;
  }
  .shop-sidebar__filters .shop-widget:last-child {
    border-bottom: none;
  }
}
@media (max-width: 991px) and (min-width: 992px) {
  .shop-sidebar__section {
    padding: 24px;
  }
  .shop-sidebar__filters .shop-widget {
    padding: 24px;
  }
}
/**
 * Shop Header Component
 * 
 * Styles for the shop page header section including:
 * - Page title (category/tag name)
 * - Short description
 */
.shop-header {
  margin-bottom: 40px;
  max-width: 1004px;
}
@media (max-width: 991px) {
  .shop-header {
    margin-bottom: 24px;
  }
}
.shop-header__title, .woocommerce-products-header .woocommerce-products-header__title {
  margin: 0 0 40px 0;
  color: #262930;
  font-size: 48px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 64px;
}
@media (max-width: 991px) {
  .shop-header__title, .woocommerce-products-header .woocommerce-products-header__title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 24px;
  }
}
.shop-header__description {
  color: #262930;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 991px) {
  .shop-header__description {
    font-size: 15px;
    line-height: 24px;
  }
}
.shop-header__description p {
  margin: 0 0 1em 0;
}
.shop-header__description p:last-child {
  margin-bottom: 0;
}
.shop-header__description a {
  color: #262930;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.shop-header__description a:hover {
  color: #FF0019;
}
.shop-header__description .read-more-link {
  display: inline;
  color: #262930;
  text-decoration: underline;
  font-weight: 400;
}
.shop-header__description .read-more-link:hover {
  color: #FF0019;
}

.woocommerce-products-header {
  margin: 0;
  padding: 0;
}
.woocommerce-products-header .term-description {
  color: #262930;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 991px) {
  .woocommerce-products-header .term-description {
    font-size: 15px;
    line-height: 24px;
  }
}
.woocommerce-products-header .term-description p {
  margin: 0 0 1em 0;
}
.woocommerce-products-header .term-description p:last-child {
  margin-bottom: 0;
}
.woocommerce-products-header .term-description a {
  color: #262930;
  text-decoration: underline;
}
.woocommerce-products-header .term-description a:hover {
  color: #FF0019;
}
.woocommerce-products-header .woocommerce-breadcrumb {
  display: none;
}

.page-title {
  margin: 0 0 40px 0;
  color: #262930;
  font-size: 48px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 64px;
}
@media (max-width: 991px) {
  .page-title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 24px;
  }
}

/**
 * Accordion Component
 * 
 * Reusable accordion/collapsible component for FAQ sections
 */
.accordion {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.accordion-item {
  background: #F7F9FB;
  border-radius: 8px;
  overflow: hidden;
}
.accordion-item.is-open .accordion-item__header-icon {
  transform: rotate(0deg);
}
.accordion-item.is-open .accordion-item__content {
  max-height: 1000px;
  opacity: 1;
  padding-top: 24px;
}

.accordion-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s ease, border-radius 0.3s ease;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
  border-radius: 8px;
}
.accordion-item__header:hover {
  background: #FF0019;
}
.accordion-item__header:hover .accordion-item__title {
  color: white;
}
.accordion-item__header:hover .accordion-item__header-icon svg {
  stroke: white;
}
@media (max-width: 991px) {
  .accordion-item__header {
    padding: 20px 16px;
  }
}

.accordion-item__title {
  flex: 1;
  margin: 0;
  color: #262930;
  font-size: 21px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 32px;
  text-align: left;
}
@media (max-width: 991px) {
  .accordion-item__title {
    font-size: 18px;
    line-height: 28px;
  }
}

.accordion-item__header-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  transform: rotate(180deg);
}
.accordion-item__header-icon svg {
  width: 16px;
  height: 16px;
  stroke: #262930;
  stroke-width: 1.5px;
  transition: stroke 0.3s ease;
}
@media (max-width: 991px) {
  .accordion-item__header-icon {
    width: 24px;
    height: 24px;
  }
  .accordion-item__header-icon svg {
    width: 12px;
    height: 12px;
  }
}

.accordion-item__content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 24px 24px;
}
.accordion-item__content-inner {
  color: #262930;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 991px) {
  .accordion-item__content-inner {
    font-size: 15px;
    line-height: 24px;
  }
}
.accordion-item__content-inner p {
  margin: 0 0 1em 0;
}
.accordion-item__content-inner p:last-child {
  margin-bottom: 0;
}
.accordion-item__content-inner a:not(.mega-menu-category-item) {
  color: #262930;
  text-decoration: underline;
}
.accordion-item__content-inner a:not(.mega-menu-category-item):hover {
  color: #FF0019;
}
.accordion-item__content-inner ul,
.accordion-item__content-inner ol {
  margin: 1em 0;
  padding-left: 1.5em;
}
.accordion-item__content-inner li {
  margin-bottom: 0.5em;
}
@media (max-width: 991px) {
  .accordion-item__content {
    padding: 0 16px 24px;
  }
}

.faq-section {
  padding: 64px 0;
  width: 100%;
}
@media (max-width: 991px) {
  .faq-section {
    padding: 40px 0;
  }
}
.faq-section__wrapper {
  display: flex;
  gap: 32px;
}
@media (max-width: 991px) {
  .faq-section__wrapper {
    flex-direction: column;
    gap: 24px;
  }
}
.faq-section__title-container {
  flex-shrink: 0;
  width: 411px;
}
@media (max-width: 1919px) and (min-width: 992px) {
  .faq-section__title-container {
    width: 320px;
  }
}
@media (max-width: 991px) {
  .faq-section__title-container {
    width: 100%;
  }
}
.faq-section__title {
  margin: 0;
  color: #262930;
  font-size: 40px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 56px;
}
@media (max-width: 1919px) {
  .faq-section__title {
    font-size: 32px;
    line-height: 40px;
  }
}
.faq-section__content {
  flex: 1;
}
.faq-section__button {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 24px 48px 24px 28px;
  background: #262930;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.faq-section__button:hover {
  background: #FF0019;
}
.faq-section__button svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}
@media (max-width: 991px) {
  .faq-section__button {
    justify-content: center;
    padding: 20px 24px;
    font-size: 15px;
    line-height: 20px;
    margin-top: 24px;
  }
}

/**
 * Testimonials Component
 * 
 * Customer testimonials/reviews section for shop pages
 */
.testimonials-section {
  padding: 64px 0;
}
@media (max-width: 991px) {
  .testimonials-section {
    padding: 40px 0;
  }
}

.testimonials-header {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .testimonials-header {
    margin-bottom: 24px;
  }
}
.testimonials-header__title {
  margin: 0 0 40px 0;
  color: #262930;
  font-size: 40px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 56px;
}
@media (max-width: 991px) {
  .testimonials-header__title {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 24px;
  }
}
.testimonials-header__trustpilot {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .testimonials-header__trustpilot {
    margin-bottom: 24px;
  }
}
.testimonials-header__rating-text {
  color: black;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 24px;
}
.testimonials-header__rating-score {
  color: black;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  line-height: 24px;
}
.testimonials-header__rating-score strong {
  font-weight: 700;
}
.testimonials-header__trustpilot-logo {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: black;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 24px;
}
.testimonials-header__trustpilot-logo .trustpilot-icon {
  width: 18px;
  height: 18px;
  background: #219653;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 1919px) and (min-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: 48px;
  background: white;
  border: 1px solid #E4E4E6;
  border-radius: 8px;
}
@media (max-width: 991px) {
  .testimonial-card {
    padding: 32px 24px;
  }
}
.testimonial-card__content {
  flex: 1;
  margin-bottom: 32px;
}
.testimonial-card__text {
  margin: 0;
  color: #262930;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 991px) {
  .testimonial-card__text {
    font-size: 15px;
    line-height: 24px;
  }
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 40px;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonial-card__author-info {
  flex: 1;
}
.testimonial-card__author-name {
  margin: 0;
  color: #262930;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 991px) {
  .testimonial-card__author-name {
    font-size: 15px;
    line-height: 24px;
  }
}

.testimonials-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .testimonials-slider-controls {
    margin-top: 24px;
  }
}
.testimonials-slider-controls__button {
  width: 48px;
  height: 48px;
  padding: 16px;
  background: #F7F9FB;
  border: 1px solid #E4E4E6;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.testimonials-slider-controls__button:hover:not(:disabled) {
  background: #F0F1F5;
}
.testimonials-slider-controls__button:disabled {
  opacity: 0.32;
  cursor: not-allowed;
}
.testimonials-slider-controls__button svg {
  width: 24px;
  height: 24px;
  stroke: #262930;
  stroke-width: 1.5px;
}
.testimonials-slider-controls__count {
  color: #262930;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 28px;
}

@media (max-width: 767px) {
  .testimonials-grid {
    position: relative;
    overflow: hidden;
  }
  .testimonials-grid.slider-enabled {
    display: flex;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .testimonials-grid.slider-enabled::-webkit-scrollbar {
    display: none;
  }
  .testimonials-grid.slider-enabled .testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}
.testimonial-stars svg {
  width: 20px;
  height: 20px;
}
.testimonial-stars svg.filled {
  fill: #FFD700;
}
.testimonial-stars svg.empty {
  fill: #E0E0E0;
}

/**
 * Pagination Component
 * 
 * Styles for WooCommerce product pagination
 */
body.woocommerce nav.woocommerce-pagination,
body.woocommerce-page nav.woocommerce-pagination {
  margin: 0;
}
body.woocommerce nav.woocommerce-pagination ul.page-numbers,
body.woocommerce-page nav.woocommerce-pagination ul.page-numbers {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  border: none;
}
body.woocommerce nav.woocommerce-pagination ul.page-numbers::before,
body.woocommerce-page nav.woocommerce-pagination ul.page-numbers::before {
  content: none;
}
body.woocommerce nav.woocommerce-pagination ul.page-numbers li,
body.woocommerce-page nav.woocommerce-pagination ul.page-numbers li {
  border: none;
}
@media (max-width: 991px) {
  body.woocommerce nav.woocommerce-pagination ul.page-numbers,
  body.woocommerce-page nav.woocommerce-pagination ul.page-numbers {
    justify-content: center;
  }
}
body.woocommerce .page-numbers li,
body.woocommerce-page .page-numbers li {
  margin: 0;
  padding: 0;
}
body.woocommerce .page-numbers a.page-numbers,
body.woocommerce .page-numbers span.page-numbers,
body.woocommerce-page .page-numbers a.page-numbers,
body.woocommerce-page .page-numbers span.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  padding: 0;
  background: #F7F9FB;
  border: 1px solid #E4E4E6;
  border-radius: 4px;
  color: #262930;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  transition: all 0.2s ease;
}
@media (max-width: 991px) {
  body.woocommerce .page-numbers a.page-numbers,
  body.woocommerce .page-numbers span.page-numbers,
  body.woocommerce-page .page-numbers a.page-numbers,
  body.woocommerce-page .page-numbers span.page-numbers {
    min-width: 48px;
    height: 48px;
    padding: 12px;
    font-size: 15px;
    line-height: 20px;
  }
}
body.woocommerce .page-numbers a.page-numbers:hover,
body.woocommerce-page .page-numbers a.page-numbers:hover {
  background: #F0F1F5;
}
body.woocommerce .page-numbers span.page-numbers.current,
body.woocommerce-page .page-numbers span.page-numbers.current {
  background: #FF0019;
  border-color: #FF0019;
  color: white;
}
body.woocommerce .page-numbers span.page-numbers.dots,
body.woocommerce-page .page-numbers span.page-numbers.dots {
  background: transparent;
  border: none;
  pointer-events: none;
}
body.woocommerce .page-numbers a.prev,
body.woocommerce .page-numbers a.next,
body.woocommerce-page .page-numbers a.prev,
body.woocommerce-page .page-numbers a.next {
  border: none;
  background: transparent;
}
body.woocommerce .page-numbers a.prev svg,
body.woocommerce .page-numbers a.next svg,
body.woocommerce-page .page-numbers a.prev svg,
body.woocommerce-page .page-numbers a.next svg {
  width: 24px;
  height: 24px;
  display: block;
}
body.woocommerce .page-numbers a.prev svg path,
body.woocommerce .page-numbers a.next svg path,
body.woocommerce-page .page-numbers a.prev svg path,
body.woocommerce-page .page-numbers a.next svg path {
  stroke: #262930;
  transition: stroke 0.2s ease;
}
body.woocommerce .page-numbers a.prev:hover, body.woocommerce .page-numbers a.prev:focus,
body.woocommerce .page-numbers a.next:hover,
body.woocommerce .page-numbers a.next:focus,
body.woocommerce-page .page-numbers a.prev:hover,
body.woocommerce-page .page-numbers a.prev:focus,
body.woocommerce-page .page-numbers a.next:hover,
body.woocommerce-page .page-numbers a.next:focus {
  background: transparent;
}
body.woocommerce .page-numbers a.prev:hover svg path, body.woocommerce .page-numbers a.prev:focus svg path,
body.woocommerce .page-numbers a.next:hover svg path,
body.woocommerce .page-numbers a.next:focus svg path,
body.woocommerce-page .page-numbers a.prev:hover svg path,
body.woocommerce-page .page-numbers a.prev:focus svg path,
body.woocommerce-page .page-numbers a.next:hover svg path,
body.woocommerce-page .page-numbers a.next:focus svg path {
  stroke: #FF0019;
}

.pagination {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) {
  .pagination {
    justify-content: center;
  }
}
.pagination__item {
  margin: 0;
  padding: 0;
}
.pagination__link, .pagination__current {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  padding: 0;
  background: #F7F9FB;
  border: 1px solid #E4E4E6;
  border-radius: 4px;
  color: #262930;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 24px;
  text-decoration: none;
  transition: all 0.2s ease;
}
@media (max-width: 991px) {
  .pagination__link, .pagination__current {
    min-width: 48px;
    height: 48px;
    padding: 12px;
    font-size: 15px;
    line-height: 20px;
  }
}
.pagination__link:hover, .pagination__current:hover {
  background: #F0F1F5;
}
.pagination__current {
  background: #FF0019;
  border-color: #FF0019;
  color: white;
}
.pagination__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  padding: 0;
  color: #262930;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 24px;
}
.pagination__arrow svg {
  width: 24px;
  height: 24px;
  display: block;
}
.pagination__arrow svg path {
  stroke: #262930;
  transition: stroke 0.2s ease;
}
.pagination__arrow:hover svg path {
  stroke: #FF0019;
}

.pagination-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #E4E4E6;
}
@media (max-width: 991px) {
  .pagination-info {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
.pagination-info__text {
  color: #262930;
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 28px;
}
@media (max-width: 991px) {
  .pagination-info__text {
    font-size: 15px;
    line-height: 24px;
  }
}

/**
 * Table Styles
 * 
 * Comprehensive styling for all WooCommerce and WordPress tables
 * Following the Birdbusters design system
 */
.woocommerce table,
.woocommerce .shop_table,
.woocommerce .woocommerce-table,
.woocommerce .woocommerce-orders-table,
.woocommerce .woocommerce-MyAccount-orders,
.woocommerce .shop_table_responsive,
.woocommerce .my_account_orders,
.woocommerce .account-orders-table,
.woocommerce .woocommerce-checkout-review-order-table,
table.shop_table,
table.woocommerce-table,
table.woocommerce-orders-table,
table.woocommerce-MyAccount-orders,
table.shop_table_responsive,
table.my_account_orders,
table.account-orders-table,
table.woocommerce-checkout-review-order-table,
.wp-list-table,
.widefat {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 24px 0;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce table,
  .woocommerce .shop_table,
  .woocommerce .woocommerce-table,
  .woocommerce .woocommerce-orders-table,
  .woocommerce .woocommerce-MyAccount-orders,
  .woocommerce .shop_table_responsive,
  .woocommerce .my_account_orders,
  .woocommerce .account-orders-table,
  .woocommerce .woocommerce-checkout-review-order-table,
  table.shop_table,
  table.woocommerce-table,
  table.woocommerce-orders-table,
  table.woocommerce-MyAccount-orders,
  table.shop_table_responsive,
  table.my_account_orders,
  table.account-orders-table,
  table.woocommerce-checkout-review-order-table,
  .wp-list-table,
  .widefat {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce table,
  .woocommerce .shop_table,
  .woocommerce .woocommerce-table,
  .woocommerce .woocommerce-orders-table,
  .woocommerce .woocommerce-MyAccount-orders,
  .woocommerce .shop_table_responsive,
  .woocommerce .my_account_orders,
  .woocommerce .account-orders-table,
  .woocommerce .woocommerce-checkout-review-order-table,
  table.shop_table,
  table.woocommerce-table,
  table.woocommerce-orders-table,
  table.woocommerce-MyAccount-orders,
  table.shop_table_responsive,
  table.my_account_orders,
  table.account-orders-table,
  table.woocommerce-checkout-review-order-table,
  .wp-list-table,
  .widefat {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce table,
  .woocommerce .shop_table,
  .woocommerce .woocommerce-table,
  .woocommerce .woocommerce-orders-table,
  .woocommerce .woocommerce-MyAccount-orders,
  .woocommerce .shop_table_responsive,
  .woocommerce .my_account_orders,
  .woocommerce .account-orders-table,
  .woocommerce .woocommerce-checkout-review-order-table,
  table.shop_table,
  table.woocommerce-table,
  table.woocommerce-orders-table,
  table.woocommerce-MyAccount-orders,
  table.shop_table_responsive,
  table.my_account_orders,
  table.account-orders-table,
  table.woocommerce-checkout-review-order-table,
  .wp-list-table,
  .widefat {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce table,
.woocommerce .shop_table,
.woocommerce .woocommerce-table,
.woocommerce .woocommerce-orders-table,
.woocommerce .woocommerce-MyAccount-orders,
.woocommerce .shop_table_responsive,
.woocommerce .my_account_orders,
.woocommerce .account-orders-table,
.woocommerce .woocommerce-checkout-review-order-table,
table.shop_table,
table.woocommerce-table,
table.woocommerce-orders-table,
table.woocommerce-MyAccount-orders,
table.shop_table_responsive,
table.my_account_orders,
table.account-orders-table,
table.woocommerce-checkout-review-order-table,
.wp-list-table,
.widefat {
  color: #262930;
  background-color: #FFFFFF;
}
.woocommerce table thead,
.woocommerce .shop_table thead,
.woocommerce .woocommerce-table thead,
.woocommerce .woocommerce-orders-table thead,
.woocommerce .woocommerce-MyAccount-orders thead,
.woocommerce .shop_table_responsive thead,
.woocommerce .my_account_orders thead,
.woocommerce .account-orders-table thead,
.woocommerce .woocommerce-checkout-review-order-table thead,
table.shop_table thead,
table.woocommerce-table thead,
table.woocommerce-orders-table thead,
table.woocommerce-MyAccount-orders thead,
table.shop_table_responsive thead,
table.my_account_orders thead,
table.account-orders-table thead,
table.woocommerce-checkout-review-order-table thead,
.wp-list-table thead,
.widefat thead {
  background-color: #F0F1F5;
}
.woocommerce table thead th,
.woocommerce .shop_table thead th,
.woocommerce .woocommerce-table thead th,
.woocommerce .woocommerce-orders-table thead th,
.woocommerce .woocommerce-MyAccount-orders thead th,
.woocommerce .shop_table_responsive thead th,
.woocommerce .my_account_orders thead th,
.woocommerce .account-orders-table thead th,
.woocommerce .woocommerce-checkout-review-order-table thead th,
table.shop_table thead th,
table.woocommerce-table thead th,
table.woocommerce-orders-table thead th,
table.woocommerce-MyAccount-orders thead th,
table.shop_table_responsive thead th,
table.my_account_orders thead th,
table.account-orders-table thead th,
table.woocommerce-checkout-review-order-table thead th,
.wp-list-table thead th,
.widefat thead th {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce table thead th,
  .woocommerce .shop_table thead th,
  .woocommerce .woocommerce-table thead th,
  .woocommerce .woocommerce-orders-table thead th,
  .woocommerce .woocommerce-MyAccount-orders thead th,
  .woocommerce .shop_table_responsive thead th,
  .woocommerce .my_account_orders thead th,
  .woocommerce .account-orders-table thead th,
  .woocommerce .woocommerce-checkout-review-order-table thead th,
  table.shop_table thead th,
  table.woocommerce-table thead th,
  table.woocommerce-orders-table thead th,
  table.woocommerce-MyAccount-orders thead th,
  table.shop_table_responsive thead th,
  table.my_account_orders thead th,
  table.account-orders-table thead th,
  table.woocommerce-checkout-review-order-table thead th,
  .wp-list-table thead th,
  .widefat thead th {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce table thead th,
  .woocommerce .shop_table thead th,
  .woocommerce .woocommerce-table thead th,
  .woocommerce .woocommerce-orders-table thead th,
  .woocommerce .woocommerce-MyAccount-orders thead th,
  .woocommerce .shop_table_responsive thead th,
  .woocommerce .my_account_orders thead th,
  .woocommerce .account-orders-table thead th,
  .woocommerce .woocommerce-checkout-review-order-table thead th,
  table.shop_table thead th,
  table.woocommerce-table thead th,
  table.woocommerce-orders-table thead th,
  table.woocommerce-MyAccount-orders thead th,
  table.shop_table_responsive thead th,
  table.my_account_orders thead th,
  table.account-orders-table thead th,
  table.woocommerce-checkout-review-order-table thead th,
  .wp-list-table thead th,
  .widefat thead th {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce table thead th,
  .woocommerce .shop_table thead th,
  .woocommerce .woocommerce-table thead th,
  .woocommerce .woocommerce-orders-table thead th,
  .woocommerce .woocommerce-MyAccount-orders thead th,
  .woocommerce .shop_table_responsive thead th,
  .woocommerce .my_account_orders thead th,
  .woocommerce .account-orders-table thead th,
  .woocommerce .woocommerce-checkout-review-order-table thead th,
  table.shop_table thead th,
  table.woocommerce-table thead th,
  table.woocommerce-orders-table thead th,
  table.woocommerce-MyAccount-orders thead th,
  table.shop_table_responsive thead th,
  table.my_account_orders thead th,
  table.account-orders-table thead th,
  table.woocommerce-checkout-review-order-table thead th,
  .wp-list-table thead th,
  .widefat thead th {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce table thead th,
.woocommerce .shop_table thead th,
.woocommerce .woocommerce-table thead th,
.woocommerce .woocommerce-orders-table thead th,
.woocommerce .woocommerce-MyAccount-orders thead th,
.woocommerce .shop_table_responsive thead th,
.woocommerce .my_account_orders thead th,
.woocommerce .account-orders-table thead th,
.woocommerce .woocommerce-checkout-review-order-table thead th,
table.shop_table thead th,
table.woocommerce-table thead th,
table.woocommerce-orders-table thead th,
table.woocommerce-MyAccount-orders thead th,
table.shop_table_responsive thead th,
table.my_account_orders thead th,
table.account-orders-table thead th,
table.woocommerce-checkout-review-order-table thead th,
.wp-list-table thead th,
.widefat thead th {
  color: #262930;
  text-align: left;
  padding: 16px 24px;
  border-bottom: 1px solid #E4E4E6;
  font-weight: var(--fw-bold);
}
@media (max-width: 991px) {
  .woocommerce table thead th,
  .woocommerce .shop_table thead th,
  .woocommerce .woocommerce-table thead th,
  .woocommerce .woocommerce-orders-table thead th,
  .woocommerce .woocommerce-MyAccount-orders thead th,
  .woocommerce .shop_table_responsive thead th,
  .woocommerce .my_account_orders thead th,
  .woocommerce .account-orders-table thead th,
  .woocommerce .woocommerce-checkout-review-order-table thead th,
  table.shop_table thead th,
  table.woocommerce-table thead th,
  table.woocommerce-orders-table thead th,
  table.woocommerce-MyAccount-orders thead th,
  table.shop_table_responsive thead th,
  table.my_account_orders thead th,
  table.account-orders-table thead th,
  table.woocommerce-checkout-review-order-table thead th,
  .wp-list-table thead th,
  .widefat thead th {
    padding: 12px 16px;
  }
}
.woocommerce table thead th.sortable a, .woocommerce table thead th.sorted a,
.woocommerce .shop_table thead th.sortable a,
.woocommerce .shop_table thead th.sorted a,
.woocommerce .woocommerce-table thead th.sortable a,
.woocommerce .woocommerce-table thead th.sorted a,
.woocommerce .woocommerce-orders-table thead th.sortable a,
.woocommerce .woocommerce-orders-table thead th.sorted a,
.woocommerce .woocommerce-MyAccount-orders thead th.sortable a,
.woocommerce .woocommerce-MyAccount-orders thead th.sorted a,
.woocommerce .shop_table_responsive thead th.sortable a,
.woocommerce .shop_table_responsive thead th.sorted a,
.woocommerce .my_account_orders thead th.sortable a,
.woocommerce .my_account_orders thead th.sorted a,
.woocommerce .account-orders-table thead th.sortable a,
.woocommerce .account-orders-table thead th.sorted a,
.woocommerce .woocommerce-checkout-review-order-table thead th.sortable a,
.woocommerce .woocommerce-checkout-review-order-table thead th.sorted a,
table.shop_table thead th.sortable a,
table.shop_table thead th.sorted a,
table.woocommerce-table thead th.sortable a,
table.woocommerce-table thead th.sorted a,
table.woocommerce-orders-table thead th.sortable a,
table.woocommerce-orders-table thead th.sorted a,
table.woocommerce-MyAccount-orders thead th.sortable a,
table.woocommerce-MyAccount-orders thead th.sorted a,
table.shop_table_responsive thead th.sortable a,
table.shop_table_responsive thead th.sorted a,
table.my_account_orders thead th.sortable a,
table.my_account_orders thead th.sorted a,
table.account-orders-table thead th.sortable a,
table.account-orders-table thead th.sorted a,
table.woocommerce-checkout-review-order-table thead th.sortable a,
table.woocommerce-checkout-review-order-table thead th.sorted a,
.wp-list-table thead th.sortable a,
.wp-list-table thead th.sorted a,
.widefat thead th.sortable a,
.widefat thead th.sorted a {
  color: #262930;
  text-decoration: none;
}
.woocommerce table thead th.sortable a:hover, .woocommerce table thead th.sorted a:hover,
.woocommerce .shop_table thead th.sortable a:hover,
.woocommerce .shop_table thead th.sorted a:hover,
.woocommerce .woocommerce-table thead th.sortable a:hover,
.woocommerce .woocommerce-table thead th.sorted a:hover,
.woocommerce .woocommerce-orders-table thead th.sortable a:hover,
.woocommerce .woocommerce-orders-table thead th.sorted a:hover,
.woocommerce .woocommerce-MyAccount-orders thead th.sortable a:hover,
.woocommerce .woocommerce-MyAccount-orders thead th.sorted a:hover,
.woocommerce .shop_table_responsive thead th.sortable a:hover,
.woocommerce .shop_table_responsive thead th.sorted a:hover,
.woocommerce .my_account_orders thead th.sortable a:hover,
.woocommerce .my_account_orders thead th.sorted a:hover,
.woocommerce .account-orders-table thead th.sortable a:hover,
.woocommerce .account-orders-table thead th.sorted a:hover,
.woocommerce .woocommerce-checkout-review-order-table thead th.sortable a:hover,
.woocommerce .woocommerce-checkout-review-order-table thead th.sorted a:hover,
table.shop_table thead th.sortable a:hover,
table.shop_table thead th.sorted a:hover,
table.woocommerce-table thead th.sortable a:hover,
table.woocommerce-table thead th.sorted a:hover,
table.woocommerce-orders-table thead th.sortable a:hover,
table.woocommerce-orders-table thead th.sorted a:hover,
table.woocommerce-MyAccount-orders thead th.sortable a:hover,
table.woocommerce-MyAccount-orders thead th.sorted a:hover,
table.shop_table_responsive thead th.sortable a:hover,
table.shop_table_responsive thead th.sorted a:hover,
table.my_account_orders thead th.sortable a:hover,
table.my_account_orders thead th.sorted a:hover,
table.account-orders-table thead th.sortable a:hover,
table.account-orders-table thead th.sorted a:hover,
table.woocommerce-checkout-review-order-table thead th.sortable a:hover,
table.woocommerce-checkout-review-order-table thead th.sorted a:hover,
.wp-list-table thead th.sortable a:hover,
.wp-list-table thead th.sorted a:hover,
.widefat thead th.sortable a:hover,
.widefat thead th.sorted a:hover {
  color: #FF0019;
}
.woocommerce table tbody tr,
.woocommerce .shop_table tbody tr,
.woocommerce .woocommerce-table tbody tr,
.woocommerce .woocommerce-orders-table tbody tr,
.woocommerce .woocommerce-MyAccount-orders tbody tr,
.woocommerce .shop_table_responsive tbody tr,
.woocommerce .my_account_orders tbody tr,
.woocommerce .account-orders-table tbody tr,
.woocommerce .woocommerce-checkout-review-order-table tbody tr,
table.shop_table tbody tr,
table.woocommerce-table tbody tr,
table.woocommerce-orders-table tbody tr,
table.woocommerce-MyAccount-orders tbody tr,
table.shop_table_responsive tbody tr,
table.my_account_orders tbody tr,
table.account-orders-table tbody tr,
table.woocommerce-checkout-review-order-table tbody tr,
.wp-list-table tbody tr,
.widefat tbody tr {
  background-color: #FFFFFF;
  border-bottom: 1px solid #E4E4E6;
  transition: background-color 0.2s ease-in-out;
}
.woocommerce table tbody tr:nth-child(even),
.woocommerce .shop_table tbody tr:nth-child(even),
.woocommerce .woocommerce-table tbody tr:nth-child(even),
.woocommerce .woocommerce-orders-table tbody tr:nth-child(even),
.woocommerce .woocommerce-MyAccount-orders tbody tr:nth-child(even),
.woocommerce .shop_table_responsive tbody tr:nth-child(even),
.woocommerce .my_account_orders tbody tr:nth-child(even),
.woocommerce .account-orders-table tbody tr:nth-child(even),
.woocommerce .woocommerce-checkout-review-order-table tbody tr:nth-child(even),
table.shop_table tbody tr:nth-child(even),
table.woocommerce-table tbody tr:nth-child(even),
table.woocommerce-orders-table tbody tr:nth-child(even),
table.woocommerce-MyAccount-orders tbody tr:nth-child(even),
table.shop_table_responsive tbody tr:nth-child(even),
table.my_account_orders tbody tr:nth-child(even),
table.account-orders-table tbody tr:nth-child(even),
table.woocommerce-checkout-review-order-table tbody tr:nth-child(even),
.wp-list-table tbody tr:nth-child(even),
.widefat tbody tr:nth-child(even) {
  background-color: rgba(247, 249, 251, 0.56);
}
.woocommerce table tbody tr:hover,
.woocommerce .shop_table tbody tr:hover,
.woocommerce .woocommerce-table tbody tr:hover,
.woocommerce .woocommerce-orders-table tbody tr:hover,
.woocommerce .woocommerce-MyAccount-orders tbody tr:hover,
.woocommerce .shop_table_responsive tbody tr:hover,
.woocommerce .my_account_orders tbody tr:hover,
.woocommerce .account-orders-table tbody tr:hover,
.woocommerce .woocommerce-checkout-review-order-table tbody tr:hover,
table.shop_table tbody tr:hover,
table.woocommerce-table tbody tr:hover,
table.woocommerce-orders-table tbody tr:hover,
table.woocommerce-MyAccount-orders tbody tr:hover,
table.shop_table_responsive tbody tr:hover,
table.my_account_orders tbody tr:hover,
table.account-orders-table tbody tr:hover,
table.woocommerce-checkout-review-order-table tbody tr:hover,
.wp-list-table tbody tr:hover,
.widefat tbody tr:hover {
  background-color: rgba(246, 246, 247, 0.72);
}
.woocommerce table tbody tr:last-child,
.woocommerce .shop_table tbody tr:last-child,
.woocommerce .woocommerce-table tbody tr:last-child,
.woocommerce .woocommerce-orders-table tbody tr:last-child,
.woocommerce .woocommerce-MyAccount-orders tbody tr:last-child,
.woocommerce .shop_table_responsive tbody tr:last-child,
.woocommerce .my_account_orders tbody tr:last-child,
.woocommerce .account-orders-table tbody tr:last-child,
.woocommerce .woocommerce-checkout-review-order-table tbody tr:last-child,
table.shop_table tbody tr:last-child,
table.woocommerce-table tbody tr:last-child,
table.woocommerce-orders-table tbody tr:last-child,
table.woocommerce-MyAccount-orders tbody tr:last-child,
table.shop_table_responsive tbody tr:last-child,
table.my_account_orders tbody tr:last-child,
table.account-orders-table tbody tr:last-child,
table.woocommerce-checkout-review-order-table tbody tr:last-child,
.wp-list-table tbody tr:last-child,
.widefat tbody tr:last-child {
  border-bottom: none;
}
.woocommerce table tbody td,
.woocommerce table tbody th,
.woocommerce .shop_table tbody td,
.woocommerce .shop_table tbody th,
.woocommerce .woocommerce-table tbody td,
.woocommerce .woocommerce-table tbody th,
.woocommerce .woocommerce-orders-table tbody td,
.woocommerce .woocommerce-orders-table tbody th,
.woocommerce .woocommerce-MyAccount-orders tbody td,
.woocommerce .woocommerce-MyAccount-orders tbody th,
.woocommerce .shop_table_responsive tbody td,
.woocommerce .shop_table_responsive tbody th,
.woocommerce .my_account_orders tbody td,
.woocommerce .my_account_orders tbody th,
.woocommerce .account-orders-table tbody td,
.woocommerce .account-orders-table tbody th,
.woocommerce .woocommerce-checkout-review-order-table tbody td,
.woocommerce .woocommerce-checkout-review-order-table tbody th,
table.shop_table tbody td,
table.shop_table tbody th,
table.woocommerce-table tbody td,
table.woocommerce-table tbody th,
table.woocommerce-orders-table tbody td,
table.woocommerce-orders-table tbody th,
table.woocommerce-MyAccount-orders tbody td,
table.woocommerce-MyAccount-orders tbody th,
table.shop_table_responsive tbody td,
table.shop_table_responsive tbody th,
table.my_account_orders tbody td,
table.my_account_orders tbody th,
table.account-orders-table tbody td,
table.account-orders-table tbody th,
table.woocommerce-checkout-review-order-table tbody td,
table.woocommerce-checkout-review-order-table tbody th,
.wp-list-table tbody td,
.wp-list-table tbody th,
.widefat tbody td,
.widefat tbody th {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce table tbody td,
  .woocommerce table tbody th,
  .woocommerce .shop_table tbody td,
  .woocommerce .shop_table tbody th,
  .woocommerce .woocommerce-table tbody td,
  .woocommerce .woocommerce-table tbody th,
  .woocommerce .woocommerce-orders-table tbody td,
  .woocommerce .woocommerce-orders-table tbody th,
  .woocommerce .woocommerce-MyAccount-orders tbody td,
  .woocommerce .woocommerce-MyAccount-orders tbody th,
  .woocommerce .shop_table_responsive tbody td,
  .woocommerce .shop_table_responsive tbody th,
  .woocommerce .my_account_orders tbody td,
  .woocommerce .my_account_orders tbody th,
  .woocommerce .account-orders-table tbody td,
  .woocommerce .account-orders-table tbody th,
  .woocommerce .woocommerce-checkout-review-order-table tbody td,
  .woocommerce .woocommerce-checkout-review-order-table tbody th,
  table.shop_table tbody td,
  table.shop_table tbody th,
  table.woocommerce-table tbody td,
  table.woocommerce-table tbody th,
  table.woocommerce-orders-table tbody td,
  table.woocommerce-orders-table tbody th,
  table.woocommerce-MyAccount-orders tbody td,
  table.woocommerce-MyAccount-orders tbody th,
  table.shop_table_responsive tbody td,
  table.shop_table_responsive tbody th,
  table.my_account_orders tbody td,
  table.my_account_orders tbody th,
  table.account-orders-table tbody td,
  table.account-orders-table tbody th,
  table.woocommerce-checkout-review-order-table tbody td,
  table.woocommerce-checkout-review-order-table tbody th,
  .wp-list-table tbody td,
  .wp-list-table tbody th,
  .widefat tbody td,
  .widefat tbody th {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce table tbody td,
  .woocommerce table tbody th,
  .woocommerce .shop_table tbody td,
  .woocommerce .shop_table tbody th,
  .woocommerce .woocommerce-table tbody td,
  .woocommerce .woocommerce-table tbody th,
  .woocommerce .woocommerce-orders-table tbody td,
  .woocommerce .woocommerce-orders-table tbody th,
  .woocommerce .woocommerce-MyAccount-orders tbody td,
  .woocommerce .woocommerce-MyAccount-orders tbody th,
  .woocommerce .shop_table_responsive tbody td,
  .woocommerce .shop_table_responsive tbody th,
  .woocommerce .my_account_orders tbody td,
  .woocommerce .my_account_orders tbody th,
  .woocommerce .account-orders-table tbody td,
  .woocommerce .account-orders-table tbody th,
  .woocommerce .woocommerce-checkout-review-order-table tbody td,
  .woocommerce .woocommerce-checkout-review-order-table tbody th,
  table.shop_table tbody td,
  table.shop_table tbody th,
  table.woocommerce-table tbody td,
  table.woocommerce-table tbody th,
  table.woocommerce-orders-table tbody td,
  table.woocommerce-orders-table tbody th,
  table.woocommerce-MyAccount-orders tbody td,
  table.woocommerce-MyAccount-orders tbody th,
  table.shop_table_responsive tbody td,
  table.shop_table_responsive tbody th,
  table.my_account_orders tbody td,
  table.my_account_orders tbody th,
  table.account-orders-table tbody td,
  table.account-orders-table tbody th,
  table.woocommerce-checkout-review-order-table tbody td,
  table.woocommerce-checkout-review-order-table tbody th,
  .wp-list-table tbody td,
  .wp-list-table tbody th,
  .widefat tbody td,
  .widefat tbody th {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce table tbody td,
  .woocommerce table tbody th,
  .woocommerce .shop_table tbody td,
  .woocommerce .shop_table tbody th,
  .woocommerce .woocommerce-table tbody td,
  .woocommerce .woocommerce-table tbody th,
  .woocommerce .woocommerce-orders-table tbody td,
  .woocommerce .woocommerce-orders-table tbody th,
  .woocommerce .woocommerce-MyAccount-orders tbody td,
  .woocommerce .woocommerce-MyAccount-orders tbody th,
  .woocommerce .shop_table_responsive tbody td,
  .woocommerce .shop_table_responsive tbody th,
  .woocommerce .my_account_orders tbody td,
  .woocommerce .my_account_orders tbody th,
  .woocommerce .account-orders-table tbody td,
  .woocommerce .account-orders-table tbody th,
  .woocommerce .woocommerce-checkout-review-order-table tbody td,
  .woocommerce .woocommerce-checkout-review-order-table tbody th,
  table.shop_table tbody td,
  table.shop_table tbody th,
  table.woocommerce-table tbody td,
  table.woocommerce-table tbody th,
  table.woocommerce-orders-table tbody td,
  table.woocommerce-orders-table tbody th,
  table.woocommerce-MyAccount-orders tbody td,
  table.woocommerce-MyAccount-orders tbody th,
  table.shop_table_responsive tbody td,
  table.shop_table_responsive tbody th,
  table.my_account_orders tbody td,
  table.my_account_orders tbody th,
  table.account-orders-table tbody td,
  table.account-orders-table tbody th,
  table.woocommerce-checkout-review-order-table tbody td,
  table.woocommerce-checkout-review-order-table tbody th,
  .wp-list-table tbody td,
  .wp-list-table tbody th,
  .widefat tbody td,
  .widefat tbody th {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce table tbody td,
.woocommerce table tbody th,
.woocommerce .shop_table tbody td,
.woocommerce .shop_table tbody th,
.woocommerce .woocommerce-table tbody td,
.woocommerce .woocommerce-table tbody th,
.woocommerce .woocommerce-orders-table tbody td,
.woocommerce .woocommerce-orders-table tbody th,
.woocommerce .woocommerce-MyAccount-orders tbody td,
.woocommerce .woocommerce-MyAccount-orders tbody th,
.woocommerce .shop_table_responsive tbody td,
.woocommerce .shop_table_responsive tbody th,
.woocommerce .my_account_orders tbody td,
.woocommerce .my_account_orders tbody th,
.woocommerce .account-orders-table tbody td,
.woocommerce .account-orders-table tbody th,
.woocommerce .woocommerce-checkout-review-order-table tbody td,
.woocommerce .woocommerce-checkout-review-order-table tbody th,
table.shop_table tbody td,
table.shop_table tbody th,
table.woocommerce-table tbody td,
table.woocommerce-table tbody th,
table.woocommerce-orders-table tbody td,
table.woocommerce-orders-table tbody th,
table.woocommerce-MyAccount-orders tbody td,
table.woocommerce-MyAccount-orders tbody th,
table.shop_table_responsive tbody td,
table.shop_table_responsive tbody th,
table.my_account_orders tbody td,
table.my_account_orders tbody th,
table.account-orders-table tbody td,
table.account-orders-table tbody th,
table.woocommerce-checkout-review-order-table tbody td,
table.woocommerce-checkout-review-order-table tbody th,
.wp-list-table tbody td,
.wp-list-table tbody th,
.widefat tbody td,
.widefat tbody th {
  color: #262930;
  padding: 16px 24px;
  vertical-align: middle;
}
@media (max-width: 991px) {
  .woocommerce table tbody td,
  .woocommerce table tbody th,
  .woocommerce .shop_table tbody td,
  .woocommerce .shop_table tbody th,
  .woocommerce .woocommerce-table tbody td,
  .woocommerce .woocommerce-table tbody th,
  .woocommerce .woocommerce-orders-table tbody td,
  .woocommerce .woocommerce-orders-table tbody th,
  .woocommerce .woocommerce-MyAccount-orders tbody td,
  .woocommerce .woocommerce-MyAccount-orders tbody th,
  .woocommerce .shop_table_responsive tbody td,
  .woocommerce .shop_table_responsive tbody th,
  .woocommerce .my_account_orders tbody td,
  .woocommerce .my_account_orders tbody th,
  .woocommerce .account-orders-table tbody td,
  .woocommerce .account-orders-table tbody th,
  .woocommerce .woocommerce-checkout-review-order-table tbody td,
  .woocommerce .woocommerce-checkout-review-order-table tbody th,
  table.shop_table tbody td,
  table.shop_table tbody th,
  table.woocommerce-table tbody td,
  table.woocommerce-table tbody th,
  table.woocommerce-orders-table tbody td,
  table.woocommerce-orders-table tbody th,
  table.woocommerce-MyAccount-orders tbody td,
  table.woocommerce-MyAccount-orders tbody th,
  table.shop_table_responsive tbody td,
  table.shop_table_responsive tbody th,
  table.my_account_orders tbody td,
  table.my_account_orders tbody th,
  table.account-orders-table tbody td,
  table.account-orders-table tbody th,
  table.woocommerce-checkout-review-order-table tbody td,
  table.woocommerce-checkout-review-order-table tbody th,
  .wp-list-table tbody td,
  .wp-list-table tbody th,
  .widefat tbody td,
  .widefat tbody th {
    padding: 12px 16px;
  }
}
.woocommerce table tbody td strong,
.woocommerce table tbody th strong,
.woocommerce .shop_table tbody td strong,
.woocommerce .shop_table tbody th strong,
.woocommerce .woocommerce-table tbody td strong,
.woocommerce .woocommerce-table tbody th strong,
.woocommerce .woocommerce-orders-table tbody td strong,
.woocommerce .woocommerce-orders-table tbody th strong,
.woocommerce .woocommerce-MyAccount-orders tbody td strong,
.woocommerce .woocommerce-MyAccount-orders tbody th strong,
.woocommerce .shop_table_responsive tbody td strong,
.woocommerce .shop_table_responsive tbody th strong,
.woocommerce .my_account_orders tbody td strong,
.woocommerce .my_account_orders tbody th strong,
.woocommerce .account-orders-table tbody td strong,
.woocommerce .account-orders-table tbody th strong,
.woocommerce .woocommerce-checkout-review-order-table tbody td strong,
.woocommerce .woocommerce-checkout-review-order-table tbody th strong,
table.shop_table tbody td strong,
table.shop_table tbody th strong,
table.woocommerce-table tbody td strong,
table.woocommerce-table tbody th strong,
table.woocommerce-orders-table tbody td strong,
table.woocommerce-orders-table tbody th strong,
table.woocommerce-MyAccount-orders tbody td strong,
table.woocommerce-MyAccount-orders tbody th strong,
table.shop_table_responsive tbody td strong,
table.shop_table_responsive tbody th strong,
table.my_account_orders tbody td strong,
table.my_account_orders tbody th strong,
table.account-orders-table tbody td strong,
table.account-orders-table tbody th strong,
table.woocommerce-checkout-review-order-table tbody td strong,
table.woocommerce-checkout-review-order-table tbody th strong,
.wp-list-table tbody td strong,
.wp-list-table tbody th strong,
.widefat tbody td strong,
.widefat tbody th strong {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce table tbody td strong,
  .woocommerce table tbody th strong,
  .woocommerce .shop_table tbody td strong,
  .woocommerce .shop_table tbody th strong,
  .woocommerce .woocommerce-table tbody td strong,
  .woocommerce .woocommerce-table tbody th strong,
  .woocommerce .woocommerce-orders-table tbody td strong,
  .woocommerce .woocommerce-orders-table tbody th strong,
  .woocommerce .woocommerce-MyAccount-orders tbody td strong,
  .woocommerce .woocommerce-MyAccount-orders tbody th strong,
  .woocommerce .shop_table_responsive tbody td strong,
  .woocommerce .shop_table_responsive tbody th strong,
  .woocommerce .my_account_orders tbody td strong,
  .woocommerce .my_account_orders tbody th strong,
  .woocommerce .account-orders-table tbody td strong,
  .woocommerce .account-orders-table tbody th strong,
  .woocommerce .woocommerce-checkout-review-order-table tbody td strong,
  .woocommerce .woocommerce-checkout-review-order-table tbody th strong,
  table.shop_table tbody td strong,
  table.shop_table tbody th strong,
  table.woocommerce-table tbody td strong,
  table.woocommerce-table tbody th strong,
  table.woocommerce-orders-table tbody td strong,
  table.woocommerce-orders-table tbody th strong,
  table.woocommerce-MyAccount-orders tbody td strong,
  table.woocommerce-MyAccount-orders tbody th strong,
  table.shop_table_responsive tbody td strong,
  table.shop_table_responsive tbody th strong,
  table.my_account_orders tbody td strong,
  table.my_account_orders tbody th strong,
  table.account-orders-table tbody td strong,
  table.account-orders-table tbody th strong,
  table.woocommerce-checkout-review-order-table tbody td strong,
  table.woocommerce-checkout-review-order-table tbody th strong,
  .wp-list-table tbody td strong,
  .wp-list-table tbody th strong,
  .widefat tbody td strong,
  .widefat tbody th strong {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce table tbody td strong,
  .woocommerce table tbody th strong,
  .woocommerce .shop_table tbody td strong,
  .woocommerce .shop_table tbody th strong,
  .woocommerce .woocommerce-table tbody td strong,
  .woocommerce .woocommerce-table tbody th strong,
  .woocommerce .woocommerce-orders-table tbody td strong,
  .woocommerce .woocommerce-orders-table tbody th strong,
  .woocommerce .woocommerce-MyAccount-orders tbody td strong,
  .woocommerce .woocommerce-MyAccount-orders tbody th strong,
  .woocommerce .shop_table_responsive tbody td strong,
  .woocommerce .shop_table_responsive tbody th strong,
  .woocommerce .my_account_orders tbody td strong,
  .woocommerce .my_account_orders tbody th strong,
  .woocommerce .account-orders-table tbody td strong,
  .woocommerce .account-orders-table tbody th strong,
  .woocommerce .woocommerce-checkout-review-order-table tbody td strong,
  .woocommerce .woocommerce-checkout-review-order-table tbody th strong,
  table.shop_table tbody td strong,
  table.shop_table tbody th strong,
  table.woocommerce-table tbody td strong,
  table.woocommerce-table tbody th strong,
  table.woocommerce-orders-table tbody td strong,
  table.woocommerce-orders-table tbody th strong,
  table.woocommerce-MyAccount-orders tbody td strong,
  table.woocommerce-MyAccount-orders tbody th strong,
  table.shop_table_responsive tbody td strong,
  table.shop_table_responsive tbody th strong,
  table.my_account_orders tbody td strong,
  table.my_account_orders tbody th strong,
  table.account-orders-table tbody td strong,
  table.account-orders-table tbody th strong,
  table.woocommerce-checkout-review-order-table tbody td strong,
  table.woocommerce-checkout-review-order-table tbody th strong,
  .wp-list-table tbody td strong,
  .wp-list-table tbody th strong,
  .widefat tbody td strong,
  .widefat tbody th strong {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce table tbody td strong,
  .woocommerce table tbody th strong,
  .woocommerce .shop_table tbody td strong,
  .woocommerce .shop_table tbody th strong,
  .woocommerce .woocommerce-table tbody td strong,
  .woocommerce .woocommerce-table tbody th strong,
  .woocommerce .woocommerce-orders-table tbody td strong,
  .woocommerce .woocommerce-orders-table tbody th strong,
  .woocommerce .woocommerce-MyAccount-orders tbody td strong,
  .woocommerce .woocommerce-MyAccount-orders tbody th strong,
  .woocommerce .shop_table_responsive tbody td strong,
  .woocommerce .shop_table_responsive tbody th strong,
  .woocommerce .my_account_orders tbody td strong,
  .woocommerce .my_account_orders tbody th strong,
  .woocommerce .account-orders-table tbody td strong,
  .woocommerce .account-orders-table tbody th strong,
  .woocommerce .woocommerce-checkout-review-order-table tbody td strong,
  .woocommerce .woocommerce-checkout-review-order-table tbody th strong,
  table.shop_table tbody td strong,
  table.shop_table tbody th strong,
  table.woocommerce-table tbody td strong,
  table.woocommerce-table tbody th strong,
  table.woocommerce-orders-table tbody td strong,
  table.woocommerce-orders-table tbody th strong,
  table.woocommerce-MyAccount-orders tbody td strong,
  table.woocommerce-MyAccount-orders tbody th strong,
  table.shop_table_responsive tbody td strong,
  table.shop_table_responsive tbody th strong,
  table.my_account_orders tbody td strong,
  table.my_account_orders tbody th strong,
  table.account-orders-table tbody td strong,
  table.account-orders-table tbody th strong,
  table.woocommerce-checkout-review-order-table tbody td strong,
  table.woocommerce-checkout-review-order-table tbody th strong,
  .wp-list-table tbody td strong,
  .wp-list-table tbody th strong,
  .widefat tbody td strong,
  .widefat tbody th strong {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce table tbody td strong,
.woocommerce table tbody th strong,
.woocommerce .shop_table tbody td strong,
.woocommerce .shop_table tbody th strong,
.woocommerce .woocommerce-table tbody td strong,
.woocommerce .woocommerce-table tbody th strong,
.woocommerce .woocommerce-orders-table tbody td strong,
.woocommerce .woocommerce-orders-table tbody th strong,
.woocommerce .woocommerce-MyAccount-orders tbody td strong,
.woocommerce .woocommerce-MyAccount-orders tbody th strong,
.woocommerce .shop_table_responsive tbody td strong,
.woocommerce .shop_table_responsive tbody th strong,
.woocommerce .my_account_orders tbody td strong,
.woocommerce .my_account_orders tbody th strong,
.woocommerce .account-orders-table tbody td strong,
.woocommerce .account-orders-table tbody th strong,
.woocommerce .woocommerce-checkout-review-order-table tbody td strong,
.woocommerce .woocommerce-checkout-review-order-table tbody th strong,
table.shop_table tbody td strong,
table.shop_table tbody th strong,
table.woocommerce-table tbody td strong,
table.woocommerce-table tbody th strong,
table.woocommerce-orders-table tbody td strong,
table.woocommerce-orders-table tbody th strong,
table.woocommerce-MyAccount-orders tbody td strong,
table.woocommerce-MyAccount-orders tbody th strong,
table.shop_table_responsive tbody td strong,
table.shop_table_responsive tbody th strong,
table.my_account_orders tbody td strong,
table.my_account_orders tbody th strong,
table.account-orders-table tbody td strong,
table.account-orders-table tbody th strong,
table.woocommerce-checkout-review-order-table tbody td strong,
table.woocommerce-checkout-review-order-table tbody th strong,
.wp-list-table tbody td strong,
.wp-list-table tbody th strong,
.widefat tbody td strong,
.widefat tbody th strong {
  color: #262930;
  font-weight: var(--fw-bold);
}
.woocommerce table tfoot,
.woocommerce .shop_table tfoot,
.woocommerce .woocommerce-table tfoot,
.woocommerce .woocommerce-orders-table tfoot,
.woocommerce .woocommerce-MyAccount-orders tfoot,
.woocommerce .shop_table_responsive tfoot,
.woocommerce .my_account_orders tfoot,
.woocommerce .account-orders-table tfoot,
.woocommerce .woocommerce-checkout-review-order-table tfoot,
table.shop_table tfoot,
table.woocommerce-table tfoot,
table.woocommerce-orders-table tfoot,
table.woocommerce-MyAccount-orders tfoot,
table.shop_table_responsive tfoot,
table.my_account_orders tfoot,
table.account-orders-table tfoot,
table.woocommerce-checkout-review-order-table tfoot,
.wp-list-table tfoot,
.widefat tfoot {
  background-color: #F7F9FB;
}
.woocommerce table tfoot tr,
.woocommerce .shop_table tfoot tr,
.woocommerce .woocommerce-table tfoot tr,
.woocommerce .woocommerce-orders-table tfoot tr,
.woocommerce .woocommerce-MyAccount-orders tfoot tr,
.woocommerce .shop_table_responsive tfoot tr,
.woocommerce .my_account_orders tfoot tr,
.woocommerce .account-orders-table tfoot tr,
.woocommerce .woocommerce-checkout-review-order-table tfoot tr,
table.shop_table tfoot tr,
table.woocommerce-table tfoot tr,
table.woocommerce-orders-table tfoot tr,
table.woocommerce-MyAccount-orders tfoot tr,
table.shop_table_responsive tfoot tr,
table.my_account_orders tfoot tr,
table.account-orders-table tfoot tr,
table.woocommerce-checkout-review-order-table tfoot tr,
.wp-list-table tfoot tr,
.widefat tfoot tr {
  border-top: 2px solid #E4E4E6;
  border-bottom: none;
}
.woocommerce table tfoot tr:last-child,
.woocommerce .shop_table tfoot tr:last-child,
.woocommerce .woocommerce-table tfoot tr:last-child,
.woocommerce .woocommerce-orders-table tfoot tr:last-child,
.woocommerce .woocommerce-MyAccount-orders tfoot tr:last-child,
.woocommerce .shop_table_responsive tfoot tr:last-child,
.woocommerce .my_account_orders tfoot tr:last-child,
.woocommerce .account-orders-table tfoot tr:last-child,
.woocommerce .woocommerce-checkout-review-order-table tfoot tr:last-child,
table.shop_table tfoot tr:last-child,
table.woocommerce-table tfoot tr:last-child,
table.woocommerce-orders-table tfoot tr:last-child,
table.woocommerce-MyAccount-orders tfoot tr:last-child,
table.shop_table_responsive tfoot tr:last-child,
table.my_account_orders tfoot tr:last-child,
table.account-orders-table tfoot tr:last-child,
table.woocommerce-checkout-review-order-table tfoot tr:last-child,
.wp-list-table tfoot tr:last-child,
.widefat tfoot tr:last-child {
  border-bottom: none;
}
.woocommerce table tfoot th,
.woocommerce table tfoot td,
.woocommerce .shop_table tfoot th,
.woocommerce .shop_table tfoot td,
.woocommerce .woocommerce-table tfoot th,
.woocommerce .woocommerce-table tfoot td,
.woocommerce .woocommerce-orders-table tfoot th,
.woocommerce .woocommerce-orders-table tfoot td,
.woocommerce .woocommerce-MyAccount-orders tfoot th,
.woocommerce .woocommerce-MyAccount-orders tfoot td,
.woocommerce .shop_table_responsive tfoot th,
.woocommerce .shop_table_responsive tfoot td,
.woocommerce .my_account_orders tfoot th,
.woocommerce .my_account_orders tfoot td,
.woocommerce .account-orders-table tfoot th,
.woocommerce .account-orders-table tfoot td,
.woocommerce .woocommerce-checkout-review-order-table tfoot th,
.woocommerce .woocommerce-checkout-review-order-table tfoot td,
table.shop_table tfoot th,
table.shop_table tfoot td,
table.woocommerce-table tfoot th,
table.woocommerce-table tfoot td,
table.woocommerce-orders-table tfoot th,
table.woocommerce-orders-table tfoot td,
table.woocommerce-MyAccount-orders tfoot th,
table.woocommerce-MyAccount-orders tfoot td,
table.shop_table_responsive tfoot th,
table.shop_table_responsive tfoot td,
table.my_account_orders tfoot th,
table.my_account_orders tfoot td,
table.account-orders-table tfoot th,
table.account-orders-table tfoot td,
table.woocommerce-checkout-review-order-table tfoot th,
table.woocommerce-checkout-review-order-table tfoot td,
.wp-list-table tfoot th,
.wp-list-table tfoot td,
.widefat tfoot th,
.widefat tfoot td {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce table tfoot th,
  .woocommerce table tfoot td,
  .woocommerce .shop_table tfoot th,
  .woocommerce .shop_table tfoot td,
  .woocommerce .woocommerce-table tfoot th,
  .woocommerce .woocommerce-table tfoot td,
  .woocommerce .woocommerce-orders-table tfoot th,
  .woocommerce .woocommerce-orders-table tfoot td,
  .woocommerce .woocommerce-MyAccount-orders tfoot th,
  .woocommerce .woocommerce-MyAccount-orders tfoot td,
  .woocommerce .shop_table_responsive tfoot th,
  .woocommerce .shop_table_responsive tfoot td,
  .woocommerce .my_account_orders tfoot th,
  .woocommerce .my_account_orders tfoot td,
  .woocommerce .account-orders-table tfoot th,
  .woocommerce .account-orders-table tfoot td,
  .woocommerce .woocommerce-checkout-review-order-table tfoot th,
  .woocommerce .woocommerce-checkout-review-order-table tfoot td,
  table.shop_table tfoot th,
  table.shop_table tfoot td,
  table.woocommerce-table tfoot th,
  table.woocommerce-table tfoot td,
  table.woocommerce-orders-table tfoot th,
  table.woocommerce-orders-table tfoot td,
  table.woocommerce-MyAccount-orders tfoot th,
  table.woocommerce-MyAccount-orders tfoot td,
  table.shop_table_responsive tfoot th,
  table.shop_table_responsive tfoot td,
  table.my_account_orders tfoot th,
  table.my_account_orders tfoot td,
  table.account-orders-table tfoot th,
  table.account-orders-table tfoot td,
  table.woocommerce-checkout-review-order-table tfoot th,
  table.woocommerce-checkout-review-order-table tfoot td,
  .wp-list-table tfoot th,
  .wp-list-table tfoot td,
  .widefat tfoot th,
  .widefat tfoot td {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce table tfoot th,
  .woocommerce table tfoot td,
  .woocommerce .shop_table tfoot th,
  .woocommerce .shop_table tfoot td,
  .woocommerce .woocommerce-table tfoot th,
  .woocommerce .woocommerce-table tfoot td,
  .woocommerce .woocommerce-orders-table tfoot th,
  .woocommerce .woocommerce-orders-table tfoot td,
  .woocommerce .woocommerce-MyAccount-orders tfoot th,
  .woocommerce .woocommerce-MyAccount-orders tfoot td,
  .woocommerce .shop_table_responsive tfoot th,
  .woocommerce .shop_table_responsive tfoot td,
  .woocommerce .my_account_orders tfoot th,
  .woocommerce .my_account_orders tfoot td,
  .woocommerce .account-orders-table tfoot th,
  .woocommerce .account-orders-table tfoot td,
  .woocommerce .woocommerce-checkout-review-order-table tfoot th,
  .woocommerce .woocommerce-checkout-review-order-table tfoot td,
  table.shop_table tfoot th,
  table.shop_table tfoot td,
  table.woocommerce-table tfoot th,
  table.woocommerce-table tfoot td,
  table.woocommerce-orders-table tfoot th,
  table.woocommerce-orders-table tfoot td,
  table.woocommerce-MyAccount-orders tfoot th,
  table.woocommerce-MyAccount-orders tfoot td,
  table.shop_table_responsive tfoot th,
  table.shop_table_responsive tfoot td,
  table.my_account_orders tfoot th,
  table.my_account_orders tfoot td,
  table.account-orders-table tfoot th,
  table.account-orders-table tfoot td,
  table.woocommerce-checkout-review-order-table tfoot th,
  table.woocommerce-checkout-review-order-table tfoot td,
  .wp-list-table tfoot th,
  .wp-list-table tfoot td,
  .widefat tfoot th,
  .widefat tfoot td {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce table tfoot th,
  .woocommerce table tfoot td,
  .woocommerce .shop_table tfoot th,
  .woocommerce .shop_table tfoot td,
  .woocommerce .woocommerce-table tfoot th,
  .woocommerce .woocommerce-table tfoot td,
  .woocommerce .woocommerce-orders-table tfoot th,
  .woocommerce .woocommerce-orders-table tfoot td,
  .woocommerce .woocommerce-MyAccount-orders tfoot th,
  .woocommerce .woocommerce-MyAccount-orders tfoot td,
  .woocommerce .shop_table_responsive tfoot th,
  .woocommerce .shop_table_responsive tfoot td,
  .woocommerce .my_account_orders tfoot th,
  .woocommerce .my_account_orders tfoot td,
  .woocommerce .account-orders-table tfoot th,
  .woocommerce .account-orders-table tfoot td,
  .woocommerce .woocommerce-checkout-review-order-table tfoot th,
  .woocommerce .woocommerce-checkout-review-order-table tfoot td,
  table.shop_table tfoot th,
  table.shop_table tfoot td,
  table.woocommerce-table tfoot th,
  table.woocommerce-table tfoot td,
  table.woocommerce-orders-table tfoot th,
  table.woocommerce-orders-table tfoot td,
  table.woocommerce-MyAccount-orders tfoot th,
  table.woocommerce-MyAccount-orders tfoot td,
  table.shop_table_responsive tfoot th,
  table.shop_table_responsive tfoot td,
  table.my_account_orders tfoot th,
  table.my_account_orders tfoot td,
  table.account-orders-table tfoot th,
  table.account-orders-table tfoot td,
  table.woocommerce-checkout-review-order-table tfoot th,
  table.woocommerce-checkout-review-order-table tfoot td,
  .wp-list-table tfoot th,
  .wp-list-table tfoot td,
  .widefat tfoot th,
  .widefat tfoot td {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce table tfoot th,
.woocommerce table tfoot td,
.woocommerce .shop_table tfoot th,
.woocommerce .shop_table tfoot td,
.woocommerce .woocommerce-table tfoot th,
.woocommerce .woocommerce-table tfoot td,
.woocommerce .woocommerce-orders-table tfoot th,
.woocommerce .woocommerce-orders-table tfoot td,
.woocommerce .woocommerce-MyAccount-orders tfoot th,
.woocommerce .woocommerce-MyAccount-orders tfoot td,
.woocommerce .shop_table_responsive tfoot th,
.woocommerce .shop_table_responsive tfoot td,
.woocommerce .my_account_orders tfoot th,
.woocommerce .my_account_orders tfoot td,
.woocommerce .account-orders-table tfoot th,
.woocommerce .account-orders-table tfoot td,
.woocommerce .woocommerce-checkout-review-order-table tfoot th,
.woocommerce .woocommerce-checkout-review-order-table tfoot td,
table.shop_table tfoot th,
table.shop_table tfoot td,
table.woocommerce-table tfoot th,
table.woocommerce-table tfoot td,
table.woocommerce-orders-table tfoot th,
table.woocommerce-orders-table tfoot td,
table.woocommerce-MyAccount-orders tfoot th,
table.woocommerce-MyAccount-orders tfoot td,
table.shop_table_responsive tfoot th,
table.shop_table_responsive tfoot td,
table.my_account_orders tfoot th,
table.my_account_orders tfoot td,
table.account-orders-table tfoot th,
table.account-orders-table tfoot td,
table.woocommerce-checkout-review-order-table tfoot th,
table.woocommerce-checkout-review-order-table tfoot td,
.wp-list-table tfoot th,
.wp-list-table tfoot td,
.widefat tfoot th,
.widefat tfoot td {
  color: #262930;
  padding: 16px 24px;
  font-weight: var(--fw-bold);
}
@media (max-width: 991px) {
  .woocommerce table tfoot th,
  .woocommerce table tfoot td,
  .woocommerce .shop_table tfoot th,
  .woocommerce .shop_table tfoot td,
  .woocommerce .woocommerce-table tfoot th,
  .woocommerce .woocommerce-table tfoot td,
  .woocommerce .woocommerce-orders-table tfoot th,
  .woocommerce .woocommerce-orders-table tfoot td,
  .woocommerce .woocommerce-MyAccount-orders tfoot th,
  .woocommerce .woocommerce-MyAccount-orders tfoot td,
  .woocommerce .shop_table_responsive tfoot th,
  .woocommerce .shop_table_responsive tfoot td,
  .woocommerce .my_account_orders tfoot th,
  .woocommerce .my_account_orders tfoot td,
  .woocommerce .account-orders-table tfoot th,
  .woocommerce .account-orders-table tfoot td,
  .woocommerce .woocommerce-checkout-review-order-table tfoot th,
  .woocommerce .woocommerce-checkout-review-order-table tfoot td,
  table.shop_table tfoot th,
  table.shop_table tfoot td,
  table.woocommerce-table tfoot th,
  table.woocommerce-table tfoot td,
  table.woocommerce-orders-table tfoot th,
  table.woocommerce-orders-table tfoot td,
  table.woocommerce-MyAccount-orders tfoot th,
  table.woocommerce-MyAccount-orders tfoot td,
  table.shop_table_responsive tfoot th,
  table.shop_table_responsive tfoot td,
  table.my_account_orders tfoot th,
  table.my_account_orders tfoot td,
  table.account-orders-table tfoot th,
  table.account-orders-table tfoot td,
  table.woocommerce-checkout-review-order-table tfoot th,
  table.woocommerce-checkout-review-order-table tfoot td,
  .wp-list-table tfoot th,
  .wp-list-table tfoot td,
  .widefat tfoot th,
  .widefat tfoot td {
    padding: 12px 16px;
  }
}
.woocommerce table tfoot th,
.woocommerce .shop_table tfoot th,
.woocommerce .woocommerce-table tfoot th,
.woocommerce .woocommerce-orders-table tfoot th,
.woocommerce .woocommerce-MyAccount-orders tfoot th,
.woocommerce .shop_table_responsive tfoot th,
.woocommerce .my_account_orders tfoot th,
.woocommerce .account-orders-table tfoot th,
.woocommerce .woocommerce-checkout-review-order-table tfoot th,
table.shop_table tfoot th,
table.woocommerce-table tfoot th,
table.woocommerce-orders-table tfoot th,
table.woocommerce-MyAccount-orders tfoot th,
table.shop_table_responsive tfoot th,
table.my_account_orders tfoot th,
table.account-orders-table tfoot th,
table.woocommerce-checkout-review-order-table tfoot th,
.wp-list-table tfoot th,
.widefat tfoot th {
  text-align: left;
}

.woocommerce .woocommerce-table--order-details thead th.product-name,
table.woocommerce-table--order-details thead th.product-name {
  width: 60%;
}
.woocommerce .woocommerce-table--order-details thead th.product-total,
table.woocommerce-table--order-details thead th.product-total {
  width: 40%;
  text-align: right;
}
.woocommerce .woocommerce-table--order-details tbody td.product-name strong,
table.woocommerce-table--order-details tbody td.product-name strong {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce .woocommerce-table--order-details tbody td.product-name strong,
  table.woocommerce-table--order-details tbody td.product-name strong {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce .woocommerce-table--order-details tbody td.product-name strong,
  table.woocommerce-table--order-details tbody td.product-name strong {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce .woocommerce-table--order-details tbody td.product-name strong,
  table.woocommerce-table--order-details tbody td.product-name strong {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce .woocommerce-table--order-details tbody td.product-total,
table.woocommerce-table--order-details tbody td.product-total {
  text-align: right;
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce .woocommerce-table--order-details tbody td.product-total,
  table.woocommerce-table--order-details tbody td.product-total {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce .woocommerce-table--order-details tbody td.product-total,
  table.woocommerce-table--order-details tbody td.product-total {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce .woocommerce-table--order-details tbody td.product-total,
  table.woocommerce-table--order-details tbody td.product-total {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce .woocommerce-table--order-details tfoot th,
table.woocommerce-table--order-details tfoot th {
  text-align: right;
}
.woocommerce .woocommerce-table--order-details tfoot th:first-child,
table.woocommerce-table--order-details tfoot th:first-child {
  text-align: left;
}
.woocommerce .woocommerce-table--order-details tfoot td,
table.woocommerce-table--order-details tfoot td {
  text-align: right;
}

.woocommerce .woocommerce-orders-table thead th,
.woocommerce .woocommerce-MyAccount-orders thead th,
table.woocommerce-orders-table thead th,
table.woocommerce-MyAccount-orders thead th {
  white-space: nowrap;
}
@media (max-width: 991px) {
  .woocommerce .woocommerce-orders-table thead th,
  .woocommerce .woocommerce-MyAccount-orders thead th,
  table.woocommerce-orders-table thead th,
  table.woocommerce-MyAccount-orders thead th {
    white-space: normal;
  }
}
.woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-number,
.woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-number,
table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-number,
table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-number {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-number,
  .woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-number,
  table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-number,
  table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-number {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-number,
  .woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-number,
  table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-number,
  table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-number {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-number,
  .woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-number,
  table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-number,
  table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-number {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-number a,
.woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-number a,
table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-number a,
table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-number a {
  font-weight: var(--fw-bold);
}
.woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status,
.woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status,
table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status,
table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-weight: var(--fw-semibold);
}
@media (min-width: 1920px) {
  .woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status,
  .woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status,
  table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status,
  table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status {
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status,
  .woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status,
  table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status,
  table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status {
    font-size: 12px;
    line-height: 15px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status,
  .woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status,
  table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status,
  table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status {
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 0px;
  }
}
.woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-completed,
.woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-completed,
table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-completed,
table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-completed {
  background-color: rgba(42, 199, 105, 0.08);
  color: #2AC769;
}
.woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-processing,
.woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-processing,
table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-processing,
table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-processing {
  background-color: rgba(246, 166, 9, 0.08);
  color: #FFCC00;
}
.woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-pending, .woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-on-hold,
.woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-pending,
.woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-on-hold,
table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-pending,
table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-on-hold,
table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-pending,
table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-on-hold {
  background-color: #F0F1F5;
  color: #5B5E67;
}
.woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-cancelled, .woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-failed, .woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-refunded,
.woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-cancelled,
.woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-failed,
.woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-refunded,
table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-cancelled,
table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-failed,
table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-refunded,
table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-cancelled,
table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-failed,
table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-status .woocommerce-order-status.status-refunded {
  background-color: rgba(197, 1, 76, 0.08);
  color: #C5014C;
}
.woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button,
.woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .button,
.woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button,
.woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .button,
table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button,
table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .button,
table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button,
table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .button {
  display: inline-block;
  padding: 8px 16px;
  background-color: #F7F9FB;
  color: #262930;
  border: 1px solid #E4E4E6;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button,
  .woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .button,
  .woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button,
  .woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .button,
  table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button,
  table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .button,
  table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button,
  table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .button {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button,
  .woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .button,
  .woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button,
  .woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .button,
  table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button,
  table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .button,
  table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button,
  table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .button {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button,
  .woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .button,
  .woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button,
  .woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .button,
  table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button,
  table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .button,
  table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button,
  table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .button {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button,
.woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .button,
.woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button,
.woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .button,
table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button,
table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .button,
table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button,
table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .button {
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button:hover,
.woocommerce .woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .button:hover,
.woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button:hover,
.woocommerce .woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .button:hover,
table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button:hover,
table.woocommerce-orders-table tbody td.woocommerce-orders-table__cell-order-actions .button:hover,
table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .woocommerce-button:hover,
table.woocommerce-MyAccount-orders tbody td.woocommerce-orders-table__cell-order-actions .button:hover {
  background-color: #FF0019;
  color: white;
  border-color: #FF0019;
}

.woocommerce .shop_table.cart thead th.product-name,
table.shop_table.cart thead th.product-name {
  width: 50%;
}
.woocommerce .shop_table.cart thead th.product-price, .woocommerce .shop_table.cart thead th.product-quantity, .woocommerce .shop_table.cart thead th.product-subtotal,
table.shop_table.cart thead th.product-price,
table.shop_table.cart thead th.product-quantity,
table.shop_table.cart thead th.product-subtotal {
  width: 16.66%;
  text-align: center;
}
.woocommerce .shop_table.cart thead th.product-remove,
table.shop_table.cart thead th.product-remove {
  width: auto;
}
.woocommerce .shop_table.cart tbody td.product-name a,
table.shop_table.cart tbody td.product-name a {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce .shop_table.cart tbody td.product-name a,
  table.shop_table.cart tbody td.product-name a {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce .shop_table.cart tbody td.product-name a,
  table.shop_table.cart tbody td.product-name a {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce .shop_table.cart tbody td.product-name a,
  table.shop_table.cart tbody td.product-name a {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce .shop_table.cart tbody td.product-name a,
table.shop_table.cart tbody td.product-name a {
  font-weight: var(--fw-bold);
}
.woocommerce .shop_table.cart tbody td.product-price, .woocommerce .shop_table.cart tbody td.product-subtotal,
table.shop_table.cart tbody td.product-price,
table.shop_table.cart tbody td.product-subtotal {
  text-align: center;
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce .shop_table.cart tbody td.product-price, .woocommerce .shop_table.cart tbody td.product-subtotal,
  table.shop_table.cart tbody td.product-price,
  table.shop_table.cart tbody td.product-subtotal {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce .shop_table.cart tbody td.product-price, .woocommerce .shop_table.cart tbody td.product-subtotal,
  table.shop_table.cart tbody td.product-price,
  table.shop_table.cart tbody td.product-subtotal {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce .shop_table.cart tbody td.product-price, .woocommerce .shop_table.cart tbody td.product-subtotal,
  table.shop_table.cart tbody td.product-price,
  table.shop_table.cart tbody td.product-subtotal {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce .shop_table.cart tbody td.product-quantity,
table.shop_table.cart tbody td.product-quantity {
  text-align: center;
}
.woocommerce .shop_table.cart tbody td.product-remove,
table.shop_table.cart tbody td.product-remove {
  text-align: center;
}
.woocommerce .shop_table.cart tbody td.product-remove a,
table.shop_table.cart tbody td.product-remove a {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  color: #8A8C95;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}
.woocommerce .shop_table.cart tbody td.product-remove a:hover,
table.shop_table.cart tbody td.product-remove a:hover {
  background-color: rgba(197, 1, 76, 0.08);
  color: #C5014C;
}

.woocommerce .woocommerce-checkout-review-order-table tbody td.product-name strong,
table.woocommerce-checkout-review-order-table tbody td.product-name strong {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce .woocommerce-checkout-review-order-table tbody td.product-name strong,
  table.woocommerce-checkout-review-order-table tbody td.product-name strong {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce .woocommerce-checkout-review-order-table tbody td.product-name strong,
  table.woocommerce-checkout-review-order-table tbody td.product-name strong {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce .woocommerce-checkout-review-order-table tbody td.product-name strong,
  table.woocommerce-checkout-review-order-table tbody td.product-name strong {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce .woocommerce-checkout-review-order-table tbody td.product-total,
table.woocommerce-checkout-review-order-table tbody td.product-total {
  text-align: right;
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce .woocommerce-checkout-review-order-table tbody td.product-total,
  table.woocommerce-checkout-review-order-table tbody td.product-total {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce .woocommerce-checkout-review-order-table tbody td.product-total,
  table.woocommerce-checkout-review-order-table tbody td.product-total {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce .woocommerce-checkout-review-order-table tbody td.product-total,
  table.woocommerce-checkout-review-order-table tbody td.product-total {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce .woocommerce-checkout-review-order-table tfoot tr.cart-subtotal th,
.woocommerce .woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td, .woocommerce .woocommerce-checkout-review-order-table tfoot tr.shipping th,
.woocommerce .woocommerce-checkout-review-order-table tfoot tr.shipping td, .woocommerce .woocommerce-checkout-review-order-table tfoot tr.order-total th,
.woocommerce .woocommerce-checkout-review-order-table tfoot tr.order-total td,
table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal th,
table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td,
table.woocommerce-checkout-review-order-table tfoot tr.shipping th,
table.woocommerce-checkout-review-order-table tfoot tr.shipping td,
table.woocommerce-checkout-review-order-table tfoot tr.order-total th,
table.woocommerce-checkout-review-order-table tfoot tr.order-total td {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce .woocommerce-checkout-review-order-table tfoot tr.cart-subtotal th,
  .woocommerce .woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td, .woocommerce .woocommerce-checkout-review-order-table tfoot tr.shipping th,
  .woocommerce .woocommerce-checkout-review-order-table tfoot tr.shipping td, .woocommerce .woocommerce-checkout-review-order-table tfoot tr.order-total th,
  .woocommerce .woocommerce-checkout-review-order-table tfoot tr.order-total td,
  table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal th,
  table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td,
  table.woocommerce-checkout-review-order-table tfoot tr.shipping th,
  table.woocommerce-checkout-review-order-table tfoot tr.shipping td,
  table.woocommerce-checkout-review-order-table tfoot tr.order-total th,
  table.woocommerce-checkout-review-order-table tfoot tr.order-total td {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce .woocommerce-checkout-review-order-table tfoot tr.cart-subtotal th,
  .woocommerce .woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td, .woocommerce .woocommerce-checkout-review-order-table tfoot tr.shipping th,
  .woocommerce .woocommerce-checkout-review-order-table tfoot tr.shipping td, .woocommerce .woocommerce-checkout-review-order-table tfoot tr.order-total th,
  .woocommerce .woocommerce-checkout-review-order-table tfoot tr.order-total td,
  table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal th,
  table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td,
  table.woocommerce-checkout-review-order-table tfoot tr.shipping th,
  table.woocommerce-checkout-review-order-table tfoot tr.shipping td,
  table.woocommerce-checkout-review-order-table tfoot tr.order-total th,
  table.woocommerce-checkout-review-order-table tfoot tr.order-total td {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce .woocommerce-checkout-review-order-table tfoot tr.cart-subtotal th,
  .woocommerce .woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td, .woocommerce .woocommerce-checkout-review-order-table tfoot tr.shipping th,
  .woocommerce .woocommerce-checkout-review-order-table tfoot tr.shipping td, .woocommerce .woocommerce-checkout-review-order-table tfoot tr.order-total th,
  .woocommerce .woocommerce-checkout-review-order-table tfoot tr.order-total td,
  table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal th,
  table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td,
  table.woocommerce-checkout-review-order-table tfoot tr.shipping th,
  table.woocommerce-checkout-review-order-table tfoot tr.shipping td,
  table.woocommerce-checkout-review-order-table tfoot tr.order-total th,
  table.woocommerce-checkout-review-order-table tfoot tr.order-total td {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce .woocommerce-checkout-review-order-table tfoot tr.order-total,
table.woocommerce-checkout-review-order-table tfoot tr.order-total {
  border-top: 2px solid #E4E4E6;
  border-bottom: 2px solid #E4E4E6;
}
.woocommerce .woocommerce-checkout-review-order-table tfoot tr.order-total th,
.woocommerce .woocommerce-checkout-review-order-table tfoot tr.order-total td,
table.woocommerce-checkout-review-order-table tfoot tr.order-total th,
table.woocommerce-checkout-review-order-table tfoot tr.order-total td {
  font-size: 18px;
  padding: 20px 24px;
}

.wp-list-table thead th.check-column {
  width: 2.2em;
  padding: 11px 0 0 0;
  text-align: center;
}
.wp-list-table tbody tr.alternate {
  background-color: rgba(247, 249, 251, 0.56);
}
.wp-list-table tbody tr.selected {
  background-color: rgba(246, 246, 247, 0.72);
}
.wp-list-table tbody td.check-column {
  padding: 11px 0 0 0;
  text-align: center;
}
.wp-list-table tbody td.column-title strong {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .wp-list-table tbody td.column-title strong {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .wp-list-table tbody td.column-title strong {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .wp-list-table tbody td.column-title strong {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.wp-list-table tbody td.column-title strong a {
  font-weight: var(--fw-bold);
}

.widefat {
  border: 1px solid #E4E4E6;
  border-radius: 8px;
  overflow: hidden;
}
.widefat thead th {
  border-bottom: 2px solid #E4E4E6;
}

@media (max-width: 991px) {
  .shop_table_responsive thead,
  .woocommerce-table--responsive thead {
    display: none;
  }
  .shop_table_responsive tbody tr,
  .woocommerce-table--responsive tbody tr {
    display: block;
    margin-bottom: 16px;
    border: 1px solid #E4E4E6;
    border-radius: 8px;
    padding: 12px;
    background-color: #F7F9FB;
  }
  .shop_table_responsive tbody tr:nth-child(even),
  .woocommerce-table--responsive tbody tr:nth-child(even) {
    background-color: #F7F9FB;
  }
  .shop_table_responsive tbody tr:hover,
  .woocommerce-table--responsive tbody tr:hover {
    background-color: rgba(246, 246, 247, 0.72);
  }
  .shop_table_responsive tbody td,
  .woocommerce-table--responsive tbody td {
    display: block;
    padding: 8px 0;
    text-align: left;
    border: none;
    border-bottom: 1px solid #E4E4E6;
  }
  .shop_table_responsive tbody td:last-child,
  .woocommerce-table--responsive tbody td:last-child {
    border-bottom: none;
  }
  .shop_table_responsive tbody td[data-title]:before,
  .woocommerce-table--responsive tbody td[data-title]:before {
    content: attr(data-title) ": ";
    font-family: var(--font-primary);
    font-weight: var(--fw-bold);
    display: inline-block;
    margin-right: 8px;
    color: #5B5E67;
  }
}
@media (max-width: 991px) and (min-width: 1920px) {
  .shop_table_responsive tbody td[data-title]:before,
  .woocommerce-table--responsive tbody td[data-title]:before {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) and (max-width: 1919px) and (min-width: 992px) {
  .shop_table_responsive tbody td[data-title]:before,
  .woocommerce-table--responsive tbody td[data-title]:before {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .shop_table_responsive tbody td[data-title]:before,
  .woocommerce-table--responsive tbody td[data-title]:before {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .shop_table_responsive tbody td:empty,
  .woocommerce-table--responsive tbody td:empty {
    display: none;
  }
  .shop_table_responsive tfoot,
  .woocommerce-table--responsive tfoot {
    display: block;
  }
  .shop_table_responsive tfoot tr,
  .woocommerce-table--responsive tfoot tr {
    display: block;
    margin-bottom: 8px;
    border: 1px solid #E4E4E6;
    border-radius: 8px;
    padding: 12px;
    background-color: #F7F9FB;
  }
  .shop_table_responsive tfoot th,
  .shop_table_responsive tfoot td,
  .woocommerce-table--responsive tfoot th,
  .woocommerce-table--responsive tfoot td {
    display: block;
    padding: 8px 0;
    text-align: left;
    border: none;
    border-bottom: 1px solid #E4E4E6;
  }
  .shop_table_responsive tfoot th:last-child,
  .shop_table_responsive tfoot td:last-child,
  .woocommerce-table--responsive tfoot th:last-child,
  .woocommerce-table--responsive tfoot td:last-child {
    border-bottom: none;
  }
  .shop_table_responsive tfoot th[data-title]:before,
  .shop_table_responsive tfoot td[data-title]:before,
  .woocommerce-table--responsive tfoot th[data-title]:before,
  .woocommerce-table--responsive tfoot td[data-title]:before {
    content: attr(data-title) ": ";
    font-family: var(--font-primary);
    font-weight: var(--fw-bold);
    display: inline-block;
    margin-right: 8px;
    color: #5B5E67;
  }
}
@media (max-width: 991px) and (min-width: 1920px) {
  .shop_table_responsive tfoot th[data-title]:before,
  .shop_table_responsive tfoot td[data-title]:before,
  .woocommerce-table--responsive tfoot th[data-title]:before,
  .woocommerce-table--responsive tfoot td[data-title]:before {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) and (max-width: 1919px) and (min-width: 992px) {
  .shop_table_responsive tfoot th[data-title]:before,
  .shop_table_responsive tfoot td[data-title]:before,
  .woocommerce-table--responsive tfoot th[data-title]:before,
  .woocommerce-table--responsive tfoot td[data-title]:before {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) and (max-width: 991px) {
  .shop_table_responsive tfoot th[data-title]:before,
  .shop_table_responsive tfoot td[data-title]:before,
  .woocommerce-table--responsive tfoot th[data-title]:before,
  .woocommerce-table--responsive tfoot td[data-title]:before {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}

table:empty::after,
table tbody:empty::after {
  content: attr(data-empty-message);
  display: block;
  padding: 40px 24px;
  text-align: center;
  color: #8A8C95;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  table:empty::after,
  table tbody:empty::after {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  table:empty::after,
  table tbody:empty::after {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  table:empty::after,
  table tbody:empty::after {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}

.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 0 24px 0;
}
@media (max-width: 991px) {
  .table-wrapper {
    margin-left: -24px;
    margin-right: -24px;
    padding: 0 24px;
  }
}
.table-wrapper table {
  margin: 0;
  min-width: 600px;
}

.woocommerce-table-container,
.table-container {
  margin: 0 0 32px 0;
}
@media (max-width: 991px) {
  .woocommerce-table-container,
  .table-container {
    margin-bottom: 24px;
  }
}

.woocommerce-table__title,
.table-title {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce-table__title,
  .table-title {
    font-size: 32px;
    line-height: 48px;
    letter-spacing: -0.5px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-table__title,
  .table-title {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-table__title,
  .table-title {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
.woocommerce-table__title,
.table-title {
  margin: 0 0 24px 0;
  color: #262930;
}
@media (max-width: 991px) {
  .woocommerce-table__title,
  .table-title {
    margin-bottom: 16px;
  }
}

/**
 * Sidebar Cart Component
 *
 * Custom sidebar cart that slides in from the right.
 * Overrides all WooCommerce and WordPress default cart styles.
 */
.sidebar-cart {
  position: fixed;
  top: 0;
  right: 0;
  width: 648px;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: -32px 0px 64px rgba(0, 0, 0, 0.08);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.sidebar-cart.is-open {
  transform: translateX(0);
}
.sidebar-cart[aria-hidden=true] {
  visibility: hidden;
}
.sidebar-cart[aria-hidden=false] {
  visibility: visible;
}

.sidebar-cart__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.sidebar-cart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 48px 56px 16px 56px;
}

.sidebar-cart__title {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .sidebar-cart__title {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .sidebar-cart__title {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .sidebar-cart__title {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.sidebar-cart__title {
  margin: 0;
  color: #262930;
}

.sidebar-cart__body {
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.sidebar-cart__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
}

.sidebar-cart__empty-message {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .sidebar-cart__empty-message {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .sidebar-cart__empty-message {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .sidebar-cart__empty-message {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.sidebar-cart__empty-message {
  color: #8A8C95;
  margin: 0;
}

.sidebar-cart__items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-cart__item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px;
  border-bottom: 1px solid #E4E4E6;
  position: relative;
}
.sidebar-cart__item .sidebar-cart__item-image {
  flex-shrink: 0;
  width: 77px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
}
.sidebar-cart__item .sidebar-cart__item-image a,
.sidebar-cart__item .sidebar-cart__item-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar-cart__item .sidebar-cart__item-image img {
  border-radius: 8px;
}
.sidebar-cart__item .sidebar-cart__item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.sidebar-cart__item .sidebar-cart__item-name {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .sidebar-cart__item .sidebar-cart__item-name {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .sidebar-cart__item .sidebar-cart__item-name {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .sidebar-cart__item .sidebar-cart__item-name {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.sidebar-cart__item .sidebar-cart__item-name {
  color: #262930;
  margin: 0;
  line-height: 1.4;
}
.sidebar-cart__item .sidebar-cart__item-name a {
  color: inherit;
  text-decoration: none;
}
.sidebar-cart__item .sidebar-cart__item-name a:hover {
  color: #FF0019;
}
.sidebar-cart__item .sidebar-cart__item-details dl {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .sidebar-cart__item .sidebar-cart__item-details dl {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .sidebar-cart__item .sidebar-cart__item-details dl {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .sidebar-cart__item .sidebar-cart__item-details dl {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.sidebar-cart__item .sidebar-cart__item-details dl {
  color: #8A8C95;
}
.sidebar-cart__item .sidebar-cart__item-details dl dt {
  display: inline;
  font-weight: var(--fw-semibold);
  margin-right: 4px;
}
.sidebar-cart__item .sidebar-cart__item-details dl dt::after {
  content: ":";
}
.sidebar-cart__item .sidebar-cart__item-details dl dd {
  display: inline;
  margin: 0;
  margin-right: 8px;
}
.sidebar-cart__item .sidebar-cart__item-price {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .sidebar-cart__item .sidebar-cart__item-price {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .sidebar-cart__item .sidebar-cart__item-price {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .sidebar-cart__item .sidebar-cart__item-price {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.sidebar-cart__item .sidebar-cart__item-price {
  color: #262930;
  font-size: 15px;
  line-height: 24px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  width: 88px;
}
.sidebar-cart__item .sidebar-cart__item-price .woocommerce-price-suffix {
  display: none;
}
.sidebar-cart__item .sidebar-cart__item-price ins {
  text-decoration: none;
  color: #FF0019;
}
.sidebar-cart__item button.sidebar-cart__item-remove {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s ease;
  flex-shrink: 0;
}
.sidebar-cart__item button.sidebar-cart__item-remove:hover, .sidebar-cart__item button.sidebar-cart__item-remove:focus {
  background: inherit;
  outline: none;
}
.sidebar-cart__item button.sidebar-cart__item-remove svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.sidebar-cart__item button.sidebar-cart__item-remove span {
  font-size: 18px;
  line-height: 1;
}

.sidebar-cart__footer {
  padding: 24px;
  border-top: 1px solid #E4E4E6;
}

.sidebar-cart__subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 32px 0;
}

.sidebar-cart__subtotal-label {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .sidebar-cart__subtotal-label {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .sidebar-cart__subtotal-label {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .sidebar-cart__subtotal-label {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.sidebar-cart__subtotal-label {
  color: #262930;
}

.sidebar-cart__subtotal-amount {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .sidebar-cart__subtotal-amount {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .sidebar-cart__subtotal-amount {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .sidebar-cart__subtotal-amount {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.sidebar-cart__subtotal-amount {
  color: #262930;
}

.sidebar-cart__actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.sidebar-cart__button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 18px 32px;
  font-size: 15px;
  line-height: 20px;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.sidebar-cart__button[type=button] {
  cursor: pointer;
}

@media (max-width: 991px) {
  .sidebar-cart {
    width: 100%;
  }
  .sidebar-cart__header,
  .sidebar-cart__body,
  .sidebar-cart__footer {
    padding: 16px;
  }
  .sidebar-cart__item {
    gap: 16px;
  }
  .sidebar-cart__item-image {
    width: 60px;
    height: 50px;
  }
  .sidebar-cart__item-price {
    width: auto;
  }
}
body.woocommerce .widget_shopping_cart,
body.woocommerce-page .widget_shopping_cart {
  display: none !important;
}

body.sidebar-cart-open .widget_shopping_cart {
  display: none !important;
}

.sidebar-cart__quantity-btn:focus-visible,
.sidebar-cart__item-remove:focus-visible {
  outline: 2px solid #FF0019;
  outline-offset: 2px;
}

.sidebar-cart .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  .sidebar-cart {
    transition: none;
  }
}
body.sidebar-cart-open {
  overflow: hidden;
}

/**
 * Modal component
 *
 * Centered dialog over a semi-transparent backdrop.
 * Open/close controlled via .is-open on .modal (see js/modal.js).
 */
body.modal-open {
  overflow: hidden;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100000;
  align-items: center;
  justify-content: center;
  padding: 24px;
  box-sizing: border-box;
}
.modal.is-open {
  display: flex;
}
.modal.is-open .modal__backdrop {
  opacity: 1;
}
.modal.is-open .modal__dialog {
  opacity: 1;
  transform: translateY(0);
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(38, 41, 48, 0.48);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease-out;
}

.modal__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 560px;
  max-height: min(90vh, 900px);
  margin: 0 auto;
  padding: 32px;
  background: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(38, 41, 48, 0.16);
  box-sizing: border-box;
  overflow: visible;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}
.modal__dialog--sm {
  max-width: 400px;
}
.modal__dialog--md {
  max-width: 560px;
}
.modal__dialog--lg {
  max-width: 720px;
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
  margin-bottom: 24px;
  padding-right: 56px;
}
.modal__header--close-only {
  justify-content: flex-end;
  padding-right: 0;
  margin-bottom: 16px;
}

.modal__title {
  margin: 0;
  flex: 1;
  min-width: 0;
  color: #262930;
  font-size: 21px;
  line-height: 32px;
  font-weight: 700;
}

.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  transform: translate(50%, -50%);
  line-height: 0;
}

.modal__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  color: #5B5E67;
  font-size: 15px;
  line-height: 24px;
}
.modal__body > :first-child {
  margin-top: 0;
}
.modal__body > :last-child {
  margin-bottom: 0;
}

.modal__dialog--no-title .modal__header {
  margin-bottom: 16px;
  min-height: 0;
}

@media (max-width: 991px) {
  .modal {
    padding: 24px;
    align-items: flex-end;
    padding-bottom: 32px;
  }
}
@media (max-width: 991px) and (min-height: 500px) {
  .modal {
    align-items: center;
    padding-bottom: 24px;
  }
}
@media (max-width: 991px) {
  .modal__dialog {
    padding: 24px;
    max-height: calc(100vh - 32px * 2);
  }
  .modal__title {
    font-size: 18px;
    line-height: 28px;
  }
}
/**
 * Cart Page Component
 *
 * Custom WooCommerce cart page styling following Figma design.
 * Includes responsive layouts for desktop and mobile views.
 * Reference: Figma node-id=5483-5365
 */
.woocommerce-cart .woocommerce {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 991px) {
  .woocommerce-cart .woocommerce {
    padding: 0 48px;
  }
}
.woocommerce-cart .entry-title,
.woocommerce-cart .page-title {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce-cart .entry-title,
  .woocommerce-cart .page-title {
    font-size: 40px;
    line-height: 56px;
    letter-spacing: -1px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-cart .entry-title,
  .woocommerce-cart .page-title {
    font-size: 32px;
    line-height: 48px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-cart .entry-title,
  .woocommerce-cart .page-title {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
.woocommerce-cart .entry-title,
.woocommerce-cart .page-title {
  color: #262930;
  margin: 0 0 32px;
}
@media (max-width: 720px) {
  .woocommerce-cart .entry-title,
  .woocommerce-cart .page-title {
    font-family: var(--font-primary);
    font-weight: var(--fw-bold);
    margin-bottom: 24px;
  }
}
@media (max-width: 720px) and (min-width: 1920px) {
  .woocommerce-cart .entry-title,
  .woocommerce-cart .page-title {
    font-size: 32px;
    line-height: 48px;
    letter-spacing: -0.5px;
  }
}
@media (max-width: 720px) and (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-cart .entry-title,
  .woocommerce-cart .page-title {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 720px) and (max-width: 991px) {
  .woocommerce-cart .entry-title,
  .woocommerce-cart .page-title {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 990px) {
  .woocommerce-cart .shop_table_responsive thead {
    display: none;
  }
}
@media (max-width: 990px) {
  .woocommerce-cart .shop_table_responsive tbody tr {
    display: block;
    margin-bottom: 0;
    border: none;
    border-radius: 0;
    padding: 0;
    background-color: transparent;
  }
}
@media (max-width: 990px) {
  .woocommerce-cart .shop_table_responsive tbody td {
    display: block;
    text-align: left;
    border: none;
    padding: 0;
  }
  .woocommerce-cart .shop_table_responsive tbody td[data-title]:before {
    display: none !important;
  }
}

.woocommerce-cart .woocommerce-cart-form,
.woocommerce-cart .shop_table.cart,
.woocommerce .shop_table.cart,
table.shop_table.cart,
.shop_table.woocommerce-cart-form__contents {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  background-color: transparent;
  border: none;
  border-radius: 8px;
  overflow: hidden;
}
.woocommerce-cart .woocommerce-cart-form thead,
.woocommerce-cart .shop_table.cart thead,
.woocommerce .shop_table.cart thead,
table.shop_table.cart thead,
.shop_table.woocommerce-cart-form__contents thead {
  background-color: #F7F9FB;
}
.woocommerce-cart .woocommerce-cart-form thead tr,
.woocommerce-cart .shop_table.cart thead tr,
.woocommerce .shop_table.cart thead tr,
table.shop_table.cart thead tr,
.shop_table.woocommerce-cart-form__contents thead tr {
  background-color: #F7F9FB;
  border: none;
}
.woocommerce-cart .woocommerce-cart-form thead tr:hover,
.woocommerce-cart .shop_table.cart thead tr:hover,
.woocommerce .shop_table.cart thead tr:hover,
table.shop_table.cart thead tr:hover,
.shop_table.woocommerce-cart-form__contents thead tr:hover {
  background-color: #F7F9FB;
}
.woocommerce-cart .woocommerce-cart-form thead th,
.woocommerce-cart .shop_table.cart thead th,
.woocommerce .shop_table.cart thead th,
table.shop_table.cart thead th,
.shop_table.woocommerce-cart-form__contents thead th {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-cart .woocommerce-cart-form thead th,
  .woocommerce-cart .shop_table.cart thead th,
  .woocommerce .shop_table.cart thead th,
  table.shop_table.cart thead th,
  .shop_table.woocommerce-cart-form__contents thead th {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-cart .woocommerce-cart-form thead th,
  .woocommerce-cart .shop_table.cart thead th,
  .woocommerce .shop_table.cart thead th,
  table.shop_table.cart thead th,
  .shop_table.woocommerce-cart-form__contents thead th {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-cart .woocommerce-cart-form thead th,
  .woocommerce-cart .shop_table.cart thead th,
  .woocommerce .shop_table.cart thead th,
  table.shop_table.cart thead th,
  .shop_table.woocommerce-cart-form__contents thead th {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.woocommerce-cart .woocommerce-cart-form thead th,
.woocommerce-cart .shop_table.cart thead th,
.woocommerce .shop_table.cart thead th,
table.shop_table.cart thead th,
.shop_table.woocommerce-cart-form__contents thead th {
  color: #5B5E67;
  text-align: left;
  font-weight: var(--fw-medium);
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 16px 20px;
  border: none;
  background-color: transparent;
}
.woocommerce-cart .woocommerce-cart-form thead th.product-remove,
.woocommerce-cart .shop_table.cart thead th.product-remove,
.woocommerce .shop_table.cart thead th.product-remove,
table.shop_table.cart thead th.product-remove,
.shop_table.woocommerce-cart-form__contents thead th.product-remove {
  width: 48px;
  text-align: center;
  padding-left: 16px;
  padding-right: 8px;
}
.woocommerce-cart .woocommerce-cart-form thead th.product-thumbnail,
.woocommerce-cart .shop_table.cart thead th.product-thumbnail,
.woocommerce .shop_table.cart thead th.product-thumbnail,
table.shop_table.cart thead th.product-thumbnail,
.shop_table.woocommerce-cart-form__contents thead th.product-thumbnail {
  width: 112px;
  padding-left: 8px;
  padding-right: 16px;
}
.woocommerce-cart .woocommerce-cart-form thead th.product-name,
.woocommerce-cart .shop_table.cart thead th.product-name,
.woocommerce .shop_table.cart thead th.product-name,
table.shop_table.cart thead th.product-name,
.shop_table.woocommerce-cart-form__contents thead th.product-name {
  width: auto;
}
.woocommerce-cart .woocommerce-cart-form thead th.product-price,
.woocommerce-cart .shop_table.cart thead th.product-price,
.woocommerce .shop_table.cart thead th.product-price,
table.shop_table.cart thead th.product-price,
.shop_table.woocommerce-cart-form__contents thead th.product-price {
  width: 15%;
  text-align: center;
}
.woocommerce-cart .woocommerce-cart-form thead th.product-quantity,
.woocommerce-cart .shop_table.cart thead th.product-quantity,
.woocommerce .shop_table.cart thead th.product-quantity,
table.shop_table.cart thead th.product-quantity,
.shop_table.woocommerce-cart-form__contents thead th.product-quantity {
  width: 18%;
  text-align: center;
}
.woocommerce-cart .woocommerce-cart-form thead th.product-subtotal,
.woocommerce-cart .shop_table.cart thead th.product-subtotal,
.woocommerce .shop_table.cart thead th.product-subtotal,
table.shop_table.cart thead th.product-subtotal,
.shop_table.woocommerce-cart-form__contents thead th.product-subtotal {
  width: 15%;
  text-align: right;
  padding-right: 24px;
}
@media (max-width: 990px) {
  .woocommerce-cart .woocommerce-cart-form thead,
  .woocommerce-cart .shop_table.cart thead,
  .woocommerce .shop_table.cart thead,
  table.shop_table.cart thead,
  .shop_table.woocommerce-cart-form__contents thead {
    display: none;
  }
}
.woocommerce-cart .woocommerce-cart-form tbody,
.woocommerce-cart .shop_table.cart tbody,
.woocommerce .shop_table.cart tbody,
table.shop_table.cart tbody,
.shop_table.woocommerce-cart-form__contents tbody {
  background-color: transparent;
}
.woocommerce-cart .woocommerce-cart-form tbody tr,
.woocommerce-cart .shop_table.cart tbody tr,
.woocommerce .shop_table.cart tbody tr,
table.shop_table.cart tbody tr,
.shop_table.woocommerce-cart-form__contents tbody tr {
  background-color: #FFFFFF !important;
  border-bottom: 1px solid #E4E4E6;
  transition: background-color 0.2s ease;
}
.woocommerce-cart .woocommerce-cart-form tbody tr:nth-child(even),
.woocommerce-cart .shop_table.cart tbody tr:nth-child(even),
.woocommerce .shop_table.cart tbody tr:nth-child(even),
table.shop_table.cart tbody tr:nth-child(even),
.shop_table.woocommerce-cart-form__contents tbody tr:nth-child(even) {
  background-color: #FFFFFF !important;
}
.woocommerce-cart .woocommerce-cart-form tbody tr:hover,
.woocommerce-cart .shop_table.cart tbody tr:hover,
.woocommerce .shop_table.cart tbody tr:hover,
table.shop_table.cart tbody tr:hover,
.shop_table.woocommerce-cart-form__contents tbody tr:hover {
  background-color: rgba(247, 249, 251, 0.5) !important;
}
.woocommerce-cart .woocommerce-cart-form tbody tr:last-child,
.woocommerce-cart .shop_table.cart tbody tr:last-child,
.woocommerce .shop_table.cart tbody tr:last-child,
table.shop_table.cart tbody tr:last-child,
.shop_table.woocommerce-cart-form__contents tbody tr:last-child {
  border-bottom: none;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td,
.woocommerce .shop_table.cart tbody tr.cart_item td,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td,
table.shop_table.cart tbody tr.cart_item td,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td {
  padding: 20px;
  vertical-align: middle;
  border: none;
  background-color: transparent;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-remove, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-remove,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-remove,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-remove,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-remove,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-remove,
table.shop_table.cart tbody tr.cart_item td.product-remove,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-remove,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-remove,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-remove {
  text-align: center;
  padding-left: 16px;
  padding-right: 8px;
  width: 48px;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-remove a.remove, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-remove a.remove,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-remove a.remove,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-remove a.remove,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-remove a.remove,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-remove a.remove,
table.shop_table.cart tbody tr.cart_item td.product-remove a.remove,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-remove a.remove,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-remove a.remove,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-remove a.remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #8A8C95;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 4px;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-remove a.remove:hover, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-remove a.remove:hover,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-remove a.remove:hover,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-remove a.remove:hover,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-remove a.remove:hover,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-remove a.remove:hover,
table.shop_table.cart tbody tr.cart_item td.product-remove a.remove:hover,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-remove a.remove:hover,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-remove a.remove:hover,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-remove a.remove:hover {
  color: #FF0019;
  background-color: rgba(255, 0, 25, 0.08);
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-thumbnail, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-thumbnail,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-thumbnail,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail,
table.shop_table.cart tbody tr.cart_item td.product-thumbnail,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-thumbnail,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail {
  padding-left: 8px;
  padding-right: 16px;
  width: 112px;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-thumbnail a, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail a,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-thumbnail a,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail a,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-thumbnail a,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail a,
table.shop_table.cart tbody tr.cart_item td.product-thumbnail a,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail a,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-thumbnail a,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail a {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  background: #F7F9FB;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-thumbnail a img, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail a img,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-thumbnail a img,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail a img,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-thumbnail a img,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail a img,
table.shop_table.cart tbody tr.cart_item td.product-thumbnail a img,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail a img,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-thumbnail a img,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-name,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name,
table.shop_table.cart tbody tr.cart_item td.product-name,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-name,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name,
  table.shop_table.cart tbody tr.cart_item td.product-name,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-name,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name,
  table.shop_table.cart tbody tr.cart_item td.product-name,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-name,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name,
  table.shop_table.cart tbody tr.cart_item td.product-name,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-name,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name,
table.shop_table.cart tbody tr.cart_item td.product-name,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name {
  font-weight: var(--fw-semibold);
  color: #262930;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name a, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name a,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name a,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name a,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-name a,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name a,
table.shop_table.cart tbody tr.cart_item td.product-name a,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name a,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name a,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name a:hover, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name a:hover,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name a:hover,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name a:hover,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-name a:hover,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name a:hover,
table.shop_table.cart tbody tr.cart_item td.product-name a:hover,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name a:hover,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name a:hover,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name a:hover {
  color: #FF0019;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name .variation, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name .variation,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name .variation,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-name .variation,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation,
table.shop_table.cart tbody tr.cart_item td.product-name .variation,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name .variation,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name .variation {
  margin-top: 8px;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name .variation dt,
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name .variation dd, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
.woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name .variation dt,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name .variation dd,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-name .variation dt,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-name .variation dd,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
table.shop_table.cart tbody tr.cart_item td.product-name .variation dt,
table.shop_table.cart tbody tr.cart_item td.product-name .variation dd,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name .variation dt,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name .variation dd,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd {
  display: inline;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name .variation dt,
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name .variation dd, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
  .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name .variation dt,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name .variation dd,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-name .variation dt,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-name .variation dd,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
  table.shop_table.cart tbody tr.cart_item td.product-name .variation dt,
  table.shop_table.cart tbody tr.cart_item td.product-name .variation dd,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name .variation dt,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name .variation dd,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name .variation dt,
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name .variation dd, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
  .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name .variation dt,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name .variation dd,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-name .variation dt,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-name .variation dd,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
  table.shop_table.cart tbody tr.cart_item td.product-name .variation dt,
  table.shop_table.cart tbody tr.cart_item td.product-name .variation dd,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name .variation dt,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name .variation dd,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name .variation dt,
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name .variation dd, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
  .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name .variation dt,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name .variation dd,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-name .variation dt,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-name .variation dd,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
  table.shop_table.cart tbody tr.cart_item td.product-name .variation dt,
  table.shop_table.cart tbody tr.cart_item td.product-name .variation dd,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name .variation dt,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name .variation dd,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name .variation dt,
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name .variation dd, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
.woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name .variation dt,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name .variation dd,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-name .variation dt,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-name .variation dd,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
table.shop_table.cart tbody tr.cart_item td.product-name .variation dt,
table.shop_table.cart tbody tr.cart_item td.product-name .variation dd,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name .variation dt,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name .variation dd,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd {
  color: #5B5E67;
  margin: 0;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name .variation dt, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name .variation dt,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-name .variation dt,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
table.shop_table.cart tbody tr.cart_item td.product-name .variation dt,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name .variation dt,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt {
  font-weight: var(--fw-semibold);
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name .variation dt::after, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt::after,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name .variation dt::after,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt::after,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-name .variation dt::after,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt::after,
table.shop_table.cart tbody tr.cart_item td.product-name .variation dt::after,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt::after,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name .variation dt::after,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dt::after {
  content: ": ";
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name .variation dd, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name .variation dd,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-name .variation dd,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
table.shop_table.cart tbody tr.cart_item td.product-name .variation dd,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name .variation dd,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd {
  margin-right: 12px;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name .variation dd p, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd p,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name .variation dd p,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd p,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-name .variation dd p,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd p,
table.shop_table.cart tbody tr.cart_item td.product-name .variation dd p,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd p,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name .variation dd p,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name .variation dd p {
  display: inline;
  margin: 0;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-price, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-price,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-price,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-price,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price,
table.shop_table.cart tbody tr.cart_item td.product-price,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-price,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-price {
  text-align: center;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-price .woocommerce-Price-amount, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-price .woocommerce-Price-amount,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-price .woocommerce-Price-amount,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount,
table.shop_table.cart tbody tr.cart_item td.product-price .woocommerce-Price-amount,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-price .woocommerce-Price-amount,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-price .woocommerce-Price-amount, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-price .woocommerce-Price-amount,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-price .woocommerce-Price-amount,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount,
  table.shop_table.cart tbody tr.cart_item td.product-price .woocommerce-Price-amount,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-price .woocommerce-Price-amount,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-price .woocommerce-Price-amount, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-price .woocommerce-Price-amount,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-price .woocommerce-Price-amount,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount,
  table.shop_table.cart tbody tr.cart_item td.product-price .woocommerce-Price-amount,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-price .woocommerce-Price-amount,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-price .woocommerce-Price-amount, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-price .woocommerce-Price-amount,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-price .woocommerce-Price-amount,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount,
  table.shop_table.cart tbody tr.cart_item td.product-price .woocommerce-Price-amount,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-price .woocommerce-Price-amount,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-price .woocommerce-Price-amount, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-price .woocommerce-Price-amount,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-price .woocommerce-Price-amount,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount,
table.shop_table.cart tbody tr.cart_item td.product-price .woocommerce-Price-amount,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-price .woocommerce-Price-amount,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-price .woocommerce-Price-amount {
  font-weight: var(--fw-semibold);
  color: #262930;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-price del, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-price del,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-price del,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price del,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-price del,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price del,
table.shop_table.cart tbody tr.cart_item td.product-price del,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price del,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-price del,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-price del {
  display: inline-block;
  opacity: 1;
  margin-right: 4px;
  text-decoration: line-through;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-price del .woocommerce-Price-amount, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-price del .woocommerce-Price-amount,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-price del .woocommerce-Price-amount,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price del .woocommerce-Price-amount,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-price del .woocommerce-Price-amount,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price del .woocommerce-Price-amount,
table.shop_table.cart tbody tr.cart_item td.product-price del .woocommerce-Price-amount,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price del .woocommerce-Price-amount,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-price del .woocommerce-Price-amount,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-price del .woocommerce-Price-amount {
  color: #8A8C95;
  font-weight: var(--fw-regular);
  text-decoration: none;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-price ins, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-price ins,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-price ins,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price ins,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-price ins,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price ins,
table.shop_table.cart tbody tr.cart_item td.product-price ins,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price ins,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-price ins,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-price ins {
  text-decoration: none;
  background: none;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-price ins .woocommerce-Price-amount, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-price ins .woocommerce-Price-amount,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-price ins .woocommerce-Price-amount,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price ins .woocommerce-Price-amount,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-price ins .woocommerce-Price-amount,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price ins .woocommerce-Price-amount,
table.shop_table.cart tbody tr.cart_item td.product-price ins .woocommerce-Price-amount,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price ins .woocommerce-Price-amount,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-price ins .woocommerce-Price-amount,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-price ins .woocommerce-Price-amount {
  color: #FF0019;
  font-weight: var(--fw-bold);
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-quantity, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-quantity,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-quantity,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-quantity,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-quantity,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-quantity,
table.shop_table.cart tbody tr.cart_item td.product-quantity,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-quantity,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-quantity,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-quantity {
  text-align: center;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-quantity .quantity, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-quantity .quantity,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-quantity .quantity,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-quantity .quantity,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-quantity .quantity,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-quantity .quantity,
table.shop_table.cart tbody tr.cart_item td.product-quantity .quantity,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-quantity .quantity,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-quantity .quantity,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-quantity .quantity {
  display: inline-flex;
  justify-content: center;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-subtotal, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-subtotal,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-subtotal,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-subtotal,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal,
table.shop_table.cart tbody tr.cart_item td.product-subtotal,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-subtotal,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-subtotal {
  text-align: right;
  padding-right: 24px;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
table.shop_table.cart tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
  table.shop_table.cart tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
  table.shop_table.cart tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
  table.shop_table.cart tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
table.shop_table.cart tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount {
  font-weight: var(--fw-bold);
  color: #262930;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-subtotal del, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-subtotal del,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-subtotal del,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal del,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-subtotal del,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal del,
table.shop_table.cart tbody tr.cart_item td.product-subtotal del,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal del,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-subtotal del,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-subtotal del {
  display: inline-block;
  opacity: 1;
  margin-right: 4px;
  text-decoration: line-through;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-subtotal del .woocommerce-Price-amount, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-subtotal del .woocommerce-Price-amount,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-subtotal del .woocommerce-Price-amount,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal del .woocommerce-Price-amount,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-subtotal del .woocommerce-Price-amount,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal del .woocommerce-Price-amount,
table.shop_table.cart tbody tr.cart_item td.product-subtotal del .woocommerce-Price-amount,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal del .woocommerce-Price-amount,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-subtotal del .woocommerce-Price-amount,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-subtotal del .woocommerce-Price-amount {
  color: #8A8C95;
  font-weight: var(--fw-regular);
  text-decoration: none;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-subtotal ins, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-subtotal ins,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-subtotal ins,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal ins,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-subtotal ins,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal ins,
table.shop_table.cart tbody tr.cart_item td.product-subtotal ins,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal ins,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-subtotal ins,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-subtotal ins {
  text-decoration: none;
  font-weight: 700;
  color: #FF0019;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-subtotal small.tax_label, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-subtotal small.tax_label,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-subtotal small.tax_label,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
table.shop_table.cart tbody tr.cart_item td.product-subtotal small.tax_label,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-subtotal small.tax_label,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label {
  display: block;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-subtotal small.tax_label, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-subtotal small.tax_label,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-subtotal small.tax_label,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
  table.shop_table.cart tbody tr.cart_item td.product-subtotal small.tax_label,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-subtotal small.tax_label,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-subtotal small.tax_label, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-subtotal small.tax_label,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-subtotal small.tax_label,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
  table.shop_table.cart tbody tr.cart_item td.product-subtotal small.tax_label,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-subtotal small.tax_label,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-subtotal small.tax_label, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-subtotal small.tax_label,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-subtotal small.tax_label,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
  table.shop_table.cart tbody tr.cart_item td.product-subtotal small.tax_label,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-subtotal small.tax_label,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-subtotal small.tax_label, .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
.woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-subtotal small.tax_label,
.woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
.woocommerce .shop_table.cart tbody tr.cart_item td.product-subtotal small.tax_label,
.woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
table.shop_table.cart tbody tr.cart_item td.product-subtotal small.tax_label,
table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
.shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-subtotal small.tax_label,
.shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label {
  font-size: 12px;
  color: #8A8C95;
  margin-top: 2px;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.actions td,
.woocommerce-cart .shop_table.cart tbody tr.actions td,
.woocommerce .shop_table.cart tbody tr.actions td,
table.shop_table.cart tbody tr.actions td,
.shop_table.woocommerce-cart-form__contents tbody tr.actions td {
  padding: 24px 20px;
  border-top: 1px solid #E4E4E6;
  background-color: #F7F9FB !important;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon,
.woocommerce-cart .shop_table.cart tbody tr.actions td .coupon,
.woocommerce .shop_table.cart tbody tr.actions td .coupon,
table.shop_table.cart tbody tr.actions td .coupon,
.shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon label,
.woocommerce-cart .shop_table.cart tbody tr.actions td .coupon label,
.woocommerce .shop_table.cart tbody tr.actions td .coupon label,
table.shop_table.cart tbody tr.actions td .coupon label,
.shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon label {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon label,
  .woocommerce-cart .shop_table.cart tbody tr.actions td .coupon label,
  .woocommerce .shop_table.cart tbody tr.actions td .coupon label,
  table.shop_table.cart tbody tr.actions td .coupon label,
  .shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon label {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon label,
  .woocommerce-cart .shop_table.cart tbody tr.actions td .coupon label,
  .woocommerce .shop_table.cart tbody tr.actions td .coupon label,
  table.shop_table.cart tbody tr.actions td .coupon label,
  .shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon label {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon label,
  .woocommerce-cart .shop_table.cart tbody tr.actions td .coupon label,
  .woocommerce .shop_table.cart tbody tr.actions td .coupon label,
  table.shop_table.cart tbody tr.actions td .coupon label,
  .shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon label {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon label,
.woocommerce-cart .shop_table.cart tbody tr.actions td .coupon label,
.woocommerce .shop_table.cart tbody tr.actions td .coupon label,
table.shop_table.cart tbody tr.actions td .coupon label,
.shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon label {
  color: #5B5E67;
  font-weight: var(--fw-medium);
  margin-right: 8px;
}
@media (max-width: 720px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon label,
  .woocommerce-cart .shop_table.cart tbody tr.actions td .coupon label,
  .woocommerce .shop_table.cart tbody tr.actions td .coupon label,
  table.shop_table.cart tbody tr.actions td .coupon label,
  .shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon label {
    display: none;
  }
}
.woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon input[type=text],
.woocommerce-cart .shop_table.cart tbody tr.actions td .coupon input[type=text],
.woocommerce .shop_table.cart tbody tr.actions td .coupon input[type=text],
table.shop_table.cart tbody tr.actions td .coupon input[type=text],
.shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon input[type=text] {
  width: 200px;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #E4E4E6;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon input[type=text],
  .woocommerce-cart .shop_table.cart tbody tr.actions td .coupon input[type=text],
  .woocommerce .shop_table.cart tbody tr.actions td .coupon input[type=text],
  table.shop_table.cart tbody tr.actions td .coupon input[type=text],
  .shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon input[type=text] {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon input[type=text],
  .woocommerce-cart .shop_table.cart tbody tr.actions td .coupon input[type=text],
  .woocommerce .shop_table.cart tbody tr.actions td .coupon input[type=text],
  table.shop_table.cart tbody tr.actions td .coupon input[type=text],
  .shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon input[type=text] {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon input[type=text],
  .woocommerce-cart .shop_table.cart tbody tr.actions td .coupon input[type=text],
  .woocommerce .shop_table.cart tbody tr.actions td .coupon input[type=text],
  table.shop_table.cart tbody tr.actions td .coupon input[type=text],
  .shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon input[type=text] {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon input[type=text],
.woocommerce-cart .shop_table.cart tbody tr.actions td .coupon input[type=text],
.woocommerce .shop_table.cart tbody tr.actions td .coupon input[type=text],
table.shop_table.cart tbody tr.actions td .coupon input[type=text],
.shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon input[type=text] {
  color: #262930;
  background: #FFFFFF;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon input[type=text]::placeholder,
.woocommerce-cart .shop_table.cart tbody tr.actions td .coupon input[type=text]::placeholder,
.woocommerce .shop_table.cart tbody tr.actions td .coupon input[type=text]::placeholder,
table.shop_table.cart tbody tr.actions td .coupon input[type=text]::placeholder,
.shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon input[type=text]::placeholder {
  color: rgba(38, 41, 48, 0.5);
}
.woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon input[type=text]:focus,
.woocommerce-cart .shop_table.cart tbody tr.actions td .coupon input[type=text]:focus,
.woocommerce .shop_table.cart tbody tr.actions td .coupon input[type=text]:focus,
table.shop_table.cart tbody tr.actions td .coupon input[type=text]:focus,
.shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon input[type=text]:focus {
  outline: none;
  border-color: #262930;
}
@media (max-width: 720px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon input[type=text],
  .woocommerce-cart .shop_table.cart tbody tr.actions td .coupon input[type=text],
  .woocommerce .shop_table.cart tbody tr.actions td .coupon input[type=text],
  table.shop_table.cart tbody tr.actions td .coupon input[type=text],
  .shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon input[type=text] {
    width: 100%;
    flex: 1;
  }
}
.woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon button.button,
.woocommerce-cart .shop_table.cart tbody tr.actions td .coupon button.button,
.woocommerce .shop_table.cart tbody tr.actions td .coupon button.button,
table.shop_table.cart tbody tr.actions td .coupon button.button,
.shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon button.button {
  height: 48px;
  padding: 0 24px;
  white-space: nowrap;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.actions td button[name=update_cart],
.woocommerce-cart .shop_table.cart tbody tr.actions td button[name=update_cart],
.woocommerce .shop_table.cart tbody tr.actions td button[name=update_cart],
table.shop_table.cart tbody tr.actions td button[name=update_cart],
.shop_table.woocommerce-cart-form__contents tbody tr.actions td button[name=update_cart] {
  height: 48px;
  padding: 0 32px;
  float: right;
}
.woocommerce-cart .woocommerce-cart-form tbody tr.actions td button[name=update_cart]:disabled,
.woocommerce-cart .shop_table.cart tbody tr.actions td button[name=update_cart]:disabled,
.woocommerce .shop_table.cart tbody tr.actions td button[name=update_cart]:disabled,
table.shop_table.cart tbody tr.actions td button[name=update_cart]:disabled,
.shop_table.woocommerce-cart-form__contents tbody tr.actions td button[name=update_cart]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (max-width: 720px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.actions td button[name=update_cart],
  .woocommerce-cart .shop_table.cart tbody tr.actions td button[name=update_cart],
  .woocommerce .shop_table.cart tbody tr.actions td button[name=update_cart],
  table.shop_table.cart tbody tr.actions td button[name=update_cart],
  .shop_table.woocommerce-cart-form__contents tbody tr.actions td button[name=update_cart] {
    float: none;
    width: 100%;
    margin-top: 16px;
  }
}
@media (max-width: 990px) {
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item,
  .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item,
  .woocommerce .shop_table.cart tbody tr.cart_item,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item,
  table.shop_table.cart tbody tr.cart_item,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item {
    display: grid !important;
    grid-template-columns: 56px 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px 16px;
    padding: 20px 16px !important;
    border-bottom: 1px solid #E4E4E6 !important;
    position: relative;
    background-color: #FFFFFF !important;
  }
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td,
  .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td,
  .woocommerce .shop_table.cart tbody tr.cart_item td,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td,
  table.shop_table.cart tbody tr.cart_item td,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td {
    padding: 0 !important;
    display: flex !important;
    align-items: center;
    border: none !important;
    background-color: transparent !important;
  }
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td::before,
  .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td::before,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td::before,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td::before,
  .woocommerce .shop_table.cart tbody tr.cart_item td::before,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td::before,
  table.shop_table.cart tbody tr.cart_item td::before,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td::before,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td::before,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td::before {
    display: none !important;
    content: none !important;
  }
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-remove,
  .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-remove,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-remove,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-remove,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-remove,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-remove,
  table.shop_table.cart tbody tr.cart_item td.product-remove,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-remove,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-remove,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-remove {
    position: absolute;
    top: 20px;
    right: 16px;
    width: auto !important;
    grid-column: unset;
    grid-row: unset;
  }
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-remove a.remove,
  .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-remove a.remove,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-remove a.remove,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-remove a.remove,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-remove a.remove,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-remove a.remove,
  table.shop_table.cart tbody tr.cart_item td.product-remove a.remove,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-remove a.remove,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-remove a.remove,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-remove a.remove {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-thumbnail,
  .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-thumbnail,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-thumbnail,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail,
  table.shop_table.cart tbody tr.cart_item td.product-thumbnail,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-thumbnail,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail {
    grid-column: 1;
    grid-row: 1/3;
    width: auto !important;
    align-self: start;
  }
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-thumbnail a,
  .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail a,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-thumbnail a,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail a,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-thumbnail a,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail a,
  table.shop_table.cart tbody tr.cart_item td.product-thumbnail a,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail a,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-thumbnail a,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-thumbnail a {
    width: 56px;
    height: 56px;
  }
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-name,
  .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-name,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-name,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-name,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name,
  table.shop_table.cart tbody tr.cart_item td.product-name,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-name,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-name,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-name {
    grid-column: 2/4;
    grid-row: 1;
    padding-right: 40px !important;
    font-size: 14px;
    align-items: flex-start;
  }
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-price,
  .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-price,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-price,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-price,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price,
  table.shop_table.cart tbody tr.cart_item td.product-price,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-price,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-price,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-price {
    display: none !important;
  }
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-quantity,
  .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-quantity,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-quantity,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-quantity,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-quantity,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-quantity,
  table.shop_table.cart tbody tr.cart_item td.product-quantity,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-quantity,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-quantity,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-quantity {
    grid-column: 2;
    grid-row: 2;
    justify-content: flex-start;
  }
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-quantity .quantity .qty-btn,
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-quantity .quantity button,
  .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-quantity .quantity .qty-btn,
  .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-quantity .quantity button,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-quantity .quantity .qty-btn,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-quantity .quantity button,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-quantity .quantity .qty-btn,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-quantity .quantity button,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-quantity .quantity .qty-btn,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-quantity .quantity button,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-quantity .quantity .qty-btn,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-quantity .quantity button,
  table.shop_table.cart tbody tr.cart_item td.product-quantity .quantity .qty-btn,
  table.shop_table.cart tbody tr.cart_item td.product-quantity .quantity button,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-quantity .quantity .qty-btn,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-quantity .quantity button,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-quantity .quantity .qty-btn,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-quantity .quantity button,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-quantity .quantity .qty-btn,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-quantity .quantity button {
    width: 32px;
    height: 32px;
  }
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-quantity .quantity .qty,
  .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-quantity .quantity .qty,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-quantity .quantity .qty,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-quantity .quantity .qty,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-quantity .quantity .qty,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-quantity .quantity .qty,
  table.shop_table.cart tbody tr.cart_item td.product-quantity .quantity .qty,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-quantity .quantity .qty,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-quantity .quantity .qty,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-quantity .quantity .qty {
    width: 40px;
    height: 32px;
    font-size: 14px;
  }
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-subtotal,
  .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-subtotal,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-subtotal,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-subtotal,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal,
  table.shop_table.cart tbody tr.cart_item td.product-subtotal,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-subtotal,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-subtotal {
    grid-column: 3;
    grid-row: 2;
    text-align: right;
    justify-content: flex-end;
    padding-right: 0 !important;
  }
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
  .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
  table.shop_table.cart tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-subtotal .woocommerce-Price-amount {
    font-size: 16px;
  }
  .woocommerce-cart .woocommerce-cart-form tbody tr.cart_item td.product-subtotal small.tax_label,
  .woocommerce-cart .woocommerce-cart-form tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
  .woocommerce-cart .shop_table.cart tbody tr.cart_item td.product-subtotal small.tax_label,
  .woocommerce-cart .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
  .woocommerce .shop_table.cart tbody tr.cart_item td.product-subtotal small.tax_label,
  .woocommerce .shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
  table.shop_table.cart tbody tr.cart_item td.product-subtotal small.tax_label,
  table.shop_table.cart tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label,
  .shop_table.woocommerce-cart-form__contents tbody tr.cart_item td.product-subtotal small.tax_label,
  .shop_table.woocommerce-cart-form__contents tbody tr.woocommerce-cart-form__cart-item td.product-subtotal small.tax_label {
    display: none;
  }
  .woocommerce-cart .woocommerce-cart-form tbody tr.actions,
  .woocommerce-cart .shop_table.cart tbody tr.actions,
  .woocommerce .shop_table.cart tbody tr.actions,
  table.shop_table.cart tbody tr.actions,
  .shop_table.woocommerce-cart-form__contents tbody tr.actions {
    display: block !important;
    padding: 20px 16px !important;
  }
  .woocommerce-cart .woocommerce-cart-form tbody tr.actions td,
  .woocommerce-cart .shop_table.cart tbody tr.actions td,
  .woocommerce .shop_table.cart tbody tr.actions td,
  table.shop_table.cart tbody tr.actions td,
  .shop_table.woocommerce-cart-form__contents tbody tr.actions td {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
  }
  .woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon,
  .woocommerce-cart .shop_table.cart tbody tr.actions td .coupon,
  .woocommerce .shop_table.cart tbody tr.actions td .coupon,
  table.shop_table.cart tbody tr.actions td .coupon,
  .shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon input[type=text],
  .woocommerce-cart .shop_table.cart tbody tr.actions td .coupon input[type=text],
  .woocommerce .shop_table.cart tbody tr.actions td .coupon input[type=text],
  table.shop_table.cart tbody tr.actions td .coupon input[type=text],
  .shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon input[type=text] {
    width: 100%;
  }
  .woocommerce-cart .woocommerce-cart-form tbody tr.actions td .coupon button.button,
  .woocommerce-cart .shop_table.cart tbody tr.actions td .coupon button.button,
  .woocommerce .shop_table.cart tbody tr.actions td .coupon button.button,
  table.shop_table.cart tbody tr.actions td .coupon button.button,
  .shop_table.woocommerce-cart-form__contents tbody tr.actions td .coupon button.button {
    width: 100%;
    justify-content: center;
  }
}

.woocommerce-cart .cart-collaterals {
  margin-top: 48px;
}
@media (max-width: 991px) {
  .woocommerce-cart .cart-collaterals {
    margin-top: 32px;
  }
}

.woocommerce-cart .cart_totals,
.cart_totals {
  max-width: 480px;
  margin-left: auto;
  background: #F7F9FB;
  padding: 32px;
  border-radius: 8px;
}
@media (max-width: 720px) {
  .woocommerce-cart .cart_totals,
  .cart_totals {
    max-width: 100%;
    padding: 24px;
  }
}
.woocommerce-cart .cart_totals h2,
.cart_totals h2 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce-cart .cart_totals h2,
  .cart_totals h2 {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-cart .cart_totals h2,
  .cart_totals h2 {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-cart .cart_totals h2,
  .cart_totals h2 {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce-cart .cart_totals h2,
.cart_totals h2 {
  color: #262930;
  margin: 0 0 24px;
}
.woocommerce-cart .cart_totals table,
.cart_totals table {
  width: 100%;
  border-collapse: collapse;
  background-color: transparent;
  border: none;
  margin: 0 0 24px;
}
.woocommerce-cart .cart_totals table tr,
.cart_totals table tr {
  background-color: transparent !important;
  border-bottom: 1px solid rgba(228, 228, 230, 0.6);
}
.woocommerce-cart .cart_totals table tr:last-child,
.cart_totals table tr:last-child {
  border-bottom: none;
}
.woocommerce-cart .cart_totals table tr:hover,
.cart_totals table tr:hover {
  background-color: transparent !important;
}
.woocommerce-cart .cart_totals table tr th,
.woocommerce-cart .cart_totals table tr td,
.cart_totals table tr th,
.cart_totals table tr td {
  padding: 14px 0;
  border: none;
  background-color: transparent;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-cart .cart_totals table tr th,
  .woocommerce-cart .cart_totals table tr td,
  .cart_totals table tr th,
  .cart_totals table tr td {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-cart .cart_totals table tr th,
  .woocommerce-cart .cart_totals table tr td,
  .cart_totals table tr th,
  .cart_totals table tr td {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-cart .cart_totals table tr th,
  .woocommerce-cart .cart_totals table tr td,
  .cart_totals table tr th,
  .cart_totals table tr td {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce-cart .cart_totals table tr th,
.cart_totals table tr th {
  text-align: left;
  color: #5B5E67;
  font-weight: var(--fw-regular);
}
.woocommerce-cart .cart_totals table tr td,
.cart_totals table tr td {
  text-align: right;
  color: #262930;
  font-weight: var(--fw-semibold);
}
.woocommerce-cart .cart_totals table tr td .woocommerce-Price-amount,
.cart_totals table tr td .woocommerce-Price-amount {
  font-weight: var(--fw-semibold);
}
.woocommerce-cart .cart_totals table tr.shipping td .shipping-calculator-button,
.cart_totals table tr.shipping td .shipping-calculator-button {
  display: block;
  color: #262930;
  text-decoration: underline;
  font-weight: var(--fw-regular);
  margin-top: 4px;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-cart .cart_totals table tr.shipping td .shipping-calculator-button,
  .cart_totals table tr.shipping td .shipping-calculator-button {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-cart .cart_totals table tr.shipping td .shipping-calculator-button,
  .cart_totals table tr.shipping td .shipping-calculator-button {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-cart .cart_totals table tr.shipping td .shipping-calculator-button,
  .cart_totals table tr.shipping td .shipping-calculator-button {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.woocommerce-cart .cart_totals table tr.shipping td .shipping-calculator-button:hover,
.cart_totals table tr.shipping td .shipping-calculator-button:hover {
  color: #FF0019;
}
.woocommerce-cart .cart_totals table tr.shipping td .woocommerce-shipping-destination,
.cart_totals table tr.shipping td .woocommerce-shipping-destination {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-cart .cart_totals table tr.shipping td .woocommerce-shipping-destination,
  .cart_totals table tr.shipping td .woocommerce-shipping-destination {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-cart .cart_totals table tr.shipping td .woocommerce-shipping-destination,
  .cart_totals table tr.shipping td .woocommerce-shipping-destination {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-cart .cart_totals table tr.shipping td .woocommerce-shipping-destination,
  .cart_totals table tr.shipping td .woocommerce-shipping-destination {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.woocommerce-cart .cart_totals table tr.shipping td .woocommerce-shipping-destination,
.cart_totals table tr.shipping td .woocommerce-shipping-destination {
  color: #8A8C95;
}
.woocommerce-cart .cart_totals table tr.order-total,
.cart_totals table tr.order-total {
  border-top: 2px solid #D8DAE2;
}
.woocommerce-cart .cart_totals table tr.order-total th,
.woocommerce-cart .cart_totals table tr.order-total td,
.cart_totals table tr.order-total th,
.cart_totals table tr.order-total td {
  padding-top: 20px;
  font-size: 18px;
  font-weight: var(--fw-bold);
  color: #262930;
}
.woocommerce-cart .cart_totals table tr.order-total td .woocommerce-Price-amount,
.cart_totals table tr.order-total td .woocommerce-Price-amount {
  font-weight: var(--fw-bold);
  font-size: 18px;
}
.woocommerce-cart .cart_totals table tr.order-total small.includes_tax,
.cart_totals table tr.order-total small.includes_tax {
  display: block;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-cart .cart_totals table tr.order-total small.includes_tax,
  .cart_totals table tr.order-total small.includes_tax {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-cart .cart_totals table tr.order-total small.includes_tax,
  .cart_totals table tr.order-total small.includes_tax {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-cart .cart_totals table tr.order-total small.includes_tax,
  .cart_totals table tr.order-total small.includes_tax {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.woocommerce-cart .cart_totals table tr.order-total small.includes_tax,
.cart_totals table tr.order-total small.includes_tax {
  font-size: 12px;
  font-weight: var(--fw-regular);
  color: #8A8C95;
  margin-top: 4px;
}
.woocommerce-cart .cart_totals .wc-proceed-to-checkout,
.cart_totals .wc-proceed-to-checkout {
  margin-top: 24px;
}
.woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button,
.cart_totals .wc-proceed-to-checkout a.checkout-button {
  width: 100%;
  justify-content: center;
  height: 56px;
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button,
  .cart_totals .wc-proceed-to-checkout a.checkout-button {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button,
  .cart_totals .wc-proceed-to-checkout a.checkout-button {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-cart .cart_totals .wc-proceed-to-checkout a.checkout-button,
  .cart_totals .wc-proceed-to-checkout a.checkout-button {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}

.woocommerce-cart .shipping-calculator-form {
  margin-top: 16px;
  padding: 16px;
  background: #FFFFFF;
  border-radius: 4px;
}
.woocommerce-cart .shipping-calculator-form p {
  margin: 0 0 12px;
}
.woocommerce-cart .shipping-calculator-form p:last-child {
  margin-bottom: 0;
}
.woocommerce-cart .shipping-calculator-form p label {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-cart .shipping-calculator-form p label {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-cart .shipping-calculator-form p label {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-cart .shipping-calculator-form p label {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.woocommerce-cart .shipping-calculator-form p label {
  color: #5B5E67;
}
.woocommerce-cart .shipping-calculator-form p select,
.woocommerce-cart .shipping-calculator-form p input[type=text] {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #E4E4E6;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-cart .shipping-calculator-form p select,
  .woocommerce-cart .shipping-calculator-form p input[type=text] {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-cart .shipping-calculator-form p select,
  .woocommerce-cart .shipping-calculator-form p input[type=text] {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-cart .shipping-calculator-form p select,
  .woocommerce-cart .shipping-calculator-form p input[type=text] {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce-cart .shipping-calculator-form p select,
.woocommerce-cart .shipping-calculator-form p input[type=text] {
  font-size: 14px;
}
.woocommerce-cart .shipping-calculator-form p select:focus,
.woocommerce-cart .shipping-calculator-form p input[type=text]:focus {
  outline: none;
  border-color: #262930;
}
.woocommerce-cart .shipping-calculator-form button {
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
  margin-top: 8px;
}

.woocommerce-cart .cart-empty {
  text-align: center;
  padding: 64px 24px;
  background: #F7F9FB;
  border-radius: 8px;
}
.woocommerce-cart .cart-empty.woocommerce-info {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce-cart .cart-empty.woocommerce-info {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-cart .cart-empty.woocommerce-info {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-cart .cart-empty.woocommerce-info {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce-cart .cart-empty.woocommerce-info {
  color: #5B5E67;
  margin-bottom: 24px;
  border: none;
  background: transparent;
}
.woocommerce-cart .cart-empty.woocommerce-info::before {
  display: none;
}

.woocommerce-cart .return-to-shop {
  text-align: center;
}
.woocommerce-cart .cross-sells {
  margin-top: 64px;
}
@media (max-width: 991px) {
  .woocommerce-cart .cross-sells {
    margin-top: 48px;
  }
}
.woocommerce-cart .cross-sells h2 {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce-cart .cross-sells h2 {
    font-size: 32px;
    line-height: 48px;
    letter-spacing: -0.5px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-cart .cross-sells h2 {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-cart .cross-sells h2 {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
.woocommerce-cart .cross-sells h2 {
  color: #262930;
  margin: 0 0 32px;
}
@media (max-width: 720px) {
  .woocommerce-cart .cross-sells h2 {
    margin-bottom: 24px;
  }
}
/**
 * Checkout Component
 *
 * Custom WooCommerce checkout styling with two-column layout.
 * Left: Cart items, billing/shipping, payment
 * Right: Sticky order summary
 */
.woocommerce-checkout table,
.woocommerce-checkout .shop_table,
.woocommerce-checkout .woocommerce-table,
.woocommerce-checkout table.shop_table,
.woocommerce-checkout table.woocommerce-table,
.woocommerce.woocommerce-checkout table,
.woocommerce.woocommerce-checkout .shop_table,
.woocommerce.woocommerce-checkout .woocommerce-table,
.woocommerce.woocommerce-checkout table.shop_table,
.woocommerce.woocommerce-checkout table.woocommerce-table,
body.woocommerce-checkout table,
body.woocommerce-checkout .shop_table,
body.woocommerce-checkout .woocommerce-table,
body.woocommerce-checkout table.shop_table,
body.woocommerce-checkout table.woocommerce-table {
  background-color: transparent;
  border: none;
  margin: 0;
}
.woocommerce-checkout table thead,
.woocommerce-checkout .shop_table thead,
.woocommerce-checkout .woocommerce-table thead,
.woocommerce-checkout table.shop_table thead,
.woocommerce-checkout table.woocommerce-table thead,
.woocommerce.woocommerce-checkout table thead,
.woocommerce.woocommerce-checkout .shop_table thead,
.woocommerce.woocommerce-checkout .woocommerce-table thead,
.woocommerce.woocommerce-checkout table.shop_table thead,
.woocommerce.woocommerce-checkout table.woocommerce-table thead,
body.woocommerce-checkout table thead,
body.woocommerce-checkout .shop_table thead,
body.woocommerce-checkout .woocommerce-table thead,
body.woocommerce-checkout table.shop_table thead,
body.woocommerce-checkout table.woocommerce-table thead {
  background-color: transparent;
}
.woocommerce-checkout table thead th,
.woocommerce-checkout .shop_table thead th,
.woocommerce-checkout .woocommerce-table thead th,
.woocommerce-checkout table.shop_table thead th,
.woocommerce-checkout table.woocommerce-table thead th,
.woocommerce.woocommerce-checkout table thead th,
.woocommerce.woocommerce-checkout .shop_table thead th,
.woocommerce.woocommerce-checkout .woocommerce-table thead th,
.woocommerce.woocommerce-checkout table.shop_table thead th,
.woocommerce.woocommerce-checkout table.woocommerce-table thead th,
body.woocommerce-checkout table thead th,
body.woocommerce-checkout .shop_table thead th,
body.woocommerce-checkout .woocommerce-table thead th,
body.woocommerce-checkout table.shop_table thead th,
body.woocommerce-checkout table.woocommerce-table thead th {
  padding: 0;
  border: none;
}
.woocommerce-checkout table tbody tr,
.woocommerce-checkout .shop_table tbody tr,
.woocommerce-checkout .woocommerce-table tbody tr,
.woocommerce-checkout table.shop_table tbody tr,
.woocommerce-checkout table.woocommerce-table tbody tr,
.woocommerce.woocommerce-checkout table tbody tr,
.woocommerce.woocommerce-checkout .shop_table tbody tr,
.woocommerce.woocommerce-checkout .woocommerce-table tbody tr,
.woocommerce.woocommerce-checkout table.shop_table tbody tr,
.woocommerce.woocommerce-checkout table.woocommerce-table tbody tr,
body.woocommerce-checkout table tbody tr,
body.woocommerce-checkout .shop_table tbody tr,
body.woocommerce-checkout .woocommerce-table tbody tr,
body.woocommerce-checkout table.shop_table tbody tr,
body.woocommerce-checkout table.woocommerce-table tbody tr {
  background-color: transparent;
  border: none;
}
.woocommerce-checkout table tbody tr:nth-child(even),
.woocommerce-checkout .shop_table tbody tr:nth-child(even),
.woocommerce-checkout .woocommerce-table tbody tr:nth-child(even),
.woocommerce-checkout table.shop_table tbody tr:nth-child(even),
.woocommerce-checkout table.woocommerce-table tbody tr:nth-child(even),
.woocommerce.woocommerce-checkout table tbody tr:nth-child(even),
.woocommerce.woocommerce-checkout .shop_table tbody tr:nth-child(even),
.woocommerce.woocommerce-checkout .woocommerce-table tbody tr:nth-child(even),
.woocommerce.woocommerce-checkout table.shop_table tbody tr:nth-child(even),
.woocommerce.woocommerce-checkout table.woocommerce-table tbody tr:nth-child(even),
body.woocommerce-checkout table tbody tr:nth-child(even),
body.woocommerce-checkout .shop_table tbody tr:nth-child(even),
body.woocommerce-checkout .woocommerce-table tbody tr:nth-child(even),
body.woocommerce-checkout table.shop_table tbody tr:nth-child(even),
body.woocommerce-checkout table.woocommerce-table tbody tr:nth-child(even) {
  background-color: transparent;
}
.woocommerce-checkout table tbody tr:hover,
.woocommerce-checkout .shop_table tbody tr:hover,
.woocommerce-checkout .woocommerce-table tbody tr:hover,
.woocommerce-checkout table.shop_table tbody tr:hover,
.woocommerce-checkout table.woocommerce-table tbody tr:hover,
.woocommerce.woocommerce-checkout table tbody tr:hover,
.woocommerce.woocommerce-checkout .shop_table tbody tr:hover,
.woocommerce.woocommerce-checkout .woocommerce-table tbody tr:hover,
.woocommerce.woocommerce-checkout table.shop_table tbody tr:hover,
.woocommerce.woocommerce-checkout table.woocommerce-table tbody tr:hover,
body.woocommerce-checkout table tbody tr:hover,
body.woocommerce-checkout .shop_table tbody tr:hover,
body.woocommerce-checkout .woocommerce-table tbody tr:hover,
body.woocommerce-checkout table.shop_table tbody tr:hover,
body.woocommerce-checkout table.woocommerce-table tbody tr:hover {
  background-color: transparent;
}
.woocommerce-checkout table tbody td,
.woocommerce-checkout table tbody th,
.woocommerce-checkout .shop_table tbody td,
.woocommerce-checkout .shop_table tbody th,
.woocommerce-checkout .woocommerce-table tbody td,
.woocommerce-checkout .woocommerce-table tbody th,
.woocommerce-checkout table.shop_table tbody td,
.woocommerce-checkout table.shop_table tbody th,
.woocommerce-checkout table.woocommerce-table tbody td,
.woocommerce-checkout table.woocommerce-table tbody th,
.woocommerce.woocommerce-checkout table tbody td,
.woocommerce.woocommerce-checkout table tbody th,
.woocommerce.woocommerce-checkout .shop_table tbody td,
.woocommerce.woocommerce-checkout .shop_table tbody th,
.woocommerce.woocommerce-checkout .woocommerce-table tbody td,
.woocommerce.woocommerce-checkout .woocommerce-table tbody th,
.woocommerce.woocommerce-checkout table.shop_table tbody td,
.woocommerce.woocommerce-checkout table.shop_table tbody th,
.woocommerce.woocommerce-checkout table.woocommerce-table tbody td,
.woocommerce.woocommerce-checkout table.woocommerce-table tbody th,
body.woocommerce-checkout table tbody td,
body.woocommerce-checkout table tbody th,
body.woocommerce-checkout .shop_table tbody td,
body.woocommerce-checkout .shop_table tbody th,
body.woocommerce-checkout .woocommerce-table tbody td,
body.woocommerce-checkout .woocommerce-table tbody th,
body.woocommerce-checkout table.shop_table tbody td,
body.woocommerce-checkout table.shop_table tbody th,
body.woocommerce-checkout table.woocommerce-table tbody td,
body.woocommerce-checkout table.woocommerce-table tbody th {
  padding: 0;
  border: none;
}
.woocommerce-checkout table tfoot,
.woocommerce-checkout .shop_table tfoot,
.woocommerce-checkout .woocommerce-table tfoot,
.woocommerce-checkout table.shop_table tfoot,
.woocommerce-checkout table.woocommerce-table tfoot,
.woocommerce.woocommerce-checkout table tfoot,
.woocommerce.woocommerce-checkout .shop_table tfoot,
.woocommerce.woocommerce-checkout .woocommerce-table tfoot,
.woocommerce.woocommerce-checkout table.shop_table tfoot,
.woocommerce.woocommerce-checkout table.woocommerce-table tfoot,
body.woocommerce-checkout table tfoot,
body.woocommerce-checkout .shop_table tfoot,
body.woocommerce-checkout .woocommerce-table tfoot,
body.woocommerce-checkout table.shop_table tfoot,
body.woocommerce-checkout table.woocommerce-table tfoot {
  background-color: transparent;
}
.woocommerce-checkout table tfoot tr,
.woocommerce-checkout .shop_table tfoot tr,
.woocommerce-checkout .woocommerce-table tfoot tr,
.woocommerce-checkout table.shop_table tfoot tr,
.woocommerce-checkout table.woocommerce-table tfoot tr,
.woocommerce.woocommerce-checkout table tfoot tr,
.woocommerce.woocommerce-checkout .shop_table tfoot tr,
.woocommerce.woocommerce-checkout .woocommerce-table tfoot tr,
.woocommerce.woocommerce-checkout table.shop_table tfoot tr,
.woocommerce.woocommerce-checkout table.woocommerce-table tfoot tr,
body.woocommerce-checkout table tfoot tr,
body.woocommerce-checkout .shop_table tfoot tr,
body.woocommerce-checkout .woocommerce-table tfoot tr,
body.woocommerce-checkout table.shop_table tfoot tr,
body.woocommerce-checkout table.woocommerce-table tfoot tr {
  border: none;
}
.woocommerce-checkout table tfoot th,
.woocommerce-checkout table tfoot td,
.woocommerce-checkout .shop_table tfoot th,
.woocommerce-checkout .shop_table tfoot td,
.woocommerce-checkout .woocommerce-table tfoot th,
.woocommerce-checkout .woocommerce-table tfoot td,
.woocommerce-checkout table.shop_table tfoot th,
.woocommerce-checkout table.shop_table tfoot td,
.woocommerce-checkout table.woocommerce-table tfoot th,
.woocommerce-checkout table.woocommerce-table tfoot td,
.woocommerce.woocommerce-checkout table tfoot th,
.woocommerce.woocommerce-checkout table tfoot td,
.woocommerce.woocommerce-checkout .shop_table tfoot th,
.woocommerce.woocommerce-checkout .shop_table tfoot td,
.woocommerce.woocommerce-checkout .woocommerce-table tfoot th,
.woocommerce.woocommerce-checkout .woocommerce-table tfoot td,
.woocommerce.woocommerce-checkout table.shop_table tfoot th,
.woocommerce.woocommerce-checkout table.shop_table tfoot td,
.woocommerce.woocommerce-checkout table.woocommerce-table tfoot th,
.woocommerce.woocommerce-checkout table.woocommerce-table tfoot td,
body.woocommerce-checkout table tfoot th,
body.woocommerce-checkout table tfoot td,
body.woocommerce-checkout .shop_table tfoot th,
body.woocommerce-checkout .shop_table tfoot td,
body.woocommerce-checkout .woocommerce-table tfoot th,
body.woocommerce-checkout .woocommerce-table tfoot td,
body.woocommerce-checkout table.shop_table tfoot th,
body.woocommerce-checkout table.shop_table tfoot td,
body.woocommerce-checkout table.woocommerce-table tfoot th,
body.woocommerce-checkout table.woocommerce-table tfoot td {
  padding: 0;
  border: none;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table,
.woocommerce-checkout table.woocommerce-checkout-review-order-table,
.woocommerce.woocommerce-checkout .woocommerce-checkout-review-order-table,
.woocommerce.woocommerce-checkout table.woocommerce-checkout-review-order-table,
body.woocommerce-checkout .woocommerce-checkout-review-order-table,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table {
  background-color: transparent !important;
  border: none !important;
  margin: 0 !important;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table thead,
.woocommerce-checkout .woocommerce-checkout-review-order-table tbody,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot,
.woocommerce-checkout table.woocommerce-checkout-review-order-table thead,
.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody,
.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot,
.woocommerce.woocommerce-checkout .woocommerce-checkout-review-order-table thead,
.woocommerce.woocommerce-checkout .woocommerce-checkout-review-order-table tbody,
.woocommerce.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot,
.woocommerce.woocommerce-checkout table.woocommerce-checkout-review-order-table thead,
.woocommerce.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody,
.woocommerce.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot,
body.woocommerce-checkout .woocommerce-checkout-review-order-table thead,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table thead,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot {
  background-color: transparent !important;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table thead tr,
.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr,
.woocommerce-checkout table.woocommerce-checkout-review-order-table thead tr,
.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody tr,
.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr,
.woocommerce.woocommerce-checkout .woocommerce-checkout-review-order-table thead tr,
.woocommerce.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr,
.woocommerce.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr,
.woocommerce.woocommerce-checkout table.woocommerce-checkout-review-order-table thead tr,
.woocommerce.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody tr,
.woocommerce.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr,
body.woocommerce-checkout .woocommerce-checkout-review-order-table thead tr,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table thead tr,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody tr,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr {
  background-color: transparent !important;
  border: none !important;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table thead tr:nth-child(even), .woocommerce-checkout .woocommerce-checkout-review-order-table thead tr:hover,
.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr:nth-child(even),
.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr:hover,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr:nth-child(even),
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr:hover,
.woocommerce-checkout table.woocommerce-checkout-review-order-table thead tr:nth-child(even),
.woocommerce-checkout table.woocommerce-checkout-review-order-table thead tr:hover,
.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody tr:nth-child(even),
.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody tr:hover,
.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr:nth-child(even),
.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr:hover,
.woocommerce.woocommerce-checkout .woocommerce-checkout-review-order-table thead tr:nth-child(even),
.woocommerce.woocommerce-checkout .woocommerce-checkout-review-order-table thead tr:hover,
.woocommerce.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr:nth-child(even),
.woocommerce.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr:hover,
.woocommerce.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr:nth-child(even),
.woocommerce.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr:hover,
.woocommerce.woocommerce-checkout table.woocommerce-checkout-review-order-table thead tr:nth-child(even),
.woocommerce.woocommerce-checkout table.woocommerce-checkout-review-order-table thead tr:hover,
.woocommerce.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody tr:nth-child(even),
.woocommerce.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody tr:hover,
.woocommerce.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr:nth-child(even),
.woocommerce.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr:hover,
body.woocommerce-checkout .woocommerce-checkout-review-order-table thead tr:nth-child(even),
body.woocommerce-checkout .woocommerce-checkout-review-order-table thead tr:hover,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr:nth-child(even),
body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr:hover,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr:nth-child(even),
body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr:hover,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table thead tr:nth-child(even),
body.woocommerce-checkout table.woocommerce-checkout-review-order-table thead tr:hover,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody tr:nth-child(even),
body.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody tr:hover,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr:nth-child(even),
body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr:hover {
  background-color: transparent !important;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table thead th,
.woocommerce-checkout .woocommerce-checkout-review-order-table thead td,
.woocommerce-checkout .woocommerce-checkout-review-order-table tbody th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tbody td,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td,
.woocommerce-checkout table.woocommerce-checkout-review-order-table thead th,
.woocommerce-checkout table.woocommerce-checkout-review-order-table thead td,
.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody th,
.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody td,
.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot th,
.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot td,
.woocommerce.woocommerce-checkout .woocommerce-checkout-review-order-table thead th,
.woocommerce.woocommerce-checkout .woocommerce-checkout-review-order-table thead td,
.woocommerce.woocommerce-checkout .woocommerce-checkout-review-order-table tbody th,
.woocommerce.woocommerce-checkout .woocommerce-checkout-review-order-table tbody td,
.woocommerce.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
.woocommerce.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td,
.woocommerce.woocommerce-checkout table.woocommerce-checkout-review-order-table thead th,
.woocommerce.woocommerce-checkout table.woocommerce-checkout-review-order-table thead td,
.woocommerce.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody th,
.woocommerce.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody td,
.woocommerce.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot th,
.woocommerce.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot td,
body.woocommerce-checkout .woocommerce-checkout-review-order-table thead th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table thead td,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody td,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table thead th,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table thead td,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody th,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody td,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot th,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot td {
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
}
.woocommerce-checkout .woocommerce form table,
.woocommerce-checkout form.woocommerce-checkout table,
.woocommerce.woocommerce-checkout .woocommerce form table,
.woocommerce.woocommerce-checkout form.woocommerce-checkout table,
body.woocommerce-checkout .woocommerce form table,
body.woocommerce-checkout form.woocommerce-checkout table {
  background-color: transparent;
  border: none;
  margin: 0;
}
.woocommerce-checkout .woocommerce form table th,
.woocommerce-checkout .woocommerce form table td,
.woocommerce-checkout form.woocommerce-checkout table th,
.woocommerce-checkout form.woocommerce-checkout table td,
.woocommerce.woocommerce-checkout .woocommerce form table th,
.woocommerce.woocommerce-checkout .woocommerce form table td,
.woocommerce.woocommerce-checkout form.woocommerce-checkout table th,
.woocommerce.woocommerce-checkout form.woocommerce-checkout table td,
body.woocommerce-checkout .woocommerce form table th,
body.woocommerce-checkout .woocommerce form table td,
body.woocommerce-checkout form.woocommerce-checkout table th,
body.woocommerce-checkout form.woocommerce-checkout table td {
  padding: 0;
  border: none;
  background-color: transparent;
}
.woocommerce-checkout .shop_table_responsive thead,
.woocommerce-checkout .woocommerce-table--responsive thead,
.woocommerce.woocommerce-checkout .shop_table_responsive thead,
.woocommerce.woocommerce-checkout .woocommerce-table--responsive thead,
body.woocommerce-checkout .shop_table_responsive thead,
body.woocommerce-checkout .woocommerce-table--responsive thead {
  display: table-header-group;
}
.woocommerce-checkout .shop_table_responsive tbody tr,
.woocommerce-checkout .woocommerce-table--responsive tbody tr,
.woocommerce.woocommerce-checkout .shop_table_responsive tbody tr,
.woocommerce.woocommerce-checkout .woocommerce-table--responsive tbody tr,
body.woocommerce-checkout .shop_table_responsive tbody tr,
body.woocommerce-checkout .woocommerce-table--responsive tbody tr {
  display: table-row;
  margin-bottom: 0;
  border: none;
  border-radius: 0;
  padding: 0;
  background-color: transparent;
}
.woocommerce-checkout .shop_table_responsive tbody tr:nth-child(even),
.woocommerce-checkout .woocommerce-table--responsive tbody tr:nth-child(even),
.woocommerce.woocommerce-checkout .shop_table_responsive tbody tr:nth-child(even),
.woocommerce.woocommerce-checkout .woocommerce-table--responsive tbody tr:nth-child(even),
body.woocommerce-checkout .shop_table_responsive tbody tr:nth-child(even),
body.woocommerce-checkout .woocommerce-table--responsive tbody tr:nth-child(even) {
  background-color: transparent;
}
.woocommerce-checkout .shop_table_responsive tbody td,
.woocommerce-checkout .woocommerce-table--responsive tbody td,
.woocommerce.woocommerce-checkout .shop_table_responsive tbody td,
.woocommerce.woocommerce-checkout .woocommerce-table--responsive tbody td,
body.woocommerce-checkout .shop_table_responsive tbody td,
body.woocommerce-checkout .woocommerce-table--responsive tbody td {
  display: table-cell;
  padding: 0;
  text-align: left;
  border: none;
}
.woocommerce-checkout .shop_table_responsive tbody td[data-title]:before,
.woocommerce-checkout .woocommerce-table--responsive tbody td[data-title]:before,
.woocommerce.woocommerce-checkout .shop_table_responsive tbody td[data-title]:before,
.woocommerce.woocommerce-checkout .woocommerce-table--responsive tbody td[data-title]:before,
body.woocommerce-checkout .shop_table_responsive tbody td[data-title]:before,
body.woocommerce-checkout .woocommerce-table--responsive tbody td[data-title]:before {
  display: none;
}

.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info {
  margin-bottom: 32px;
  padding: 16px 24px;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-checkout .woocommerce-error,
  .woocommerce-checkout .woocommerce-message,
  .woocommerce-checkout .woocommerce-info {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-checkout .woocommerce-error,
  .woocommerce-checkout .woocommerce-message,
  .woocommerce-checkout .woocommerce-info {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-checkout .woocommerce-error,
  .woocommerce-checkout .woocommerce-message,
  .woocommerce-checkout .woocommerce-info {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}

@media (min-width: 992px) {
  .checkout-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
  }
}

.checkout-left-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 992px) {
  .checkout-left-column {
    gap: 40px;
  }
}

.checkout-section-title {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .checkout-section-title {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .checkout-section-title {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .checkout-section-title {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.checkout-section-title {
  margin: 0 0 24px;
  color: #262930;
}

.checkout-cart-review {
  margin-bottom: 40px;
}

.woocommerce-checkout .checkout-cart-review .checkout-cart-table,
.woocommerce .checkout-cart-review .checkout-cart-table,
.checkout-cart-review table.checkout-cart-table,
.checkout-cart-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  table-layout: fixed;
  background-color: transparent;
  border: none;
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table thead tr th,
.woocommerce .checkout-cart-review .checkout-cart-table thead tr th,
.checkout-cart-review table.checkout-cart-table thead tr th,
.checkout-cart-table thead tr th {
  padding: 12px 16px;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table thead tr th,
  .woocommerce .checkout-cart-review .checkout-cart-table thead tr th,
  .checkout-cart-review table.checkout-cart-table thead tr th,
  .checkout-cart-table thead tr th {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table thead tr th,
  .woocommerce .checkout-cart-review .checkout-cart-table thead tr th,
  .checkout-cart-review table.checkout-cart-table thead tr th,
  .checkout-cart-table thead tr th {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table thead tr th,
  .woocommerce .checkout-cart-review .checkout-cart-table thead tr th,
  .checkout-cart-review table.checkout-cart-table thead tr th,
  .checkout-cart-table thead tr th {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table thead tr th,
.woocommerce .checkout-cart-review .checkout-cart-table thead tr th,
.checkout-cart-review table.checkout-cart-table thead tr th,
.checkout-cart-table thead tr th {
  color: #5B5E67;
  text-align: left;
  font-weight: var(--fw-medium);
  font-size: 13px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #E4E4E6;
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table thead tr th.product-column,
.woocommerce .checkout-cart-review .checkout-cart-table thead tr th.product-column,
.checkout-cart-review table.checkout-cart-table thead tr th.product-column,
.checkout-cart-table thead tr th.product-column {
  width: 45%;
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table thead tr th.price-column,
.woocommerce .checkout-cart-review .checkout-cart-table thead tr th.price-column,
.checkout-cart-review table.checkout-cart-table thead tr th.price-column,
.checkout-cart-table thead tr th.price-column {
  width: 15%;
  text-align: center;
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table thead tr th.qty-column,
.woocommerce .checkout-cart-review .checkout-cart-table thead tr th.qty-column,
.checkout-cart-review table.checkout-cart-table thead tr th.qty-column,
.checkout-cart-table thead tr th.qty-column {
  width: 15%;
  text-align: center;
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table thead tr th.total-column,
.woocommerce .checkout-cart-review .checkout-cart-table thead tr th.total-column,
.checkout-cart-review table.checkout-cart-table thead tr th.total-column,
.checkout-cart-table thead tr th.total-column {
  width: 25%;
  text-align: right;
  padding-right: 12px;
}
@media (max-width: 767px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table thead,
  .woocommerce .checkout-cart-review .checkout-cart-table thead,
  .checkout-cart-review table.checkout-cart-table thead,
  .checkout-cart-table thead {
    display: none;
  }
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item,
.checkout-cart-table tbody tr.checkout-cart-item {
  border-bottom: 1px solid #E4E4E6;
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item:last-child,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item:last-child,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item:last-child,
.checkout-cart-table tbody tr.checkout-cart-item:last-child {
  border-bottom: none;
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td,
.checkout-cart-table tbody tr.checkout-cart-item td {
  padding: 20px 16px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td,
  .checkout-cart-table tbody tr.checkout-cart-item td {
    display: block;
    padding: 8px 0;
    border: none;
  }
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td::before,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td::before,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td::before,
  .checkout-cart-table tbody tr.checkout-cart-item td::before {
    content: attr(data-title) ": ";
    font-family: var(--font-primary);
    font-weight: var(--fw-regular);
    color: #8A8C95;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-right: 8px;
    min-width: 60px;
  }
}
@media (max-width: 767px) and (min-width: 1920px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td::before,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td::before,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td::before,
  .checkout-cart-table tbody tr.checkout-cart-item td::before {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 767px) and (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td::before,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td::before,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td::before,
  .checkout-cart-table tbody tr.checkout-cart-item td::before {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 767px) and (max-width: 991px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td::before,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td::before,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td::before,
  .checkout-cart-table tbody tr.checkout-cart-item td::before {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 767px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.product-column,
  .checkout-cart-table tbody tr.checkout-cart-item td.product-column {
    padding-top: 16px;
    padding-bottom: 12px;
  }
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column::before,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column::before,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.product-column::before,
  .checkout-cart-table tbody tr.checkout-cart-item td.product-column::before {
    display: none;
  }
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.total-column,
  .checkout-cart-table tbody tr.checkout-cart-item td.total-column {
    padding-bottom: 16px;
    border-bottom: 1px solid #E4E4E6;
    margin-bottom: 0;
  }
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info,
.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info {
  display: flex;
  gap: 16px;
  align-items: center;
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-thumbnail,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-thumbnail,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-thumbnail,
.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-thumbnail {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: #F7F9FB;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-thumbnail,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-thumbnail,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-thumbnail,
  .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-thumbnail {
    width: 60px;
    height: 60px;
  }
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-thumbnail img,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-thumbnail img,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-thumbnail img,
.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details,
.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .product-name,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .product-name,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .product-name,
.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .product-name {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .product-name,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .product-name,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .product-name,
  .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .product-name {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .product-name,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .product-name,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .product-name,
  .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .product-name {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .product-name,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .product-name,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .product-name,
  .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .product-name {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .product-name,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .product-name,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .product-name,
.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .product-name {
  font-weight: var(--fw-semibold);
  margin: 0;
  color: #262930;
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta,
.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta,
  .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta,
  .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta,
  .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta,
.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta {
  color: #5B5E67;
  margin: 0;
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta p,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta p,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta p,
.checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .wc-item-meta p {
  margin: 0;
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.price-column,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.price-column,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.price-column,
.checkout-cart-table tbody tr.checkout-cart-item td.price-column {
  text-align: center;
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price,
.checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price,
  .checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price,
  .checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price,
  .checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price,
.checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price {
  color: #262930;
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price del,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price del,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price del,
.checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price del {
  margin-right: 8px;
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price .woocommerce-price-suffix,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price .woocommerce-price-suffix,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price .woocommerce-price-suffix,
.checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price .woocommerce-price-suffix {
  display: none;
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price ins,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price ins,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price ins,
.checkout-cart-table tbody tr.checkout-cart-item td.price-column .product-price ins {
  text-decoration: none;
  color: #FF0019;
}
@media (max-width: 767px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.price-column,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.price-column,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.price-column,
  .checkout-cart-table tbody tr.checkout-cart-item td.price-column {
    text-align: left;
  }
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.price-column::before,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.price-column::before,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.price-column::before,
  .checkout-cart-table tbody tr.checkout-cart-item td.price-column::before {
    display: inline-block;
  }
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.total-column,
.checkout-cart-table tbody tr.checkout-cart-item td.total-column {
  text-align: right;
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper,
.checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .product-total,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .product-total,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .product-total,
.checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .product-total {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .product-total,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .product-total,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .product-total,
  .checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .product-total {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .product-total,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .product-total,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .product-total,
  .checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .product-total {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .product-total,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .product-total,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .product-total,
  .checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .product-total {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .product-total,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .product-total,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .product-total,
.checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .product-total {
  color: #262930;
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .remove-item,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .remove-item,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .remove-item,
.checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .remove-item {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
  flex-shrink: 0;
}
.woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .remove-item svg,
.woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .remove-item svg,
.checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .remove-item svg,
.checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper .remove-item svg {
  width: 16px;
  height: 16px;
}
@media (max-width: 767px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.total-column,
  .checkout-cart-table tbody tr.checkout-cart-item td.total-column {
    text-align: left;
  }
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper,
  .checkout-cart-table tbody tr.checkout-cart-item td.total-column .product-total-wrapper {
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item,
  .checkout-cart-table tbody tr.checkout-cart-item {
    display: block;
    padding: 16px 0;
    border-bottom: 2px solid #E4E4E6;
  }
  .woocommerce-checkout .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item:last-child,
  .woocommerce .checkout-cart-review .checkout-cart-table tbody tr.checkout-cart-item:last-child,
  .checkout-cart-review table.checkout-cart-table tbody tr.checkout-cart-item:last-child,
  .checkout-cart-table tbody tr.checkout-cart-item:last-child {
    border-bottom: none;
  }
}

.checkout-coupon-row {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid #E4E4E6;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  margin: 10px 0;
}
.checkout-coupon-row .checkout-coupon-field {
  display: flex;
  align-items: center;
  gap: 32px;
}
.checkout-coupon-row .checkout-coupon-field input[type=text] {
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #E4E4E6;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .checkout-coupon-row .checkout-coupon-field input[type=text] {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .checkout-coupon-row .checkout-coupon-field input[type=text] {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .checkout-coupon-row .checkout-coupon-field input[type=text] {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.checkout-coupon-row .checkout-coupon-field input[type=text] {
  color: #262930;
  background: #FFFFFF;
}
.checkout-coupon-row .checkout-coupon-field input[type=text]::placeholder {
  font-family: var(--font-primary);
  font-weight: var(--fw-medium);
}
@media (min-width: 1920px) {
  .checkout-coupon-row .checkout-coupon-field input[type=text]::placeholder {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .checkout-coupon-row .checkout-coupon-field input[type=text]::placeholder {
    font-size: 15px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .checkout-coupon-row .checkout-coupon-field input[type=text]::placeholder {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
.checkout-coupon-row .checkout-coupon-field input[type=text]::placeholder {
  color: rgba(38, 41, 48, 0.5);
}
.checkout-coupon-row .checkout-coupon-field input[type=text]:focus {
  outline: none;
  border-color: #262930;
}
.checkout-coupon-row .checkout-coupon-field .btn-coupon {
  height: 48px;
  padding: 0 32px;
  white-space: nowrap;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .checkout-coupon-row .checkout-coupon-field .btn-coupon {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .checkout-coupon-row .checkout-coupon-field .btn-coupon {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .checkout-coupon-row .checkout-coupon-field .btn-coupon {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.checkout-coupon-row .checkout-coupon-field .btn-coupon {
  font-weight: var(--fw-bold);
}

.checkout-customer-details .woocommerce-billing-fields__field-wrapper,
.checkout-customer-details .woocommerce-shipping-fields__field-wrapper,
.checkout-customer-details .woocommerce-additional-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .checkout-customer-details .woocommerce-billing-fields__field-wrapper,
  .checkout-customer-details .woocommerce-shipping-fields__field-wrapper,
  .checkout-customer-details .woocommerce-additional-fields__field-wrapper {
    grid-template-columns: 1fr 1fr;
  }
  .checkout-customer-details .woocommerce-billing-fields__field-wrapper .form-row-wide,
  .checkout-customer-details .woocommerce-shipping-fields__field-wrapper .form-row-wide,
  .checkout-customer-details .woocommerce-additional-fields__field-wrapper .form-row-wide {
    grid-column: 1/-1;
  }
}

#ship-to-different-address {
  margin-bottom: 24px;
}
#ship-to-different-address label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  #ship-to-different-address label {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  #ship-to-different-address label {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  #ship-to-different-address label {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
#ship-to-different-address label {
  font-weight: var(--fw-semibold);
  color: #262930;
  cursor: pointer;
}
#ship-to-different-address label input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
}

.woocommerce-checkout .checkout-delivery-options,
.woocommerce .checkout-delivery-options,
.checkout-delivery-options {
  background: #F7F9FB;
  padding: 32px;
  border-radius: 8px;
}
.woocommerce-checkout .checkout-delivery-options table,
.woocommerce-checkout .checkout-delivery-options .shop_table,
.woocommerce .checkout-delivery-options table,
.woocommerce .checkout-delivery-options .shop_table,
.checkout-delivery-options table,
.checkout-delivery-options .shop_table {
  background-color: transparent !important;
  border: none !important;
  margin: 0 !important;
}
.woocommerce-checkout .checkout-delivery-options table tr,
.woocommerce-checkout .checkout-delivery-options .shop_table tr,
.woocommerce .checkout-delivery-options table tr,
.woocommerce .checkout-delivery-options .shop_table tr,
.checkout-delivery-options table tr,
.checkout-delivery-options .shop_table tr {
  background-color: transparent !important;
  border: none !important;
}
.woocommerce-checkout .checkout-delivery-options table tr:hover,
.woocommerce-checkout .checkout-delivery-options .shop_table tr:hover,
.woocommerce .checkout-delivery-options table tr:hover,
.woocommerce .checkout-delivery-options .shop_table tr:hover,
.checkout-delivery-options table tr:hover,
.checkout-delivery-options .shop_table tr:hover {
  background-color: transparent !important;
}
.woocommerce-checkout .checkout-delivery-options table th,
.woocommerce-checkout .checkout-delivery-options table td,
.woocommerce-checkout .checkout-delivery-options .shop_table th,
.woocommerce-checkout .checkout-delivery-options .shop_table td,
.woocommerce .checkout-delivery-options table th,
.woocommerce .checkout-delivery-options table td,
.woocommerce .checkout-delivery-options .shop_table th,
.woocommerce .checkout-delivery-options .shop_table td,
.checkout-delivery-options table th,
.checkout-delivery-options table td,
.checkout-delivery-options .shop_table th,
.checkout-delivery-options .shop_table td {
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
}
@media (max-width: 767px) {
  .woocommerce-checkout .checkout-delivery-options,
  .woocommerce .checkout-delivery-options,
  .checkout-delivery-options {
    padding: 24px;
  }
}
.woocommerce-checkout .checkout-delivery-options .checkout-section-title,
.woocommerce .checkout-delivery-options .checkout-section-title,
.checkout-delivery-options .checkout-section-title {
  margin-bottom: 16px;
}
.woocommerce-checkout .checkout-delivery-options .shipping-methods,
.woocommerce .checkout-delivery-options .shipping-methods,
.checkout-delivery-options .shipping-methods {
  position: relative;
}
.woocommerce-checkout .checkout-delivery-options .shipping-methods ul,
.woocommerce .checkout-delivery-options .shipping-methods ul,
.checkout-delivery-options .shipping-methods ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.woocommerce-checkout .checkout-delivery-options .shipping-methods ul li,
.woocommerce .checkout-delivery-options .shipping-methods ul li,
.checkout-delivery-options .shipping-methods ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
  cursor: pointer;
  flex-wrap: wrap;
}
.woocommerce-checkout .checkout-delivery-options .shipping-methods ul li label,
.woocommerce .checkout-delivery-options .shipping-methods ul li label,
.checkout-delivery-options .shipping-methods ul li label {
  flex-basis: 80%;
}
.woocommerce-checkout .checkout-delivery-options .shipping-methods ul li .salu-location-wrap,
.woocommerce .checkout-delivery-options .shipping-methods ul li .salu-location-wrap,
.checkout-delivery-options .shipping-methods ul li .salu-location-wrap {
  margin-bottom: 12px;
}

.woocommerce-checkout .checkout-payment-section table,
.woocommerce-checkout .checkout-payment-section .shop_table,
.woocommerce .checkout-payment-section table,
.woocommerce .checkout-payment-section .shop_table,
.checkout-payment-section table,
.checkout-payment-section .shop_table {
  background-color: transparent !important;
  border: none !important;
  margin: 0 !important;
}
.woocommerce-checkout .checkout-payment-section table tr,
.woocommerce-checkout .checkout-payment-section .shop_table tr,
.woocommerce .checkout-payment-section table tr,
.woocommerce .checkout-payment-section .shop_table tr,
.checkout-payment-section table tr,
.checkout-payment-section .shop_table tr {
  background-color: transparent !important;
  border: none !important;
}
.woocommerce-checkout .checkout-payment-section table th,
.woocommerce-checkout .checkout-payment-section table td,
.woocommerce-checkout .checkout-payment-section .shop_table th,
.woocommerce-checkout .checkout-payment-section .shop_table td,
.woocommerce .checkout-payment-section table th,
.woocommerce .checkout-payment-section table td,
.woocommerce .checkout-payment-section .shop_table th,
.woocommerce .checkout-payment-section .shop_table td,
.checkout-payment-section table th,
.checkout-payment-section table td,
.checkout-payment-section .shop_table th,
.checkout-payment-section .shop_table td {
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
}
@media (max-width: 767px) {
  .woocommerce-checkout .checkout-payment-section,
  .woocommerce .checkout-payment-section,
  .checkout-payment-section {
    padding: 24px;
  }
}
.woocommerce-checkout .checkout-payment-section .checkout-section-title,
.woocommerce .checkout-payment-section .checkout-section-title,
.checkout-payment-section .checkout-section-title {
  margin-bottom: 8px;
}
.woocommerce-checkout .checkout-payment-section .payment-section-description,
.woocommerce .checkout-payment-section .payment-section-description,
.checkout-payment-section .payment-section-description {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-checkout .checkout-payment-section .payment-section-description,
  .woocommerce .checkout-payment-section .payment-section-description,
  .checkout-payment-section .payment-section-description {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-checkout .checkout-payment-section .payment-section-description,
  .woocommerce .checkout-payment-section .payment-section-description,
  .checkout-payment-section .payment-section-description {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-checkout .checkout-payment-section .payment-section-description,
  .woocommerce .checkout-payment-section .payment-section-description,
  .checkout-payment-section .payment-section-description {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce-checkout .checkout-payment-section .payment-section-description,
.woocommerce .checkout-payment-section .payment-section-description,
.checkout-payment-section .payment-section-description {
  color: #5B5E67;
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 1.5;
}
.woocommerce-checkout .checkout-payment-section .payment-group-label,
.woocommerce .checkout-payment-section .payment-group-label,
.checkout-payment-section .payment-group-label {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-checkout .checkout-payment-section .payment-group-label,
  .woocommerce .checkout-payment-section .payment-group-label,
  .checkout-payment-section .payment-group-label {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-checkout .checkout-payment-section .payment-group-label,
  .woocommerce .checkout-payment-section .payment-group-label,
  .checkout-payment-section .payment-group-label {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-checkout .checkout-payment-section .payment-group-label,
  .woocommerce .checkout-payment-section .payment-group-label,
  .checkout-payment-section .payment-group-label {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.woocommerce-checkout .checkout-payment-section .payment-group-label,
.woocommerce .checkout-payment-section .payment-group-label,
.checkout-payment-section .payment-group-label {
  color: #8A8C95;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: block;
}

.woocommerce-checkout #payment.woocommerce-checkout-payment,
.woocommerce #payment.woocommerce-checkout-payment,
#payment.woocommerce-checkout-payment {
  background: transparent;
  border: none;
  padding: 0;
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods,
.woocommerce #payment.woocommerce-checkout-payment .wc_payment_methods,
#payment.woocommerce-checkout-payment .wc_payment_methods {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  gap: 12px;
  border: none;
  flex-wrap: wrap;
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods::before,
.woocommerce #payment.woocommerce-checkout-payment .wc_payment_methods::before,
#payment.woocommerce-checkout-payment .wc_payment_methods::before {
  content: none;
}
@media (max-width: 767px) {
  .woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods,
  .woocommerce #payment.woocommerce-checkout-payment .wc_payment_methods,
  #payment.woocommerce-checkout-payment .wc_payment_methods {
    gap: 8px;
  }
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods li,
.woocommerce #payment.woocommerce-checkout-payment .wc_payment_methods li,
#payment.woocommerce-checkout-payment .wc_payment_methods li {
  margin: 0;
  padding: 0;
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method,
.woocommerce #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method,
#payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method {
  position: relative;
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method input[type=radio],
.woocommerce #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method input[type=radio],
#payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method input[type=radio]:checked + label,
.woocommerce #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method input[type=radio]:checked + label,
#payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method input[type=radio]:checked + label {
  border-color: #FF0019;
  background: #FFFFFF;
  box-shadow: none;
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method input[type=radio]:checked + label::after,
.woocommerce #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method input[type=radio]:checked + label::after,
#payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method input[type=radio]:checked + label::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 16px;
  height: 16px;
  background: #262930;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4L3.5 6.5L9 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method input[type=radio]:disabled + label,
.woocommerce #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method input[type=radio]:disabled + label,
#payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method input[type=radio]:disabled + label {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label,
.woocommerce #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label,
#payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 64px;
  padding: 8px;
  border: 1px solid #E4E4E6;
  border-radius: 8px;
  background: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease;
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label:hover,
.woocommerce #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label:hover,
#payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label:hover {
  border-color: #FF0019;
}
@media (min-width: 992px) and (max-width: 1919px) {
  .woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label,
  .woocommerce #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label,
  #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label {
    min-width: 80px;
    height: 48px;
  }
}
@media (max-width: 991px) {
  .woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label,
  .woocommerce #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label,
  #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label {
    min-width: 80px;
    height: 48px;
  }
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label img,
.woocommerce #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label img,
#payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label img {
  max-width: 120px;
  max-height: 48px;
  height: auto;
  width: auto;
  object-fit: contain;
}
@media (min-width: 992px) and (max-width: 1919px) {
  .woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label img,
  .woocommerce #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label img,
  #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label img {
    max-width: 80px;
    max-height: 32px;
  }
}
@media (max-width: 991px) {
  .woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label img,
  .woocommerce #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label img,
  #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label img {
    max-width: 80px;
    max-height: 32px;
  }
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label span:not(.payment-method-icon),
.woocommerce #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label span:not(.payment-method-icon),
#payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label span:not(.payment-method-icon) {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label span:not(.payment-method-icon),
  .woocommerce #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label span:not(.payment-method-icon),
  #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label span:not(.payment-method-icon) {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label span:not(.payment-method-icon),
  .woocommerce #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label span:not(.payment-method-icon),
  #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label span:not(.payment-method-icon) {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label span:not(.payment-method-icon),
  .woocommerce #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label span:not(.payment-method-icon),
  #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label span:not(.payment-method-icon) {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.woocommerce-checkout #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label span:not(.payment-method-icon),
.woocommerce #payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label span:not(.payment-method-icon),
#payment.woocommerce-checkout-payment .wc_payment_methods .wc_payment_method label span:not(.payment-method-icon) {
  font-size: 11px;
  font-weight: var(--fw-semibold);
  color: #262930;
  text-align: center;
}
.woocommerce-checkout #payment .payment-methods-banks,
.woocommerce #payment .payment-methods-banks,
#payment .payment-methods-banks {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E4E4E6;
}
.woocommerce-checkout #payment .payment-methods-banks .wc_payment_methods,
.woocommerce #payment .payment-methods-banks .wc_payment_methods,
#payment .payment-methods-banks .wc_payment_methods {
  margin-bottom: 16px;
}
.woocommerce-checkout #payment .payment-methods-banks .wc_payment_methods .wc_payment_method label,
.woocommerce #payment .payment-methods-banks .wc_payment_methods .wc_payment_method label,
#payment .payment-methods-banks .wc_payment_methods .wc_payment_method label {
  min-width: 120px;
  height: 64px;
}
@media (min-width: 992px) and (max-width: 1919px) {
  .woocommerce-checkout #payment .payment-methods-banks .wc_payment_methods .wc_payment_method label,
  .woocommerce #payment .payment-methods-banks .wc_payment_methods .wc_payment_method label,
  #payment .payment-methods-banks .wc_payment_methods .wc_payment_method label {
    min-width: 80px;
    height: 48px;
  }
}
@media (max-width: 991px) {
  .woocommerce-checkout #payment .payment-methods-banks .wc_payment_methods .wc_payment_method label,
  .woocommerce #payment .payment-methods-banks .wc_payment_methods .wc_payment_method label,
  #payment .payment-methods-banks .wc_payment_methods .wc_payment_method label {
    min-width: 80px;
    height: 48px;
  }
}
.woocommerce-checkout #payment .payment-methods-banks .wc_payment_methods .wc_payment_method label img,
.woocommerce #payment .payment-methods-banks .wc_payment_methods .wc_payment_method label img,
#payment .payment-methods-banks .wc_payment_methods .wc_payment_method label img {
  max-width: 120px;
  max-height: 48px;
}
@media (min-width: 992px) and (max-width: 1919px) {
  .woocommerce-checkout #payment .payment-methods-banks .wc_payment_methods .wc_payment_method label img,
  .woocommerce #payment .payment-methods-banks .wc_payment_methods .wc_payment_method label img,
  #payment .payment-methods-banks .wc_payment_methods .wc_payment_method label img {
    max-width: 80px;
    max-height: 32px;
  }
}
@media (max-width: 991px) {
  .woocommerce-checkout #payment .payment-methods-banks .wc_payment_methods .wc_payment_method label img,
  .woocommerce #payment .payment-methods-banks .wc_payment_methods .wc_payment_method label img,
  #payment .payment-methods-banks .wc_payment_methods .wc_payment_method label img {
    max-width: 80px;
    max-height: 32px;
  }
}
.woocommerce-checkout #payment div.payment_box,
.woocommerce #payment div.payment_box,
#payment div.payment_box {
  background: #FFFFFF;
  padding: 0;
  margin: 0;
}
.woocommerce-checkout #payment div.payment_box::before,
.woocommerce #payment div.payment_box::before,
#payment div.payment_box::before {
  content: none;
}
.woocommerce-checkout #payment div.payment_box fieldset,
.woocommerce #payment div.payment_box fieldset,
#payment div.payment_box fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.woocommerce-checkout #payment div.payment_box .montonio-bank-payments-form .montonio-bank-items,
.woocommerce #payment div.payment_box .montonio-bank-payments-form .montonio-bank-items,
#payment div.payment_box .montonio-bank-payments-form .montonio-bank-items {
  gap: 12px;
}
.woocommerce-checkout #payment div.payment_box .montonio-bank-payments-form .montonio-bank-items .montonio-bank-item,
.woocommerce #payment div.payment_box .montonio-bank-payments-form .montonio-bank-items .montonio-bank-item,
#payment div.payment_box .montonio-bank-payments-form .montonio-bank-items .montonio-bank-item {
  height: auto;
}
.woocommerce-checkout #payment div.payment_box .montonio-bank-payments-form .montonio-bank-items .montonio-bank-item:hover, .woocommerce-checkout #payment div.payment_box .montonio-bank-payments-form .montonio-bank-items .montonio-bank-item.active,
.woocommerce #payment div.payment_box .montonio-bank-payments-form .montonio-bank-items .montonio-bank-item:hover,
.woocommerce #payment div.payment_box .montonio-bank-payments-form .montonio-bank-items .montonio-bank-item.active,
#payment div.payment_box .montonio-bank-payments-form .montonio-bank-items .montonio-bank-item:hover,
#payment div.payment_box .montonio-bank-payments-form .montonio-bank-items .montonio-bank-item.active {
  border-color: #FF0019;
  background: #FFFFFF;
}
.woocommerce-checkout #payment div.place-order,
.woocommerce #payment div.place-order,
#payment div.place-order {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.woocommerce-checkout #payment div.place-order .woocommerce-terms-and-conditions-wrapper,
.woocommerce #payment div.place-order .woocommerce-terms-and-conditions-wrapper,
#payment div.place-order .woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 16px;
}
.woocommerce-checkout #payment div.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox,
.woocommerce #payment div.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox,
#payment div.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-checkout #payment div.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox,
  .woocommerce #payment div.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox,
  #payment div.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-checkout #payment div.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox,
  .woocommerce #payment div.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox,
  #payment div.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-checkout #payment div.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox,
  .woocommerce #payment div.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox,
  #payment div.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.woocommerce-checkout #payment div.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox,
.woocommerce #payment div.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox,
#payment div.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox {
  color: #5B5E67;
}
.woocommerce-checkout #payment div.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox input[type=checkbox],
.woocommerce #payment div.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox input[type=checkbox],
#payment div.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox input[type=checkbox] {
  width: 20px;
  height: 20px;
  margin: 2px 0 0 0;
  cursor: pointer;
  flex-shrink: 0;
}
.woocommerce-checkout #payment div.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox span,
.woocommerce #payment div.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox span,
#payment div.place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox span {
  flex: 1;
}
.woocommerce-checkout #payment div.place-order #place_order,
.woocommerce #payment div.place-order #place_order,
#payment div.place-order #place_order {
  width: 100%;
  justify-content: center;
  height: 56px;
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .woocommerce-checkout #payment div.place-order #place_order,
  .woocommerce #payment div.place-order #place_order,
  #payment div.place-order #place_order {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-checkout #payment div.place-order #place_order,
  .woocommerce #payment div.place-order #place_order,
  #payment div.place-order #place_order {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-checkout #payment div.place-order #place_order,
  .woocommerce #payment div.place-order #place_order,
  #payment div.place-order #place_order {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.woocommerce-checkout #payment div.place-order #place_order:disabled,
.woocommerce #payment div.place-order #place_order:disabled,
#payment div.place-order #place_order:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 991px) {
  .checkout-right-column {
    order: -1;
    margin-bottom: 32px;
  }
}

.checkout-order-summary {
  background: #F7F9FB;
  border-radius: 8px;
  padding: 32px;
  border: 1px solid #E4E4E6;
}
@media (min-width: 992px) {
  .checkout-order-summary {
    position: sticky;
    top: 32px;
  }
}
@media (max-width: 767px) {
  .checkout-order-summary {
    padding: 24px;
  }
}
.checkout-order-summary .order-summary-title {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .checkout-order-summary .order-summary-title {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .checkout-order-summary .order-summary-title {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .checkout-order-summary .order-summary-title {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.checkout-order-summary .order-summary-title {
  color: #262930;
  margin: 0 0 20px;
  font-weight: var(--fw-bold);
}

.woocommerce-checkout .checkout-order-summary .order-summary-table,
.woocommerce .checkout-order-summary .order-summary-table,
.checkout-order-summary table.order-summary-table,
.order-summary-table {
  width: 100%;
  border-collapse: collapse;
  background-color: transparent;
  border: none;
  margin: 0;
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody,
.woocommerce .checkout-order-summary .order-summary-table tbody,
.checkout-order-summary table.order-summary-table tbody,
.order-summary-table tbody {
  background-color: transparent;
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr,
.woocommerce .checkout-order-summary .order-summary-table tbody tr,
.checkout-order-summary table.order-summary-table tbody tr,
.order-summary-table tbody tr {
  background-color: transparent !important;
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr:nth-child(even),
.woocommerce .checkout-order-summary .order-summary-table tbody tr:nth-child(even),
.checkout-order-summary table.order-summary-table tbody tr:nth-child(even),
.order-summary-table tbody tr:nth-child(even) {
  background-color: transparent !important;
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr:hover,
.woocommerce .checkout-order-summary .order-summary-table tbody tr:hover,
.checkout-order-summary table.order-summary-table tbody tr:hover,
.order-summary-table tbody tr:hover {
  background-color: transparent !important;
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr:not(.order-total),
.woocommerce .checkout-order-summary .order-summary-table tbody tr:not(.order-total),
.checkout-order-summary table.order-summary-table tbody tr:not(.order-total),
.order-summary-table tbody tr:not(.order-total) {
  border-bottom: 1px solid rgba(228, 228, 230, 0.6);
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr:last-child:not(.order-total),
.woocommerce .checkout-order-summary .order-summary-table tbody tr:last-child:not(.order-total),
.checkout-order-summary table.order-summary-table tbody tr:last-child:not(.order-total),
.order-summary-table tbody tr:last-child:not(.order-total) {
  border-bottom: none;
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr th,
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr td,
.woocommerce .checkout-order-summary .order-summary-table tbody tr th,
.woocommerce .checkout-order-summary .order-summary-table tbody tr td,
.checkout-order-summary table.order-summary-table tbody tr th,
.checkout-order-summary table.order-summary-table tbody tr td,
.order-summary-table tbody tr th,
.order-summary-table tbody tr td {
  padding: 14px 0;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr th,
  .woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr td,
  .woocommerce .checkout-order-summary .order-summary-table tbody tr th,
  .woocommerce .checkout-order-summary .order-summary-table tbody tr td,
  .checkout-order-summary table.order-summary-table tbody tr th,
  .checkout-order-summary table.order-summary-table tbody tr td,
  .order-summary-table tbody tr th,
  .order-summary-table tbody tr td {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr th,
  .woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr td,
  .woocommerce .checkout-order-summary .order-summary-table tbody tr th,
  .woocommerce .checkout-order-summary .order-summary-table tbody tr td,
  .checkout-order-summary table.order-summary-table tbody tr th,
  .checkout-order-summary table.order-summary-table tbody tr td,
  .order-summary-table tbody tr th,
  .order-summary-table tbody tr td {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr th,
  .woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr td,
  .woocommerce .checkout-order-summary .order-summary-table tbody tr th,
  .woocommerce .checkout-order-summary .order-summary-table tbody tr td,
  .checkout-order-summary table.order-summary-table tbody tr th,
  .checkout-order-summary table.order-summary-table tbody tr td,
  .order-summary-table tbody tr th,
  .order-summary-table tbody tr td {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr th,
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr td,
.woocommerce .checkout-order-summary .order-summary-table tbody tr th,
.woocommerce .checkout-order-summary .order-summary-table tbody tr td,
.checkout-order-summary table.order-summary-table tbody tr th,
.checkout-order-summary table.order-summary-table tbody tr td,
.order-summary-table tbody tr th,
.order-summary-table tbody tr td {
  text-align: left;
  font-size: 15px;
  border: none;
  background-color: transparent;
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr th,
.woocommerce .checkout-order-summary .order-summary-table tbody tr th,
.checkout-order-summary table.order-summary-table tbody tr th,
.order-summary-table tbody tr th {
  color: #5B5E67;
  font-weight: var(--fw-regular);
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr td,
.woocommerce .checkout-order-summary .order-summary-table tbody tr td,
.checkout-order-summary table.order-summary-table tbody tr td,
.order-summary-table tbody tr td {
  text-align: right;
  color: #262930;
  font-weight: var(--fw-semibold);
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr td .woocommerce-Price-amount,
.woocommerce .checkout-order-summary .order-summary-table tbody tr td .woocommerce-Price-amount,
.checkout-order-summary table.order-summary-table tbody tr td .woocommerce-Price-amount,
.order-summary-table tbody tr td .woocommerce-Price-amount {
  font-weight: var(--fw-semibold);
  color: #262930;
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr.cart-subtotal th, .woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr.cart-subtotal td,
.woocommerce .checkout-order-summary .order-summary-table tbody tr.cart-subtotal th,
.woocommerce .checkout-order-summary .order-summary-table tbody tr.cart-subtotal td,
.checkout-order-summary table.order-summary-table tbody tr.cart-subtotal th,
.checkout-order-summary table.order-summary-table tbody tr.cart-subtotal td,
.order-summary-table tbody tr.cart-subtotal th,
.order-summary-table tbody tr.cart-subtotal td {
  padding-top: 0;
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods,
.woocommerce .checkout-order-summary .order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods,
.checkout-order-summary table.order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods,
.order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods {
  list-style: none;
  margin: 0;
  padding: 0;
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li,
.woocommerce .checkout-order-summary .order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li,
.checkout-order-summary table.order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li,
.order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li,
  .woocommerce .checkout-order-summary .order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li,
  .checkout-order-summary table.order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li,
  .order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li,
  .woocommerce .checkout-order-summary .order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li,
  .checkout-order-summary table.order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li,
  .order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li,
  .woocommerce .checkout-order-summary .order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li,
  .checkout-order-summary table.order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li,
  .order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li,
.woocommerce .checkout-order-summary .order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li,
.checkout-order-summary table.order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li,
.order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li {
  font-size: 15px;
  color: #262930;
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li input[type=radio],
.woocommerce .checkout-order-summary .order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li input[type=radio],
.checkout-order-summary table.order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li input[type=radio],
.order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li input[type=radio] {
  display: none;
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li label,
.woocommerce .checkout-order-summary .order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li label,
.checkout-order-summary table.order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li label,
.order-summary-table tbody tr.shipping-total td .woocommerce-shipping-methods li label {
  margin: 0;
  font-weight: var(--fw-semibold);
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr.fee th,
.woocommerce .checkout-order-summary .order-summary-table tbody tr.fee th,
.checkout-order-summary table.order-summary-table tbody tr.fee th,
.order-summary-table tbody tr.fee th {
  font-size: 14px;
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr.tax-rate th, .woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr.tax-total th,
.woocommerce .checkout-order-summary .order-summary-table tbody tr.tax-rate th,
.woocommerce .checkout-order-summary .order-summary-table tbody tr.tax-total th,
.checkout-order-summary table.order-summary-table tbody tr.tax-rate th,
.checkout-order-summary table.order-summary-table tbody tr.tax-total th,
.order-summary-table tbody tr.tax-rate th,
.order-summary-table tbody tr.tax-total th {
  font-size: 14px;
  color: #8A8C95;
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr.tax-rate td, .woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr.tax-total td,
.woocommerce .checkout-order-summary .order-summary-table tbody tr.tax-rate td,
.woocommerce .checkout-order-summary .order-summary-table tbody tr.tax-total td,
.checkout-order-summary table.order-summary-table tbody tr.tax-rate td,
.checkout-order-summary table.order-summary-table tbody tr.tax-total td,
.order-summary-table tbody tr.tax-rate td,
.order-summary-table tbody tr.tax-total td {
  font-size: 14px;
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr.order-total,
.woocommerce .checkout-order-summary .order-summary-table tbody tr.order-total,
.checkout-order-summary table.order-summary-table tbody tr.order-total,
.order-summary-table tbody tr.order-total {
  border-top: 2px solid #D8DAE2;
  margin-top: 8px;
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr.order-total th,
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr.order-total td,
.woocommerce .checkout-order-summary .order-summary-table tbody tr.order-total th,
.woocommerce .checkout-order-summary .order-summary-table tbody tr.order-total td,
.checkout-order-summary table.order-summary-table tbody tr.order-total th,
.checkout-order-summary table.order-summary-table tbody tr.order-total td,
.order-summary-table tbody tr.order-total th,
.order-summary-table tbody tr.order-total td {
  padding: 20px 0 0;
  font-size: 18px;
  color: #262930;
  font-weight: var(--fw-bold);
}
.woocommerce-checkout .checkout-order-summary .order-summary-table tbody tr.order-total td .woocommerce-Price-amount,
.woocommerce .checkout-order-summary .order-summary-table tbody tr.order-total td .woocommerce-Price-amount,
.checkout-order-summary table.order-summary-table tbody tr.order-total td .woocommerce-Price-amount,
.order-summary-table tbody tr.order-total td .woocommerce-Price-amount {
  font-weight: var(--fw-bold);
  font-size: 18px;
}

.woocommerce-checkout .woocommerce-NoticeGroup {
  margin-bottom: 32px;
}
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info {
  list-style: none;
  margin: 0 0 16px;
  padding: 16px 24px;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .woocommerce-checkout .woocommerce-error,
  .woocommerce-checkout .woocommerce-message,
  .woocommerce-checkout .woocommerce-info {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .woocommerce-checkout .woocommerce-error,
  .woocommerce-checkout .woocommerce-message,
  .woocommerce-checkout .woocommerce-info {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .woocommerce-checkout .woocommerce-error,
  .woocommerce-checkout .woocommerce-message,
  .woocommerce-checkout .woocommerce-info {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.woocommerce-checkout .woocommerce-error::before,
.woocommerce-checkout .woocommerce-message::before,
.woocommerce-checkout .woocommerce-info::before {
  content: "";
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.woocommerce-checkout .woocommerce-error li,
.woocommerce-checkout .woocommerce-message li,
.woocommerce-checkout .woocommerce-info li {
  margin: 0;
}
.woocommerce-checkout .woocommerce-error {
  background: rgba(197, 1, 76, 0.08);
  border: 1px solid #C5014C;
  color: #C5014C;
}
.woocommerce-checkout .woocommerce-message {
  background: rgba(42, 199, 105, 0.08);
  border: 1px solid #2AC769;
  color: #2AC769;
}
.woocommerce-checkout .woocommerce-info {
  background: rgba(38, 41, 48, 0.05);
  border: 1px solid #E4E4E6;
  color: #262930;
}

.woocommerce-checkout.processing .checkout-container {
  opacity: 0.6;
  pointer-events: none;
}
.woocommerce-checkout.processing::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid #D8DAE2;
  border-top-color: #FF0019;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 999;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .checkout-left-column {
    gap: 28px;
  }
  .checkout-cart-review,
  .checkout-customer-details,
  .checkout-delivery-options,
  .checkout-payment-section {
    padding: 28px;
  }
  .checkout-order-summary {
    padding: 28px;
  }
  .checkout-customer-details .woocommerce-billing-fields__field-wrapper,
  .checkout-customer-details .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  #payment .wc_payment_methods {
    gap: 6px;
  }
  #payment .wc_payment_methods .wc_payment_method label {
    min-width: 80px;
    height: 48px;
    padding: 6px 10px;
  }
  #payment .wc_payment_methods .wc_payment_method label img {
    max-width: 80px;
    max-height: 32px;
  }
}
@media (max-width: 767px) {
  .checkout-left-column {
    gap: 24px;
  }
  .checkout-section-title {
    font-family: var(--font-primary);
    font-weight: var(--fw-bold);
    margin-bottom: 16px;
    font-size: 18px;
  }
}
@media (max-width: 767px) and (min-width: 1920px) {
  .checkout-section-title {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 767px) and (max-width: 1919px) and (min-width: 992px) {
  .checkout-section-title {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 767px) and (max-width: 991px) {
  .checkout-section-title {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 767px) {
  .checkout-cart-review {
    padding: 20px;
  }
  .checkout-cart-review .checkout-section-title {
    font-size: 16px;
  }
  .checkout-cart-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .checkout-cart-item__image {
    grid-row: 1;
    grid-column: 1;
  }
  .checkout-cart-item__details {
    grid-row: 2;
    grid-column: 1;
  }
  .checkout-cart-item__price-remove {
    grid-row: 3;
    grid-column: 1;
  }
  .checkout-coupon-row {
    flex-direction: column;
    gap: 12px;
  }
  .checkout-coupon-row input[type=text] {
    width: 100%;
  }
  .checkout-coupon-row .btn-coupon {
    width: 100%;
    justify-content: center;
  }
  .checkout-customer-details {
    padding: 20px;
  }
  .checkout-customer-details .form-row label {
    font-size: 13px;
  }
  .checkout-customer-details .form-row input, .checkout-customer-details .form-row select, .checkout-customer-details .form-row textarea {
    height: 44px;
    font-size: 15px;
  }
  .checkout-customer-details .woocommerce-shipping-fields {
    margin-top: 24px;
    padding-top: 24px;
  }
  .checkout-delivery-options {
    padding: 20px;
  }
  .checkout-delivery-options .shipping-methods::before {
    padding: 12px 14px;
    font-size: 14px;
  }
  .checkout-delivery-options .shipping-methods ul li {
    padding: 12px 14px;
  }
  .checkout-delivery-options .shipping-methods ul li label {
    font-size: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .checkout-payment-section {
    padding: 20px;
  }
  .checkout-payment-section .payment-section-description {
    font-size: 13px;
  }
  #payment .wc_payment_methods {
    gap: 6px;
  }
  #payment .wc_payment_methods .wc_payment_method label {
    min-width: 80px;
    height: 48px;
    padding: 6px 8px;
  }
  #payment .wc_payment_methods .wc_payment_method label img {
    max-width: 80px;
    max-height: 32px;
  }
  #payment .place-order {
    margin-top: 20px;
  }
  #payment .place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox {
    font-size: 13px;
  }
  #payment .place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-form__label-for-checkbox input[type=checkbox] {
    width: 18px;
    height: 18px;
  }
  #payment .place-order #place_order {
    height: 52px;
    font-size: 15px;
  }
  .checkout-right-column {
    margin-bottom: 24px;
  }
  .checkout-order-summary {
    padding: 20px;
  }
  .checkout-order-summary .order-summary-title {
    font-size: 16px;
    margin-bottom: 16px;
  }
  .order-summary-table tbody tr th, .order-summary-table tbody tr td {
    padding: 12px 0;
    font-size: 14px;
  }
  .order-summary-table tbody tr.order-total th, .order-summary-table tbody tr.order-total td {
    padding-top: 16px;
    font-size: 16px;
  }
  .order-summary-table tbody tr.order-total td .woocommerce-Price-amount {
    font-size: 16px;
  }
}
@media (max-width: 374px) {
  .checkout-cart-review,
  .checkout-customer-details,
  .checkout-delivery-options,
  .checkout-payment-section,
  .checkout-order-summary {
    padding: 16px;
  }
  .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info {
    gap: 12px;
  }
  .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-thumbnail {
    width: 50px;
    height: 50px;
  }
  .checkout-cart-table tbody tr.checkout-cart-item td.product-column .product-info .product-details .product-name {
    font-size: 14px;
  }
  #payment .wc_payment_methods .wc_payment_method label {
    min-width: 80px;
    height: 48px;
  }
}
body.woocommerce-order-received {
  background-color: #F7F9FB;
}
body.woocommerce-order-received article .entry-header {
  display: none;
}

.birdbusters-order-received {
  max-width: 850px;
  margin: 0 auto;
  margin-top: 40px;
}
@media (max-width: 1919px) {
  .birdbusters-order-received {
    max-width: 570px;
    margin-top: 32px;
  }
}
@media (max-width: 991px) {
  .birdbusters-order-received {
    max-width: 100%;
    margin-top: 24px;
  }
}
.birdbusters-order-received .order-received-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}
@media (max-width: 1919px) {
  .birdbusters-order-received .order-received-card {
    gap: 32px;
  }
}
@media (max-width: 991px) {
  .birdbusters-order-received .order-received-card {
    max-width: 100%;
    gap: 24px;
  }
}
.birdbusters-order-received .order-received-card__icon {
  width: 93px;
  height: auto;
}
@media (max-width: 991px) {
  .birdbusters-order-received .order-received-card__icon {
    width: 74px;
    margin-bottom: 20px;
  }
}
.birdbusters-order-received .order-received-card__payment-extra {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.birdbusters-order-received .order-received-card__reference {
  padding: 12px 16px;
  max-width: 36ch;
  background: #F7F9FB;
  border: 1px solid #E4E4E6;
  border-radius: 6px;
}
.birdbusters-order-received .woocommerce-bacs-bank-details {
  width: 100%;
  padding: 20px 20px 16px;
  background: #F7F9FB;
  border: 1px solid #E4E4E6;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 990px) {
  .birdbusters-order-received .woocommerce-bacs-bank-details {
    padding: 16px 14px 12px;
  }
}
.birdbusters-order-received .wc-bacs-bank-details-heading {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .birdbusters-order-received .wc-bacs-bank-details-heading {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .birdbusters-order-received .wc-bacs-bank-details-heading {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .birdbusters-order-received .wc-bacs-bank-details-heading {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.birdbusters-order-received .wc-bacs-bank-details-account-name {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .birdbusters-order-received .wc-bacs-bank-details-account-name {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .birdbusters-order-received .wc-bacs-bank-details-account-name {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .birdbusters-order-received .wc-bacs-bank-details-account-name {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.birdbusters-order-received .wc-bacs-bank-details-account-name {
  text-align: left;
}
.birdbusters-order-received ul.wc-bacs-bank-details,
.birdbusters-order-received ul.bacs_details {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}
.birdbusters-order-received .woocommerce-thankyou-order-failed,
.birdbusters-order-received .woocommerce-thankyou-order-failed-actions {
  text-align: center;
}
.birdbusters-order-received .woocommerce-thankyou-order-failed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/**
 * Europe Map Section
 *
 * Split layout section with text content on the left and map image on the right.
 */
.europe-map {
  width: 100%;
  background-color: #F7F9FB;
  border-radius: 8px;
  margin-bottom: 10px;
}
.europe-map__container {
  display: flex;
  align-items: center;
  padding: 24px 0;
  justify-content: space-between;
  padding-left: 148px;
}
@media (min-width: 991px) and (max-width: 1919px) {
  .europe-map__container {
    padding-left: 100px;
  }
}
@media (max-width: 991px) {
  .europe-map__container {
    padding: 24px 0;
    flex-direction: column;
    gap: 32px;
  }
}
.europe-map__content {
  flex: 0 0 40%;
  max-width: 400px;
}
@media (max-width: 991px) {
  .europe-map__content {
    flex: 1;
    max-width: 100%;
    text-align: left;
    padding: 0 24px;
  }
}
.europe-map__title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 20px;
}
@media (max-width: 1024px) {
  .europe-map__title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .europe-map__title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
@media (max-width: 480px) {
  .europe-map__title {
    font-size: 22px;
  }
}
.europe-map__description {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 24px;
}
@media (max-width: 768px) {
  .europe-map__description {
    font-size: 13px;
    margin-bottom: 20px;
  }
}
.europe-map__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .europe-map__image-wrapper {
    width: 100%;
  }
}
.europe-map__image {
  height: 784px;
}
@media (min-width: 991px) and (max-width: 1919px) {
  .europe-map__image {
    height: 522px;
  }
}
@media (max-width: 991px) {
  .europe-map__image {
    width: 100%;
    height: auto;
  }
}

/**
 * Blog List Component
 * 
 * Styles for blog archive and post list layouts
 * Dark background with 3-column grid of post cards
 */
.blog-archive {
  padding: 64px 88px 80px;
}
@media (max-width: 1919px) {
  .blog-archive {
    padding: 64px 56px 80px;
  }
}
@media (max-width: 991px) {
  .blog-archive {
    padding: 48px 24px 64px;
  }
}

.blog-archive__header {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .blog-archive__header {
    margin-bottom: 32px;
  }
}

.blog-archive__title {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .blog-archive__title {
    font-size: 40px;
    line-height: 56px;
    letter-spacing: -1px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .blog-archive__title {
    font-size: 32px;
    line-height: 48px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .blog-archive__title {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
.blog-archive__title {
  margin: 0;
}

.blog-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}
@media (max-width: 1919px) and (min-width: 992px) {
  .blog-archive__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 24px;
  }
}
@media (max-width: 991px) {
  .blog-archive__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}
@media (max-width: 576px) {
  .blog-archive__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
  }
}

.blog-card {
  display: block;
}
.blog-card .blog-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.blog-card .blog-card__link:hover .blog-card__image img, .blog-card .blog-card__link:focus .blog-card__image img {
  transform: scale(1.02);
}
.blog-card .blog-card__image {
  position: relative;
  width: 100%;
  height: 288px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #5B5E67;
}
@media (max-width: 1919px) {
  .blog-card .blog-card__image {
    height: 220px;
  }
}
@media (max-width: 991px) {
  .blog-card .blog-card__image {
    height: 200px;
  }
}
.blog-card .blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-card .blog-card__title {
  margin: 16px 0 0;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.blog-card .blog-card__title svg {
  display: none;
}
@media (max-width: 991px) {
  .blog-card .blog-card__title svg {
    display: block;
    transform: rotate(225deg);
  }
}
.blog-card .type-post {
  padding: 0 256px;
}
@media (max-width: 1919px) {
  .blog-card .type-post {
    padding: 0 156px;
  }
}
@media (max-width: 991px) {
  .blog-card .type-post {
    padding: 0 24px;
  }
}
.blog-card .type-post .post-thumbnail img {
  max-height: 480px;
  width: 100%;
}
@media (max-width: 991px) {
  .blog-card .type-post .post-thumbnail img {
    max-height: 280px;
  }
}

body.blog .blog-archive article.post,
body.archive .blog-archive article.post,
body.search .blog-archive article.post {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
body.blog .blog-archive article.post .entry-header,
body.blog .blog-archive article.post .entry-meta,
body.blog .blog-archive article.post .entry-content,
body.blog .blog-archive article.post .entry-footer,
body.blog .blog-archive article.post .post-thumbnail,
body.archive .blog-archive article.post .entry-header,
body.archive .blog-archive article.post .entry-meta,
body.archive .blog-archive article.post .entry-content,
body.archive .blog-archive article.post .entry-footer,
body.archive .blog-archive article.post .post-thumbnail,
body.search .blog-archive article.post .entry-header,
body.search .blog-archive article.post .entry-meta,
body.search .blog-archive article.post .entry-content,
body.search .blog-archive article.post .entry-footer,
body.search .blog-archive article.post .post-thumbnail {
  display: none;
}
body.blog .posts-navigation,
body.blog .navigation.posts-navigation,
body.archive .posts-navigation,
body.archive .navigation.posts-navigation,
body.search .posts-navigation,
body.search .navigation.posts-navigation {
  display: none;
}

.blog-archive__no-posts {
  color: #8A8C95;
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .blog-archive__no-posts {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .blog-archive__no-posts {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .blog-archive__no-posts {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.blog-archive__no-posts {
  text-align: center;
  padding: 64px 0;
}

/**
 * Search Page Component
 * 
 * Styles for search results page with tabbed content and products
 */
div.search-results {
  padding: 64px 88px 80px;
}
@media (max-width: 1919px) {
  div.search-results {
    padding: 64px 56px 80px;
  }
}
@media (max-width: 991px) {
  div.search-results {
    padding: 48px 24px 64px;
  }
}

.search-results__header {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .search-results__header {
    margin-bottom: 32px;
  }
}

.search-results__title {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .search-results__title {
    font-size: 48px;
    line-height: 64px;
    letter-spacing: -1px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .search-results__title {
    font-size: 36px;
    line-height: 48px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .search-results__title {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
.search-results__title {
  margin: 0;
}

.search-results__toggle {
  margin-bottom: 48px;
}
@media (max-width: 991px) {
  .search-results__toggle {
    margin-bottom: 32px;
  }
}

.search-results__panel {
  display: none;
}
.search-results__panel[aria-hidden=false] {
  display: block;
}
.search-results__panel[aria-hidden=true] {
  display: none;
}

.search-results__content-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.search-results__content-item {
  padding: 32px 0;
  border-bottom: 1px solid #E4E4E6;
}
.search-results__content-item:first-child {
  padding-top: 0;
}
.search-results__content-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 991px) {
  .search-results__content-item {
    padding: 24px 0;
  }
}

.search-results__content-item-header {
  margin-bottom: 12px;
}

.search-results__content-item-title {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .search-results__content-item-title {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .search-results__content-item-title {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .search-results__content-item-title {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.search-results__content-item-title {
  margin: 0;
}
.search-results__content-item-title a {
  color: #262930;
  text-decoration: none;
  transition: color 0.2s ease;
}
.search-results__content-item-title a:hover, .search-results__content-item-title a:focus {
  color: #FF0019;
  text-decoration: underline;
}

.search-results__content-item-excerpt {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .search-results__content-item-excerpt {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .search-results__content-item-excerpt {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .search-results__content-item-excerpt {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.search-results__content-item-excerpt {
  margin-bottom: 16px;
  color: #5B5E67;
}

.search-results__content-item-footer {
  margin-top: 16px;
}

.search-results__products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
  row-gap: 80px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) {
  .search-results__products-grid {
    gap: 24px;
    padding: 24px 16px;
    margin-top: 24px;
  }
}

.search-results__pagination {
  margin-top: 48px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .search-results__pagination {
    margin-top: 40px;
  }
}
.search-results__pagination .nav-links {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 991px) {
  .search-results__pagination .nav-links {
    justify-content: center;
  }
}
.search-results__pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 56px;
  padding: 0;
  background: #F7F9FB;
  border: 1px solid #E4E4E6;
  border-radius: 4px;
  color: #262930;
  font-size: 18px;
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  line-height: 24px;
  text-decoration: none;
  transition: all 0.2s ease;
}
@media (max-width: 991px) {
  .search-results__pagination .page-numbers {
    min-width: 48px;
    height: 48px;
    padding: 12px;
    font-size: 15px;
    line-height: 20px;
  }
}
.search-results__pagination .page-numbers:hover {
  background: #F0F1F5;
}
.search-results__pagination .page-numbers.current {
  background: #FF0019;
  border-color: #FF0019;
  color: #FFFFFF;
}
.search-results__pagination .page-numbers.dots {
  background: transparent;
  border: none;
  cursor: default;
}
.search-results__pagination .page-numbers.dots:hover {
  background: transparent;
}
.search-results__pagination .prev svg,
.search-results__pagination .next svg {
  width: 24px;
  height: 24px;
  display: block;
}
.search-results__pagination .prev svg path,
.search-results__pagination .next svg path {
  stroke: #262930;
  transition: stroke 0.2s ease;
}
.search-results__pagination .prev:hover svg path,
.search-results__pagination .next:hover svg path {
  stroke: #FF0019;
}

.search-results__no-results {
  padding: 48px 0;
  text-align: center;
}
.search-results__no-results p {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .search-results__no-results p {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .search-results__no-results p {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .search-results__no-results p {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.search-results__no-results p {
  color: #5B5E67;
  margin: 0;
}

/**
 * Toggle Switch Component
 * 
 * A responsive toggle switch with label support.
 * Based on Figma design specifications.
 * 
 * States: Default, Hover, Selected (checked), Disabled
 * Viewports: Default (>=1920px), Small (992px-1919px)
 * 
 * @package Birdbusters
 */
.toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
@media (max-width: 1919px) {
  .toggle {
    gap: 8px;
  }
}
.toggle--disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.toggle--disabled .toggle__track,
.toggle--disabled .toggle__knob {
  pointer-events: none;
}

.toggle__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.toggle__input:focus-visible + .toggle__track {
  outline: 2px solid #1C1C1C;
  outline-offset: 2px;
}
.toggle__input:checked + .toggle__track {
  background-color: #FF0019;
  padding-left: 22px;
  padding-right: 2px;
}
@media (max-width: 1919px) {
  .toggle__input:checked + .toggle__track {
    padding-left: 18px;
  }
}
.toggle__input:disabled + .toggle__track {
  cursor: not-allowed;
}
.toggle__input:disabled + .toggle__track:hover {
  border-color: transparent;
}

.toggle__track {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 28px;
  padding-left: 2px;
  padding-right: 22px;
  background-color: #D8DAE2;
  border: 1px solid transparent;
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1919px) {
  .toggle__track {
    width: 40px;
    height: 24px;
    padding-right: 18px;
  }
}
.toggle:not(.toggle--disabled):hover .toggle__track, .toggle__input:not(:disabled):hover + .toggle__track {
  border-color: #FF4F60;
}

.toggle__knob {
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: #FFFFFF;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1919px) {
  .toggle__knob {
    width: 20px;
    height: 20px;
  }
}

.toggle__label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #262930;
  text-align: left;
}

.toggle__title {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .toggle__title {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .toggle__title {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .toggle__title {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
.toggle__title {
  color: #262930;
}
@media (min-width: 1920px) {
  .toggle__title {
    font-size: 15px;
    line-height: 24px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .toggle__title {
    font-size: 12px;
    line-height: 20px;
  }
}

.toggle__subtitle {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
  color: #262930;
}
@media (min-width: 1920px) {
  .toggle__subtitle {
    font-size: 14px;
    line-height: 16px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .toggle__subtitle {
    font-size: 10px;
    line-height: 10px;
  }
}
@media (max-width: 991px) {
  .toggle__subtitle {
    font-size: 14px;
    line-height: 16px;
  }
}

.toggle--small .toggle__track {
  width: 40px;
  height: 24px;
  padding-right: 18px;
}
.toggle--small .toggle__knob {
  width: 20px;
  height: 20px;
}
.toggle--small .toggle__input:checked + .toggle__track {
  padding-left: 18px;
}
.toggle--small .toggle__title {
  font-size: 12px;
  line-height: 20px;
}
.toggle--small .toggle__subtitle {
  font-size: 10px;
  line-height: 10px;
}

.toggle--reverse {
  flex-direction: row-reverse;
}
.toggle--reverse .toggle__label {
  text-align: right;
}

.woocommerce-checkout .toggle {
  margin: 16px 0;
}

.form-row .toggle {
  margin-top: 8px;
}

/**
 * Toggle Text Component (Segmented Control)
 * 
 * A text-based toggle for selecting between options.
 * Based on Figma design specifications.
 * 
 * States: Default, Hover (red border), Selected (white background), Disabled
 * Viewports: Default (>=1920px), Small (992px-1919px)
 * 
 * @package Birdbusters
 */
.toggle-text {
  display: inline-flex;
  align-items: stretch;
  background-color: #F0F1F5;
  border: 1px solid transparent;
  border-radius: 80px;
  transition: all 0.2s ease-in-out;
}
.toggle-text:hover:not(.toggle-text--disabled) {
  border-color: #FF4F60;
}
.toggle-text:focus-within:not(.toggle-text--disabled) {
  border-color: #FF4F60;
  outline: 2px solid #1C1C1C;
  outline-offset: 2px;
}
.toggle-text--disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.toggle-text--disabled .toggle-text__item {
  cursor: not-allowed;
  pointer-events: none;
}

.toggle-text__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  margin: 0;
}

.toggle-text__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.toggle-text__input:checked + .toggle-text__label {
  background-color: #FFFFFF;
  border-radius: 80px;
}
.toggle-text__input:focus-visible + .toggle-text__label {
  outline: 2px solid #1C1C1C;
  outline-offset: -2px;
  border-radius: 80px;
}

.toggle-text__label {
  display: block;
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
  color: #262930;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  font-size: 15px;
  line-height: 20px;
  padding: 16px 24px;
}
@media (max-width: 1919px) {
  .toggle-text__label {
    font-size: 12px;
    line-height: 16px;
    padding: 12px 16px;
  }
}
.toggle-text__item:hover .toggle-text__label {
  opacity: 0.8;
}
.toggle-text__input:checked + .toggle-text__label {
  opacity: 1;
}

.toggle-text--small .toggle-text__label {
  font-size: 12px;
  line-height: 16px;
  padding: 12px 16px;
}

.toggle-text--large .toggle-text__label {
  font-size: 15px;
  line-height: 20px;
  padding: 16px 24px;
}
@media (max-width: 1919px) {
  .toggle-text--large .toggle-text__label {
    font-size: 15px;
    line-height: 20px;
    padding: 16px 24px;
  }
}

.toggle-text--full-width {
  display: flex;
  width: 100%;
}
.toggle-text--full-width .toggle-text__item {
  flex: 1;
}
.toggle-text--full-width .toggle-text__label {
  width: 100%;
}

.woocommerce .variations .toggle-text {
  margin-bottom: 16px;
}
.woocommerce .woocommerce-shipping-methods .toggle-text {
  margin-top: 12px;
}
.woocommerce .wc_payment_methods .toggle-text {
  margin-bottom: 16px;
}

.woocommerce-checkout .toggle-text {
  margin: 16px 0;
}

.form-row .toggle-text {
  margin-top: 8px;
}

/**
 * Generic Slider Component
 * 
 * A reusable slider component with touch swipe support and bullet navigation.
 * Content-agnostic - works with any type of content.
 * 
 * @package Birdbusters
 */
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y pinch-zoom;
}
.slider:focus {
  outline: 2px solid #1C1C1C;
  outline-offset: 4px;
}
.slider:focus:not(:focus-visible) {
  outline: none;
}
.slider--mobile-only {
  display: none;
}
@media (max-width: 991px) {
  .slider--mobile-only {
    display: block;
  }
}

.slider__track {
  display: flex;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}
.slider__track[style*="transition: none"] {
  transition: none;
}

.slider__slide {
  flex: 0 0 100%;
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.slider__navigation {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

@media (prefers-contrast: high) {
  .slider {
    border: 1px solid currentColor;
  }
  .slider__slide {
    border-right: 1px solid currentColor;
  }
  .slider__slide:last-child {
    border-right: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .slider__track {
    transition: none;
  }
}
.slider--full-height {
  height: 100%;
}
.slider--full-height .slider__track {
  height: 100%;
}
.slider--full-height .slider__slide {
  height: 100%;
}

.slider--centered .slider__slide {
  justify-content: center;
  align-items: center;
}

.slider--auto-height {
  height: auto;
}
.slider--auto-height .slider__track {
  height: auto;
}
.slider--auto-height .slider__slide {
  height: auto;
}

/**
 * Slider Bullets Component
 * 
 * A pagination component for sliders/carousels with visual bullet indicators.
 * Based on Figma design specifications.
 * 
 * States: Default, Active, Hover
 * 
 * @package Birdbusters
 */
.slider-bullets {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.slider-bullets--interactive .slider-bullets__bullet {
  cursor: pointer;
}
.slider-bullets--interactive .slider-bullets__bullet:focus {
  outline: 2px solid #1C1C1C;
  outline-offset: 2px;
}
.slider-bullets--interactive .slider-bullets__bullet:focus:not(:focus-visible) {
  outline: none;
}

.slider-bullets__row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.slider-bullets__bullet {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background-color: rgba(38, 41, 48, 0.5);
  border: 1px solid transparent;
  border-radius: 50%;
  transition: all 0.2s ease-in-out;
}
.slider-bullets__bullet:hover {
  width: 12px;
  height: 12px;
  background-color: transparent;
  border-color: #FF4F60;
}
.slider-bullets__bullet--active {
  width: 12px;
  height: 12px;
  background-color: #FF0019;
  border-color: transparent;
}
.slider-bullets__bullet--active:hover {
  background-color: #FF0019;
  border-color: transparent;
}
.slider-bullets--interactive .slider-bullets__bullet:active {
  transform: scale(0.9);
}

.slider-bullets--spaced {
  margin-bottom: 24px;
}

@media (prefers-contrast: high) {
  .slider-bullets__bullet {
    border: 1px solid currentColor;
  }
  .slider-bullets__bullet--active {
    border-width: 2px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .slider-bullets__bullet {
    transition: none;
  }
}
@media (max-width: 991px) {
  .slider-bullets__bullet {
    width: 8px;
    height: 8px;
  }
  .slider-bullets__bullet:hover, .slider-bullets__bullet--active {
    width: 14px;
    height: 14px;
  }
  .slider-bullets__row {
    gap: 12px;
  }
}
.slider-bullets--absolute {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  z-index: 10;
}

.slider-bullets--light .slider-bullets__bullet {
  background-color: rgba(255, 255, 255, 0.5);
}
.slider-bullets--light .slider-bullets__bullet--active {
  background-color: #FFFFFF;
}
.slider-bullets--light .slider-bullets__bullet:hover {
  border-color: #FFFFFF;
}

/**
 * Range Slider Component
 * 
 * A dual-handle range slider component with price/value labels.
 * Based on Figma design specifications.
 * 
 * Features:
 * - Thin track line with active range highlight
 * - Circular handles with white borders
 * - Current value label (top)
 * - Min/max value labels (bottom)
 * - Responsive typography
 * - WooCommerce price filter integration
 * 
 * @package Birdbusters
 */
.range-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 62px;
  position: relative;
}

.range-slider__content {
  position: relative;
  width: 100%;
  height: 62px;
}

.range-slider__track {
  position: absolute;
  top: 32.5px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #D8DAE2;
  pointer-events: none;
}

.range-slider__range {
  position: absolute;
  top: 32.5px;
  height: 4px;
  background-color: #FF0019;
  transform: translateY(-1.5px);
  pointer-events: none;
}

.range-slider__handles {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  height: 16px;
  pointer-events: none;
}

.range-slider__handle {
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: #FF0019;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.2s ease-in-out;
}
.range-slider__handle:hover {
  box-shadow: 0 0 0 4px rgba(255, 0, 25, 0.2);
}
.range-slider__handle:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 0, 25, 0.3);
}
.range-slider__handle:active {
  transform: scale(1.1);
}

.range-slider__current-label {
  position: absolute;
  top: 0px;
  left: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #262930;
  font-size: 15px;
  line-height: 24px;
}
@media (max-width: 1919px) {
  .range-slider__current-label {
    font-size: 12px;
    line-height: 20px;
  }
}

.range-slider__min-label {
  position: absolute;
  top: 48px;
  left: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #262930;
  font-size: 15px;
  line-height: 24px;
}
@media (max-width: 1919px) {
  .range-slider__min-label {
    font-size: 12px;
    line-height: 20px;
  }
}

.range-slider__max-label {
  position: absolute;
  top: 48px;
  right: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #262930;
  font-size: 15px;
  line-height: 24px;
}
@media (max-width: 1919px) {
  .range-slider__max-label {
    font-size: 12px;
    line-height: 20px;
  }
}

.ui-slider.ui-slider-horizontal,
.price_slider.ui-slider.ui-slider-horizontal,
.woocommerce .ui-slider.ui-slider-horizontal {
  position: relative !important;
  width: 100% !important;
  height: 62px !important;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  margin: 0 !important;
  padding: 0 !important;
}
.ui-slider.ui-slider-horizontal::before,
.price_slider.ui-slider.ui-slider-horizontal::before,
.woocommerce .ui-slider.ui-slider-horizontal::before {
  content: "" !important;
  position: absolute !important;
  top: 32.5px !important;
  left: 0 !important;
  right: 0 !important;
  height: 1px !important;
  background-color: #D8DAE2 !important;
  border: none !important;
}
.ui-slider.ui-slider-horizontal .ui-slider-range,
.ui-slider.ui-slider-horizontal .ui-widget-header,
.price_slider.ui-slider.ui-slider-horizontal .ui-slider-range,
.price_slider.ui-slider.ui-slider-horizontal .ui-widget-header,
.woocommerce .ui-slider.ui-slider-horizontal .ui-slider-range,
.woocommerce .ui-slider.ui-slider-horizontal .ui-widget-header {
  position: absolute !important;
  top: 32.5px !important;
  height: 4px !important;
  background-color: #FF0019 !important;
  background: #FF0019 !important;
  transform: translateY(-1.5px) !important;
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.ui-slider.ui-slider-horizontal .ui-slider-handle,
.ui-slider.ui-slider-horizontal .ui-state-default,
.price_slider.ui-slider.ui-slider-horizontal .ui-slider-handle,
.price_slider.ui-slider.ui-slider-horizontal .ui-state-default,
.woocommerce .ui-slider.ui-slider-horizontal .ui-slider-handle,
.woocommerce .ui-slider.ui-slider-horizontal .ui-state-default {
  position: absolute !important;
  top: 25px !important;
  width: 16px !important;
  height: 16px !important;
  margin-top: 0 !important;
  margin-left: -8px !important;
  background-color: #FF0019 !important;
  background: #FF0019 !important;
  border: 2px solid #FFFFFF !important;
  border-radius: 50% !important;
  cursor: pointer !important;
  outline: none !important;
  transition: all 0.2s ease-in-out !important;
  z-index: 2 !important;
  box-shadow: none !important;
}
.ui-slider.ui-slider-horizontal .ui-slider-handle:hover,
.ui-slider.ui-slider-horizontal .ui-state-default:hover,
.price_slider.ui-slider.ui-slider-horizontal .ui-slider-handle:hover,
.price_slider.ui-slider.ui-slider-horizontal .ui-state-default:hover,
.woocommerce .ui-slider.ui-slider-horizontal .ui-slider-handle:hover,
.woocommerce .ui-slider.ui-slider-horizontal .ui-state-default:hover {
  box-shadow: 0 0 0 4px rgba(255, 0, 25, 0.2) !important;
  background-color: #FF0019 !important;
  background: #FF0019 !important;
  border-color: #FFFFFF !important;
}
.ui-slider.ui-slider-horizontal .ui-slider-handle:focus, .ui-slider.ui-slider-horizontal .ui-slider-handle.ui-state-focus, .ui-slider.ui-slider-horizontal .ui-slider-handle.ui-state-hover,
.ui-slider.ui-slider-horizontal .ui-state-default:focus,
.ui-slider.ui-slider-horizontal .ui-state-default.ui-state-focus,
.ui-slider.ui-slider-horizontal .ui-state-default.ui-state-hover,
.price_slider.ui-slider.ui-slider-horizontal .ui-slider-handle:focus,
.price_slider.ui-slider.ui-slider-horizontal .ui-slider-handle.ui-state-focus,
.price_slider.ui-slider.ui-slider-horizontal .ui-slider-handle.ui-state-hover,
.price_slider.ui-slider.ui-slider-horizontal .ui-state-default:focus,
.price_slider.ui-slider.ui-slider-horizontal .ui-state-default.ui-state-focus,
.price_slider.ui-slider.ui-slider-horizontal .ui-state-default.ui-state-hover,
.woocommerce .ui-slider.ui-slider-horizontal .ui-slider-handle:focus,
.woocommerce .ui-slider.ui-slider-horizontal .ui-slider-handle.ui-state-focus,
.woocommerce .ui-slider.ui-slider-horizontal .ui-slider-handle.ui-state-hover,
.woocommerce .ui-slider.ui-slider-horizontal .ui-state-default:focus,
.woocommerce .ui-slider.ui-slider-horizontal .ui-state-default.ui-state-focus,
.woocommerce .ui-slider.ui-slider-horizontal .ui-state-default.ui-state-hover {
  box-shadow: 0 0 0 4px rgba(255, 0, 25, 0.3) !important;
  background-color: #FF0019 !important;
  background: #FF0019 !important;
  border-color: #FFFFFF !important;
}
.ui-slider.ui-slider-horizontal .ui-slider-handle:active, .ui-slider.ui-slider-horizontal .ui-slider-handle.ui-state-active,
.ui-slider.ui-slider-horizontal .ui-state-default:active,
.ui-slider.ui-slider-horizontal .ui-state-default.ui-state-active,
.price_slider.ui-slider.ui-slider-horizontal .ui-slider-handle:active,
.price_slider.ui-slider.ui-slider-horizontal .ui-slider-handle.ui-state-active,
.price_slider.ui-slider.ui-slider-horizontal .ui-state-default:active,
.price_slider.ui-slider.ui-slider-horizontal .ui-state-default.ui-state-active,
.woocommerce .ui-slider.ui-slider-horizontal .ui-slider-handle:active,
.woocommerce .ui-slider.ui-slider-horizontal .ui-slider-handle.ui-state-active,
.woocommerce .ui-slider.ui-slider-horizontal .ui-state-default:active,
.woocommerce .ui-slider.ui-slider-horizontal .ui-state-default.ui-state-active {
  transform: scale(1.1) !important;
  box-shadow: 0 0 0 4px rgba(255, 0, 25, 0.3) !important;
  background-color: #FF0019 !important;
  background: #FF0019 !important;
  border-color: #FFFFFF !important;
}

.woocommerce-widget-layered-nav-list .woocommerce-widget-price-filter .price_slider_wrapper,
.woocommerce .woocommerce-widget-price-filter .price_slider_wrapper,
aside .woocommerce-widget-price-filter .price_slider_wrapper,
.widget.woocommerce.widget_price_filter .price_slider_wrapper,
.woocommerce-widget-price-filter .price_slider_wrapper {
  margin-top: 24px !important;
  position: relative !important;
}
.woocommerce-widget-layered-nav-list .woocommerce-widget-price-filter .price_slider,
.woocommerce .woocommerce-widget-price-filter .price_slider,
aside .woocommerce-widget-price-filter .price_slider,
.widget.woocommerce.widget_price_filter .price_slider,
.woocommerce-widget-price-filter .price_slider {
  margin-bottom: 16px !important;
}
.woocommerce-widget-layered-nav-list .woocommerce-widget-price-filter .price_slider_amount,
.woocommerce .woocommerce-widget-price-filter .price_slider_amount,
aside .woocommerce-widget-price-filter .price_slider_amount,
.widget.woocommerce.widget_price_filter .price_slider_amount,
.woocommerce-widget-price-filter .price_slider_amount {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 16px !important;
  margin-top: 16px !important;
}
.woocommerce-widget-layered-nav-list .woocommerce-widget-price-filter .price_slider_amount .price_label,
.woocommerce .woocommerce-widget-price-filter .price_slider_amount .price_label,
aside .woocommerce-widget-price-filter .price_slider_amount .price_label,
.widget.woocommerce.widget_price_filter .price_slider_amount .price_label,
.woocommerce-widget-price-filter .price_slider_amount .price_label {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #262930;
  font-size: 15px;
  line-height: 24px;
}
@media (max-width: 1919px) {
  .woocommerce-widget-layered-nav-list .woocommerce-widget-price-filter .price_slider_amount .price_label,
  .woocommerce .woocommerce-widget-price-filter .price_slider_amount .price_label,
  aside .woocommerce-widget-price-filter .price_slider_amount .price_label,
  .widget.woocommerce.widget_price_filter .price_slider_amount .price_label,
  .woocommerce-widget-price-filter .price_slider_amount .price_label {
    font-size: 12px;
    line-height: 20px;
  }
}
.woocommerce-widget-layered-nav-list .woocommerce-widget-price-filter .price_slider_amount .price_label,
.woocommerce .woocommerce-widget-price-filter .price_slider_amount .price_label,
aside .woocommerce-widget-price-filter .price_slider_amount .price_label,
.widget.woocommerce.widget_price_filter .price_slider_amount .price_label,
.woocommerce-widget-price-filter .price_slider_amount .price_label {
  font-weight: 500 !important;
  flex: 1 !important;
}
.woocommerce-widget-layered-nav-list .woocommerce-widget-price-filter .price_slider_amount .button,
.woocommerce .woocommerce-widget-price-filter .price_slider_amount .button,
aside .woocommerce-widget-price-filter .price_slider_amount .button,
.widget.woocommerce.widget_price_filter .price_slider_amount .button,
.woocommerce-widget-price-filter .price_slider_amount .button {
  padding: 8px 16px !important;
  background: #262930 !important;
  color: white !important;
  border: none !important;
  border-radius: 4px !important;
  font-size: 15px !important;
  font-family: "Montserrat", sans-serif !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: all 0.2s ease-in-out !important;
}
.woocommerce-widget-layered-nav-list .woocommerce-widget-price-filter .price_slider_amount .button:hover,
.woocommerce .woocommerce-widget-price-filter .price_slider_amount .button:hover,
aside .woocommerce-widget-price-filter .price_slider_amount .button:hover,
.widget.woocommerce.widget_price_filter .price_slider_amount .button:hover,
.woocommerce-widget-price-filter .price_slider_amount .button:hover {
  background: #FF0019 !important;
}

.range-slider[data-min][data-max]::after {
  content: attr(data-min) " - " attr(data-max);
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #262930;
  font-size: 15px;
  line-height: 24px;
}
@media (max-width: 1919px) {
  .range-slider[data-min][data-max]::after {
    font-size: 12px;
    line-height: 20px;
  }
}

.range-slider__handle[tabindex]:focus-visible,
.ui-slider-handle[tabindex]:focus-visible,
.ui-slider .ui-slider-handle[tabindex]:focus-visible {
  box-shadow: 0 0 0 4px rgba(255, 0, 25, 0.3) !important;
  outline: 2px solid #1C1C1C !important;
  outline-offset: 2px !important;
}

@media (prefers-contrast: high) {
  .range-slider__handle,
  .ui-slider-handle,
  .ui-slider .ui-slider-handle {
    border-width: 3px !important;
  }
  .range-slider__track,
  .ui-slider::before {
    height: 2px !important;
  }
  .range-slider__range,
  .ui-slider-range,
  .ui-slider .ui-slider-range {
    height: 6px !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .range-slider__handle,
  .ui-slider-handle,
  .ui-slider .ui-slider-handle,
  .range-slider__range,
  .ui-slider-range,
  .ui-slider .ui-slider-range {
    transition: none !important;
  }
}
@media (max-width: 991px) {
  .range-slider__handle,
  .ui-slider-handle,
  .ui-slider .ui-slider-handle,
  .price_slider .ui-slider-handle {
    width: 20px !important;
    height: 20px !important;
    margin-left: -10px !important;
  }
  .range-slider__handles {
    top: 23px !important;
  }
  .ui-slider.ui-slider-horizontal .ui-slider-handle {
    top: 23px !important;
  }
}
.range-slider--disabled,
.ui-slider-disabled,
.ui-slider.ui-slider-disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}
.range-slider--disabled .range-slider__handle,
.range-slider--disabled .ui-slider-handle,
.ui-slider-disabled .range-slider__handle,
.ui-slider-disabled .ui-slider-handle,
.ui-slider.ui-slider-disabled .range-slider__handle,
.ui-slider.ui-slider-disabled .ui-slider-handle {
  cursor: not-allowed !important;
  pointer-events: none !important;
}
.range-slider--disabled .range-slider__range,
.range-slider--disabled .ui-slider-range,
.ui-slider-disabled .range-slider__range,
.ui-slider-disabled .ui-slider-range,
.ui-slider.ui-slider-disabled .range-slider__range,
.ui-slider.ui-slider-disabled .ui-slider-range {
  background-color: #8A8C95 !important;
}
.range-slider--disabled .range-slider__handle,
.range-slider--disabled .ui-slider-handle,
.ui-slider-disabled .range-slider__handle,
.ui-slider-disabled .ui-slider-handle,
.ui-slider.ui-slider-disabled .range-slider__handle,
.ui-slider.ui-slider-disabled .ui-slider-handle {
  background-color: #8A8C95 !important;
}

/**
 * Contact Page Component
 * 
 * Styles for the contact page template including team member grid
 */
.contact-page-content {
  margin-bottom: 48px;
}
@media (max-width: 991px) {
  .contact-page-content {
    margin-bottom: 40px;
  }
}

.contact-team-section {
  margin-top: 64px;
}
@media (max-width: 991px) {
  .contact-team-section {
    margin-top: 48px;
  }
}

.contact-team-heading {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .contact-team-heading {
    font-size: 40px;
    line-height: 56px;
    letter-spacing: -1px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .contact-team-heading {
    font-size: 32px;
    line-height: 48px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .contact-team-heading {
    font-size: 28px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
.contact-team-heading {
  margin-bottom: 48px;
}
@media (max-width: 991px) {
  .contact-team-heading {
    margin-bottom: 40px;
  }
}

.contact-team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 32px;
  justify-content: center;
}
@media (max-width: 1919px) {
  .contact-team-grid {
    gap: 64px 32px;
  }
}
@media (max-width: 991px) {
  .contact-team-grid {
    flex-direction: column;
    gap: 64px;
  }
}

.contact-team-member {
  display: flex;
  flex-direction: column;
  width: 560px;
}
@media (max-width: 1919px) {
  .contact-team-member {
    width: 368px;
  }
}
@media (max-width: 991px) {
  .contact-team-member {
    width: 100%;
  }
}

.contact-team-member__image {
  width: 100%;
  height: 480px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #F0F1F5;
  margin-bottom: 32px;
}
@media (max-width: 1919px) {
  .contact-team-member__image {
    height: 360px;
  }
}
@media (max-width: 991px) {
  .contact-team-member__image {
    height: 360px;
  }
}
.contact-team-member__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-team-member__row {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.contact-team-member__info {
  display: flex;
  flex-direction: column;
  flex: 1 0 0;
  gap: 0;
}

.contact-team-member__details {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
}

.contact-team-member__job {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .contact-team-member__job {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .contact-team-member__job {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .contact-team-member__job {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.contact-team-member__job {
  color: #262930;
  margin-bottom: 0;
}

/**
 * Why Care Section Component
 *
 * A section explaining why bird control is important, with image, key figures, and CTA.
 * Usage: [why_care] shortcode
 */
.why-care {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.why-care__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.why-care__row {
  display: flex;
  gap: 180px;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 1919px) {
  .why-care__row {
    gap: 80px;
  }
}
@media (max-width: 991px) {
  .why-care__row {
    flex-direction: column;
    gap: 32px;
  }
}

.why-care__image {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 640px;
  top: 0;
  width: 856px;
  flex-shrink: 0;
}
@media (max-width: 1919px) {
  .why-care__image {
    width: 50%;
    height: auto;
    position: relative;
  }
}
@media (max-width: 991px) {
  .why-care__image {
    width: 100%;
    height: auto;
    position: relative;
  }
}
.why-care__image img {
  width: 100%;
}

.why-care__content {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 24px;
}
@media (max-width: 1919px) {
  .why-care__content {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .why-care__content {
    width: 100%;
  }
}

.why-care__key-figure {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.why-care__key-figure-base {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.why-care__key-figure-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 991px) {
  .why-care__key-figure-row {
    gap: 24px;
  }
}

.why-care__key-figure-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-care__key-figure-icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.why-care__key-figure-icon-wrapper img {
  display: block;
  max-width: none;
  width: 100%;
  height: 100%;
}

.why-care__key-figure-content {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  min-width: 0;
  color: #262930;
  width: 100%;
}

.why-care__key-figure-title {
  font-family: var(--font-primary);
  font-weight: var(--fw-bold);
}
@media (min-width: 1920px) {
  .why-care__key-figure-title {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .why-care__key-figure-title {
    font-size: 21px;
    line-height: 32px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .why-care__key-figure-title {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.why-care__key-figure-title {
  color: #262930;
  margin: 0 0 0 0;
  width: 100%;
}

.why-care__key-figure-text {
  font-family: var(--font-primary);
  font-weight: var(--fw-regular);
}
@media (min-width: 1920px) {
  .why-care__key-figure-text {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
@media (max-width: 1919px) and (min-width: 992px) {
  .why-care__key-figure-text {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: 0px;
  }
}
@media (max-width: 991px) {
  .why-care__key-figure-text {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
  }
}
.why-care__key-figure-text {
  color: #262930;
  margin: 0;
  width: 100%;
}

.why-care__button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.why-care__spacing {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.why-care__spacing--xl {
  flex: 1 0 0;
  min-height: 0;
  min-width: 0;
  height: 40px;
  flex-shrink: 0;
}
.why-care__spacing--l {
  flex: 1 0 0;
  min-height: 0;
  min-width: 0;
  height: 32px;
  flex-shrink: 0;
}
.why-care__spacing--m {
  flex: 1 0 0;
  min-height: 0;
  min-width: 0;
  height: 24px;
  flex-shrink: 0;
}

.why-care__page-spacing {
  display: flex;
  align-items: flex-start;
  width: 100%;
  flex: 1 0 0;
  min-height: 0;
  min-width: 0;
  height: 64px;
  flex-shrink: 0;
}

/**
 * Why Us Section Component
 *
 * A responsive section displaying 6 feature cards in a masonry-style layout
 * with intro content and CTA button.
 * Usage: [birdbusters_why_us] shortcode
 */
.why-us-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.why-us-section__container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.why-us-section__row {
  display: flex;
  gap: 180px;
  width: 100%;
  border-radius: 8px;
}
@media (max-width: 1919px) {
  .why-us-section__row {
    gap: 132px;
  }
}
@media (max-width: 991px) {
  .why-us-section__row {
    flex-direction: column;
    gap: 0;
    align-items: center;
    justify-content: center;
  }
}

.why-us-section__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 412px;
  flex-shrink: 0;
  justify-content: center;
}
@media (max-width: 1919px) {
  .why-us-section__intro {
    width: 368px;
  }
}
@media (max-width: 991px) {
  .why-us-section__intro {
    width: 100%;
    order: 1;
  }
}

@media (max-width: 991px) {
  .why-us-section__button {
    display: none;
  }
}

.why-us-section__cards {
  display: flex;
  flex: 1 0 0;
  gap: 32px;
  align-items: flex-start;
}
@media (max-width: 991px) {
  .why-us-section__cards {
    flex-direction: column;
    gap: 16px;
    width: 100%;
    order: 2;
  }
}

.why-us-section__column {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
@media (max-width: 991px) {
  .why-us-section__column {
    width: 100%;
    gap: 16px;
  }
}

.why-us-section__column--2 {
  margin-top: 64px;
}
@media (max-width: 991px) {
  .why-us-section__column--2 {
    margin-top: 0;
  }
}

.why-us-section__card {
  background-color: #F0F1F5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 64px 48px 32px;
  border-radius: 8px;
  flex-shrink: 0;
}
@media (max-width: 1919px) {
  .why-us-section__card {
    padding: 32px 24px 8px;
  }
}
@media (max-width: 991px) {
  .why-us-section__card {
    padding: 24px 24px 0;
  }
}

.why-us-section__card-text {
  width: 100%;
  padding-bottom: 32px;
}
@media (min-width: 991px) and (max-width: 1919px) {
  .why-us-section__card-text {
    padding-bottom: 24px;
  }
}
@media (max-width: 991px) {
  .why-us-section__card-text {
    margin: 0;
  }
}

.why-us-section__button-mobile {
  display: none;
}
@media (max-width: 991px) {
  .why-us-section__button-mobile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    order: 3;
    margin-top: 16px;
  }
}

.why-us-section__spacing {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.why-us-section__spacing--3xl {
  flex: 1 0 0;
  min-height: 0;
  min-width: 0;
  height: 64px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .why-us-section__spacing--3xl {
    display: none;
  }
}
.why-us-section__spacing--xl {
  flex: 1 0 0;
  min-height: 0;
  min-width: 0;
  height: 40px;
  flex-shrink: 0;
}
@media (max-width: 1919px) {
  .why-us-section__spacing--xl {
    height: 32px;
  }
}
@media (max-width: 991px) {
  .why-us-section__spacing--xl {
    height: 32px;
  }
}
.why-us-section__spacing--l {
  flex: 1 0 0;
  min-height: 0;
  min-width: 0;
  height: 32px;
  flex-shrink: 0;
}
@media (max-width: 1919px) {
  .why-us-section__spacing--l {
    height: 32px;
  }
}
@media (max-width: 991px) {
  .why-us-section__spacing--l {
    height: 32px;
  }
}
.why-us-section__spacing--m {
  flex: 1 0 0;
  min-height: 0;
  min-width: 0;
  height: 24px;
  flex-shrink: 0;
}
@media (max-width: 1919px) {
  .why-us-section__spacing--m {
    height: 16px;
  }
}
@media (max-width: 991px) {
  .why-us-section__spacing--m {
    height: 16px;
  }
}
.why-us-section__spacing--s {
  flex: 1 0 0;
  min-height: 0;
  min-width: 0;
  height: 16px;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .why-us-section__spacing--s {
    height: 16px;
  }
}
@media (max-width: 991px) {
  .why-us-section__spacing--desktop-only {
    display: none;
  }
}

.why-us-section__page-spacing {
  display: flex;
  align-items: flex-start;
  width: 100%;
  flex: 1 0 0;
  min-height: 0;
  min-width: 0;
  height: 64px;
  flex-shrink: 0;
}

.blog-posts-section .blog-posts-section__button {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/**
 * Header Features Section
 *
 * Displays header features with icons and text.
 * Desktop: Horizontal grid layout (>= 992px)
 * Mobile: Uses generic slider component (< 992px)
 */
.header-features-grid {
  flex-direction: row;
  gap: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .header-features-grid--desktop {
    display: none;
  }
}
.header-features-grid--mobile {
  display: none;
}
@media (max-width: 991px) {
  .header-features-grid--mobile {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
  }
}

.header-feature {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  min-width: 250px;
  padding: 8px 20px;
  border-radius: 8px;
}
.header-feature h5 {
  margin: 0;
}
.header-feature-icon {
  padding: 16px 8px;
}

.header-features__slider .slider__slide .header-feature {
  justify-content: center;
  width: 100%;
  min-width: auto;
}
.header-features__slider .slider__navigation {
  margin-top: 16px;
}

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