@charset "UTF-8";
/*!
 * ╔═════════════════════════════════════════╗
 * ║                                         ║
 * ║   ███╗   ██╗ ██████╗ ██████╗ ███████╗   ║
 * ║   ████╗  ██║██╔═══██╗██╔══██╗██╔════╝   ║
 * ║   ██╔██╗ ██║██║   ██║██║  ██║█████╗     ║
 * ║   ██║╚██╗██║██║   ██║██║  ██║██╔══╝     ║
 * ║   ██║ ╚████║╚██████╔╝██████╔╝███████╗   ║
 * ║   ╚═╝  ╚═══╝ ╚═════╝ ╚═════╝ ╚══════╝   ║
 * ║                                         ║
 * ║   ███╗   ███╗ █████╗ ██████╗ ███████╗   ║
 * ║   ████╗ ████║██╔══██╗██╔══██╗██╔════╝   ║
 * ║   ██╔████╔██║███████║██║  ██║███████╗   ║
 * ║   ██║╚██╔╝██║██╔══██║██║  ██║╚════██║   ║
 * ║   ██║ ╚═╝ ██║██║  ██║██████╔╝███████║   ║
 * ║   ╚═╝     ╚═╝╚═╝  ╚═╝╚═════╝ ╚══════╝   ║
 * ║                                         ║
 * ╚═════════════════════════════════════════╝
 *    Nice to see you digging into the code. 
 */
/** BREAKPOINTS MEDIA **/
/**
 * EXAMPLE:
 * input: @include media('xs') {...}
 * output: @media (min-width: 576px) {...}
 */
/**
   * EXAMPLE:
   * input: @include media-down('xs') {...}
   * output: @media (max-width: 576px) {...}
   */
/* Fonts */
/* Globals */
/* Breakpoints */
/* Colors */
/* Tailwind CSS Colors */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
body, html {
  font-family: "Montserrat", sans-serif;
  background-color: #f3f4f6;
}

main {
  padding-block: 5rem 0;
}
@media (min-width: 768px) {
  main {
    padding-block: 7.35rem 0;
  }
}

.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/**
	* Normalize base on:
	* ! modern-normalize v2.0.0 | MIT License | https://github.com/sindresorhus/modern-normalize
	* and:
	* https://mattbrictson.com/blog/css-normalize-and-reset
	*
	*/
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
:root {
  line-height: 1.5;
  color-scheme: light only;
}

*,
::before,
::after {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*:focus-visible {
  outline: 3px solid gray !important;
}

html {
  /* Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3) */
  font-family: "Montserrat", sans-serif, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-weight: normal;
  line-height: 1.15;
  /* 1. Correct the line height in all browsers. */
  -webkit-text-size-adjust: 100%;
  /* 2. Prevent adjustments of font size after orientation changes in iOS. */
  -moz-tab-size: 4;
  /* 3. Use a more readable tab size (opinionated). */
  tab-size: 4;
  /* 3 */
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
  /* Additional font settings */
  -webkit-font-smoothing: antialiased;
  font-optical-sizing: auto;
}

/*
Sections
========
*/
body {
  margin: 0;
  /* Remove the margin in all browsers. */
  color: #0a0a0a;
}

main {
  display: block;
}

/*
links
=====
*/
/*
Lists in menu
========
*/
nav ol,
nav ul {
  list-style: none;
  padding-inline: 0;
}

/*
Images
========
*/
img {
  display: block;
  max-inline-size: 100%;
}

/*
Grouping content
================
*/
/**
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
*/
hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
}

/*
Text-level semantics
====================
*/
/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr[title] {
  text-decoration: underline dotted;
}

/**
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: 700;
}

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: "Montserrat", sans-serif, ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
Tabular data
============
*/
/**
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
*/
table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
}

/*
Forms
=====
*/
/**
Correct the inability to style clickable types in iOS and Safari.
*/
button,
html [type=button],
[type=button],
[type=reset],
[type=submit],
::-webkit-file-upload-button {
  -webkit-appearance: button;
}

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[hidden] {
  display: none !important;
}

/**
Remove the inner border and padding in Firefox.
*/
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
Restore the focus styles unset by the previous rule.
*/
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
Remove the additional ':invalid' styles in Firefox.
See: https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737
*/
:-moz-ui-invalid {
  box-shadow: none;
}

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0;
}

