/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  outline: none !important;
  box-shadow: none;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=checkbox i] {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  background-color: #f5f7f9;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  min-height: 100vh;
  overflow-x: hidden;
}
.devise-page {
  background-color: white;
}

.main-body {
  padding: 50px 0px;
}
@media (max-width: 900px) {
  .main-body {
    padding: 40px 0px;
  }
}

.main-devise {
  max-width: 1360px;
  margin: 0 auto;
  padding: 150px 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  min-height: calc(100vh - 300px);
}
@media (max-width: 900px) {
  .main-devise {
    padding: 150px 20px 150px;
  }
}
@media (max-width: 550px) {
  .main-devise {
    padding: 85px 20px 40px;
    min-height: auto;
  }
}

.hide-element {
  display: none;
}

.checkout-page {
  background-color: white;
}

.checkout-container {
  width: 100%;
}

.addess-list--return-to-list-link,
.addess-list--new-address-form-link,
.card-list--return-to-list-link,
.card-list--new-card-form-link {
  cursor: pointer;
}

.card-list--new-card-form-link i {
  margin-right: 10px;
}

.payment-type-selection-field {
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid #0075ff;
  cursor: pointer;
  background-color: white;
  border-radius: 8px;
}
.payment-type-selection-field:hover {
  background-color: #ecf1ff;
}

