/** Shopify CDN: Minification failed

Line 1173:25 Unexpected "{"

**/
/* =============================================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================================= */


:root {
  /* --- Primary / Base --- */
  --color-dark:   #2D2A32;
  --color-white:  #FFFFFF;
  --color-beige:  #E9E3D5;

  /* --- Brand / Accent --- */
  --color-yellow: #E7C52F;
  --color-red: #ED1C24;
  --color-purple: #4A154B;
  --color-green:  #2EB67D;
  --color-blue:   #36C5F0;
  --color-orange: #FF9731;

  /* --- Muted / Secondary --- */
  --color-muted-purple: #B7A1B7;
  --color-muted-gold:   #C59540;
  --color-muted-green:  #ABE2CB;
  --color-muted-red:    #B2151B;
  --color-muted-blue:   #71C7EE;
  --color-muted-orange: #FFC183;
  --color-muted-gray:   #AFAAA0;
}

.text_18 {
  font-size:18px;
  line-height:1.5;
}

.text_16 {
  font-size:16px;
  line-height:1.5;
}

.z-100{
  z-index:100;
}

.btn_item {
    align-self: stretch;
}

.btn_item .btn {
    height: 100%;
}

body:has([x-show="menu_drawer"]:not([style*="display: none"])) {
 overflow: hidden !important;
}

/* =============================================================================
   2. TYPOGRAPHY — Brand Overrides
   ============================================================================= */

/* --- Display headings --- */
h1, .h1 {
  font-size: 50px;
  line-height: 1.2;
  font-weight:bold;
}

h2, .h2 {
  font-size: 32px;
  line-height: 1.2;
  font-weight:bold;
}

h3, .h3 {
  font-size: 24px;
  line-height: 1.2;
  font-weight:bold;
}

/* --- Sub-headings — Manrope --- */
h4, .h4,
h5, .h5,
h6, .h6,
h4 > *, h5 > *, h6 > * {
  font-family: 'Manrope', sans-serif;
  font-weight:bold;
}

h4, .h4, h4 > * { font-size: 20px; line-height: 1.5; }
h5, .h5, h5 > * { font-size: 16px; line-height: 1.5; }
h6, .h6, h6 > * { font-size: 14px; line-height: 1.5; }