/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type=search],
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}

/*
Other things
===========
*/
address {
  font-style: normal;
}

.site-header {
  width: 100%;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  transform: translateY(0);
  transition: transform 0.3s ease;
}
.site-header--hidden {
  transform: translateY(-100%);
}
.site-header__top {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  z-index: 10;
}
.site-header__container {
  max-width: 1400px;
  margin: 0 auto;
}
.site-header__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-right: 0.5rem;
}
.site-header__logo-text {
  font-size: 1.75rem;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.site-header__logo-image {
  height: 3rem;
  width: auto;
  object-fit: contain;
}
.site-header__categories-btn {
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.site-header__categories-btn:hover {
  opacity: 0.7;
}
.site-header__categories-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #000000;
}
.site-header__categories-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #000000;
}
.site-header__search {
  flex: 1;
  position: relative;
  align-items: center;
}
.site-header__search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  background-color: #f3f4f6;
  border: none;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #000000;
  outline: none;
  transition: background-color 0.2s ease;
}
.site-header__search-input::placeholder {
  color: #6b7280;
}
.site-header__search-input:focus {
  background-color: #e5e7eb;
}
.site-header__search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: #6b7280;
  pointer-events: none;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-header__auth-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-header__auth-link:hover {
  color: #f26423;
}
.site-header__auth-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #000000;
}
.site-header__action {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 0.25rem;
}
.site-header__action-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #000000;
  transition: color 0.2s ease;
}
.site-header__action:hover .site-header__action-icon {
  color: #f26423;
}
.site-header__action-count {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background-color: #f26423;
  color: #ffffff;
  font-size: 0.625rem;
  font-weight: 600;
  min-width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0 0.25rem;
}
.site-header__nav {
  background-color: #ffffff;
  position: relative;
  z-index: 1;
}
.site-header__nav--hidden {
  display: none;
}
.site-header__nav-inner {
  padding: 0.75rem 0;
}
.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__nav-item {
  align-items: center;
}
.site-header__nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.site-header__nav-link:hover {
  opacity: 0.8;
}
.site-header__hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.site-header__hamburger-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: #000000;
}
.site-header__mobile-search {
  background-color: #f26423;
  padding: 1rem 0;
}
.site-header__mobile-search-inner {
  position: relative;
  display: flex;
  align-items: center;
}
.site-header__mobile-search-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 3rem;
  background-color: #f3f4f6;
  border: none;
  border-radius: 2rem;
  font-size: 0.875rem;
  color: #000000;
  outline: none;
}
.site-header__mobile-search-input::placeholder {
  color: #6b7280;
}
.site-header__mobile-search-input:focus {
  background-color: #e5e7eb;
}
.site-header__mobile-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: #6b7280;
  pointer-events: none;
}
@media (max-width: 768px) {
  .site-header__top-inner {
    gap: 1rem;
  }
  .site-header__logo-text {
    font-size: 1.25rem;
  }
  .site-header__logo-image {
    height: 2.6rem;
  }
  .site-header__actions {
    gap: 1rem;
  }
  .site-header__action-count {
    top: -0.25rem;
    right: -0.25rem;
    min-width: 1rem;
    height: 1rem;
    font-size: 0.5rem;
  }
  .site-header__action-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.site-header__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 300px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: none;
}
@media (max-width: 768px) {
  .site-header__mobile-menu {
    display: block;
  }
}
@media (min-width: 768px) {
  .site-header__mobile-menu {
    display: block;
  }
}
.site-header__mobile-menu--open {
  transform: translateX(0);
}
.site-header__mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem 1.25rem 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  background-color: #f3f4f6;
}
.site-header__mobile-menu-title {
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
  margin: 0;
}
.site-header__mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header__mobile-menu-close svg {
  color: #000000;
}
.site-header__mobile-menu-close-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #000000;
}
.site-header__mobile-menu-content {
  padding: 1.5rem;
}
.site-header__mobile-menu-list {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
}
.site-header__mobile-menu-item {
  border-bottom: 1px solid #e5e7eb;
}
.site-header__mobile-menu-item:last-child {
  border-bottom: none;
}
.site-header__mobile-menu-link {
  display: block;
  padding: 0.85rem 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-header__mobile-menu-link:hover {
  color: #f26423;
}
.site-header__mobile-menu-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
.site-header__mobile-menu-option {
  font-size: 0.875rem;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-header__mobile-menu-option:hover {
  color: #f26423;
}
.site-header__mobile-menu-search {
  position: relative;
  margin-top: 1rem;
}
.site-header__mobile-menu-search-input {
  width: 100%;
  padding: 0.875rem 3rem 0.875rem 1rem;
  background-color: #f3f4f6;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #000000;
  outline: none;
}
.site-header__mobile-menu-search-input::placeholder {
  color: #6b7280;
}
.site-header__mobile-menu-search-input:focus {
  background-color: #e5e7eb;
}
.site-header__mobile-menu-search-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header__mobile-menu-search-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #6b7280;
}

.site-footer {
  background-color: #ffffff;
}
.site-footer__main {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .site-footer__main {
    padding: 5rem 0;
  }
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .site-footer__grid {
    gap: 4rem;
  }
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.site-footer__logo {
  display: inline-block;
  text-decoration: none;
}
.site-footer__logo-img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}
.site-footer__logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #f5f5f5;
  letter-spacing: 0.1em;
}
.site-footer__tagline {
  font-size: 0.875rem;
  color: #a3a3a3;
  line-height: 1.6;
  max-width: 280px;
}
.site-footer__socials {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.site-footer__newsletter {
  margin-top: 1rem;
}
.site-footer__newsletter-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e5e5e5;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
.site-footer__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.site-footer__address {
  font-size: 0.875rem;
  color: #d4d4d4;
  line-height: 1.7;
  margin-bottom: 0.5rem;
  font-style: normal;
}
.site-footer__link {
  font-size: 0.875rem;
  color: #d4d4d4;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
  letter-spacing: 0.02em;
}
.site-footer__link:hover {
  color: #f26423;
}
.site-footer__trust {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}
.site-footer__trust img {
  height: 32px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}
.site-footer__trust img:hover {
  opacity: 1;
}
.site-footer__payment {
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.site-footer__payment-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .site-footer__payment-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.site-footer__payment-methods, .site-footer__shipping-methods {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  .site-footer__payment-methods, .site-footer__shipping-methods {
    justify-content: flex-start;
  }
}
.site-footer__payment-label, .site-footer__shipping-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: #a3a3a3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.site-footer__payment-methods img, .site-footer__shipping-methods img {
  height: 24px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.site-footer__payment-methods img:hover, .site-footer__shipping-methods img:hover {
  opacity: 1;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
}
.site-footer__bottom-inner {
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.site-footer__legal .footer-nav__link {
  font-size: 0.75rem;
}
.site-footer__heading {
  font-size: 0.925rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 0.5rem;
}
.site-footer__bottom {
  background-color: #f5f5f5;
}
.site-footer__bottom-inner {
  padding: 1rem 0;
}
.site-footer__cities {
  background-color: #f5f5f5;
  padding: 1rem 0;
}

.footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav__list--legal {
  gap: 0.3rem;
  flex-direction: column;
  gap: 0.7rem;
}
@media (min-width: 768px) {
  .footer-nav__list--legal {
    flex-direction: row;
  }
}
.footer-nav__list--legal .footer-nav__link {
  font-size: 0.8rem;
  color: #525252;
  font-weight: 500;
}
.footer-nav__list--legal .footer-nav__link:hover {
  color: #f26423;
}
.footer-nav__list--cities {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
  text-align: center;
}
.footer-nav__list--cities .footer-nav__item {
  flex: 0 0 calc(50% - 0.5rem);
}
@media (min-width: 768px) {
  .footer-nav__list--cities {
    flex-wrap: nowrap;
    gap: 1.5rem;
  }
  .footer-nav__list--cities .footer-nav__item {
    flex: 0 0 auto;
  }
}
.footer-nav__list--cities .footer-nav__link {
  font-size: 0.75rem;
  color: #737373;
  font-weight: 400;
}
.footer-nav__list--cities .footer-nav__link:hover {
  color: #f26423;
}
.footer-nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #000000;
  transition: color 0.2s ease;
}
.footer-nav__link:hover {
  color: #f26423;
}
.footer-nav__item--active .footer-nav__link {
  color: #f26423;
}

.c-product-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 0.375rem;
  padding: 0.75rem;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}
.c-product-card__link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.c-product-card__image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.c-product-card__badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background-color: #dc2626;
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.625rem;
  font-weight: 600;
  z-index: 2;
}
.c-product-card__badge--discount {
  left: auto;
  right: 0.5rem;
}
.c-product-card__color-swatches {
  position: absolute;
  bottom: 0.5rem;
  left: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 0.25rem 0.375rem;
  border-radius: 0.25rem;
}
.c-product-card__color-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #9ca3af;
  display: inline-block;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .c-product-card__color-dot {
    width: 14px;
    height: 14px;
  }
}
.c-product-card__color-more {
  font-size: 0.625rem;
  font-weight: 600;
  color: #4b5563;
  margin-left: 0.125rem;
}
.c-product-card__image {
  width: 100%;
  aspect-ratio: 1;
  background-color: #f3f4f6;
  border-radius: 0.375rem;
  overflow: hidden;
}
.c-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.c-product-card__content {
  padding-block: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.c-product-card__category {
  font-size: 0.625rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}
.c-product-card__title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #000000;
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .c-product-card__title {
    font-size: 0.8rem;
  }
}
.c-product-card:hover .c-product-card__title {
  color: #f26423;
}
.c-product-card__footer {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.c-product-card__footer--prices-row {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.c-product-card__price-wrapper {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .c-product-card__price-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}
.c-product-card__price-wrapper:has(.c-product-card__price--sale) .c-product-card__price:first-child {
  text-decoration: line-through;
  color: #6b7280;
}
.c-product-card__price {
  font-size: 0.925rem;
  font-weight: 700;
  color: #1f2937;
}
.c-product-card__price--old {
  text-decoration: line-through;
  color: #6b7280;
  font-size: 0.925rem;
}
@media (max-width: 768px) {
  .c-product-card__price--old {
    font-size: 0.7rem;
  }
}
.c-product-card__price--new {
  color: #1f2937;
  font-size: 0.925rem;
}
@media (max-width: 768px) {
  .c-product-card__price--new {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .c-product-card__price:not(.c-product-card__price--old):not(.c-product-card__price--new) {
    font-size: 0.8rem;
  }
}
.c-product-card__price--sale {
  background-color: rgba(34, 197, 94, 0.15);
  color: #15803d;
  padding: 0.15rem 0.35rem;
  border-radius: 0.25rem;
  text-align: center;
}
.c-product-card__price-prefix {
  font-size: 0.925rem;
  font-weight: 700;
  color: #1f2937;
  margin-right: 0.25rem;
}
.c-product-card__price-prefix--old {
  color: #6b7280;
  font-size: 0.925rem;
}
@media (max-width: 768px) {
  .c-product-card__price-prefix--old {
    font-size: 0.7rem;
  }
}
.c-product-card__price-prefix--new {
  color: #1f2937;
  font-size: 0.925rem;
}
@media (max-width: 768px) {
  .c-product-card__price-prefix--new {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .c-product-card__price-prefix:not(.c-product-card__price-prefix--old):not(.c-product-card__price-prefix--new) {
    font-size: 0.8rem;
  }
}
.c-product-card__stock {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
}
.c-product-card__stock.high-stock {
  color: #84cc16;
}
.c-product-card__stock.medium-stock {
  color: #ca8a04;
}
.c-product-card__stock.low-stock {
  color: #f97316;
}
.c-product-card__stock.out-of-stock {
  color: #dc2626;
}
.c-product-card__stock svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}
.c-product-card__action {
  padding: 0.5rem 0.75rem;
  background-color: #f3f4f6;
  color: #000000;
  border: none;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  display: block;
}
.c-product-card__action:hover {
  background-color: #e5e7eb;
}
.c-product-card__action:active {
  transform: scale(0.98);
}

.hero-slider {
  width: 100%;
  height: 35vh;
  position: relative;
  overflow: visible;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 100%;
  height: 100%;
}

.hero-slide {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slide__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.075);
  z-index: 1;
}
.hero-slide__content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: #ffffff;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0;
  justify-content: flex-start;
}
.hero-slide__title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #000000;
}
.hero-slide__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 400;
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #000000;
}
.hero-slide__button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #f26423;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-slide__button:hover {
  background-color: #a33a09;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.swiper-pagination {
  position: absolute;
  bottom: 2rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 10;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  width: 100%;
  padding: 0 1rem;
}

