/** Shopify CDN: Minification failed

Line 1179:12 Expected identifier but found whitespace
Line 1179:14 Unexpected "{"
Line 1179:34 Expected ":"
Line 1179:60 Expected ":"
Line 1219:12 Expected identifier but found whitespace
Line 1219:14 Unexpected "{"
Line 1219:34 Expected ":"
Line 1219:60 Expected ":"
Line 1224:13 Expected identifier but found whitespace
Line 1224:14 Unexpected "1px"
... and 2 more hidden warnings

**/
.login-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  margin-bottom: 0;
  background-color: var(--note-bg, #ffffff);
  border: 1px solid var(--note-border, #e2e2e2);
  color: var(--note-text, #333333);
  padding: 10px;
  border-radius: 3px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.login-note--above {
  margin-top: 0;
  margin-bottom: 20px;
}

.login-note--no-icon {
  display: block;
}

.login-note svg {
  min-width: 17px;
  width: 17px;
  flex-shrink: 0;
}

.action_bottom button {
  margin-top: 10px;
}

#template .template_header {
  margin: 0px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#template .template_header h2 {
  margin: 0;
}

.input-row + .input-row {
  margin-top: 20px;
}

.small-form {
  padding: 25px;
  width: 100%;
  max-width: 500px;
}

.logo__image {
  width: 120px;
}

.account-screen {
  height: 100vh;
}

.account-screen__content {
  max-height: 100vh;
  overflow: scroll;
}
@media (min-width:768px){
  .account-screen {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  
  .account-screen__content {
    padding: 50px;
  }
}

.account-screen__image {
  position: relative;
  background-size: cover;
  background-position: center;
}

.login-note--image {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  margin: 0;
  border-radius: 3px;
}

@media (max-width: 767px) {
  .login-note--image {
    display: none;
  }
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #57c498;
  -webkit-box-shadow: 0 0 0px 1000px rgb(88 196 152 / 12%) inset;
  transition: background-color 5000s ease-in-out 0s;
}

input[disabled] {
  background-color: #efefef; 
}

input[disabled]:hover {
  cursor: not-allowed
}

.customers-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background-color: #f9bed7;
}

.customers-header__inner {
  display: flex;
  align-items: center;
}

.customers-main {
  display: grid;
  gap: 20px;
}

@media (min-width: 940px){
  .customers-main {
    grid-template-columns: 300px 1fr;
  }
}

.customers-sidebar,
.customers-body {
  background: #ffffff;
  border-radius: 4px;
  padding: 20px;
  border: 1px solid #e2e2e2;
  min-width: 0;
}

.customers-sidebar {
  padding-bottom: 15px;
}

@media (min-width:940px){
  .customers-sidebar {
    align-self: start;
    position: sticky;
    top: 110px;
  }
}

.customers-body__header {
  display: flex;
  justify-content: space-between;
}

.customers-sidebar ul {
  margin: 0;
}

.customers-sidebar li {
  list-style: none;
  padding: 10px 0;
  display: flex;
  gap: 8px;
}

.customers-sidebar li:first-child {
  padding-top: 0;
}

.customers-sidebar li:last-child {
  padding-bottom: 0;
}

.customers-sidebar li .icon-box {
  width: 24px;    
  height: 20px;
}

.customers-sidebar li .icon-box svg {
  vertical-align: inherit;
  fill: #000;
}

.customers-sidebar li a {
  color: inherit;
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.customers-sidebar li a:hover {
  color: #e53d3d;
}

.customers-sidebar li a:hover .icon-box svg {
  color: #e53d3d;
  fill: #e53d3d;
}

.customers-sidebar li a:hover .icon-box svg [fill="none"] {
  fill: none;
}

.customers-sidebar li a:hover .icon-box svg [stroke="currentColor"] {
  stroke: #e53d3d;
}

.customers-sidebar li a > span {
  display: flex;
  gap: 8px;
}

.customers-sidebar li a svg.feather-chevron-right {
  width: 16px;
  stroke: #cccccc;
}

.customers-sidebar li + li {
  border-top: 1px solid #e2e2e2;
}

.customers-order__products {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, 38px);
}

.customers-order {
  padding: 10px;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
}

.customers-order + .customers-order {
  margin-top: 20px;
}

.customers-order__top {
  display: grid;
  gap: 10px;
}

@media (min-width: 768px){
  .customers-order__top {
    grid-template-columns: 1fr auto;
  }
}

.customers-order__botttom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
  gap: 10px;
}

@media (max-width: 767px) {
  .customers-order .btn,
  .customers-order .button {
    padding: 10px;
  }
}

@media (min-width: 768px){
  .customers-order {
    padding: 25px;
  }
  .customers-order__botttom {
    display: flex;
  }
  .order-details {
    padding: 0 20px;
  }
  .order-details + .order-details {
    border-left: 1px solid #e2e2e2;
  }
}

.order-details:first-child {
  padding-left: 0;
}

.order-details__label {
  font-weight: 600;
}

.status-cancel {
  color: #e53d3d;
}

fieldset {
  margin-bottom: 40px;
}

fieldset legend.heading-font {
  padding-bottom: 5px;
  margin-bottom: 15px;
  font-size: 1.1em;
  border-bottom: 1px solid #e2e2e2;
  width: 100%;
}

.customers-details {
  display: grid;
  gap: 20px;
}

@media (max-width: 767px){
  .customers-details__settings {
    order: 2;
  }
  .customers-details__description {
    order: 1;
  }
}

@media (min-width: 768px){
  .customers-details {
    grid-template-columns: 1fr 1fr;
  }
}

.customers-details_settings input,
.customers-details_settings select {
  width: 100%;
}

.customers-details__description p {
  padding: 20px;
  background: #efefef;
  border-radius: 4px;
  margin-bottom: 0;
}

.field select {
  line-height: 16px;
  padding: 1.3rem 0.5rem 0.8rem 1rem !important;
}

.select-field::before {
  pointer-events: none;
  content: "";
  position: absolute;
  right: 0px;
  top: 0px;
  width: 28px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg fill='{{ font_col_base | color_to_rgb }}' height='18' width='18' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.41 7.84L12 12.42l4.59-4.58L18 9.25l-6 6-6-6z'/%3E%3Cpath d='M0-.75h24v24H0z' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: -5px center;
}

.recent-products-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.recent-products-list .product-block__title {
    font-weight: 400;
}

@media (min-width: 768px){
  .recent-products-list {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.product-block__title {
  color: black;
}

#shopify-section-recently-viewed {
  margin-top: 35px;
}

/* component-form */
  
.field__input,
.select__select,
.customer .field input,
.customer select {
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  transition: box-shadow .1s ease;
  border-radius: 2px;
  height: 3rem;
  min-height: calc(1px * 2);
  min-width: calc(7rem + (1px * 2));
  position: relative;
  border: 0;
}

.field:after,
.select:after,
.customer .field:after,
.customer select:after {
  display: block !important;
  pointer-events: none;
  content: '';
  position: absolute;
  inset: 1px;
  border: 0.1rem solid transparent;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0, 0.1);
  transition: box-shadow .1s ease;
  z-index: 1;
}

.select__select {
  font-size: 1.2rem;
  color: rgba(0,0,0, 0.75);
}

.field:hover.field:after,
.select:hover.select:after,
.select__select:hover.select__select:after,
.customer .field:hover.field:after,
.customer select:hover.select:after,
.localization-form__select:hover.localization-form__select:after {
  box-shadow: 0 0 0 calc(0.1rem + 1px) rgba(249, 190, 215,0.5);
  outline: 0;
  border-radius: 2px;
}

.field__input:focus-visible,
.select__select:focus-visible,
.customer .field input:focus-visible,
.customer select:focus-visible,
.localization-form__select:focus-visible.localization-form__select:after {
  box-shadow: 0 0 0 calc(0.1rem + 1px) rgba(249, 190, 215);
  outline: 0;
  border-radius: 2px;
}

.field__input:focus,
.select__select:focus,
.customer .field input:focus,
.customer select:focus,
.localization-form__select:focus.localization-form__select:after {
  box-shadow: 0 0 0 calc(0.1rem + 1px) rgba(249, 190, 215);
  outline: 0;
  border-radius: 2px;
}

.localization-form__select:focus {
  outline: 0;
  box-shadow: none;
}

.text-area,
.select,
textarea {
  display: flex;
  position: relative;
  width: 100%;
  font-family: inherit;
}

/* Select */

.select .icon-caret,
.customer select + svg {
  height: 0.6rem;
  pointer-events: none;
  position: absolute;
  top: calc(50% - 0.2rem);
  right: calc(1px + 1.5rem);
}

.select__select,
.customer select {
  cursor: pointer;
  padding: 0 2rem;
  margin: 1px;
  min-height: 2px;
}

/* Field */

.field {
  position: relative;
  width: 100%;
  display: flex;
  transition: box-shadow .1s ease;
}

.field + .field,
.toggle-field {
  margin-top: 10px;
}

.customer .field {
  display: flex;
}

.field--with-error {
  flex-wrap: wrap;
}

.field__input,
.customer .field input {
  flex-grow: 1;
  text-align: left;
  padding: 1.5rem;
  margin: 1px;
  transition: box-shadow .1s ease;
}

.field__label,
.customer .field label {
  font-size: 0.9rem;
  left: 0.9rem;
  top: 0.9rem;
  margin-bottom: 0;
  pointer-events: none;
  position: absolute;
  transition: top .1s ease;
  color: rgba(0,0,0, 0.55);
  line-height: 1.5;
}

.field__input:focus ~ .field__label,
.field__input:not(:placeholder-shown) ~ .field__label,
.field__input:-webkit-autofill ~ .field__label,
.customer .field input:focus ~ label,
.customer .field input:not(:placeholder-shown) ~ label,
.customer .field input:-webkit-autofill ~ label {
  font-size: 0.6rem;
  top: 0.4rem;
  left: 1rem;
  letter-spacing: 0.04rem;
}

.field__input:focus,
.field__input:not(:placeholder-shown),
.field__input:-webkit-autofill,
.customer .field input:focus,
.customer .field input:not(:placeholder-shown),
.customer .field input:-webkit-autofill {
  padding: 1.5rem 0.5rem 0.8rem 1rem;
  margin: 1px;
}

.field__input::-webkit-search-cancel-button,
.customer .field input::-webkit-search-cancel-button {
  display: none;
}

.field__input::placeholder,
.customer .field input::placeholder {
  opacity: 0;
}

.field__button {
  align-items: center;
  background-color: transparent;
  border: 0;
  color: currentColor;
  cursor: pointer;
  display: flex;
  height: 4.4rem;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 4.4rem;
}

.field__button > svg {
  height: 2.5rem;
  width: 2.5rem;
}

.field__input:-webkit-autofill ~ .field__button,
.field__input:-webkit-autofill ~ .field__label,
.customer .field input:-webkit-autofill ~ label {
  color: rgb(0, 0, 0);
}

/* Text area */

.text-area {
  min-height: 10rem;
  resize: none;
}

input[type='checkbox'] {
  display: inline-block;
  width: auto;
  margin-right: 0.5rem;
}

/* Form global */

.form__label {
  display: block;
  margin-bottom: 0.6rem;
}

.form__message {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 1rem;
}

.form__message--large {
  font-size: 1.6rem;
}

.customer .field .form__message {
  font-size: 1.4rem;
  text-align: left;
}

.form__message .icon,
.customer .form__message svg {
  flex-shrink: 0;
  height: 1.3rem;
  margin-right: 0.5rem;
  width: 1.3rem;
}

.form__message--large .icon,
.customer .form__message svg {
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 1rem;
}

.customer .field .form__message svg {
  align-self: start;
}

.form-status {
  margin: 0;
  font-size: 1.6rem;
}

.form-status-list {
  padding: 0;
  margin: 2rem 0 4rem;
}

.form-status-list li {
  list-style-position: inside;
}

.form-status-list .link::first-letter {
  text-transform: capitalize;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 28px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgb(249 190 215 / 50%);
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

.switch input:checked + .slider {
  background-color: #f9bed7;
}

.switch input:disabled:hover + .slider {
  cursor: not-allowed;
}
  
.switch input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

.switch input:checked + .slider:before {
  -webkit-transform: translateX(31px);
  -ms-transform: translateX(31px);
  transform: translateX(31px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}


.customers-intro {
    display: grid;
    gap: 20px;
    margin-bottom: 20px;
}

.customers-intro__cta {
  background-color: #f9bed7;
  background-size: cover;
  border-radius: 5px;
  padding: 20px;
}

.customers-intro__cta--loyalty {
  background: rgba(218, 54, 111, 0.08);
  border-radius: 8px;
  padding: 30px;
}
  
.productexperts {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.productexperts__testers {
  display: flex;
  margin-right: 5px;
}

.productexperts__avatar {
  width: 52px;
  height: 52px;
  background-color: #FFFFFF;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.productexperts__avatar img {
  border-radius: 50%;
  background-color:#f9bed7;
}

.productexperts__avatar:not(:first-of-type){
  margin-left: -1rem;
}

.productexperts__text {
  display: flex;
  flex-direction: column;
}
  
.notice,
.cart-discount__label {
  margin-top: 0;
  border-radius: 30px;
  font-size: 0.8rem;
  padding: 0px 6px;
  font-family: 'Jost', sans-serif;
  display: inline-block;
  line-height: 1.6em;
}

.notice-negative {
  color: #e53d3d;
  background-color: rgb(229 61 61 / 30%);
}

.notice-warning {
  color: rgba(79, 71, 0, 1);
  background-color: rgba(255, 235, 120, 0.6); 
}

.notice-positive,
.cart-discount__label {
  color: #58c498;
  background-color: rgb(88 196 152 / 20%);  
}

.cart-discount__label svg {
  stroke: #58c498;
}

.order-addresses {
  display: grid;
  grid-gap: 10px;
  margin-top: 20px;
}

.order-status {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (min-width: 768px){
  .customers-intro,
  .order-addresses {
    grid-template-columns: 1fr 1fr;
  }
}

.order-addresses__address {
  padding: 20px;
  background: #efefef;
  border-radius: 4px;
}

.order-addresses__address p {
  margin:0;
}
  
/* Address selector strip */
.address-selector__title {
  padding-bottom: 5px;
  margin-bottom: 15px;
  font-size: 1.1em;
  border-bottom: 1px solid #e2e2e2;
  width: 100%;
  font-family: var(--heading-font-family, inherit);
}

.address-selector-wrapper {
  position: relative;
  overflow: hidden;
}

.address-selector-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: calc(100% - 18px);
  background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 1;
}

.address-selector {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding-top: 8px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

.address-selector::-webkit-scrollbar {
  height: 4px;
}

.address-selector::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.address-selector::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

.address-selector {
  scrollbar-width: thin;
  scrollbar-color: #ccc #f1f1f1;
}

.address-card-wrapper {
  position: relative;
  flex-shrink: 0;
  display: flex;
}

.address-card__delete {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #e2e2e2;
  background: #fff;
  color: #999;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1em;
  letter-spacing: 0;
}

.address-card__delete:hover {
  background: #e53d3d;
  border-color: #e53d3d;
  color: #fff;
}

.address-card {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 180px;
  padding: 12px 15px;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  background: #fff;
  color: #000;
  cursor: pointer;
  flex-shrink: 0;
  text-align: left;
  font-family: inherit;
  font-size: 0.8rem;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0;
  transition: border-color 0.2s ease;
  width: 100%;
}

.address-card:hover {
  border-color: #f9bed7;
}

.address-card--active {
  border-color: #f9bed7;
  background: rgba(249, 190, 215, 0.08);
}

.address-card strong {
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0;
}

.address-card__set-default {
  display: none;
  margin-top: 4px;
  font-size: 0.75rem;
  color: #f11935;
  text-decoration: underline;
  cursor: pointer;
}

.address-card--active .address-card__set-default {
  display: inline-block;
}

.address-card__set-default:hover {
  text-decoration: none;
}

.address-card__default {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #fff;
  background: #f11935;
  padding: 1px 6px;
  border-radius: 3px;
  width: fit-content;
}

/* Address delete modal */
.address-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.address-modal-overlay--active {
  display: flex;
}

.address-modal {
  background: #fff;
  border-radius: 6px;
  padding: 30px;
  max-width: 380px;
  width: 90%;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.address-modal__text {
  font-size: 0.95rem;
  margin: 0 0 20px;
  line-height: 1.5;
  color: #000;
}

.address-modal__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.address-modal__cancel,
.address-modal__confirm {
  padding: 10px 24px;
  border-radius: 3px;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}

.address-modal__cancel {
  background: #fff;
  border: 1px solid #e2e2e2;
  color: #000;
}

.address-modal__cancel:hover {
  border-color: #ccc;
  background: #f5f5f5;
}

.address-modal__confirm {
  background: #f11935;
  border: 1px solid #f11935;
  color: #fff;
}

.address-modal__confirm:hover {
  background: #d9142e;
  border-color: #d9142e;
}

.customers-body > .title {
  display:flex;
  align-items:center;
  gap: 5px;
}

.opposing-items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.order-table {
  margin-top:30px;
}

.order-table th {
  border-bottom: none;
}

.order-table td {
  vertical-align: middle;
}

@media (max-width: 400px) {
  .order-table td {
    padding: 3px;
  }
}

.order-table tfoot td {
  border: none;
}

.order-table tfoot td:first-child {
  text-align: right;
}

.order-table tfoot tr.order_total td:not(:first-child) {
  border-top: 1px solid #e2e2e2;
  font-weight: 600;
}

.order-table tfoot tr.order_total td.total {
  letter-spacing: -1px;
}

#customer_detail .address p,
.address_table .view_address p,
#order_address .address p {
  margin-bottom: 0;
}

#order_details {
  clear: both;
  width: 100%;
}

.order-table-container {
  overflow: auto;
}

.order-table .price,
.order-table .total,
.order-table tfoot td:last-child {
  text-align: right;
}

.order-table .product-price {
  justify-content: right;
}

.order-table .unit-price {
  font-size: {{ font_size_base_int | times: 0.8 | round }}px;
}

@media (max-width:520px){
  .customer-service-button {
    display: none !important;
  }
}

#customer_detail .address p,
.address_table .view_address p,
#order_address .address p {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  #order_details .price,
#order_details .unit-price {
    visibility: hidden;
    padding: 0;
    font-size: 0;
  }
  #order_details .price .cart-discount__label {
    display: none;
  }
}

.order-table-container {
  overflow: auto;
}

.order-table .price,
.order-table .total,
.order-table tfoot td:last-child {
  text-align: right;
}
.order-table .product-price {
  justify-content: right;
}
.order-table .unit-price {
  font-size: {{ font_size_base_int | times: 0.8 | round }}px;
}

#comments .comment {
  padding-top: 20px;
  border-top: 1px solid {{ dividers_col }};
}