/* --- Larger body copy --- */
p, .editor-content p, .p, .editor-content li {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.editor-content li{
  margin-bottom: 10px;
}

/* Body variant */
.p-large,
.text-lg {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

/* Smaller body variant */
.p-small,
.text-sm {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

/* --- Blockquotes  --- */
.blockquote{
  color: var(--color-dark);
  font-family: 'Lora', serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  border-left: 2px solid var(--color-red);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

/* --- Lists --- */
ul,ol {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  padding-left: 30px;
}

ul {
  list-style: none;
}

li{
  position:relative;
  margin-bottom: 10px;
}

.editor-content ul li:before, .content-holder ul li:before{
  content: "";
  width: 5px;
  height: 5px;
  background: black;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
  top: 12px;
  left: -15px;
}

/* --- Inline code --- */
code, pre, kbd, samp {
  font-family: monospace;
  font-size: 14px;
  color: var(--color-dark);
  background-color: #E9E3D5;
  padding: 2px 4px;
}

/* For Cards Border  */
.card-theme {
  border: 2px solid var(--color-muted-gray);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  will-change: transform, box-shadow;
  border-radius:10px;
}

.card-theme:hover {
  border-color: var(--color-dark);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
              0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.card-theme:active { 
  border-color: var(--color-yellow); 
  transform: scale(0.98); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); 
  transition: all 0.1s ease;
} 
.card-themeN:focus-within { 
  outline: 2px solid var(--card-border-active); 
  outline-offset: 4px; 
}

/* --- Links (within rich-text and prose) */
a{
    color:var(--color-red);
    text-decoration:underline;
    font-size:inherit;
}
a:hover{
    text-decoration: none;
}

a:focus,a:active, a:hover{
    color:var(--color-muted-red);
}

a:focus-visible {
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  border-radius: 2px;
}

.rte a:not(.btn):not(.button),
li a,
span > a:not(.btn):not(.button) {
  color: var(--color-red);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5rem;
  text-decoration: underline;
  text-decoration-style: solid;
  transition: color 0.2s ease-in-out;
}

.rte a:not(.btn):not(.button):hover,
p a:hover,
li a:hover {
  color: var(--color-red) !important;
  text-decoration: none;
}

a:hover{
  text-decoration: none; 
}

a:hover .type__body{
  color: var(--color-red) !important;
}

@media (min-width: 768px) {
  a:hover {
    opacity: 1;
  }
}

.rte a:not(.btn):not(.button):active,
p a:active,
li a:active {
  color: var(--color-muted-red);
  text-decoration: underline;
}

/* --- Mobile heading scale --- */
@media (max-width: 767px) {
  h1, .h1 {
    font-size: 32px;
  }

  h2, .h2 {
    font-size: 24px;
  }

  h3, .h3 {
    font-size: 20px;
  }

  h4, .h4 {
    font-size: 18px;
  }

  h5, .h5 {
    font-size: 16px;
  }

  h6, .h6 {
    font-size: 14px;
  }

  p, .editor-content p, .editor-content li, .p {
    font-size: 14px;
  }
}

.font-bold{
  font-weight:bold;
}

.window--wide{
  max-width:1232px;
}

.h-55{
  height:55px;
}

.h-80{
  height:80px
}

/* =============================================================================
   3. BUTTONS
   ============================================================================= */

.btn,
.btn:focus {
  outline: none;
  border: none;
  outline-offset: 0;
  box-shadow: none;
}

/* --- Primary button (default) --- */
a.btn{
  color:var(--color-white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.1s ease;
  min-width:182px;
}

.btn--plain{
  min-width:0px;
}

.btn--plain:hover span svg line{
  color:white;
}

.btn:hover  { 
  background-color: #D11920; 
  opacity: 1; 
}

.btn:active { 
  background-color: var(--color-muted-red); 
  transform: scale(0.95); 
}

.btn:disabled {
  background-color: var(--color-muted-gray);
  color:var(--color-white);
  cursor: not-allowed;
  opacity: 0.5;    
}

/* --- Loading / Processing State --- */
.btn.is-loading {
  opacity: 0.7;
  cursor: wait !important;
  pointer-events: none;
}

/* The Spinner Icon */
.btn.is-loading::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: button-spin 0.6s linear infinite;
  margin-right: 10px;
}

@keyframes button-spin {
  to { transform: rotate(360deg); }
}

/* --- Secondary button (yellow) --- */
.btn--secondary:hover  { background-color: #D4B42A; transform:scale(1.05) }
.btn--secondary:active { background-color: var(--color-muted-gold); transform: scale(0.95); }

/* --- Tertiary button (outlined) --- */
.btn--tertiary {
  border: 2px solid var(--color-red);
  background: #fff;
  color: var(--color-red) !important;
}
.btn--tertiary:hover  { background-color: #FEF2F2; }
.btn--tertiary:active { border-color: var(--color-muted-red); background-color: #FFE2E2; color:var(--color-muted-red); }
.btn--tertiary:disabled {
  background-color: var(--color-white);
}

/* --- Disabled state --- */
.btn--disabled,
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: var(--color-muted-gray);
  color: #fff;
}

.btn--secondary.btn--disabled {
  color: #2E2E2E;
}

.btn--tertiary.btn--disabled {
  border-color: var(--color-muted-gray);
  background: #fff;
  color: var(--color-muted-gray);
}


/* =============================================================================
   4. FORM INPUTS
   ============================================================================= */

input {
  background: #fff;
  border: 2px solid var(--color-beige);
}

/* Rounded helpers */
.rounded    { border-radius: 4px; }
.rounded-lg { border-radius: 8px; }
.rounded-xl { border-radius: 12px !important;}
.rounded-2xl{ border-radius: 16px; }

.form-input:focus, .form-textarea:focus, .form-select:focus, .form-multiselect:focus{
  outline:none;
  border:4px solid var(--color-yellow);
}

input[type="text"]:focus-visible, input[type="password"]:focus-visible, input[type="email"]:focus-visible, input[type="number"]:focus-visible, input[type="url"]:focus-visible, input[type="date"]:focus-visible, input[type="datetime-local"]:focus-visible, input[type="month"]:focus-visible, input[type="week"]:focus-visible, input[type="time"]:focus-visible, input[type="search"]:focus-visible, input[type="tel"]:focus-visible, select:focus-visible, select[multiple]:focus-visible, textarea:focus-visible{
    outline: 2px solid var(--color-yellow);
    outline-offset: 2px;
}


/* =============================================================================
   5. LAYOUT
   ============================================================================= */

/* Base */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Width variants */
.container-standard { max-width: 1280px; } 
.container-narrow   { max-width: 896px;  }
.container-form     { max-width: 672px;  } 


/* =============================================================================
   6. LAYOUT
   ============================================================================= */

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 768px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Gap & Padding */
.gap-8      { gap: 8px; }
.gap-16     { gap: 16px; }
.gap-24     { gap: 24px; }
.gap-32     { gap: 32px; }
.gap-40     { gap: 40px; }
.gap-50     { gap: 50px; }
.gap-68     { gap: 68px; }
.py-50      { padding-top:50px }
.py-10      { padding-top:50px; padding-bottom:50px }
.py-24      { padding-bottom:24px; padding-top:0px; }
.py-40      { padding-top:40px }
.py-60      { padding-top:60px }
.p-50       { padding:50px}
.py-13      { padding: 13px 16px; }
.py-20      { padding: 25px 0px 25px 48px }
.px-30      { padding-left:30px; }
.pb-20       { padding-bottom: 20px;}

.card-odd-center {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .card-odd-center {
    grid-column: span 2;
    width: calc(50% - 12px);
  }
}

strong{
  font-size:inherit;
}

.text-ellipsis{
  text-overflow: ellipsis;
}

.max-200{
  max-width: 200px;
}

/* =============================================================================
   7. CARD COMPONENT
   ============================================================================= */

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.card-content { flex: 1; }

.card-button { margin-top: 16px; }

.card-hover {
  transition: box-shadow 0.15s ease, transform 0.15s ease;
  cursor: pointer;
}
.card-hover:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}


/* =============================================================================
   8. EMPTY STATE
   ============================================================================= */

.empty-state {
  text-align: center;
  padding: 60px 20px;
}
.empty-state h3 { margin-bottom: 10px; }
.empty-state p  { color: #666; }


/* =============================================================================
   9. IMAGE HELPERS
   ============================================================================= */

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* =============================================================================
   10. RICH TEXT RENDERER (.rte)
   ============================================================================= */

.rte {
  display: block;
}

.rte .editor-content p:empty {
  padding-top: 1rem;
}

.rte img {
  display: initial;
}

.m-0--clear p { 
  margin:0 0 16px;
 }
 .m-0--clear p:last-child {
  margin-bottom:0;
 }


/* =============================================================================
   11. NAVIGATION
   ============================================================================= */

.header__menu-item,
.footer__link {
  text-decoration: none;
}

/* =============================================================================
   12. Newsletter Section
   ============================================================================= */
.newsletter-section input.form-input {
    background-color: var(--color-white);
    padding: 11px 20px;
}

.newsletter-section .editor-content p {
    font-size: 16px;
}

.newsletter-section h3{
  font-family: 'Manrope', sans-serif;
}

/* =============================================================================
   13. Footer Section
   ============================================================================= */
.footer-main-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-main-grid {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 3rem;
    justify-content:space-between;
  }
}

.address{
    padding-top: 30px;
}

.footer-brand-col {
  max-width: 236px;
  flex-shrink: 0;
}

.footer-social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-social-icons a {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-block-col {
  min-width: 0;
}

.footer-block-col .footer-menu-desktop .footer-menu-link {
  font-size:20px;
}

.footer-block-col--newsletter,
.footer-block-col--content {
  flex: 1 1 220px;
  max-width: 280px;
}

.footer-sub-links a {
    color: var(--color-dark);
    font-weight: normal;
}

@media (max-width: 768px) {
  .footer-block-col--newsletter,
  .footer-block-col--content {
    max-width: 100%;
  }

  .p-4 {
    padding: 1rem 0;
  }
}

.footer-block-title {
  margin-bottom: 1rem;
  font-size:20px;
}

@media(max-width:767px){
  .footer-block-title {
    margin-bottom: 1rem;
    font-size:18px;
  }
}

.footer-menu-desktop {
  display: none;
}

.footer-menu-mobile {
  display: block;
}

@media (min-width: 768px) {
  .footer-menu-desktop {
    display: block;
  }

  .footer-menu-mobile,
  .footer-menu-mobile-wrapper {
    display: none;
  }

  .footer-block-col .footer-block-title {
    display: block;
  }

  .footer-accordion-icon {
    display: none;
  }
}

/* --- Footer accordion (mobile) --- */
.footer-accordion-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  opacity: 0;
  pointer-events: none;
}

.footer-accordion-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.footer-menu-mobile-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease;
}

.footer-menu-mobile-wrapper > .footer-menu-mobile {
  overflow: hidden;
  min-height: 0;
}

.footer-menu-mobile-wrapper--static {
  grid-template-rows: 1fr;
}

.footer-accordion-checkbox:checked ~ .footer-menu-mobile-wrapper {
  grid-template-rows: 1fr;
}

.footer-accordion-checkbox:checked ~ .footer-accordion-toggle .footer-accordion-icon {
  transform: rotate(180deg);
}

.footer-accordion-checkbox:focus-visible ~ .footer-accordion-toggle {
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (max-width: 767px) {
  .footer-accordion-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    cursor: pointer;
  }
}

.footer-menu-link--child {
  padding-left: 0.75rem;
  font-size: 0.9em;
  opacity: 0.8;
}

.footer-menu-link--grandchild {
  padding-left: 1.5rem;
  font-size: 0.85em;
  opacity: 0.7;
}

.footer-logo {
  display: block;
}

.footer-sub-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}

@media (min-width: 768px) {
  .footer-sub-inner {
    align-items: center;
    justify-content: space-between;
  }
}

.footer-sub-links {
  width: 100%;
}

.footer-sub-links p {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 0;
}

.footer-menu-link:hover, .header__link:hover, a.type__nav:hover,
.footer-menu-link:active, .header__link:active, a.type__nav:active,
.footer-menu-link:focus, .header__link:focus, a.type__nav:focus, .header__link.active, a.type__nav.active, .mobile-navigation a.active,
.mobile-navigation span.active, .mobile-navigation .active{
    color: var(--color-red);
    text-decoration-line: none;
    opacity: 1;
}

.footer-copyright h5{
  margin-bottom:0px;
}

.footer-copyright a{
  font-weight:400;
  color:inherit;
}

/* =============================================================================
   SKELETON LOADING
   ============================================================================= */

@keyframes skeleton-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.skeleton {
  background-color: var(--color-beige);
  border-radius: 4px;
  animation: skeleton-pulse 1.6s ease-in-out infinite;
  display: block;
}

/* Text line skeletons */
.skeleton--text {
  height: 14px;
  width: 100%;
  border-radius: 4px;
}

.skeleton--text-sm {
  height: 14px;
  width: 60%;
  border-radius: 4px;
}

.skeleton--text-lg {
  height: 20px;
  width: 80%;
  border-radius: 4px;
}

.skeleton--circle {
  border-radius: 50%;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.skeleton--rect {
  width: 100%;
  height: 200px;
  border-radius: 8px;
}

.skeleton-card {
  border: 1px solid #e0dbd0;
  border-radius: 10px;
  padding: 20px;
}

.skeleton-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.skeleton-card__lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


/* =============================================================================
   SPINNER (STANDALONE)
   ============================================================================= */

@keyframes spinner-rotate {
  to { transform: rotate(360deg); }
}

.spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 3px solid rgba(237, 28, 36, 0.15);
  border-top-color: var(--color-red);
  border-radius: 50%;
  animation: spinner-rotate 0.7s linear infinite;
  flex-shrink: 0;
}

.spinner--sm {
  width: 20px;
  height: 20px;
  border-width: 2px;
}

.spinner--lg {
  width: 60px;
  height: 60px;
  border-width: 4px;
}

.spinner-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  width: 100%;
}


/* =============================================================================
   PROGRESS BAR
   ============================================================================= */

.progress-bar {
  width: 100%;
}

.progress-bar__label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  gap: 8px;
}

.progress-bar__text {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-dark);
}