.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background-color: rgba(255, 255, 255, 0.5) !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
  border: 2px solid #ffffff !important;
}

.swiper-pagination-bullet-active {
  background-color: #ffffff !important;
  transform: scale(1.2);
}

.swiper-button-next,
.swiper-button-prev {
  color: #ffffff !important;
  background-color: rgba(0, 0, 0, 0.3);
  width: 50px !important;
  height: 50px !important;
  border-radius: 50%;
  margin-top: -25px !important;
  transition: all 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px !important;
  font-weight: bold;
}

.swiper-button-next {
  right: 2rem !important;
}

.swiper-button-prev {
  left: 2rem !important;
}

@media (max-width: 768px) {
  .hero-slide__title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }
  .hero-slide__subtitle {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    margin-bottom: 1.5rem;
  }
  .hero-slide__button {
    padding: 0.875rem 1.75rem;
    font-size: 0.9rem;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    margin-top: -20px !important;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px !important;
  }
  .swiper-button-next {
    right: 1rem !important;
  }
  .swiper-button-prev {
    left: 1rem !important;
  }
  .swiper-pagination {
    bottom: 1rem !important;
  }
  .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
  }
}
.s-categories__title {
  color: #000000;
}
.s-categories__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  background-color: #ffffff;
  border-bottom: 2px solid #f26423;
  border-radius: 0.75rem 0.75rem 0 0;
  transition: all 0.3s ease;
  text-decoration: none;
  min-height: 170px;
  height: 100%;
}
.s-categories__card:hover {
  border-color: #f26423;
  border-bottom: 2px solid #f26423;
  box-shadow: 0 4px 12px rgba(246, 100, 35, 0.15);
}
.s-categories__card-image {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.s-categories__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-categories__card-placeholder {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  color: #9ca3af;
}
.s-categories__card-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: #000000;
  margin: 0;
  transition: color 0.3s ease;
}
.s-categories__card:hover .s-categories__card-title {
  color: #f26423;
}