#comments .comment.first {
  border-top: 0;
}

.order-product {
  position: relative;
}

.order-product img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.order-header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.order-header__details h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width:768px){
  .line-price-container {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
  }
  .order-table td.quantity {
    text-align: right;
  }
}

.cart-discount-list {
  margin: 5px 0;
}

.customers-order__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}

@media (max-width: 767px) {
  .customers-order__actions div,
  .customers-order__actions a {
    width: 100%;
    display: block;
  }
}

.order-header__tracking .button {
  background: #57c498;
  border: 1.5px solid #57c498;
}

.order-header__tracking .button:hover {
    filter: brightness(1.1);
}
.section-heading__heading {
  font-weight: 600;
}

.order-header__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* === UPDATED LOYALTY STYLES === */

/* Loyalty Status Widget */
.loyalty-status-widget {
  background: rgba(218, 54, 111, 0.08);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  color: #000;
}

/* Top section with title and CTA button */
.loyalty-status__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}

.loyalty-status__top h4 {
  margin: 0;
  font-size: 1.2em;
  font-weight: 700;
  color: #000;
}

/* Green CTA button styling */
.loyalty-status__cta-btn {
  background: #58c498 !important;
  border: 2px solid #58c498 !important;
  color: #fff !important;
  white-space: nowrap;
  flex-shrink: 0;
}