.custom-radio {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.credit-card-number-field {
  position: relative;
}

.card-brand-logo {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

.product-quantity {
  font-size: 14px;
  font-weight: 400;
  color: #959595;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  border-left: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
}

.warning-about-fields {
  font-size: 14px;
  line-height: 22px;
  font-weight: 400;
  color: #959595;
  margin-top: 15px;
}

.dashboard-page {
  display: flex;
}

.dashboard-footer {
  display: none;
}
@media (max-width: 900px) {
  .dashboard-footer {
    display: block;
  }
}

.main-dashboard {
  display: flex;
  flex-direction: column;
  align-content: center;
  width: 100%;
  padding: 50px 30px;
  width: 100%;
  overflow-x: hidden;
}
@media (max-width: 900px) {
  .main-dashboard {
    padding: 90px 20px 30px;
  }
}

.sidebar {
  background-color: white;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: 100%;
  justify-content: space-between;
  overflow-y: auto;
  padding: 50px 30px 30px;
  position: fixed;
  width: 400px;
  z-index: 6;
}
@media (max-width: 900px) {
  .sidebar {
    width: 300px;
    left: -300px;
    transition: left 0.3s ease;
    padding: 50px 25px 30px;
  }
}

.ghost-sidebar {
  background-color: transparent;
  flex-shrink: 0;
  height: 100vh;
  width: 400px;
  z-index: 0;
}
@media (max-width: 900px) {
  .ghost-sidebar {
    display: none;
  }
}

.sidebar a {
  color: #475467;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: -0.3px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}
.sidebar a:hover {
  color: #0075ff;
}
.sidebar a i {
  width: 20px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-channel-icon {
  margin-bottom: 10px;
  font-size: 15px;
  color: #101010;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  line-height: 24px;
  gap: 12px;
}
.social-channel-icon i,
.social-channel-icon svg {
  width: 20px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .open {
    left: 0;
  }
}

.menu-overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 5;
  transition: background-color 1s ease, visibility 1s ease;
  cursor: pointer;
}

.menu-overlay--open {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.5);
}

.sidebar-header {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 20px;
  margin-bottom: 30px;
}

.user-info {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 30px;
  width: 100%;
  border-bottom: 1px solid #eaeaea;
  padding: 0 0 20px;
}
@media (max-width: 900px) {
  .user-info {
    flex-direction: column;
    align-items: flex-start;
  }
}
.user-info .logo {
  width: 45px;
  height: 45px;
}

.user-initials {
  border-radius: 50px;
  background-color: #f78da7;
  color: #ffffff;
  font-size: 22px;
  letter-spacing: -0.3px;
  font-weight: 800;
  height: 48px;
  width: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.user-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: 240px;
}

.user-name {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.user-email {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
}

.user-name,
.user-email {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.menu-button-bar {
  position: fixed;
  display: none;
  width: 100%;
  height: 55px;
  top: 0;
  left: 0;
  z-index: 3;
  background-color: #ffffff;
  border-bottom: 1px solid #eaeaea;
}
@media (max-width: 900px) {
  .menu-button-bar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}
.menu-button-bar .brand-wrapper {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}

.menu-button {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu-button svg {
  width: 20px;
  height: 20px;
}

.menu-button::-moz-focus-inner {
  border: 0;
}

.dashboard-menu {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  margin-bottom: 0px;
}
.dashboard-menu svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.support-menu {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.support-menu svg {
  width: 20px;
  height: 18px;
  margin-right: 10px;
}

.btn-secondary {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.btn-secondary svg {
  width: 17px;
  height: 17px;
  margin-right: 11px;
}

.order-status-box {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.order-status-box svg {
  width: 20px;
  height: 20px;
  margin-right: 11px;
}

.dashboard-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .dashboard-wrapper {
    width: 100%;
    min-width: 280px;
  }
}

.dashboard-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  width: 100%;
}

.dashboard-section-title {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 3px;
}
@media (max-width: 900px) {
  .dashboard-section-title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 3px;
  }
}

.dashboard-section-description {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .dashboard-section-description {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 550px) {
  .dashboard-section-description {
    padding: 0 10px;
  }
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  height: 5px;
  border-radius: 10px;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
}
@media (max-width: 900px) {
  .progress-bar {
    margin-bottom: 10px;
  }
}

.progress-bar div {
  flex-grow: 1;
  height: 5px;
  background-color: #ddd;
  margin: 0 3px;
  border-radius: 10px;
}

.progress-bar div:first-child {
  margin-left: 0;
}

.progress-bar div:last-child {
  margin-right: 0;
}

.progress-bar .completed {
  background-color: #ffd080;
}

.order-details-header,
.address-details-header {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eaeaea;
  width: 100%;
  color: #101010;
}
@media (max-width: 900px) {
  .order-details-header,
  .address-details-header {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.order-details-section,
.address-details-section {
  width: 100%;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .order-details-section,
  .address-details-section {
    margin-bottom: 20px;
  }
}

.line-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  padding: 0 0 20px;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 15px;
}
.line-wrapper:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding: 0;
}

.line-title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #101010;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}
.line-title i {
  margin-right: 10px;
  width: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.line-title svg {
  margin-right: 10px;
  width: 20px;
  height: 17px;
}

.line-content {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #959595;
  padding-left: 34px;
}

.success-message,
.pending-message,
.error-message {
  display: flex;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 30px;
  padding: 20px 20px;
  width: 100%;
}
@media (max-width: 900px) {
  .success-message,
  .pending-message,
  .error-message {
    padding: 20px 20px;
  }
}
.success-message .icon,
.pending-message .icon,
.error-message .icon {
  font-size: 24px;
  margin-right: 15px;
}
.success-message .icon svg,
.pending-message .icon svg,
.error-message .icon svg {
  width: 24px;
  height: 24px;
  fill: #175cd3;
}
.success-message h2,
.pending-message h2,
.error-message h2 {
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 0px;
}
.success-message p,
.success-message .box-message,
.pending-message p,
.pending-message .box-message,
.error-message p,
.error-message .box-message {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0;
}

.pending-message {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.success-message {
  background-color: #eff8ff;
  border: 1px solid #b2ddff;
  color: #175cd3;
}

.pending-message {
  background-color: #fff9e6;
  border: 1px solid #ffd080;
  color: #ff8c00;
}

.error-message {
  background-color: #fff0f0;
  border: 1px solid #ffcccc;
  color: #ff3333;
}
.error-message .icon svg {
  fill: #ff3333;
}

.pending-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 10px;
  color: #101010;
}

.pending-text {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: #959595;
  margin-bottom: 10px;
}

.pix-code {
  width: 200px;
}

.warning {
  background-color: #ffffff;
  border: 1px solid #dadada;
  color: #101010;
}

.square-wrapper {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 20px 0 30px;
}
@media (max-width: 900px) {
  .square-wrapper {
    margin: 30px auto 30px;
  }
}

.square {
  border: 2px solid #0075ff;
  border-radius: 10px;
  width: 200px;
  height: 200px;
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.square-horizontal {
  position: absolute;
  background-color: white;
  width: 210px;
  height: 160px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.square-vertical {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  width: 160px;
  height: 210px;
  z-index: 2;
}

.pix-code-img {
  width: 190px;
  height: 190px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.pix-code-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
}

.link {
  color: #0075ff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.pix-copy-and-paste {
  border-radius: 8px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px 15px;
  border: 1px solid #d9d9d9;
  overflow: hidden;
  color: #101010;
  flex-grow: 1;
}

.pix-button {
  align-items: center;
  border-radius: 8px;
  border: 1px solid #d9d9d9;
  display: flex;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 500;
  height: 50px;
  justify-content: center;
  color: #0075ff;
  padding: 15px;
  cursor: pointer;
}
.pix-button i {
  margin-right: 10px;
}
.pix-button svg {
  width: 20px;
  height: 18px;
  margin-right: 10px;
  fill: #175cd3;
}

.orders-list-wrapper {
  margin-bottom: 30px;
  width: 100%;
}

.footer {
  color: #6e6e73;
  padding: 20px 30px;
  bottom: 0;
  width: 100%;
  letter-spacing: -0.2px;
  background-color: #f6f6f6;
  overflow-x: hidden;
  border-top: 1px solid #e6e6e6;
}
@media (max-width: 900px) {
  .footer {
    padding: 35px 20px 20px;
  }
}

.to-relative {
  position: relative;
}

.footer-content {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1360px;
  padding: 30px 0;
  gap: 60px;
}
@media (max-width: 900px) {
  .footer-content {
    padding: 20px 0px;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}
.footer-content .footer-who {
  display: flex;
  flex-direction: column;
  flex-shrink: 1;
  max-width: 500px;
}
@media (max-width: 900px) {
  .footer-content .footer-who {
    max-width: 100%;
  }
}
.footer-content .footer-who--description {
  color: #959595;
  font-size: 15px;
  line-height: 24px;
  margin-bottom: 20px;
}
.footer-content .footer-who--description strong {
  color: rgba(16, 16, 16, 0.7);
}
.footer-content .footer-links {
  display: flex;
  flex-direction: row;
  gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
  flex-grow: 1;
  max-width: 500px;
  min-width: 420px;
}
@media (max-width: 900px) {
  .footer-content .footer-links {
    max-width: 100%;
    width: 100%;
    justify-content: flex-start;
  }
}
@media (max-width: 550px) {
  .footer-content .footer-links {
    gap: 30px;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
  }
}
.footer-content .social-channels {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.footer-content .social-channels--title,
.footer-content .footer-who--title,
.footer-content .footer-helper-links--title {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #101010;
}
@media (max-width: 900px) {
  .footer-content .social-channels--title,
  .footer-content .footer-who--title,
  .footer-content .footer-helper-links--title {
    margin-bottom: 10px;
  }
}
.footer-content .social-channel-icon {
  margin-bottom: 10px;
  font-size: 15px;
  color: #101010;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  line-height: 24px;
  gap: 12px;
}
.footer-content .social-channel-icon i,
.footer-content .social-channel-icon svg {
  width: 20px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-content .footer-helper-links {
  min-width: 180px;
}
.footer-content .footer-helper-links--list {
  flex-shrink: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.footer-content .footer-helper-links--list a {
  font-size: 15px;
  color: #101010;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  line-height: 24px;
}
.footer-content .footer-helper-links--list a:hover {
  text-decoration: underline;
}

.checkout-columns {
  max-width: 1360px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 0 auto;
  position: relative;
  gap: 50px;
}
@media (max-width: 1100px) {
  .checkout-columns {
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .checkout-columns {
    flex-direction: column;
    gap: 0;
  }
}

.form-section-sub-title {
  color: #101828;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: -0.3px;
  font-weight: 400;
}

label {
  color: #333;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
}

input[type=email],
input[type=password],
input[type=text],
input[type=number],
input[type=tel],
textarea,
select {
  border-radius: 8px;
  border: 1px solid #d0d5dd;
  box-sizing: border-box;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  height: 56px;
  padding: 10px 16px;
  width: 100%;
}
input[type=email]::placeholder,
input[type=password]::placeholder,
input[type=text]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder,
select::placeholder {
  color: rgb(130, 130, 130);
}
input[type=email]:focus,
input[type=password]:focus,
input[type=text]:focus,
input[type=number]:focus,
input[type=tel]:focus,
textarea:focus,
select:focus {
  border-color: #009688;
}

textarea {
  padding-top: 20px;
  min-height: 150px;
  resize: none;
  font-family: "Inter", sans-serif;
}

textarea.field-with-error,
select.field-with-error,
input[type=email].field-with-error,
input[type=password].field-with-error,
input[type=text].field-with-error,
input[type=number].field-with-error,
input[type=tel].field-with-error {
  border-color: #f44336;
}

input[type=submit],
.btn-primary {
  align-items: center;
  background-color: #0075ff;
  border-radius: 8px;
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  height: 56px;
  justify-content: center;
  padding: 10px 20px;
  text-decoration: none;
  width: 100%;
}
input[type=submit]:hover,
.btn-primary:hover {
  background-color: #005ecc;
}
input[type=submit]:disabled,
.btn-primary:disabled {
  background-color: #a4a4a4;
  cursor: not-allowed;
}
input[type=submit] i.fa-ellipsis,
.btn-primary i.fa-ellipsis {
  font-size: 30px;
}

.select-input {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><path d="M31.3 192h257.3c17.8 0 26.7 21.5 14.1 34.1L174.1 354.8c-7.8 7.8-20.5 7.8-28.3 0L17.2 226.1C4.6 213.5 13.5 192 31.3 192z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px top 50%, 0 0;
  background-size: 11px auto, 100%;
}

.btn-error {
  background-color: #f44336;
}
.btn-error:hover {
  background-color: #ea1c0d;
}

.btn-cancel {
  background-color: white;
  border: 1px solid #c6c6c6;
  color: #707070;
}
.btn-cancel:hover {
  background-color: #f5f5f5;
  color: #5e5e5e;
}

.radio-button {
  min-height: 56px;
  border: 1px solid #0075ff;
  background-color: white;
  border-radius: 8px;
  cursor: pointer;
}
.radio-button:hover {
  background-color: #ecf1ff;
}
.radio-button label {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  margin-bottom: 0;
  color: #475467;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.radio-button svg {
  width: 20px;
  margin-right: 10px;
  fill: #175cd3;
}

.radio-button.selected {
  background-color: #ecf1ff;
  color: white;
}

.radio-button.selected label {
  color: #0075ff;
}

input[type=radio] {
  margin: 0 10px 0 0;
}

.checkbox {
  display: flex;
  justify-items: center;
  flex-direction: row;
  margin-bottom: 0;
}
.checkbox input[type=checkbox] {
  margin-right: 5px;
}
.checkbox label {
  cursor: pointer;
  color: #333;
  margin-left: 5px;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  margin-bottom: 0;
}
.checkbox i {
  color: #757575;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}

.help-link {
  color: #0075ff;
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.help-link:hover {
  text-decoration: decoration;
}
.help-link svg {
  margin-right: 10px;
  width: 16px;
  fill: #175cd3;
}

.helper-text {
  color: #475467;
  font-size: 14px;
  line-height: 20px;
}

.link-disabled {
  color: #d0d5dd !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  text-decoration: none !important;
  background-color: #a4a4a4 !important;
}
.link-disabled:hover {
  background-color: #a4a4a4 !important;
  color: #d0d5dd !important;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 26px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.label-switch {
  color: #959595;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #0075ff;
}

input:focus + .slider {
  box-shadow: 0 0 1px #0075ff;
}

input:checked + .slider:before {
  transform: translateX(14px);
}

.btn-list {
  align-items: center;
  background-color: white;
  border-radius: 8px;
  border: 1px dashed #0075ff;
  color: #0075ff;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  height: 56px;
  justify-content: center;
  padding: 10px 20px;
  text-decoration: none;
  width: 100%;
  white-space: nowrap;
}
.btn-list:hover {
  background-color: rgb(243, 243, 243);
  color: #0075ff;
}
.btn-list:disabled {
  background-color: #a4a4a4;
  cursor: not-allowed;
}
.btn-list svg {
  width: 20px;
  margin-right: 10px;
  fill: #175cd3;
}

.field {
  position: relative;
}

.input-top-label {
  position: absolute;
  top: -9px;
  left: 12px;
  background: #fff;
  padding: 0 5px;
  color: #444;
}

.login-wrapper {
  align-items: center;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #ddd;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto 20px;
  width: 460px;
  max-width: 460px;
  min-width: 280px;
  padding: 40px 30px 40px;
}
@media (max-width: 900px) {
  .login-wrapper {
    padding: 40px 25px;
    width: 100%;
  }
}
@media (max-width: 550px) {
  .login-wrapper {
    padding: 0px 0px;
    width: 100%;
    background-color: transparent;
    border: none;
    margin: 0 auto;
  }
}

.login-title {
  color: #101828;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.4px;
  line-height: 38px;
  display: flex;
  align-items: center;
}
.login-title i {
  margin-right: 10px;
  font-size: 18px;
}

.login-description {
  color: #475467;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
}

.login-icon {
  margin-bottom: 10px;
  font-size: 20px;
}

.form-wrapper-bottom-links {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}
@media (max-width: 550px) {
  .form-wrapper-bottom-links {
    justify-content: flex-start;
    margin-top: 25px;
  }
}

.navbar {
  backdrop-filter: blur(3px);
  background-color: white;
  border-bottom: 1px solid #d8d8d8;
  color: #101828;
  height: 70px;
  left: 0;
  padding: 0 30px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}
@media (max-width: 900px) {
  .navbar {
    height: 55px;
    padding: 0 20px;
  }
}

.navbar-wrapper {
  display: flex;
  max-width: 1360px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  height: 100%;
  position: relative;
}
@media (max-width: 900px) {
  .navbar-wrapper {
    justify-content: center;
  }
}

.brand-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}

.logo {
  background-image: url("/assets/sancta-maria-logo-04e53978ea9c6074d41c728696cd31b4c0d5d446.png");
  background-size: cover;
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .logo {
    width: 38px;
    height: 38px;
  }
}
.navbar-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
}
.navbar-links li {
  display: inline-block;
  margin-left: 20px;
  font-weight: 500;
}
.navbar-links li a {
  color: #1b1b1b;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2px;
  user-select: none;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 900px) {
  .navbar-links {
    display: none;
  }
}

.nav-item {
  display: block;
  margin-bottom: 10px;
}

#menu-button {
  cursor: pointer;
}
#menu-button i {
  font-size: 18px;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  z-index: 9;
}

.mobile-cart-icon {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
@media (max-width: 900px) {
  .mobile-cart-icon {
    display: flex;
    justify-content: flex-end;
  }
}
.mobile-cart-icon svg {
  height: 65%;
  fill: #1b1b1b;
  transition: fill 0.2s ease;
}
.mobile-cart-icon:hover svg {
  fill: #0075ff;
}
.mobile-cart-icon .cart-count-badge {
  position: absolute;
  top: 1px;
  right: -9px;
  background-color: #e74c3c;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  min-width: 18px;
}

.content-wrapper {
  display: block;
  width: 800px;
  margin: 0 auto;
  padding: 140px 30px 120px;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  min-height: 80vh;
  overflow-x: hidden;
}
@media (max-width: 900px) {
  .content-wrapper {
    width: 100%;
    padding: 100px 30px 60px;
  }
}
@media (max-width: 550px) {
  .content-wrapper {
    width: 100%;
    padding: 100px 20px 40px;
  }
}
.content-wrapper .content-header {
  margin-bottom: 30px;
}
.content-wrapper .content-text {
  margin-bottom: 50px;
}
.content-wrapper .content-text h1,
.content-wrapper .content-text h3 {
  padding-top: 15px;
  margin-bottom: 25px;
}
.content-wrapper .content-text p {
  margin-bottom: 25px;
  line-height: 28px;
}
.content-wrapper .content-text li {
  line-height: 28px;
}
.content-wrapper .content-footer {
  border-top: 1px solid #cfcfcf;
  padding-top: 20px;
}
.content-wrapper h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
@media (max-width: 900px) {
  .content-wrapper h1 {
    font-size: 28px;
  }
}
@media (max-width: 550px) {
  .content-wrapper h1 {
    font-size: 24px;
    letter-spacing: -0.4px;
    text-align: center;
    margin-bottom: 20px;
  }
}
.content-wrapper h3 {
  font-size: 24px;
  line-height: 150%;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: -0.2px;
}
@media (max-width: 900px) {
  .content-wrapper h3 {
    font-size: 20px;
  }
}
@media (max-width: 550px) {
  .content-wrapper h3 {
    font-size: 18px;
  }
}
.content-wrapper .last-updated {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
  color: #101010;
}
.content-wrapper p {
  font-size: 1rem;
  line-height: 160%;
  font-weight: 400;
  font-family: "Inter", sans-serif;
  color: #828282;
}
.content-wrapper p strong {
  color: #393939;
}
.content-wrapper ul {
  margin-bottom: 20px;
  padding-left: 40px;
}
.content-wrapper li {
  font-size: 1rem;
  line-height: 150%;
  font-weight: 400;
  margin-bottom: 10px;
  font-family: "Inter", sans-serif;
  color: #828282;
  list-style-type: disc;
}

.brand-logo {
  background-image: url("/assets/sancta-maria-logo-04e53978ea9c6074d41c728696cd31b4c0d5d446.png");
  background-size: cover;
  display: block;
  margin: 0 auto;
}

.secondary-background-color {
  background-color: #33b249;
}
.secondary-background-color:hover {
  background-color: #288a39;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mt-2 {
  margin-top: 2px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-100 {
  margin-top: 100px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-100 {
  margin-left: 100px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-100 {
  margin-right: 100px;
}

.w-49 {
  width: calc(50% - 5px);
}
@media (max-width: 900px) {
  .w-49 {
    width: 100%;
  }
}

.w-50 {
  width: 50%;
}

.w-100 {
  width: 100%;
}

.w-10px {
  width: 10px;
}

.w-20px {
  width: 20px;
}

.w-30px {
  width: 30px;
}

.w-40px {
  width: 40px;
}

.w-50px {
  width: 50px;
}

.w-60px {
  width: 60px;
}

.w-70px {
  width: 70px;
}

.w-80px {
  width: 80px;
}

.w-90px {
  width: 90px;
}

.w-100px {
  width: 100px;
}

.w-200px {
  width: 200px;
}

.w-250px {
  width: 250px;
}

.h-10px {
  height: 10px;
}

.h-20px {
  height: 20px;
}

.h-30px {
  height: 30px;
}

.h-40px {
  height: 40px;
}

.h-50px {
  height: 50px;
}

.h-60px {
  height: 60px;
}

.h-70px {
  height: 70px;
}

.h-80px {
  height: 80px;
}

.h-90px {
  height: 90px;
}

.h-100px {
  height: 100px;
}

.fs-12 {
  font-size: 12px;
  line-height: 18px;
}

.fs-14 {
  font-size: 14px;
  line-height: 21px;
}

.fs-15 {
  font-size: 15px;
  line-height: 22px;
}

.fs-16 {
  font-size: 16px;
  line-height: 24px;
}

.fs-18 {
  font-size: 18px;
  line-height: 27px;
}

.fs-20 {
  font-size: 20px;
  line-height: 30px;
}

.fs-24 {
  font-size: 24px;
  line-height: 36px;
}

.fs-28 {
  font-size: 28px;
  line-height: 42px;
}

.fs-32 {
  font-size: 32px;
  line-height: 48px;
}

.fs-36 {
  font-size: 36px;
  line-height: 54px;
}

.fs-40 {
  font-size: 40px;
  line-height: 60px;
}

.fs-44 {
  font-size: 44px;
  line-height: 66px;
}

.pl-2 {
  padding-left: 2px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-50 {
  padding-left: 50px;
}

.pr-2 {
  padding-right: 2px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-50 {
  padding-right: 50px;
}

.pt-2 {
  padding-top: 2px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pb-2 {
  padding-bottom: 2px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pd-5 {
  padding: 5px;
}

.pd-10 {
  padding: 10px;
}

.pd-15 {
  padding: 15px;
}

.pd-20 {
  padding: 20px;
}

.pd-25 {
  padding: 25px;
}

.pd-30 {
  padding: 30px;
}

.pd-40 {
  padding: 40px;
}

.pd-50 {
  padding: 50px;
}

.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

.hide {
  display: none !important;
}

.hide-visibly {
  visibility: hidden;
}

.show-visibly {
  visibility: visible;
}

.show {
  display: block !important;
}

.flex-row-centered {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.flex-row-space-between {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 900px) {
  .flex-row-space-between {
    flex-direction: column;
  }
}

.flex-row-sb {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.border-bottom {
  border-bottom: 1px solid #dbdbdb;
}

.no-shrink {
  flex-shrink: 0;
}

.grow {
  flex-grow: 1;
}

.no-grow {
  flex-grow: 0;
}

.btn-primary-voucher {
  width: 200px;
}

.semibold {
  font-weight: 600;
}

.normal {
  font-weight: 400;
}

.light {
  font-weight: 300;
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.capitalize {
  text-transform: capitalize;
}

.underline {
  text-decoration: underline;
}

.line-through {
  text-decoration: line-through;
}

.strike {
  text-decoration: line-through;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: 700;
}

.flex-row-start {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}

.flex-row-start-center {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

.flex-col-centered {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.flex-col-start {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.error-text {
  color: #f44336;
}

.success-text {
  color: #0075ff;
}

.error-box {
  background-color: #ffeeed;
  color: #f44336;
  border-radius: 8px;
  border: 1px solid #ffccc9;
  padding: 15px 25px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

.ok-box {
  background-color: #f3fff4;
  color: #33b249;
  border-radius: 8px;
  border: 1px solid #33b249;
  padding: 15px 25px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

.alert, .alert-success, .alert-error {
  border-radius: 8px;
  padding: 15px 25px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  margin-bottom: 10px;
}

.alert-error {
  background-color: #ffeeed;
  color: #f44336;
  border: 1px solid #ffccc9;
}

.alert-success {
  background-color: #f3fff4;
  color: #33b249;
  border: 1px solid #33b249;
}

strong {
  font-weight: 600;
}

.gray-text {
  color: #959595;
}

.yellow-text {
  color: #ffbd03;
}

.green-text {
  color: #33b249;
}

.black-text {
  color: #475467;
}

.ad-box {
  background-color: #ffffff;
  color: #3c3c3c;
  border-radius: 8px;
  border: 1px solid #dadada;
  padding: 30px 30px;
  text-align: left;
  width: 100%;
}
@media (max-width: 900px) {
  .ad-box {
    padding: 25px 25px;
  }
}

.ad-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 29px;
}

.ad-description {
  font-size: 15px;
  font-weight: 400;
  color: #878787;
  line-height: 22px;
}

.ls-small {
  letter-spacing: -0.3px;
}

.pill {
  border-radius: 50px;
  padding: 5px 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  background-color: #eff8ff;
  border: 1px solid #b2ddff;
  color: #175cd3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.pill-created {
  background-color: #eff8ff;
  border: 1px solid #b2ddff;
  color: #175cd3;
}

.pill-error {
  background-color: #fff0f0;
  border: 1px solid #ffcccc;
  color: #ff3333;
}

.pill-warning {
  background-color: #fff9e6;
  border: 1px solid #ffd699;
  color: #ff9900;
}

.pill-paid {
  background-color: #ecfdf3;
  border: 1px solid #abefc6;
  color: #067647;
}

.table {
  border-radius: 8px;
  border: 1px solid #dbdbdb;
  background-color: white;
}

.table-cell-header {
  align-items: center;
  color: #475467;
  display: flex;
  flex-direction: row;
  font-size: 14px;
  font-weight: 500;
  gap: 10px;
  justify-content: space-between;
  line-height: 24px;
  padding: 25px 25px;
  text-align: left;
  width: 100%;
  border-bottom: 1px solid #dbdbdb;
}

.table-cell {
  align-items: center;
  color: #959595;
  display: flex;
  flex-direction: row;
  font-size: 14px;
  font-weight: 400;
  gap: 10px;
  justify-content: space-between;
  line-height: 24px;
  padding: 15px 25px;
  text-align: left;
  width: 100%;
  border-bottom: 1px solid #dbdbdb;
}
.table-cell:last-child {
  border-bottom: none;
}
@media (max-width: 900px) {
  .table-cell {
    padding: 15px 20px;
  }
}

.border {
  border: 1px solid #dbdbdb;
  border-radius: 8px;
}

.bg-white {
  background-color: white;
}

.card-visa,
.card-mastercard,
.card-elo,
.card-amex,
.card-hipercard {
  background-size: cover;
  display: block;
  width: 50px;
  height: 30px;
  display: inline-block;
  margin-right: 15px;
}
@media (max-width: 900px) {
  .card-visa,
  .card-mastercard,
  .card-elo,
  .card-amex,
  .card-hipercard {
    width: 44px;
    height: 25px;
    margin-right: 10px;
  }
}

.card-visa {
  background-image: url("/assets/visa-246c8ced751cbc185c891163d6b47514ceff57c1.svg");
}

.card-mastercard {
  background-image: url("/assets/mastercard-287d27b5ff97613e394757d72cf755cabb3f80e4.svg");
}

.card-elo {
  background-image: url("/assets/elo-0ee26f2fcee0a9c1713d3139084a4be24da46c08.svg");
}

.card-hipercard {
  background-image: url("/assets/hipercard-0d88227240583f6c0bf33537139dd08431765dc7.svg");
}

.card-amex {
  background-image: url("/assets/amex-bb89b0eef3223cfea5c71c08d56fcde0b0d1202d.svg");
}

.mb-12-7 {
  margin-bottom: 12px;
}
@media (max-width: 900px) {
  .mb-12-7 {
    margin-bottom: 7px;
  }
}

.mb-bigger {
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .mb-bigger {
    margin-bottom: 15px;
  }
}

.mb-small {
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .mb-small {
    margin-bottom: 10px;
  }
}
.mb-small:last-child {
  margin-bottom: 0;
}

.order-padding,
.address-padding {
  padding: 30px;
}
@media (max-width: 900px) {
  .order-padding,
  .address-padding {
    padding: 30px 20px;
  }
}

.delete-confirmation-overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 10;
  transition: background-color 1s ease, visibility 1s ease;
  cursor: pointer;
}

.delete-confirmation--open {
  visibility: visible;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-box {
  visibility: hidden;
  opacity: 0;
  background-color: white;
  color: #3c3c3c;
  border-radius: 10px;
  border: 1px solid #dadada;
  padding: 35px 28px;
  text-align: left;
  width: 500px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease, visibility 1s ease;
  z-index: 20;
}
@media (max-width: 900px) {
  .modal-box {
    padding: 30px 25px;
    max-width: 500px;
    width: 100%;
  }
}
@media (max-width: 550px) {
  .modal-box {
    padding: 25px 20px 25px;
    width: calc(100% - 40px);
  }
}

.modal-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 29px;
  margin-bottom: 10px;
}
@media (max-width: 900px) {
  .modal-title {
    font-size: 18px;
  }
}
.modal-title i {
  margin-right: 10px;
}

.modal-description {
  font-size: 16px;
  font-weight: 400;
  color: #676767;
  line-height: 24px;
  margin-bottom: 30px;
}

.show-modal {
  visibility: visible;
  opacity: 1;
}

.close-btn {
  width: 20px;
  color: #959595;
  font-size: 18px;
  height: 20px;
  position: absolute;
  top: 7px;
  right: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.relative {
  position: relative;
}

.card-wrapper {
  align-items: flex-start;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #dbdbdb;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 10px;
  min-height: 52px;
  padding: 30px 20px;
  width: 100%;
}
.card-wrapper:hover {
  background-color: #ecf1ff;
}
@media (max-width: 900px) {
  .card-wrapper {
    padding: 30px 20px;
  }
}

.span-location svg {
  margin-right: 10px;
  fill: #101010;
  width: 20px;
}

.card-digits {
  font-size: 16px;
  font-weight: 400;
  color: #101010;
  margin-bottom: 8px;
}

.card-expiration {
  font-size: 16px;
  font-weight: 400;
  color: #959595;
  margin-bottom: 25px;
}

.card-primary {
  font-size: 16px;
  font-weight: 400;
  color: #959595;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}
.card-primary i {
  margin-right: 10px;
  color: #33b249;
}
.card-primary svg {
  margin-right: 10px;
  fill: #33b249;
  width: 20px;
}

.black {
  color: #101010;
}

.no-content-box {
  align-items: center;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #dbdbdb;
  color: #979797;
  display: flex;
  flex-direction: row;
  font-size: 16px;
  font-weight: 400;
  min-height: 60px;
  justify-content: flex-start;
  line-height: 24px;
  margin-bottom: 10px;
  padding: 15px 20px;
  text-align: left;
  width: 100%;
}
.no-content-box i {
  margin-right: 10px;
  color: #ffbd03;
}

.products-page {
  padding: 20px 0px;
  margin: 0;
  max-width: none;
  min-width: 280px;
}
@media (max-width: 768px) {
  .products-page {
    padding: 10px 0px;
  }
}
.products-page .index-container {
  max-width: 1360px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .products-page .index-container {
    margin-top: 20px !important;
  }
}
.products-page .index-container .products-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 40px;
}
@media (max-width: 768px) {
  .products-page .index-container .products-wrapper {
    gap: 30px;
  }
}
.products-page .index-container .products-wrapper .store-title-and-description .title {
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 3px;
  letter-spacing: -0.3px;
  font-weight: 600;
}
@media (max-width: 900px) {
  .products-page .index-container .products-wrapper .store-title-and-description .title {
    font-size: 24px;
  }
}
@media (max-width: 425px) {
  .products-page .index-container .products-wrapper .store-title-and-description .title {
    font-size: 20px;
  }
}
.products-page .index-container .products-wrapper .store-title-and-description .description {
  font-size: 18px;
  font-weight: 400;
  color: rgba(71, 84, 103, 0.7803921569);
  line-height: 22px;
  margin-top: 6px;
}
@media (max-width: 900px) {
  .products-page .index-container .products-wrapper .store-title-and-description .description {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .products-page .index-container .products-wrapper .store-title-and-description .description {
    font-size: 14px;
  }
}
.products-page .index-container .products-wrapper .products-section {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
@media (max-width: 900px) {
  .products-page .index-container .products-wrapper .products-section {
    gap: 30px;
  }
}
@media (max-width: 768px) {
  .products-page .index-container .products-wrapper .products-section {
    gap: 20px;
  }
}
.products-page .index-container .products-wrapper .products-section .products-index {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  gap: 10px;
}
@media (max-width: 768px) {
  .products-page .index-container .products-wrapper .products-section .products-index {
    width: 100%;
  }
}
.products-page .index-container .products-wrapper .products-section .products-index .filter-indicator {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}
.products-page .index-container .products-wrapper .products-section .products-index .filter-indicator .filter-badge {
  display: inline-flex;
  align-items: center;
  background-color: #0075ff;
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
}
.products-page .index-container .products-wrapper .products-section .products-index .filter-indicator .filter-badge .clear-filter {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  padding: 0;
  margin-left: 5px;
}
@media (max-width: 550px) {
  .products-page .index-container .products-wrapper .products-section .products-index .filter-indicator .filter-badge .clear-filter {
    font-size: 14px;
  }
}
.products-page .index-container .products-wrapper .products-section .products-index .filter-indicator .filter-badge .clear-filter:hover {
  opacity: 0.8;
}
.products-page .index-container .products-wrapper .products-section .products-index .products-grid {
  display: grid;
  width: 100%;
  height: auto;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: stretch;
  justify-content: start;
}
@media (max-width: 1250px) {
  .products-page .index-container .products-wrapper .products-section .products-index .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}
@media (max-width: 900px) {
  .products-page .index-container .products-wrapper .products-section .products-index .products-grid {
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .products-page .index-container .products-wrapper .products-section .products-index .products-grid {
    gap: 20px;
  }
}
@media (max-width: 550px) {
  .products-page .index-container .products-wrapper .products-section .products-index .products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}
@media (max-width: 375px) {
  .products-page .index-container .products-wrapper .products-section .products-index .products-grid {
    gap: 15px;
  }
}

.container {
  padding: 0 30px;
}
@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }
}
.container .product-wrapper {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  max-width: 1360px;
}
.container .product-wrapper .info-section {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .container .product-wrapper .info-section {
    flex-direction: column;
  }
}

.categories-wrapper {
  display: flex;
  height: 100%;
  width: 280px;
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .categories-wrapper {
    display: none;
  }
}
.categories-wrapper .categories-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: #3c3c3c;
}
.categories-wrapper .categories {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  gap: 25px;
}
.categories-wrapper .categories .category {
  color: #475467;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: -0.3px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  user-select: none;
  flex-direction: row;
  cursor: pointer;
}
.categories-wrapper .categories .category:hover {
  color: #0075ff;
}
.categories-wrapper .categories .category i {
  width: 20px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.categories-wrapper .categories .category svg {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}
.categories-wrapper .categories .category.active {
  color: #0075ff;
  background-color: rgba(0, 117, 255, 0.1);
  border-radius: 8px;
  padding: 10px 15px;
  margin: -10px -15px;
}
.categories-wrapper .categories .category.active svg {
  fill: #0075ff;
}
.categories-wrapper .categories .category.soon {
  color: rgba(100, 100, 100, 0.556);
  cursor: default;
}
.categories-wrapper .categories .category.soon svg {
  fill: rgba(100, 100, 100, 0.556);
}

.cart-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 120vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.11);
  transition: opacity 0.2s ease-in-out;
  z-index: 980;
}
.cart-overlay--closed {
  pointer-events: none;
  opacity: 0;
}
.cart-overlay--open {
  pointer-events: all;
  opacity: 1;
}

.cart {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100%;
  padding: 100px 30px 20px;
  background-color: #fff;
  border-left: 1px solid #d8d8d8;
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  overflow: visible;
}
.cart--closed {
  transform: translateX(100%);
}
.cart--open {
  transform: translateX(0);
}
.cart .cart-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 29px;
  color: #3c3c3c;
}
.cart .cart-description {
  font-size: 15px;
  font-weight: 400;
  color: #878787;
  line-height: 22px;
  margin-bottom: 30px;
}
.cart .cart-list {
  display: flex;
  flex-direction: column;
  height: calc(100% - 230px);
}
.cart .cart-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}
.cart .cart-item:last-child {
  border-bottom: none;
}
.cart .cart-item .cart-item-image {
  flex-shrink: 0;
  width: 60px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
}
.cart .cart-item .cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart .cart-item .cart-item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart .cart-item .cart-item-info .cart-item-name {
  font-size: 14px;
  font-weight: 600;
  color: #3c3c3c;
  line-height: 1.4;
  margin-bottom: 5px;
}
.cart .cart-item .cart-item-info .cart-item-price {
  font-size: 14px;
  font-weight: 600;
  color: #858585;
}
.cart .cart-item .cart-item-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart .cart-quantity-field {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart .cart-quantity-field .cart-quantity-field-buttons {
  display: flex;
  align-items: center;
}
.cart .cart-quantity-field .cart-quantity-field-buttons .quantity-btn {
  width: 24px;
  height: 24px;
  border: 1px solid #e0e0e0;
  background-color: #f8f9fa;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  color: #495057;
  cursor: pointer;
  transition: all 0.15s ease;
}
.cart .cart-quantity-field .cart-quantity-field-buttons .quantity-btn:hover:not(:disabled) {
  background-color: #e9ecef;
  border-color: #ced4da;
  transform: translateY(-1px);
}
.cart .cart-quantity-field .cart-quantity-field-buttons .quantity-btn:active:not(:disabled) {
  transform: translateY(0);
}
.cart .cart-quantity-field .cart-quantity-field-buttons .quantity-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.cart .cart-quantity-field .cart-quantity-field-buttons .cart-item-quantity {
  min-width: 24px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: #495057;
  padding: 0 4px;
}
.cart .remove-btn {
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart .remove-btn:hover {
  background-color: #f5f5f5;
}
.cart .remove-btn .trash-icon {
  width: 16px;
  height: 16px;
  transition: opacity 0.2s ease;
}
.cart .cart-total-resume {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}
.cart .cart-total-resume .key-value {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.cart .cart-total-resume .key-value .key {
  font-size: 16px;
  font-weight: 600;
  color: #3c3c3c;
}
.cart .cart-total-resume .key-value .value {
  font-size: 16px;
  font-weight: 600;
  color: #3c3c3c;
}
.cart .checkout-button {
  margin-top: 20px;
}
.cart .checkout-button button {
  width: 100%;
  padding: 12px 20px;
  background-color: #0075ff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.cart .checkout-button button:hover {
  background-color: #0061d0;
}

@media (max-width: 768px) {
  .cart {
    width: 80vw;
    padding: 80px 20px 20px;
  }
  .cart .cart-item .cart-item-image {
    width: 60px;
    height: 71px;
  }
  .cart .cart-item .cart-item-info .cart-item-name {
    font-size: 13px;
  }
  .cart .cart-item .cart-item-info .cart-item-price {
    font-size: 13px;
  }
  .cart .cart-quantity-field .cart-quantity-field-buttons {
    gap: 6px;
  }
  .cart .cart-quantity-field .cart-quantity-field-buttons .quantity-btn {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
  .cart .cart-quantity-field .cart-quantity-field-buttons .cart-item-quantity {
    font-size: 12px;
  }
  .cart .remove-btn {
    padding: 6px;
  }
  .cart .remove-btn .trash-icon {
    width: 16px;
    height: 16px;
  }
}
.product-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  background-color: white;
  text-decoration: none;
  height: 100%;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (max-width: 375px) {
  .product-box {
    border-radius: 6px;
  }
}
.product-box .product-image {
  height: 350px;
  background-position: center;
  background-size: cover;
  border-radius: 8px 8px 0 0;
}
@media (max-width: 1440px) {
  .product-box .product-image {
    height: 400px;
  }
}
@media (max-width: 1024px) {
  .product-box .product-image {
    height: 320px;
  }
}
@media (max-width: 900px) {
  .product-box .product-image {
    height: 280px;
  }
}
@media (max-width: 768px) {
  .product-box .product-image {
    height: 250px;
  }
}
@media (max-width: 550px) {
  .product-box .product-image {
    height: 220px;
  }
}
@media (max-width: 425px) {
  .product-box .product-image {
    height: 200px;
  }
}
@media (max-width: 375px) {
  .product-box .product-image {
    height: 180px;
    border-radius: 6px 6px 0 0;
  }
}
@media (max-width: 320px) {
  .product-box .product-image {
    height: 160px;
  }
}
.product-box .product-discount {
  position: absolute;
  top: -3px;
  right: -3px;
  background-color: #61c25c;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.7px;
  padding: 6px 10px;
  border-radius: 6px;
  z-index: 1;
}
@media (max-width: 1024px) {
  .product-box .product-discount {
    font-size: 14px;
    padding: 5px 8px;
  }
}
@media (max-width: 900px) {
  .product-box .product-discount {
    font-size: 13px;
    padding: 4px 7px;
  }
}
.product-box .product-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  flex: 1;
  gap: 20px;
}
@media (max-width: 1440px) {
  .product-box .product-info {
    padding: 35px;
    gap: 25px;
  }
}
@media (max-width: 1024px) {
  .product-box .product-info {
    padding: 25px;
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .product-box .product-info {
    padding: 20px;
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .product-box .product-info {
    padding: 18px;
    gap: 12px;
  }
}
@media (max-width: 550px) {
  .product-box .product-info {
    padding: 15px;
    gap: 10px;
  }
}
@media (max-width: 425px) {
  .product-box .product-info {
    padding: 16px;
    gap: 8px;
  }
}
.product-box .product-info .product-text-fields .product-name-and-price .name, .product-box .product-info .product-text-fields .product-name-and-price a {
  font-weight: 600;
  font-size: 18px;
  line-height: 29px;
  color: #3c3c3c;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1440px) {
  .product-box .product-info .product-text-fields .product-name-and-price .name, .product-box .product-info .product-text-fields .product-name-and-price a {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (max-width: 1024px) {
  .product-box .product-info .product-text-fields .product-name-and-price .name, .product-box .product-info .product-text-fields .product-name-and-price a {
    font-size: 17px;
    line-height: 27px;
  }
}
@media (max-width: 900px) {
  .product-box .product-info .product-text-fields .product-name-and-price .name, .product-box .product-info .product-text-fields .product-name-and-price a {
    font-size: 16px;
    line-height: 25px;
  }
}
@media (max-width: 768px) {
  .product-box .product-info .product-text-fields .product-name-and-price .name, .product-box .product-info .product-text-fields .product-name-and-price a {
    font-size: 15px;
    line-height: 23px;
  }
}
@media (max-width: 550px) {
  .product-box .product-info .product-text-fields .product-name-and-price .name, .product-box .product-info .product-text-fields .product-name-and-price a {
    font-size: 14px;
    line-height: 21px;
  }
}
@media (max-width: 425px) {
  .product-box .product-info .product-text-fields .product-name-and-price .name, .product-box .product-info .product-text-fields .product-name-and-price a {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 375px) {
  .product-box .product-info .product-text-fields .product-name-and-price .name, .product-box .product-info .product-text-fields .product-name-and-price a {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 320px) {
  .product-box .product-info .product-text-fields .product-name-and-price .name, .product-box .product-info .product-text-fields .product-name-and-price a {
    font-size: 14px;
    line-height: 18px;
  }
}
.product-box .product-info .product-text-fields .product-name-and-price .price {
  font-weight: 600;
  font-size: 18px;
  line-height: 29px;
  color: #3c3c3c;
  font-family: "montserrat", sans-serif;
}
@media (max-width: 1440px) {
  .product-box .product-info .product-text-fields .product-name-and-price .price {
    font-size: 20px;
    line-height: 32px;
  }
}
@media (max-width: 1024px) {
  .product-box .product-info .product-text-fields .product-name-and-price .price {
    font-size: 17px;
    line-height: 27px;
  }
}
@media (max-width: 900px) {
  .product-box .product-info .product-text-fields .product-name-and-price .price {
    font-size: 16px;
    line-height: 25px;
  }
}
@media (max-width: 768px) {
  .product-box .product-info .product-text-fields .product-name-and-price .price {
    font-size: 15px;
    line-height: 23px;
  }
}
@media (max-width: 550px) {
  .product-box .product-info .product-text-fields .product-name-and-price .price {
    font-size: 14px;
    line-height: 21px;
  }
}
@media (max-width: 425px) {
  .product-box .product-info .product-text-fields .product-name-and-price .price {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 375px) {
  .product-box .product-info .product-text-fields .product-name-and-price .price {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (max-width: 320px) {
  .product-box .product-info .product-text-fields .product-name-and-price .price {
    font-size: 16px;
    line-height: 22px;
  }
}
.product-box .product-info .product-text-fields .product-name-and-price .price .installments, .product-box .product-info .product-text-fields .product-name-and-price .price .original-price {
  display: inline-block;
  font-size: 14px;
  color: #878787;
  font-weight: 400;
  margin-right: 5px;
  position: relative;
}
@media (max-width: 1440px) {
  .product-box .product-info .product-text-fields .product-name-and-price .price .installments, .product-box .product-info .product-text-fields .product-name-and-price .price .original-price {
    font-size: 15px;
  }
}
@media (max-width: 1024px) {
  .product-box .product-info .product-text-fields .product-name-and-price .price .installments, .product-box .product-info .product-text-fields .product-name-and-price .price .original-price {
    font-size: 13px;
  }
}
@media (max-width: 900px) {
  .product-box .product-info .product-text-fields .product-name-and-price .price .installments, .product-box .product-info .product-text-fields .product-name-and-price .price .original-price {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .product-box .product-info .product-text-fields .product-name-and-price .price .installments, .product-box .product-info .product-text-fields .product-name-and-price .price .original-price {
    font-size: 11px;
  }
}
@media (max-width: 550px) {
  .product-box .product-info .product-text-fields .product-name-and-price .price .installments, .product-box .product-info .product-text-fields .product-name-and-price .price .original-price {
    font-size: 10px;
  }
}
@media (max-width: 425px) {
  .product-box .product-info .product-text-fields .product-name-and-price .price .installments, .product-box .product-info .product-text-fields .product-name-and-price .price .original-price {
    font-size: 14px;
  }
}
@media (max-width: 375px) {
  .product-box .product-info .product-text-fields .product-name-and-price .price .installments, .product-box .product-info .product-text-fields .product-name-and-price .price .original-price {
    font-size: 14px;
  }
}
@media (max-width: 320px) {
  .product-box .product-info .product-text-fields .product-name-and-price .price .installments, .product-box .product-info .product-text-fields .product-name-and-price .price .original-price {
    font-size: 12px;
  }
}
.product-box .product-info .product-text-fields .product-name-and-price .price .installments .line-through::after, .product-box .product-info .product-text-fields .product-name-and-price .price .original-price .line-through::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 1px;
  background-color: rgba(135, 135, 135, 0.5215686275);
}
.product-box .product-info .product-text-fields .product-name-and-price .rating {
  height: fit-content;
  width: 100%;
}
.product-box .product-info .product-text-fields .product-name-and-price .rating .stars {
  display: flex;
  align-items: center;
  flex-direction: row;
  height: 24px;
}
@media (max-width: 768px) {
  .product-box .product-info .product-text-fields .product-name-and-price .rating .stars {
    height: 20px;
  }
}
@media (max-width: 425px) {
  .product-box .product-info .product-text-fields .product-name-and-price .rating .stars {
    height: 18px;
  }
}
@media (max-width: 375px) {
  .product-box .product-info .product-text-fields .product-name-and-price .rating .stars {
    height: 16px;
  }
}
.product-box .product-info .product-text-fields .product-name-and-price .rating .stars svg {
  display: flex;
  flex-direction: row;
  height: 20px;
  width: 20px;
  fill: #f8c94c;
}
@media (max-width: 768px) {
  .product-box .product-info .product-text-fields .product-name-and-price .rating .stars svg {
    height: 16px;
    width: 16px;
  }
}
@media (max-width: 425px) {
  .product-box .product-info .product-text-fields .product-name-and-price .rating .stars svg {
    height: 14px;
    width: 14px;
  }
}
@media (max-width: 375px) {
  .product-box .product-info .product-text-fields .product-name-and-price .rating .stars svg {
    height: 12px;
    width: 12px;
  }
}
.product-box .product-info .product-buttons {
  align-items: center;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #2e2e2e;
  color: #2e2e2e;
  cursor: pointer;
  display: flex;
  font-size: 15px;
  font-weight: 400;
  height: 50px;
  justify-content: center;
  padding: 10px 20px;
  text-decoration: none;
  width: 100%;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.product-box .product-info .product-buttons:hover {
  background-color: #fafafa;
}
@media (max-width: 1440px) {
  .product-box .product-info .product-buttons {
    font-size: 16px;
    height: 55px;
    padding: 12px 24px;
  }
}
@media (max-width: 1024px) {
  .product-box .product-info .product-buttons {
    font-size: 15px;
    height: 48px;
    padding: 10px 20px;
  }
}
@media (max-width: 900px) {
  .product-box .product-info .product-buttons {
    font-size: 14px;
    height: 45px;
    padding: 8px 16px;
  }
}
@media (max-width: 768px) {
  .product-box .product-info .product-buttons {
    font-size: 13px;
    height: 40px;
    padding: 6px 12px;
  }
}
@media (max-width: 550px) {
  .product-box .product-info .product-buttons {
    font-size: 12px;
    height: 36px;
    padding: 5px 10px;
  }
}
@media (max-width: 425px) {
  .product-box .product-info .product-buttons {
    font-size: 14px;
    height: 40px;
    padding: 8px 12px;
    border-radius: 6px;
  }
}
@media (max-width: 375px) {
  .product-box .product-info .product-buttons {
    font-size: 14px;
    height: 40px;
    padding: 8px 12px;
  }
}
@media (max-width: 320px) {
  .product-box .product-info .product-buttons {
    font-size: 12px;
    height: 36px;
    padding: 6px 10px;
  }
}
.product-box .product-info .product-description {
  font-size: 14px;
  font-weight: 400;
  color: #878787;
  line-height: 22px;
  margin-top: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1440px) {
  .product-box .product-info .product-description {
    font-size: 15px;
    line-height: 24px;
  }
}
@media (max-width: 1024px) {
  .product-box .product-info .product-description {
    font-size: 13px;
    line-height: 20px;
  }
}
@media (max-width: 900px) {
  .product-box .product-info .product-description {
    font-size: 12px;
    line-height: 18px;
  }
}
@media (max-width: 768px) {
  .product-box .product-info .product-description {
    font-size: 11px;
    line-height: 16px;
  }
}
@media (max-width: 550px) {
  .product-box .product-info .product-description {
    font-size: 10px;
    line-height: 14px;
  }
}
@media (max-width: 425px) {
  .product-box .product-info .product-description {
    font-size: 12px;
    line-height: 18px;
  }
}
@media (max-width: 375px) {
  .product-box .product-info .product-description {
    line-height: 18px;
  }
}
@media (max-width: 320px) {
  .product-box .product-info .product-description {
    line-height: 16px;
  }
}

.show-images-wrapper {
  width: 50%;
  height: 100vh;
  position: relative;
}
@media (max-width: 900px) {
  .show-images-wrapper {
    width: 100%;
    height: auto;
    order: -1;
  }
}
.show-images-wrapper .show-images {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media (max-width: 768px) {
  .show-images-wrapper .show-images {
    height: auto;
  }
}
.show-images-wrapper .show-images .carousel-breadcrumb {
  margin-bottom: 15px;
  font-size: 14px;
  color: #6b7280;
}
@media (max-width: 768px) {
  .show-images-wrapper .show-images .carousel-breadcrumb {
    margin-bottom: 10px;
    font-size: 13px;
  }
}
@media (max-width: 375px) {
  .show-images-wrapper .show-images .carousel-breadcrumb {
    font-size: 12px;
  }
}
.show-images-wrapper .show-images .carousel-breadcrumb .breadcrumb-link {
  color: #6b7280;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  transition: color 0.2s ease;
}
@media (max-width: 768px) {
  .show-images-wrapper .show-images .carousel-breadcrumb .breadcrumb-link {
    font-size: 13px;
  }
}
@media (max-width: 375px) {
  .show-images-wrapper .show-images .carousel-breadcrumb .breadcrumb-link {
    font-size: 12px;
  }
}
.show-images-wrapper .show-images .carousel-breadcrumb .breadcrumb-link:hover {
  color: #374151;
}
.show-images-wrapper .show-images .carousel-breadcrumb .breadcrumb-separator {
  margin: 0 6px;
}
@media (max-width: 375px) {
  .show-images-wrapper .show-images .carousel-breadcrumb .breadcrumb-separator {
    margin: 0 4px;
  }
}
.show-images-wrapper .show-images .image-carousel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  user-select: none;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .show-images-wrapper .show-images .image-carousel {
    gap: 15px;
  }
}
@media (max-width: 375px) {
  .show-images-wrapper .show-images .image-carousel {
    gap: 10px;
  }
}
.show-images-wrapper .show-images .image-carousel .main-image-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background-color: #f9fafb;
  cursor: grab;
}
@media (max-width: 768px) {
  .show-images-wrapper .show-images .image-carousel .main-image-container {
    border-radius: 6px;
  }
}
@media (max-width: 375px) {
  .show-images-wrapper .show-images .image-carousel .main-image-container {
    border-radius: 4px;
  }
}
.show-images-wrapper .show-images .image-carousel .main-image-container .carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.show-images-wrapper .show-images .image-carousel .main-image-container .carousel-track .carousel-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}
.show-images-wrapper .show-images .image-carousel .main-image-container .carousel-track .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: grab;
  user-select: none;
}
.show-images-wrapper .show-images .image-carousel .main-image-container .carousel-track .carousel-slide img:active {
  cursor: grabbing;
}
.show-images-wrapper .show-images .image-carousel .main-image-container .nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  opacity: 0;
  z-index: 10;
}
@media (max-width: 768px) {
  .show-images-wrapper .show-images .image-carousel .main-image-container .nav-arrow {
    width: 36px;
    height: 36px;
  }
}
@media (max-width: 375px) {
  .show-images-wrapper .show-images .image-carousel .main-image-container .nav-arrow {
    width: 32px;
    height: 32px;
  }
}
.show-images-wrapper .show-images .image-carousel .main-image-container .nav-arrow:hover {
  background-color: rgba(0, 0, 0, 0.7);
  transform: translateY(-50%) scale(1.1);
}
@media (max-width: 768px) {
  .show-images-wrapper .show-images .image-carousel .main-image-container .nav-arrow:hover {
    transform: translateY(-50%) scale(1.05);
  }
}
.show-images-wrapper .show-images .image-carousel .main-image-container .nav-arrow--prev {
  left: 15px;
}
@media (max-width: 768px) {
  .show-images-wrapper .show-images .image-carousel .main-image-container .nav-arrow--prev {
    left: 12px;
  }
}
@media (max-width: 375px) {
  .show-images-wrapper .show-images .image-carousel .main-image-container .nav-arrow--prev {
    left: 8px;
  }
}
.show-images-wrapper .show-images .image-carousel .main-image-container .nav-arrow--next {
  right: 15px;
}
@media (max-width: 768px) {
  .show-images-wrapper .show-images .image-carousel .main-image-container .nav-arrow--next {
    right: 12px;
  }
}
@media (max-width: 375px) {
  .show-images-wrapper .show-images .image-carousel .main-image-container .nav-arrow--next {
    right: 8px;
  }
}
.show-images-wrapper .show-images .image-carousel .main-image-container .nav-arrow svg {
  width: 20px;
  height: 20px;
}
@media (max-width: 768px) {
  .show-images-wrapper .show-images .image-carousel .main-image-container .nav-arrow svg {
    width: 18px;
    height: 18px;
  }
}
@media (max-width: 375px) {
  .show-images-wrapper .show-images .image-carousel .main-image-container .nav-arrow svg {
    width: 16px;
    height: 16px;
  }
}
.show-images-wrapper .show-images .image-carousel .main-image-container:hover .nav-arrow {
  opacity: 1;
}
@media (max-width: 768px) {
  .show-images-wrapper .show-images .image-carousel .main-image-container .nav-arrow {
    opacity: 0.7;
  }
  .show-images-wrapper .show-images .image-carousel .main-image-container .nav-arrow:hover {
    opacity: 1;
  }
}
.show-images-wrapper .show-images .image-carousel .thumbnails-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: #d1d5db #f3f4f6;
  overflow-y: hidden;
  padding-bottom: 5px;
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  .show-images-wrapper .show-images .image-carousel .thumbnails-container {
    gap: 8px;
    padding-bottom: 3px;
  }
}
@media (max-width: 375px) {
  .show-images-wrapper .show-images .image-carousel .thumbnails-container {
    gap: 6px;
    padding-bottom: 2px;
  }
}
.show-images-wrapper .show-images .image-carousel .thumbnails-container::-webkit-scrollbar {
  height: 6px;
}
@media (max-width: 375px) {
  .show-images-wrapper .show-images .image-carousel .thumbnails-container::-webkit-scrollbar {
    height: 4px;
  }
}
.show-images-wrapper .show-images .image-carousel .thumbnails-container::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 3px;
}
.show-images-wrapper .show-images .image-carousel .thumbnails-container::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 3px;
}
.show-images-wrapper .show-images .image-carousel .thumbnails-container::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}
.show-images-wrapper .show-images .image-carousel .thumbnails-container .thumbnail {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #f9fafb;
}
@media (max-width: 768px) {
  .show-images-wrapper .show-images .image-carousel .thumbnails-container .thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 5px;
  }
}
@media (max-width: 375px) {
  .show-images-wrapper .show-images .image-carousel .thumbnails-container .thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    border-width: 1px;
  }
}
.show-images-wrapper .show-images .image-carousel .thumbnails-container .thumbnail.active {
  border-color: #3b82f6;
}
.show-images-wrapper .show-images .image-carousel .thumbnails-container .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 320px) {
  .show-images-wrapper .show-images .image-carousel .main-image-container {
    min-height: 250px;
  }
  .show-images-wrapper .show-images .image-carousel .thumbnails-container .thumbnail {
    width: 50px;
    height: 50px;
  }
}

.side-info {
  width: 44%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media (max-width: 1024px) {
  .side-info {
    width: 45%;
  }
}
@media (max-width: 900px) {
  .side-info {
    width: 100%;
    min-height: auto;
  }
}
@media (max-width: 768px) {
  .side-info {
    width: 100%;
    min-height: auto;
  }
}
.side-info.product-details .name-and-price-info {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}
@media (max-width: 768px) {
  .side-info.product-details .name-and-price-info {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
  }
}
@media (max-width: 425px) {
  .side-info.product-details .name-and-price-info {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
  }
}
.side-info.product-details .name-and-price-info .product-name {
  margin-top: 49px;
}
@media (max-width: 900px) {
  .side-info.product-details .name-and-price-info .product-name {
    margin-top: 0;
  }
}
.side-info.product-details .name-and-price-info .product-name h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.25;
  margin: 0;
}
@media (max-width: 768px) {
  .side-info.product-details .name-and-price-info .product-name h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 425px) {
  .side-info.product-details .name-and-price-info .product-name h2 {
    font-size: 1.375rem;
  }
}
@media (max-width: 375px) {
  .side-info.product-details .name-and-price-info .product-name h2 {
    font-size: 1.25rem;
  }
}
.side-info.product-details .name-and-price-info .price-section {
  margin-bottom: 1rem;
  display: flex;
  text-align: center;
  align-items: center;
  gap: 8px;
}
@media (max-width: 768px) {
  .side-info.product-details .name-and-price-info .price-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    text-align: left;
  }
}
.side-info.product-details .name-and-price-info .price-section .installments-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .side-info.product-details .name-and-price-info .price-section .installments-info {
    width: 100%;
  }
}
.side-info.product-details .name-and-price-info .price-section .installments-info .installment-count {
  background-color: #fbbf24;
  color: white;
  padding: 2px 5px;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  align-self: flex-end;
}
@media (max-width: 768px) {
  .side-info.product-details .name-and-price-info .price-section .installments-info .installment-count {
    align-self: center;
  }
}
@media (max-width: 375px) {
  .side-info.product-details .name-and-price-info .price-section .installments-info .installment-count {
    font-size: 0.75rem;
    padding: 1px 4px;
  }
}
.side-info.product-details .name-and-price-info .price-section .installments-info .installment-price {
  font-size: 1.5rem;
  color: #374151;
  align-self: flex-end;
  font-weight: 700;
  line-height: 21px;
}
@media (max-width: 768px) {
  .side-info.product-details .name-and-price-info .price-section .installments-info .installment-price {
    align-self: center;
    font-size: 1.375rem;
  }
}
@media (max-width: 375px) {
  .side-info.product-details .name-and-price-info .price-section .installments-info .installment-price {
    font-size: 1.25rem;
  }
}
.side-info.product-details .name-and-price-info .price-section .original-and-discount {
  display: flex;
  gap: 6px;
}
.side-info.product-details .name-and-price-info .price-section .original-and-discount .original-price {
  display: flex;
  align-items: center;
  margin-top: 4px;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .side-info.product-details .name-and-price-info .price-section .original-and-discount .original-price {
    align-self: flex-start;
    gap: 0.5rem;
  }
}
.side-info.product-details .name-and-price-info .price-section .original-and-discount .original-price .price-value {
  font-size: 1rem;
  font-weight: 500;
  text-decoration: line-through;
  color: #828fa2;
}
@media (max-width: 375px) {
  .side-info.product-details .name-and-price-info .price-section .original-and-discount .original-price .price-value {
    font-size: 0.875rem;
  }
}
.side-info.product-details .name-and-price-info .price-section .original-and-discount .product-discount {
  background-color: #61c25c;
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.7px;
  padding: 4px 9px;
  border-radius: 6px;
  align-self: center;
  z-index: 1;
}
@media (max-width: 1024px) {
  .side-info.product-details .name-and-price-info .price-section .original-and-discount .product-discount {
    font-size: 14px;
    padding: 5px 8px;
  }
}
@media (max-width: 900px) {
  .side-info.product-details .name-and-price-info .price-section .original-and-discount .product-discount {
    font-size: 13px;
    padding: 4px 7px;
  }
}
@media (max-width: 550px) {
  .side-info.product-details .name-and-price-info .price-section .original-and-discount .product-discount {
    font-size: 12px;
    padding: 3px 6px;
  }
}
@media (max-width: 425px) {
  .side-info.product-details .name-and-price-info .price-section .original-and-discount .product-discount {
    font-size: 11px;
    padding: 2px 5px;
    border-radius: 4px;
  }
}
.side-info.product-details .name-and-price-info .rating-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 375px) {
  .side-info.product-details .name-and-price-info .rating-section {
    gap: 0.5rem;
  }
}
.side-info.product-details .name-and-price-info .rating-section .stars-container {
  display: flex;
  gap: 0.125rem;
}
.side-info.product-details .name-and-price-info .rating-section .stars-container .star-icon {
  fill: #fbbf24;
  width: 16px;
  height: 16px;
}
@media (max-width: 375px) {
  .side-info.product-details .name-and-price-info .rating-section .stars-container .star-icon {
    width: 14px;
    height: 14px;
  }
}
.side-info.product-details .name-and-price-info .rating-section .rating-text {
  color: #6b7280;
  font-size: 0.875rem;
}
@media (max-width: 375px) {
  .side-info.product-details .name-and-price-info .rating-section .rating-text {
    font-size: 0.75rem;
  }
}
.side-info.product-details .product-purchase-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .side-info.product-details .product-purchase-wrapper {
    justify-content: center;
  }
}
.side-info.product-details .product-purchase-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 500px;
}
@media (max-width: 768px) {
  .side-info.product-details .product-purchase-section {
    gap: 0.875rem;
    width: 500px;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 425px) {
  .side-info.product-details .product-purchase-section {
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
}
.side-info.product-details .product-purchase-section .quantity-and-cart-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
@media (max-width: 768px) {
  .side-info.product-details .product-purchase-section .quantity-and-cart-row {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }
}
@media (max-width: 375px) {
  .side-info.product-details .product-purchase-section .quantity-and-cart-row {
    gap: 0.5rem;
  }
}
.side-info.product-details .product-purchase-section .quantity-and-cart-row .quantity-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  width: 30%;
}
@media (max-width: 768px) {
  .side-info.product-details .product-purchase-section .quantity-and-cart-row .quantity-section {
    gap: 0.75rem;
    justify-content: center;
    width: 100%;
  }
}
@media (max-width: 375px) {
  .side-info.product-details .product-purchase-section .quantity-and-cart-row .quantity-section {
    gap: 0.5rem;
  }
}
.side-info.product-details .product-purchase-section .quantity-and-cart-row .quantity-section .quantity-label {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .side-info.product-details .product-purchase-section .quantity-and-cart-row .quantity-section .quantity-label {
    font-size: 0.875rem;
  }
}
@media (max-width: 375px) {
  .side-info.product-details .product-purchase-section .quantity-and-cart-row .quantity-section .quantity-label {
    font-size: 0.8rem;
  }
}
.side-info.product-details .product-purchase-section .quantity-and-cart-row .add-to-cart-wrapper {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .side-info.product-details .product-purchase-section .quantity-and-cart-row .add-to-cart-wrapper {
    width: 100%;
  }
}
.side-info.product-details .product-purchase-section .buy-now-section {
  width: 100%;
}
.side-info.product-details .product-purchase-section .buy-now-section .buy-now-btn {
  width: 100%;
}
@media (max-width: 768px) {
  .side-info.product-details .product-info-tabs {
    margin-top: 1rem;
  }
}
.side-info.product-details .product-info-tabs .tab-buttons {
  display: flex;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  font-family: inherit;
}
@media (max-width: 768px) {
  .side-info.product-details .product-info-tabs .tab-buttons {
    margin-bottom: 1rem;
  }
}
@media (max-width: 375px) {
  .side-info.product-details .product-info-tabs .tab-buttons {
    border-radius: 4px;
    margin-bottom: 0.75rem;
  }
}
.side-info.product-details .product-info-tabs .tab-buttons .tab-button {
  background: none;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 16px;
  cursor: pointer;
  font-weight: 500;
  color: #6b7280;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease-in-out;
  flex: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .side-info.product-details .product-info-tabs .tab-buttons .tab-button {
    padding: 0.625rem 0.75rem;
    font-size: 13px;
  }
}
.side-info.product-details .product-info-tabs .tab-buttons .tab-button:hover {
  color: #374151;
  background-color: #f9fafb;
}
.side-info.product-details .product-info-tabs .tab-buttons .tab-button.active {
  color: #0075ff;
  background-color: #ffffff;
}
.side-info.product-details .product-info-tabs .tab-buttons .tab-button:not(:first-child):not(:last-child) {
  border-left: 1px solid #e5e7eb;
  border-right: 1px solid #e5e7eb;
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .side-info.product-details .product-info-tabs .tab-content .tab-panel {
    font-size: 14px;
  }
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInUp 0.3s ease-out;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel .content-text {
  line-height: 1.75;
  color: #374151;
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel .content-text p {
  margin-bottom: 1rem;
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel .content-text p:last-child {
  margin-bottom: 0;
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel .content-text .details-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel .content-text .details-list li {
  padding: 0.5rem 0 0;
  border-bottom: 1px solid #f3f4f6;
  display: flex;
  gap: 0.5rem;
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel .content-text .details-list li:last-child {
  border-bottom: none;
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel .content-text .details-list li strong {
  color: #1f2937;
  min-width: 100px;
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel .content-text .details-list li svg {
  width: 16px;
  height: 16px;
  fill: #1f2937;
  margin-top: 5px;
  margin-right: 5px;
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel .content-text .review-summary {
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel .content-text .review-summary .average-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel .content-text .review-summary .average-rating .rating-number {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel .content-text .review-summary .average-rating .stars-small {
  display: flex;
  gap: 0.125rem;
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel .content-text .review-summary .average-rating .stars-small .star-icon.small {
  fill: #fbbf24;
  width: 12px;
  height: 12px;
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel .content-text .review-summary .total-reviews {
  color: #6b7280;
  font-size: 0.875rem;
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel .content-text .sample-reviews .review-item {
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel .content-text .sample-reviews .review-item:last-child {
  margin-bottom: 0;
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel .content-text .sample-reviews .review-item .reviewer-name {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel .content-text .sample-reviews .review-item .review-rating {
  margin-bottom: 0.5rem;
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel .content-text .sample-reviews .review-item .review-text {
  color: #6b7280;
  font-style: italic;
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel .content-text .sample-reviews .review-item .stars-small {
  display: flex;
  gap: 0.125rem;
  margin-bottom: 3px;
}
.side-info.product-details .product-info-tabs .tab-content .tab-panel .content-text .sample-reviews .review-item .stars-small .star-icon.small {
  fill: #fbbf24;
  width: 12px;
  height: 12px;
}
.side-info .name-and-price-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.side-info .name-and-price-info .name {
  font-size: 28px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: -0.3px;
}
.side-info .name-and-price-info .price {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.side-info .name-and-price-info .rating .stars svg path {
  fill: #fbbf24;
}
.side-info .buy-buttons {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
  user-select: none;
}
.side-info .buy-buttons .button_to {
  width: 100%;
}
.side-info .buy-buttons .button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  font-size: 16px;
  background-color: #f5f7f9;
  border-radius: 6px;
  font-weight: 500;
  align-content: center;
  text-align: center;
  line-height: 20px;
  letter-spacing: 0.2px;
  cursor: pointer;
}
.side-info .buy-buttons .add-to-cart-button {
  border: 1px dashed #0075ff;
  background-color: white;
  color: #0075ff;
  width: 100%;
}
.side-info .buy-buttons .add-to-cart-button:hover {
  background-color: #fbfbfb;
}
.side-info .buy-buttons .buy-button {
  background-color: #0075ff;
  color: white;
  width: 100%;
}
.side-info .side-menu-description {
  width: 100%;
}
.side-info .side-menu-description .side-menu-buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  user-select: none;
}
.side-info .side-menu-description .side-menu-buttons .menu-button {
  width: 100%;
  color: rgb(133, 133, 133);
  font-weight: 500;
  cursor: pointer;
}
.side-info .side-menu-description .side-menu-buttons .menu-button:hover {
  color: rgb(96, 96, 96);
}
.side-info .side-menu-description .side-menu-buttons .menu-button.selected {
  background-color: white;
  border-radius: 4px 4px 0 0;
  color: black;
}
.side-info .side-menu-description .side-menu-result {
  padding: 40px 30px;
  min-height: 500px;
  border-radius: 0 0 4px 4px;
  line-height: 24px;
  color: #808080;
}
.side-info .product-details-table {
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}
@media (max-width: 768px) {
  .side-info .product-details-table {
    border-radius: 6px;
  }
}
@media (max-width: 425px) {
  .side-info .product-details-table {
    border-radius: 4px;
    border: none;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin: 0;
  }
}
.side-info .product-details-table .details-header {
  background: #f9fafb;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}
@media (max-width: 768px) {
  .side-info .product-details-table .details-header {
    padding: 0.75rem;
  }
}
@media (max-width: 375px) {
  .side-info .product-details-table .details-header {
    padding: 0.625rem;
  }
}
.side-info .product-details-table .details-header .details-title {
  color: #374151;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .side-info .product-details-table .details-header .details-title {
    font-size: 1rem;
  }
}
@media (max-width: 375px) {
  .side-info .product-details-table .details-header .details-title {
    font-size: 0.9rem;
  }
}
.side-info .product-details-table .details-grid .detail-row {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  align-items: center;
  border-bottom: 1px solid #f3f4f6;
}
@media (max-width: 425px) {
  .side-info .product-details-table .details-grid .detail-row {
    grid-template-columns: auto 1fr;
  }
}
.side-info .product-details-table .details-grid .detail-row:last-child {
  border-bottom: none;
}
.side-info .product-details-table .details-grid .detail-row .detail-cell {
  padding: 0.75rem 1rem;
}
@media (max-width: 768px) {
  .side-info .product-details-table .details-grid .detail-row .detail-cell {
    padding: 0.625rem;
  }
}
@media (max-width: 425px) {
  .side-info .product-details-table .details-grid .detail-row .detail-cell {
    padding: 0.5rem;
  }
}
.side-info .product-details-table .details-grid .detail-row .detail-cell.icon-cell {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #e5e7eb;
}
@media (max-width: 425px) {
  .side-info .product-details-table .details-grid .detail-row .detail-cell.icon-cell {
    grid-row: 1/3;
    padding: 0.75rem;
  }
}
.side-info .product-details-table .details-grid .detail-row .detail-cell.icon-cell .detail-icon {
  width: 16px;
  height: 16px;
  fill: #6b7280;
}
@media (max-width: 375px) {
  .side-info .product-details-table .details-grid .detail-row .detail-cell.icon-cell .detail-icon {
    width: 14px;
    height: 14px;
  }
}
.side-info .product-details-table .details-grid .detail-row .detail-cell.label-cell {
  border-right: 1px solid #e5e7eb;
}
@media (max-width: 425px) {
  .side-info .product-details-table .details-grid .detail-row .detail-cell.label-cell {
    border-right: none;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 0.25rem;
  }
}
.side-info .product-details-table .details-grid .detail-row .detail-cell.label-cell .detail-label {
  font-weight: 500;
  color: #374151;
  font-size: 0.9rem;
}
@media (max-width: 375px) {
  .side-info .product-details-table .details-grid .detail-row .detail-cell.label-cell .detail-label {
    font-size: 0.8rem;
  }
}
@media (max-width: 425px) {
  .side-info .product-details-table .details-grid .detail-row .detail-cell.value-cell {
    border-top: none;
    padding-top: 0.25rem;
  }
}
.side-info .product-details-table .details-grid .detail-row .detail-cell.value-cell .detail-value {
  color: #1f2937;
  font-size: 0.9rem;
}
@media (max-width: 375px) {
  .side-info .product-details-table .details-grid .detail-row .detail-cell.value-cell .detail-value {
    font-size: 0.8rem;
  }
}

.quantity-selector {
  display: inline-flex;
  align-items: center;
  width: 100%;
}
.quantity-selector__controls {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e0e0e0;
  padding: 0 10px;
  border-radius: 8px;
  width: 100%;
  background-color: #fff;
}
.quantity-selector__btn {
  width: 32px;
  height: 32px;
  border: none;
  background-color: transparent;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
  padding: 10px;
}
@media (max-width: 768px) {
  .quantity-selector__btn {
    width: 36px;
    padding: 0px;
    height: 36px;
  }
}
.quantity-selector__btn svg {
  width: 14px;
  height: 14px;
  fill: #6c757d;
  transition: fill 0.15s ease;
}
.quantity-selector__btn:hover:not(:disabled) {
  background-color: #f8f9fa;
}
.quantity-selector__btn:hover:not(:disabled) svg {
  fill: #495057;
}
.quantity-selector__btn:active:not(:disabled) {
  background-color: #e9ecef;
  transform: scale(0.98);
}
.quantity-selector__btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.quantity-selector__btn:disabled svg {
  fill: #adb5bd;
}
.quantity-selector__btn--minus:disabled {
  background-color: transparent;
}
.quantity-selector__input {
  width: 48px;
  height: 32px;
  border: none !important;
  background: transparent;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #495057;
  outline: none;
  padding: 0 !important;
  margin: 0;
}
.quantity-selector__input::-webkit-outer-spin-button, .quantity-selector__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quantity-selector__input[type=number] {
  appearance: textfield;
  -moz-appearance: textfield;
}
.quantity-selector__input:focus {
  color: #212529;
}
.quantity-selector__input:read-only {
  cursor: default;
}

@media (max-width: 375px) {
  .quantity-selector__controls {
    gap: 6px;
  }
  .quantity-selector__btn {
    width: 28px;
    height: 28px;
  }
  .quantity-selector__input {
    width: 40px;
    height: 28px;
    font-size: 13px;
  }
}
@media (max-width: 320px) {
  .quantity-selector__controls {
    gap: 4px;
  }
  .quantity-selector__btn {
    width: 24px;
    height: 24px;
  }
  .quantity-selector__input {
    width: 36px;
    height: 24px;
    font-size: 12px;
  }
}
.main-body:has(.checkout-form) {
  background-color: white;
  padding: 80px 0px;
}
@media (max-width: 900px) {
  .main-body:has(.checkout-form) {
    padding: 60px 0px;
  }
}

.new-checkout-page {
  margin: 0;
  min-width: 260px;
}
.new-checkout-page .checkout-columns {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  gap: 50px;
}
@media (max-width: 900px) {
  .new-checkout-page .checkout-columns {
    flex-direction: column-reverse;
    gap: 30px;
  }
}

.checkout-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  max-width: 100%;
  padding: 0 30px;
  margin: 0 auto;
}
@media (max-width: 550px) {
  .checkout-wrapper {
    flex-direction: column;
    padding: 0 20px;
  }
}

.cart-side {
  padding: 0 0 20px;
  width: 600px;
  flex-shrink: 0;
  order: 2;
  z-index: 2;
}
@media (max-width: 1100px) {
  .cart-side {
    width: 400px;
  }
}
@media (max-width: 900px) {
  .cart-side {
    padding: 0;
    order: 1;
    max-width: 100%;
    width: 100%;
    background-color: transparent;
    border-left: none;
  }
}

.cart-resume--title {
  font-size: 24px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: -0.2px;
}

.cart-resume--description {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.6);
  letter-spacing: -0.2px;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .cart-resume--description {
    margin-bottom: 20px;
  }
}

.cart-resume--products-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .cart-resume--products-list {
    margin-bottom: 30px;
  }
}

.cart-resume--product-card {
  display: flex;
  flex-direction: row;
  gap: 16px;
  padding: 16px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  background-color: #fafafa;
  transition: all 0.2s ease;
}
.cart-resume--product-card:hover {
  border-color: #d0d0d0;
  background-color: #f5f5f5;
}
@media (max-width: 900px) {
  .cart-resume--product-card {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }
}
@media (max-width: 480px) {
  .cart-resume--product-card {
    padding: 12px;
    gap: 12px;
  }
}

.cart-resume--product-image-area {
  width: 120px;
  height: 120px;
  background-color: #cfcfcf;
  border-radius: 8px;
  flex-shrink: 0;
  flex-grow: 0;
}
@media (max-width: 900px) {
  .cart-resume--product-image-area {
    width: 100%;
    height: 200px;
  }
}
@media (max-width: 480px) {
  .cart-resume--product-image-area {
    width: 80px;
    height: 80px;
  }
}
.cart-resume--product-image-area img {
  border-radius: 8px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-resume--product-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  flex: 1;
}

.cart-resume--product-name {
  font-size: 16px;
  line-height: 22px;
  text-align: left;
  font-weight: 600;
  color: rgba(24, 24, 24, 0.9);
  letter-spacing: -0.3px;
  margin-bottom: 4px;
}
@media (max-width: 480px) {
  .cart-resume--product-name {
    font-size: 14px;
    line-height: 18px;
  }
}

.cart-resume--product-description {
  font-size: 14px;
  line-height: 20px;
  text-align: left;
  font-weight: 400;
  color: #959595;
  letter-spacing: -0.1px;
  margin-bottom: 12px;
}
@media (max-width: 480px) {
  .cart-resume--product-description {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 8px;
  }
}

.cart-resume--product-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: auto;
}
@media (max-width: 900px) {
  .cart-resume--product-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .cart-resume--product-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

.cart-resume--product-quantity {
  font-size: 14px;
  font-weight: 500;
  color: rgba(16, 16, 16, 0.7);
}
@media (max-width: 480px) {
  .cart-resume--product-quantity {
    font-size: 13px;
  }
}

.cart-resume--product-price {
  font-size: 16px;
  font-weight: 700;
  color: rgba(16, 16, 16, 0.9);
}
@media (max-width: 480px) {
  .cart-resume--product-price {
    font-size: 13px;
  }
}

.cart-resume--product-total {
  font-size: 16px;
  font-weight: 700;
  color: rgba(16, 16, 16, 0.9);
}

.cart-resume--product-qtd-area {
  background-color: white;
  border-radius: 5px;
  border: 1px solid #dcdcdc;
  display: flex;
  height: 30px;
  justify-content: space-between;
}
.cart-resume--product-qtd-area .cart--change-qtd-btn {
  cursor: pointer;
  font-size: 14px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
}
.cart-resume--product-qtd-area .cart--change-qtd-btn svg {
  width: 15px;
  height: 15px;
}
.cart-resume--product-qtd-area .cart-quantity-value {
  font-size: 14px;
  font-weight: 400;
  color: #959595;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  border-left: 1px solid #dcdcdc;
  border-right: 1px solid #dcdcdc;
}

.cart-box {
  color: #3c3c3c;
}
.cart-box .cart-resume {
  text-align: left;
  padding: 0 0 0 40px;
}
@media (max-width: 900px) {
  .cart-box .cart-resume {
    padding: 0;
  }
}
.cart-box .cart-resume .cart-header {
  margin-bottom: 20px;
}
.cart-box .cart-resume .cart-header .cart-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 38px;
  color: rgba(0, 0, 0, 0.8);
  letter-spacing: -0.2px;
  margin-bottom: 6px;
}
.cart-box .cart-resume .cart-header .cart-description {
  color: #475467;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
  margin-bottom: 15px;
  padding-left: 2px;
}
@media (max-width: 900px) {
  .cart-box .cart-resume .cart-header .cart-description {
    margin-bottom: 20px;
  }
}
.cart-box .cart-resume .cart-products-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .cart-box .cart-resume .cart-products-list {
    gap: 3px;
  }
}
@media (max-width: 480px) {
  .cart-box .cart-resume .cart-products-list {
    gap: 0px;
  }
}
.cart-box .cart-resume .cart-products-list .cart-product-box {
  position: relative;
  display: flex;
  flex-direction: row;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  transition: all 0.2s ease;
  height: 110px;
}
@media (max-width: 900px) {
  .cart-box .cart-resume .cart-products-list .cart-product-box {
    background-color: white;
    margin-bottom: 12px;
  }
  .cart-box .cart-resume .cart-products-list .cart-product-box:last-child {
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .cart-box .cart-resume .cart-products-list .cart-product-box {
    height: auto;
  }
}
.cart-box .cart-resume .cart-products-list .cart-product-box .cart-quantity-badge {
  position: absolute;
  top: -6px;
  right: -9px;
  width: 24px;
  height: 24px;
  background-color: rgba(52, 58, 64, 0.85);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  z-index: 10;
  backdrop-filter: blur(4px);
}
@media (max-width: 900px) {
  .cart-box .cart-resume .cart-products-list .cart-product-box .cart-quantity-badge {
    width: 23px;
    height: 23px;
    font-size: 13px;
    top: 12px;
    right: 12px;
  }
}
@media (max-width: 480px) {
  .cart-box .cart-resume .cart-products-list .cart-product-box .cart-quantity-badge {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
}
.cart-box .cart-resume .cart-products-list .cart-product-box .cart-product-image {
  width: 120px;
  height: 108px;
  background-color: #cfcfcf;
  border-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  flex-shrink: 0;
  flex-grow: 0;
}
@media (max-width: 480px) {
  .cart-box .cart-resume .cart-products-list .cart-product-box .cart-product-image {
    width: 80px;
    height: 80px;
  }
}
.cart-box .cart-resume .cart-products-list .cart-product-box .cart-product-image img {
  border-radius: 8px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-box .cart-resume .cart-products-list .cart-product-box .cart-product-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 16px;
  width: 100%;
  flex: 1;
}
@media (max-width: 480px) {
  .cart-box .cart-resume .cart-products-list .cart-product-box .cart-product-info {
    font-size: 14px;
    line-height: 18px;
    padding: 12px;
  }
}
.cart-box .cart-resume .cart-products-list .cart-product-box .cart-product-info .cart-product-name {
  font-size: 16px;
  line-height: 22px;
  text-align: left;
  font-weight: 600;
  color: rgba(24, 24, 24, 0.9);
  letter-spacing: -0.3px;
  margin-bottom: 4px;
  padding-right: 18px;
}
@media (max-width: 480px) {
  .cart-box .cart-resume .cart-products-list .cart-product-box .cart-product-info .cart-product-name {
    font-size: 14px;
    line-height: 18px;
  }
}
.cart-box .cart-resume .cart-products-list .cart-product-box .cart-product-info .cart-product-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: auto;
}
@media (max-width: 900px) {
  .cart-box .cart-resume .cart-products-list .cart-product-box .cart-product-info .cart-product-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .cart-box .cart-resume .cart-products-list .cart-product-box .cart-product-info .cart-product-details {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
.cart-box .cart-resume .cart-products-list .cart-product-box .cart-product-info .cart-product-details .cart-price-display {
  font-size: 14px;
  font-weight: 700;
  color: rgba(16, 16, 16, 0.6);
}
@media (max-width: 480px) {
  .cart-box .cart-resume .cart-products-list .cart-product-box .cart-product-info .cart-product-details .cart-price-display {
    font-size: 13px;
  }
}
.cart-box .cart-resume .cart-coupon-section {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .cart-box .cart-resume .cart-coupon-section {
    margin-bottom: 10px;
  }
}
.cart-box .cart-resume .cart-coupon-section .cart-coupon-title {
  font-size: 16px;
  font-weight: 600;
  color: rgba(16, 16, 16, 0.8);
  margin-bottom: 10px;
}
.cart-box .cart-resume .cart-coupon-section .cart-coupon-form {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 5px;
  gap: 10px;
}
@media (max-width: 550px) {
  .cart-box .cart-resume .cart-coupon-section .cart-coupon-form {
    flex-direction: column;
    gap: 10px;
  }
}
.cart-box .cart-resume .cart-coupon-section .cart-coupon-form input {
  flex: 1;
  padding: 12px;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  font-size: 16px;
}
.cart-box .cart-resume .cart-coupon-section .cart-coupon-form input::placeholder {
  color: #999;
  opacity: 0.7;
  font-size: 16px;
}
.cart-box .cart-resume .cart-coupon-section .cart-coupon-form input:focus {
  outline: none;
  border-color: #0075ff;
  box-shadow: 0 0 0 2px rgba(0, 117, 255, 0.1);
}
@media (max-width: 550px) {
  .cart-box .cart-resume .cart-coupon-section .cart-coupon-form input {
    width: 100%;
  }
}
.cart-box .cart-resume .cart-coupon-section .cart-coupon-form .btn-primary-voucher {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 550px) {
  .cart-box .cart-resume .cart-coupon-section .cart-coupon-form .btn-primary-voucher {
    width: 100%;
  }
}
.cart-box .cart-resume .cart-coupon-section .cart-coupon-error {
  font-size: 14px;
  color: #e74c3c;
  padding-left: 5px;
  margin-top: 2px;
}
.cart-box .cart-resume .cart-order-total {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  overflow: hidden;
}
@media (max-width: 900px) {
  .cart-box .cart-resume .cart-order-total {
    border-radius: 6px;
    display: none;
  }
}
.cart-box .cart-resume .cart-order-total .cart-total-details {
  padding: 30px;
  padding-bottom: 25px;
  width: 100%;
}
@media (max-width: 900px) {
  .cart-box .cart-resume .cart-order-total .cart-total-details {
    padding: 20px;
  }
}
.cart-box .cart-resume .cart-order-total .cart-final-total-section {
  background-color: #e9ecef;
  width: 100%;
  padding: 20px 30px;
}
@media (max-width: 900px) {
  .cart-box .cart-resume .cart-order-total .cart-final-total-section {
    padding: 16px 20px;
  }
}
.cart-box .cart-resume .cart-order-total .cart-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e0e0e0;
}
.cart-box .cart-resume .cart-order-total .cart-total-line:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cart-box .cart-resume .cart-order-total .cart-total-line.cart-final-total {
  font-weight: 700;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.cart-box .cart-resume .cart-order-total .cart-total-line.cart-final-total .cart-total-label {
  font-weight: 600;
  color: #475467;
}
.cart-box .cart-resume .cart-order-total .cart-total-line.cart-final-total .cart-total-value {
  color: rgba(16, 16, 16, 0.9);
  font-weight: 600;
}
.cart-box .cart-resume .cart-order-total .cart-total-line.cart-discount-line .cart-total-value {
  color: #e74c3c;
  font-weight: 600;
}
.cart-box .cart-resume .cart-order-total .cart-total-line .cart-total-label {
  font-size: 16px;
  font-weight: 400;
  color: #475467;
}
.cart-box .cart-resume .cart-order-total .cart-total-line .cart-total-value {
  font-size: 16px;
  font-weight: 600;
  color: rgba(16, 16, 16, 0.7);
}

.cart-products-accordion {
  position: relative;
}
@media (max-width: 900px) {
  .cart-products-accordion::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 107%;
    background-color: #f8f9fa;
    z-index: -1;
  }
}
@media (min-width: 901px) {
  .cart-products-accordion .cart-products-toggle {
    display: none !important;
  }
  .cart-products-accordion .cart-products-list {
    max-height: none !important;
    overflow: visible !important;
  }
}
@media (max-width: 900px) {
  .cart-products-accordion .cart-products-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    cursor: pointer;
    border-bottom: 1px solid #e5e5e5;
    user-select: none;
    border: none;
    width: 100%;
  }
  .cart-products-accordion .cart-products-toggle .cart-products-toggle-text {
    font-size: 16px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.8);
  }
  .cart-products-accordion .cart-products-toggle .cart-products-toggle-icon {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.6);
    transition: transform 0.2s ease;
    transform: rotate(90deg);
  }
  .cart-products-accordion .cart-products-toggle .cart-products-toggle-icon svg {
    width: 18px;
    height: 18px;
  }
  .cart-products-accordion .cart-products-toggle.active .cart-products-toggle-icon {
    transform: rotate(-90deg);
  }
  .cart-products-accordion .cart-products-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  .cart-products-accordion .cart-products-list.open {
    max-height: 2000px;
    transition: max-height 0.4s ease-in;
  }
}

.form-column {
  max-width: 1360px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin: 0 auto;
  position: relative;
  gap: 50px;
}
@media (max-width: 1100px) {
  .form-column {
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .form-column {
    flex-direction: column;
    gap: 0;
  }
}

.checkout-form {
  max-width: 720px;
  flex-shrink: 1;
  order: 1;
  z-index: 2;
}
@media (max-width: 900px) {
  .checkout-form {
    order: 2;
    max-width: 100%;
    width: 100%;
  }
}
.checkout-form .form-section {
  margin-bottom: 40px;
}
.checkout-form .form-section .form-section-title {
  color: #101828;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.4px;
  line-height: 38px;
  display: flex;
  align-items: center;
  padding-left: 2px;
}
.checkout-form .form-section .form-section-title i {
  margin-right: 10px;
  font-size: 18px;
}
.checkout-form .form-section .form-section-description {
  color: hsl(216, 18%, 34%);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.3px;
  margin-bottom: 15px;
  padding-left: 2px;
}
.checkout-form .form-new_address .new-address-input-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 900px) {
  .checkout-form .form-new_address .new-address-input-row {
    flex-direction: column;
  }
}
.checkout-form .form-new_address .new-address-input-row .new-address-input-field {
  width: calc(50% - 5px);
}
@media (max-width: 900px) {
  .checkout-form .form-new_address .new-address-input-row .new-address-input-field {
    width: 100%;
  }
}
.checkout-form .form-new_address .mark-as-primary-address {
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.checkout-form .form-new_address .mark-as-primary-address .mark-as-primary-field {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.checkout-form .form-new_address .mark-as-primary-address .mark-as-primary-field .checkbox {
  margin-right: 10px;
  position: relative;
  display: inline-block;
  width: 40px;
  height: 26px;
}
.checkout-form .cart-order-total-responsive {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e6e6e6;
  overflow: hidden;
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .checkout-form .cart-order-total-responsive {
    border-radius: 6px;
    display: flex;
  }
}
.checkout-form .cart-order-total-responsive .cart-total-details {
  padding: 30px;
  padding-bottom: 25px;
  width: 100%;
}
@media (max-width: 900px) {
  .checkout-form .cart-order-total-responsive .cart-total-details {
    padding: 20px;
  }
}
.checkout-form .cart-order-total-responsive .cart-final-total-section {
  background-color: #e9ecef;
  width: 100%;
  padding: 20px 30px;
}
@media (max-width: 900px) {
  .checkout-form .cart-order-total-responsive .cart-final-total-section {
    padding: 16px 20px;
  }
}
.checkout-form .cart-order-total-responsive .cart-total-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  width: 100%;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e0e0e0;
}
.checkout-form .cart-order-total-responsive .cart-total-line:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.checkout-form .cart-order-total-responsive .cart-total-line.cart-final-total {
  font-weight: 700;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.checkout-form .cart-order-total-responsive .cart-total-line.cart-final-total .cart-total-label {
  font-weight: 600;
  color: #475467;
}
.checkout-form .cart-order-total-responsive .cart-total-line.cart-final-total .cart-total-value {
  color: rgba(16, 16, 16, 0.9);
  font-weight: 600;
}
.checkout-form .cart-order-total-responsive .cart-total-line.cart-discount-line .cart-total-value {
  color: #e74c3c;
  font-weight: 600;
}
.checkout-form .cart-order-total-responsive .cart-total-line .cart-total-label {
  font-size: 16px;
  font-weight: 400;
  color: #475467;
}
.checkout-form .cart-order-total-responsive .cart-total-line .cart-total-value {
  font-size: 16px;
  font-weight: 600;
  color: rgba(16, 16, 16, 0.7);
}

@keyframes formFade {}