.progress-bar__percent {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark);
  white-space: nowrap;
}

.progress-bar__track {
  width: 100%;
  height: 8px;
  background-color: var(--color-beige);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar__fill {
  height: 100%;
  background-color: var(--color-red);
  border-radius: 999px;
  transition: width 0.4s ease;
  min-width: 0%;
  max-width: 100%;
}

.progress-bar__fill--animated {
  background-image: linear-gradient(
    90deg,
    var(--color-red) 0%,
    #f94a50 50%,
    var(--color-red) 100%
  );
  background-size: 200% 100%;
  animation: progress-shimmer 1.4s ease infinite;
}

@keyframes progress-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}


/* =============================================================================
   FORM VALIDATION STATES
   ============================================================================= */
.field-group__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-dark);
}

.field-group__input {
  width: 100%;
  padding: 11px 16px;
  font-size: 15px;
  border-radius: 8px;
  border: 2px solid var(--color-beige);
  background: #fff;
  color: var(--color-dark);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  outline: none;
}

.field-group__message {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
}

.field-group__icon {
  flex-shrink: 0;
  line-height: 1;
}

/* ── Error ── */
.field-group--error .field-group__input {
  border-color: var(--color-red);
  background-color: #fff8f8;
}

.field-group--error .field-group__input:focus {
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.15);
}