.loyalty-status__cta-btn:hover {
  background: #4ab086 !important;
  border-color: #4ab086 !important;
}

.loyalty-status__content {
  margin-bottom: 0;
}

.loyalty-status__info {
  margin-bottom: 20px;
}

.loyalty-status__tier {
  font-size: 0.95em;
  line-height: 1.6;
  font-weight: 400;
}

/* Progress Bar */
.loyalty-progress {
  margin-top: 20px;
}
.loyalty-progress__labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.85em;
  font-weight: 700;
  text-transform: uppercase;
}
.loyalty-progress__bar {
  height: 12px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 8px;
}
.loyalty-progress__fill {
  height: 100%;
  background: #da366f;
  border-radius: 20px;
  transition: width 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.loyalty-progress__indicator {
  width: 12px;
  height: 12px;
  min-width: 12px;
  background: #0f0c6d;
  border-radius: 50%;
}
.loyalty-progress__points {
  display: flex;
  justify-content: space-between;
  font-size: 0.85em;
  font-weight: 400;
}

/* Loyalty Tiers Grid */
.loyalty-tiers {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .loyalty-tiers {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Individual Tier Card - ALL PINK */
.loyalty-tier {
  background: #f9bed7;
  border: 2px solid #f9bed7;
  border-radius: 8px;
  padding: 25px 25px 30px 25px;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
}

/* Current status badge - uppercase green */
.loyalty-tier__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #c5ff00;
  color: #000;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.65em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  width: max-content;
}

/* Centered header for all tiers */
.loyalty-tier__header {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #da366f;
  text-align: center;
}

/* Pink tier name for non-current tiers, black for current */
.loyalty-tier__name {
  margin: 0 0 8px 0;
  font-size: 1.4em;
  font-weight: 700;
  color: #da366f;
}

.loyalty-tier__requirement {
  margin: 0;
  font-size: 0.9em;
  font-weight: 400;
  color: #da366f;
}

.loyalty-tier__benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.loyalty-tier__benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9em;
  line-height: 1.5;
  color: #000;
}

.loyalty-tier__benefit svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: #000;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .loyalty-status-widget {
    padding: 20px;
  }
  
  .loyalty-status__top {
    flex-direction: column;
  }
  
  .loyalty-status__cta-btn {
    width: 100%;
    text-align: center;
  }
  
  .loyalty-progress__labels,
  .loyalty-progress__points {
    font-size: 0.8em;
  }
  
  .loyalty-tier {
    padding: 20px 20px 25px 20px;
  }
}

/* Title with image */
.loyalty-status__title-with-image {
  display: flex;
  align-items: center;
  gap: 15px;
}

.loyalty-status__tier-image {
  width: 100px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px dotted #e64590;
}

@media (max-width: 767px) {
  .loyalty-status__top {
    justify-content: center;
  }
  
  .loyalty-status__top h4 {
    font-size: 1em;
  }
}