.s-product-tiles__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
.s-product-tiles__title {
  color: #000000;
}

.s-single-product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .s-single-product__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.s-single-product__image-column {
  display: flex;
  flex-direction: column;
}
.s-single-product__image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f3f4f6;
  border-radius: 0.375rem;
}
.s-single-product__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: #dc2626;
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.625rem;
  font-weight: 600;
  z-index: 2;
}
.s-single-product__badge--discount {
  left: auto;
  right: 0.75rem;
}
.s-single-product__image {
  width: 100%;
  aspect-ratio: 1;
  background-color: #f3f4f6;
  overflow: hidden;
  border-radius: 0.375rem;
}
.s-single-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-single-product__content-column {
  display: flex;
  flex-direction: column;
}
.s-single-product__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.s-single-product__category {
  font-size: 0.625rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}
.s-single-product__title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #000000;
  margin: 0;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .s-single-product__title {
    font-size: 1.5rem;
  }
}
.s-single-product__short-description {
  font-size: 0.9375rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}
.s-single-product__price-wrapper {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.s-single-product__price-wrapper:has(.s-single-product__price--sale) .s-single-product__price:first-child {
  text-decoration: line-through;
  color: #6b7280;
}
.s-single-product__price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
}
.s-single-product__price--sale {
  background-color: rgba(34, 197, 94, 0.15);
  color: #15803d;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  text-align: center;
}
.s-single-product__add-to-cart-wrapper .single_add_to_cart_button {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background-color: #f3f4f6;
  color: #111827;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}
.s-single-product__add-to-cart-wrapper .single_add_to_cart_button:hover {
  background-color: #e5e7eb;
}
.s-single-product__add-to-cart-wrapper .single_add_to_cart_button:active {
  transform: scale(0.98);
}

.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.color-swatch {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background-color: #e5e7eb;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.color-swatch:hover {
  transform: scale(1.1);
  border-color: #9ca3af;
}
.color-swatch.is-selected {
  border-color: #111827;
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px #111827;
}
.color-swatch.is-selected::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.color-swatch.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.color-swatch.is-disabled::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #9ca3af;
  transform: rotate(45deg);
}
.color-swatch__label {
  font-size: 0.625rem;
  font-weight: 600;
  color: #374151;
  text-align: center;
  line-height: 1;
}