.field-group--error .field-group__message {
  color: var(--color-red);
  padding-top:10px;
}

/* ── Success ── */
.field-group--success .field-group__input {
  border-color: var(--color-green);
  background-color: #f4fcf8;
}

.field-group--success .field-group__input:focus {
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(46, 182, 125, 0.15);
}

.field-group--success .field-group__message {
  color: var(--color-green);
}

/* ── Warning ── */
.field-group--warning .field-group__input {
  border-color: var(--color-orange);
  background-color: #fffaf5;
}

.field-group--warning .field-group__input:focus {
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(255, 151, 49, 0.15);
}

.field-group--warning .field-group__message {
  color: var(--color-orange);
}


/* =============================================================================
   REQUIRED FIELD INDICATOR
   ============================================================================= */

.field-required {
  color: var(--color-red);
  font-weight: 700;
  margin-left: 2px;
}

.field-required-note {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: var(--color-muted-gray);
  margin: 0;
}


/* =============================================================================
   F. FOCUS RINGS
   ============================================================================= */

/* ── Buttons ── */
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px var(--color-yellow);
}

/* ── Form inputs ── */
.field-group__input:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  border-color: var(--color-yellow);
  box-shadow: 0 0 0 4px rgba(231, 197, 47, 0.35);
}

/* ── Links ── */
a:focus-visible {
  outline: 2px solid var(--color-yellow);
  outline-offset: 2px;
  border-radius: 2px;
  box-shadow: none;
  text-decoration: underline;
}