.color-swatch-select.hidden {
  display: none;
}

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-info {
  position: relative;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  background-color: #fff;
  border-left: none;
  overflow: hidden;
}
.woocommerce-notices-wrapper .woocommerce-message:before,
.woocommerce-notices-wrapper .woocommerce-error:before,
.woocommerce-notices-wrapper .woocommerce-info:before {
  display: none;
}
.woocommerce-notices-wrapper .woocommerce-message .button,
.woocommerce-notices-wrapper .woocommerce-error .button,
.woocommerce-notices-wrapper .woocommerce-info .button {
  float: right;
  padding: 0.5rem 1rem;
  background-color: #111827;
  color: #fff;
  border: none;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.woocommerce-notices-wrapper .woocommerce-message .button:hover,
.woocommerce-notices-wrapper .woocommerce-error .button:hover,
.woocommerce-notices-wrapper .woocommerce-info .button:hover {
  background-color: #374151;
}
.woocommerce-notices-wrapper .woocommerce-message::after,
.woocommerce-notices-wrapper .woocommerce-error::after,
.woocommerce-notices-wrapper .woocommerce-info::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: rgba(0, 0, 0, 0.1);
  width: 100%;
  transform-origin: left;
  animation: progress 15s linear forwards;
}
.woocommerce-notices-wrapper .woocommerce-message .notice-close,
.woocommerce-notices-wrapper .woocommerce-error .notice-close,
.woocommerce-notices-wrapper .woocommerce-info .notice-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: none;
  border: none;
  color: #6b7280;
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
  padding: 0.25rem;
  transition: color 0.2s ease;
}
.woocommerce-notices-wrapper .woocommerce-message .notice-close:hover,
.woocommerce-notices-wrapper .woocommerce-error .notice-close:hover,
.woocommerce-notices-wrapper .woocommerce-info .notice-close:hover {
  color: #111827;
}
@keyframes progress {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}
.woocommerce-notices-wrapper .woocommerce-message {
  border-left-color: #f26423;
  animation: slideIn 0.3s ease;
}
.woocommerce-notices-wrapper .woocommerce-message:focus {
  outline: none;
  box-shadow: none;
}
.woocommerce-notices-wrapper .woocommerce-message:before {
  content: "✓";
  display: inline-block;
  margin-right: 0.5rem;
  color: #f26423;
  font-weight: bold;
}
.woocommerce-notices-wrapper .woocommerce-message::after {
  background: #f26423;
}
.woocommerce-notices-wrapper .woocommerce-message .button:focus {
  outline: none;
  box-shadow: none;
}
.woocommerce-notices-wrapper .woocommerce-error {
  border-left-color: #ef4444;
  animation: slideIn 0.3s ease;
}
.woocommerce-notices-wrapper .woocommerce-error:before {
  content: "✕";
  display: inline-block;
  margin-right: 0.5rem;
  color: #ef4444;
  font-weight: bold;
}
.woocommerce-notices-wrapper .woocommerce-error::after {
  background: #ef4444;
}
.woocommerce-notices-wrapper .woocommerce-info {
  border-left-color: #3b82f6;
  animation: slideIn 0.3s ease;
}
.woocommerce-notices-wrapper .woocommerce-info:before {
  content: "ℹ";
  display: inline-block;
  margin-right: 0.5rem;
  color: #3b82f6;
  font-weight: bold;
}
.woocommerce-notices-wrapper .woocommerce-info::after {
  background: #3b82f6;
}

.woocommerce-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: #6b7280;
  padding: 0.75rem 0;
  margin: 0;
}
.woocommerce-breadcrumb a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}
.woocommerce-breadcrumb a:hover {
  color: #111827;
}
.woocommerce-breadcrumb .separator {
  margin: 0 0.5rem;
  color: #d1d5db;
}