/* Anchor Css  */
.btn_arrow {
    display: inline-flex;{}
    align-items: center;
    font-weight: bold;
    text-decoration: none;
    color: var(--color-red);
    line-height: 1.5;
    gap: 7px;
}
.btn_arrow .btn_icon {
    color: currentColor;
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn_arrow .btn_icon svg {
    width: 100%;
    fill: currentColor;
}

/* Card Css  */
.class_card {
    border-radius: 10px;
    border: 2px solid #AFAAA0;
    background: #E9E3D5;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 50px;
}
.class_card .btn_holder {
    margin-top: auto;
}

.class_card .card_body {
 margin-top: auto;
}

.fallback_image {
    position: absolute;
    height: 100%;
    width: 100%;
    background: #d6d0c7;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}
@media(max-width:767px){
.newsletter-section img {
    max-width: 250px;
    padding-bottom: 30px;
  }    
}

.b_shape {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 99;
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;  
  pointer-events:none;
}

.b_shape.pos-bottom {
  bottom: -2px;
}
.b_shape.pos-top {
  top: -2px;
}
.b_shape img {
  width: 100%;
}

/* For header search responsive  */
.header-width{
  padding: 15px 0 15px 0;
  width: calc(100% - 150px);
}

.footer-address h4, .footer-copyright h5{
  font-weight:400;
}

/* For icon cards section */
.icon-cards .card-button{
  color: var(--color-red);
  font-weight:900;
}

.icon-cards .icon-wrapper {
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.icon-cards .icon-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-cards picture img{
  padding:10px;
}

.type__nav{
  color:var(--color-dark);
}

a.type__nav{
  color:var(--color-dark);
}

.type__nav a{
  color:var(--color-dark);
}

.footer-main-grid a{
  color:var(--color-dark);
}

.mobile-navigation a{
  color:var(--color-dark);
}

.type__nav a.btn{
  color:var(--color-white);
}

.footer-sub-links .type--small{
  justify-content:space-between;
}

.footer-accordion-icon{
  display:none;
}

@media(min-width:768px) and (max-width:1024px){
  .type__nav a, a.type__nav{
    font-size:16px;
  }
}

@media(max-width:767px){  
  .footer-sub-links .type--small{
    justify-content:center;
  }
  .footer-copyright{
    text-align:center;
  }
  .footer-accordion-icon{
    display:block;
  }
}


input[type="text"], input[type="password"], input[type="email"], input[type="number"], input[type="url"], input[type="date"], input[type="datetime-local"], input[type="month"], input[type="week"], input[type="time"], input[type="search"], input[type="tel"], select, select[multiple], textarea{
  min-height:50px;
}

/* For Collection Page  */
.filter-inline-item {
  position: relative;
}

.filter-inline-item .absolute {
  top: 100%;
  bottom: auto;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.filter-inline-item .absolute[class*="z-50"] {
  z-index: 60;
}

.filter-button{
  border-radius: 5px;
  background: #E9E3D5;
  padding: 8px 17px;
  min-width: 140px;
  justify-content: space-between;
  max-width:250px;
}

.filter-button-span{
  color: black;
  font-weight:500;
}

.filter-inline-item .overflow-y-auto::-webkit-scrollbar {
  width: 4px;
}

.filter-inline-item .overflow-y-auto::-webkit-scrollbar-track {
  background: var(--color-beige);
  border-radius: 4px;
}

.filter-inline-item .overflow-y-auto::-webkit-scrollbar-thumb {
  background: var(--color-muted-gray);
  border-radius: 4px;
}

.filter-inline-item .overflow-y-auto::-webkit-scrollbar-thumb:hover {
  background: var(--color-dark);
}

/* For Single product  */
.single-product .product-price-row{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:36px;
  padding-bottom:50px;
  border-bottom:1px solid black;
}
.single-product .skill-badge {
  border-radius: 100px;
  border: 1px solid #E7C52F;
  color:black;
  background: #FFF;
  padding: 5px 20px;
  font-size: 18px;
  line-height: 1.5;
  display: inline-block;
}

.single-product .product-info-row {
  font-size: 16px;
  line-height: 1.5;
  padding-top:50px;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:25px;
  color:black;
}

.single-product .product-location{
  padding-top:25px;
  display:block;
}

.single-product .right-column{
  border-radius: 10px;
  border: 2px solid #E7C52F;
  background: #E7C52F;
  top:20px
}

.single-product .product-content{
  background: #E7C52F;
}

.single-product .left-column{
  padding-right:25px;
}

.single-product .skill-level{
  display:flex;
  gap:36px;
  flex-wrap: wrap;
}

.single-product .left-column{
  width:60%;
}

.single-product .right-column{
  width:40%
}

@media(max-width:1024px) and (min-width:768px){
  .single-product .left-column, .single-product .right-column{
    width:50%;
  }
  .product-results{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .single-product .left-column {
    padding-right: 0;
    padding-bottom: 25px;
    width:100%;
  }

  .single-product .right-column{
    width:100%;
  }

  .single-product .left-column .product-info-row {
    padding-top: 25px;
  }

  .single-product .product-price-row {
    padding-bottom: 25px;
  }
}

/* Cart Sidebar  */
.template__cart-item a,
[x-data] .cart-item__title a,
[x-trap="cart_drawer"] a[href*="/products/"] {
  color: var(--color-dark) !important;
  text-decoration: none;
}

.template__cart-item a:hover {
  color: var(--color-red) !important;
  text-decoration: underline;
}

.cart-item__property[data-key^="_"],
.cart-item__properties [class*="property"]:has(span:first-child) {
  display: none;
}

.cart-item__quantity,
[x-data] .cart-item__quantity-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cart-item__quantity input[type="number"],
.cart-item__quantity-input {
  min-height: 36px !important;
  width: 50px !important;
  text-align: center;
  border-radius: 8px !important;
  border: 2px solid var(--color-beige) !important;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  padding: 4px 8px !important;
}

.cart-item__quantity .btn,
.cart-item__qty-btn {
  min-width: 36px !important;
  width: 36px !important;
  height: 36px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: var(--color-beige) !important;
  color: var(--color-dark) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  border: none;
}

.cart-item__quantity .btn:hover,
.cart-item__qty-btn:hover {
  background: var(--color-dark) !important;
  color: var(--color-white) !important;
}

.cart-item__details {
  color: var(--color-dark) !important;
}

.cart-item__price {
  color: var(--color-dark) !important;
  font-weight: 700;
}

.cart-item__properties p,
.cart-item__property {
  font-size: 13px !important;
  color: var(--color-dark) !important;
  opacity: 0.7;
  margin-bottom: 2px !important;
}

.cart-drawer .btn:not(.btn--plain):not(.btn--neutral) {
  border-radius: 999px !important;
  min-width: unset !important;
  width: 100%;
}

.cart-drawer .color__bg-primary,
.cart-item .color__bg-primary {
  background-color: var(--color-red) !important;
}

.cart-drawer strong {
  color: var(--color-dark);
  font-size: 16px;
}

.cart-item__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.cart-item__actions .btn--plain {
  min-width: unset !important;
  padding: 6px 12px !important;
  border-radius: 8px !important;
  background: var(--color-beige) !important;
  color: var(--color-dark) !important;
  font-size: 14px !important;
}

.cart-item__actions .btn--plain:hover {
  background: var(--color-dark) !important;
  color: var(--color-white) !important;
}

.px-10{
  padding:0 10px;
}

.pt-5{
  padding-top: 5rem;
}

.pt-3{
  padding-left:
}

.btn_arrow svg{
  fill:currentColor;
}

.mb-50{
  margin-bottom:50px;
}
@media(max-width:767px){
  .mb-50{
    margin-bottom:20px;
  }
  .py-10 {
    padding-bottom:30px
  } 
}
.filter_btn {
  border: 1px solid;
  padding: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--color-beige, #E9E3D5);
}
.filter_btn_flex {
  gap: 10px;
}
.clear_btn_grp {
  margin-left: auto;
  color: var(--color-red);
}
.filter_close {
  min-width: 0;
  padding: 10px;
  width: 50px;
  height: 50px;
}
.event_date {
  font-size: 14px;
  line-height:1.3;
}
.event_date * {
  font-size:inherit;
  line-height:inherit
}
.event-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-30{
    padding-right: 30px;
    padding-bottom: 50px;
    padding-top:50px;
}
.newsletter-section h3 span {
  font: inherit;
}
@media(max-width: 450px) {
  .newsletter-section h3 span {
    display:block;
  }
}

.z-1000{
  z-index:1000000;
}

/* For Custom Product Builder  */
.cpb-product-actions-container .cpb-add-to-cart-button {
  display: none !important;
}

.cpb-current-tab-index-8 .cpb-product-actions-container .cpb-add-to-cart-button {
  display: block !important;
}

.swal2-confirm{
    background-color:#ef2323 !important;
}
div:where(.swal2-icon).swal2-warning {
    border-color: #ef2323 !important;
    color: #ef2323 !important;
}

div:where(.swal2-container) button:where(.swal2-styled).swal2-confirm:focus{
  box-shadow: none !important;
}

.swal2-html-container ul li:after{
  opacity:1 !important;
}

.swal2-html-container ul:last-child {
    margin-top: 1em !important;
}
.dXNxUZ{
    padding:5px 10px !important;
}
.dXNxUZ *{
    font-size:14px !important;
}

.dLlKkE .cpb-category-checkbox .cpb-category-title{
  display: none !important;
}

div:where(.swal2-container) .swal2-html-container, .swal2-title{
  font-family: Manrope !important;
}

#product-builder .cpb-theme-provider.alpine-white .cpb-option.cpb-option-type-color span, #product-builder .cpb-theme-provider.alpine-white-v2 .cpb-option.cpb-option-type-color span{
  width:25px !important;
  height:25px !important;
  margin: 0.24em !important;
}

#product-builder .cpb-theme-provider.alpine-white .cpb-option.cpb-option-type-color, #product-builder .cpb-theme-provider.alpine-white-v2 .cpb-option.cpb-option-type-color{
    width: 40px !important;
    height: 40px !important;
}

.jbyiHy .checkbox {
    margin-top: 0 !important;
}

.jbyiHy .checkbox .cpb-checkbox {
    margin-bottom: 0 !important;
}

.jbyiHy {
    margin: 5px 0;
}


.content_media_row ul {
    list-style: disc;
}
/* Modal Css */
.popup_is_open {
  overflow: hidden;
}
.popup-form-section.cm_popup_open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.popup-form-section {
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 50%);
    z-index: 999999999;
    transition: all 0.4s;
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.popup-form-container {
    position: relative;
    width: auto;
    margin: 1.75rem;
    display: flex;
    align-items: center;
    min-height: calc(100% - 1.75rem * 2);
    margin-right: auto;
    margin-left: auto;
    transition: transform .3s ease-out;
    max-width: var(--popup-max-width);
    transform: translateY(15%);
}
.cm_popup_open .popup-form-container {
  transform:none;
}
.popup-form-dialog__panel {
    background: #fff;
    width: 100%;
    border-radius: 10px;
    padding:40px;
    position:relative;
}
.popup-form-dialog__close {
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--color-red);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 8px;
    cursor: pointer;
}