@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Alice&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
.product-single-main {
  background: #F2EFE9;
  padding: 0 20px 60px 20px;
}
@media (min-width: 1024px) {
  .product-single-main {
    padding: 0 0 60px 0;
  }
}

.product-single__breadcrumb {
  padding: 14px 0 0;
}
.product-single__breadcrumb .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-family: "Alice", serif;
  font-size: 0.75rem;
  color: #580A00;
}
.product-single__breadcrumb .breadcrumb a {
  color: #580A00;
  text-decoration: none;
  opacity: 0.7;
}
.product-single__breadcrumb .breadcrumb a:hover {
  opacity: 1;
}
.product-single__breadcrumb .breadcrumb__sep {
  opacity: 0.45;
  font-size: 0.75rem;
}

.product-single {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 56px;
  padding: 20px;
  align-items: start;
}
@media (max-width: 768px) {
  .product-single {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0 40px;
  }
}

.product-single__gallery {
  position: sticky;
  top: 90px;
  width: 100%;
}
@media (max-width: 768px) {
  .product-single__gallery {
    position: static;
  }
}

.product-gallery__main {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #F2EFE9;
  border: 1px solid rgba(88, 10, 0, 0.15);
}
.product-gallery__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
  width: 100%;
}

.product-gallery__thumb-btn {
  width: 100%;
  aspect-ratio: 1/1;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: #F2EFE9;
  transition: border-color 0.25s ease;
}
.product-gallery__thumb-btn.is-active, .product-gallery__thumb-btn:hover {
  border-color: #580A00;
}

.product-gallery__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-single__info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-single__title {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #580A00;
  margin: 0 0 6px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .product-single__title {
    font-size: 1.563rem;
  }
}

.product-single__subtitle {
  font-family: "Alice", serif;
  font-size: 1.25rem;
  color: #580A00;
  margin: 0 0 20px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .product-single__subtitle {
    font-size: 1.563rem;
  }
}

.product-single__sku {
  font-family: "Alice", serif;
  font-size: 1.125rem;
  color: #580A00;
  line-height: 1.3;
}

.product-single__price-hidden {
  font-family: "Alice", serif;
  font-size: 1.125rem;
  color: #580A00;
}

.product-single__main-description {
  font-family: "Alice", serif;
  font-size: 1.25rem;
  padding-top: 10px;
  line-height: 1.2;
  color: #580A00;
}
@media (max-width: 768px) {
  .product-single__main-description {
    font-size: 1.094rem;
  }
}

.product-single__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0 20px 0;
}
@media (max-width: 768px) {
  .product-single__price-row {
    font-size: 1.563rem;
  }
}

.product-single__price-left {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.product-single__price {
  font-family: "Alice", serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #00965D;
  line-height: 1;
}
@media (max-width: 768px) {
  .product-single__price {
    font-size: 1.563rem;
  }
}
.product-single__price del {
  color: #9a8a7a;
  font-weight: 400;
  font-size: 0.85em;
  margin-right: 4px;
}
@media (max-width: 768px) {
  .product-single__price del {
    font-size: 1.563rem;
  }
}
.product-single__price ins {
  text-decoration: none;
}

.product-single__price-currency {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #580A00;
  font-weight: 600;
}

.product-single__price-indicator {
  font-size: 0.75rem;
  color: #00965D;
  font-weight: 700;
}

.product-single__price-break {
  background: none;
  border: none;
  font-family: "Alice", serif;
  font-size: 1.25rem;
  color: #7C7C7C;
  text-decoration: none;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s ease;
}
.product-single__price-break:hover {
  opacity: 1;
}

.product-single__price-break-arrow {
  font-size: 10px;
  display: inline-block;
  transition: transform 0.2s ease;
}

.product-single__price-table {
  border: 1px solid rgba(88, 10, 0, 0.15);
  overflow: hidden;
  margin-bottom: 30px;
  background: #ffffff;
}
@media (max-width: 768px) {
  .product-single__price-table {
    font-size: 1.563rem;
  }
}
.product-single__price-table[hidden] {
  display: none;
}
.product-single__price-table table,
.product-single__price-table th,
.product-single__price-table td {
  border: none;
  border-collapse: collapse;
}
.product-single__price-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.product-single__price-table th {
  background: transparent;
  padding: 10px 20px 4px;
  font-family: "Alice", serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #7C7C7C;
  text-align: center;
}
@media (max-width: 768px) {
  .product-single__price-table th {
    font-size: 1.094rem;
  }
}
.product-single__price-table td {
  padding: 4px 20px 12px;
  font-family: "Alice", serif;
  font-size: 1.25rem;
  color: #280804;
  font-weight: 400;
  text-align: center;
}
@media (max-width: 768px) {
  .product-single__price-table td {
    font-size: 1.094rem;
  }
}

.product-single__price-note {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  color: #580A00;
  opacity: 0.55;
  text-align: right;
  padding: 6px 14px 8px;
  margin: 0;
  border-top: 1px solid rgba(88, 10, 0, 0.1);
}

.product-single__excerpt {
  font-family: "Alice", serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #580A00;
  line-height: 1.2;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .product-single__excerpt {
    font-size: 1.094rem;
  }
}
.product-single__excerpt p {
  margin: 0;
}
.product-single__excerpt ul {
  list-style: disc;
  padding-left: 18px;
  margin-top: 8px;
}
.product-single__excerpt li {
  margin-bottom: 4px;
}

.product-single__divider {
  border: none;
  border-top: 1px solid rgba(88, 10, 0, 0.15);
  margin: 10px 0;
}

.product-single__actions {
  margin: 10px 0;
}
.product-single__actions form.cart {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-single__qty-wrap {
  display: flex;
  width: 100%;
  align-items: center;
  border: 0.5px solid #580A00;
  border: 0.5px solid #580A00;
  opacity: 1;
  height: 50px;
  overflow: hidden;
}
.product-single__qty-wrap .qty-btn {
  width: 50px;
  height: 100%;
  background: none;
  border: none;
  font-size: 1.4rem;
  font-weight: 300;
  color: #580A00;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s ease;
  line-height: 1;
}
.product-single__qty-wrap .qty-btn:hover {
  background: rgba(88, 10, 0, 0.05);
}
.product-single__qty-wrap input.qty {
  flex: 1;
  height: 100%;
  border: none;
  text-align: center;
  font-family: "Alice", serif;
  font-size: 1.5rem;
  color: #580A00;
  background: transparent;
}
.product-single__qty-wrap input.qty::-webkit-inner-spin-button, .product-single__qty-wrap input.qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.product-single__qty-wrap input.qty:focus {
  outline: none;
}

.product-single__actions .single_add_to_cart_button {
  width: 100%;
  height: 50px;
  background: #580A00;
  color: #FFF2D8;
  border: none;
  font-family: "Alice", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .product-single__actions .single_add_to_cart_button {
    font-size: 1.094rem;
  }
}
.product-single__actions .single_add_to_cart_button:hover {
  background: #280804;
}

.product-single__whatsapp {
  background: #25d366 !important;
  color: #fff !important;
}
.product-single__whatsapp:hover {
  background: #1ebe5d !important;
}

.product-single__whatsapp-icon {
  flex-shrink: 0;
}

.product-single__out-of-stock {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #9a2222;
  font-weight: 600;
  margin: 12px 0;
}

.product-single__highlights {
  margin-top: 4px;
}
.product-single__highlights-title {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #580A00;
  margin: 0 0 12px;
}
.product-single__highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.product-single__highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 3px;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #580A00;
  line-height: 1.2;
}
.product-single__highlights-list li::before {
  content: "•";
  color: #580A00;
  flex-shrink: 0;
  margin-top: 1px;
}

.product-tabs {
  background: #f8f8f8;
  padding: 64px 0;
}
@media (max-width: 768px) {
  .product-tabs {
    padding: 40px 0;
  }
}

.product-tabs__body {
  display: grid;
  grid-template-columns: 260px 1fr;
  overflow: hidden;
}
@media (max-width: 768px) {
  .product-tabs__body {
    grid-template-columns: 1fr;
  }
}

.product-tabs__nav {
  background: #580A00;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .product-tabs__nav {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 0 4px;
  }
  .product-tabs__nav::-webkit-scrollbar {
    display: none;
  }
}

.product-tabs__nav-btn {
  border: none;
  border-bottom: 1px solid rgba(255, 242, 216, 0.15);
  background: transparent;
  padding: 20px 24px;
  text-align: left;
  font-family: "Playfair Display", serif;
  font-size: 1.094rem;
  font-weight: 600;
  color: #FFF2D8;
  cursor: pointer;
  transition: background 0.2s ease;
  width: 100%;
  line-height: 1.4;
}
.product-tabs__nav-btn:last-child {
  border-bottom: none;
}
.product-tabs__nav-btn--active {
  background: #3a0600 !important;
  color: #ffffff;
}
.product-tabs__nav-btn:hover:not(.product-tabs__nav-btn--active) {
  background: rgba(255, 242, 216, 0.06);
}
@media (max-width: 768px) {
  .product-tabs__nav-btn {
    flex: 0 0 auto;
    width: auto;
    white-space: nowrap;
    scroll-snap-align: start;
    text-align: center;
    font-size: 1rem;
    padding: 14px 18px;
    border-right: 1px solid rgba(255, 242, 216, 0.15);
    line-height: 1.3;
  }
  .product-tabs__nav-btn--active {
    background: #3a0600 !important;
    color: #ffffff;
  }
  .product-tabs__nav-btn:last-child {
    border-right: none;
    padding-right: 32px;
  }
}

.product-tabs__panels {
  padding: 32px 48px;
}
@media (max-width: 768px) {
  .product-tabs__panels {
    padding: 20px 0;
  }
}

.product-tabs__panel {
  display: none;
}
.product-tabs__panel--active {
  display: block;
}

.product-tabs__row-heading {
  font-family: "Playfair Display", serif;
  font-size: 1.563rem;
  font-weight: 700;
  color: #580A00;
  margin: 0 0 10px;
}
@media (max-width: 768px) {
  .product-tabs__row-heading {
    font-size: 1.25rem;
  }
}

.product-tabs__row-desc {
  font-family: "Alice", serif;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #580A00;
  opacity: 0.85;
  margin: 0 0 20px;
  padding-top: 12px;
}
@media (max-width: 768px) {
  .product-tabs__row-desc {
    font-size: 1.094rem;
  }
}
.product-tabs__row-desc:last-child {
  margin-bottom: 0;
}
.product-tabs__row-desc p {
  margin: 0 0 16px;
}
.product-tabs__row-desc ul,
.product-tabs__row-desc ol {
  margin: 16px 0;
  padding-left: 24px;
}
.product-tabs__row-desc ul {
  list-style: disc;
}
.product-tabs__row-desc ol {
  list-style: decimal;
}
.product-tabs__row-desc li {
  margin-bottom: 8px;
}

/* =========================================
   Recommended Products Slider
========================================= */
.recommended-products {
  margin-top: 60px;
  overflow: hidden;
}

.recommended-products__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.recommended-products__title {
  font-size: 32px;
  font-weight: 700;
  margin: 0;
}

.recommended-products__nav {
  display: flex;
  gap: 12px;
}

.recommended-products__btn {
  width: 44px;
  height: 44px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  transition: 0.3s ease;
}

.recommended-products__btn:hover {
  background: #000;
  color: #fff;
}

.recommended-products__slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.recommended-products__track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
  gap: 20px;
}

.recommended-products__item {
  width: calc(25% - 15px);
  min-width: calc(25% - 15px);
  flex-shrink: 0;
  box-sizing: border-box;
}

/* Tablet */
@media (max-width: 991px) {
  .recommended-products__item {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
}
/* Mobile */
@media (max-width: 767px) {
  .recommended-products__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .recommended-products {
    overflow: hidden;
  }
  .recommended-products__slider-wrapper {
    overflow: hidden;
    width: 100%;
  }
  .recommended-products__item {
    width: 100%;
    min-width: 100%;
    flex: 0 0 100%;
    padding: 0;
  }
  .recommended-products__track {
    gap: 0;
  }
  .recommended-products__title {
    font-size: 24px;
  }
  .product-card {
    width: 100%;
  }
  .product-card__image-wrap {
    width: 100%;
  }
}
/* 
   Product Card */
.product-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card__image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: #f5f5f5;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease;
}

.product-card__image--hover {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.product-card:hover .product-card__image--hover {
  opacity: 1;
}

.product-card__body {
  padding: 14px 0;
}

.product-card__title {
  font-size: 18px;
  margin-bottom: 6px;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  word-break: break-word;
}

.product-card__category {
  display: block;
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 8px;
}

.product-card__price {
  font-weight: 700;
  font-size: 18px;
}

.recommended-card {
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
  width: 100%;
}
.recommended-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.09);
}
.recommended-card__img-wrap {
  display: block;
  aspect-ratio: 1/1;
  background: #F2EFE9;
  overflow: hidden;
}
.recommended-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.recommended-card:hover .recommended-card__img {
  transform: scale(1.04);
}
.recommended-card__body {
  padding: 10px 12px 14px;
}
.recommended-card__title {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #580A00;
  margin: 0 0 3px;
  line-height: 1.3;
}
.recommended-card__title a {
  color: inherit;
  text-decoration: none;
}
.recommended-card__title a:hover {
  opacity: 0.75;
}
.recommended-card__meta {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  color: #580A00;
  opacity: 0.6;
  margin: 0 0 5px;
}
.recommended-card__price {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #580A00;
}

.recommended-card {
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
  width: 100%;
}
.recommended-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.09);
}
.recommended-card__img-wrap {
  display: block;
  aspect-ratio: 1/1;
  background: #F2EFE9;
  overflow: hidden;
}
.recommended-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.recommended-card:hover .recommended-card__img {
  transform: scale(1.04);
}
.recommended-card__body {
  padding: 10px 12px 14px;
}
.recommended-card__title {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #580A00;
  margin: 0 0 3px;
  line-height: 1.3;
}
.recommended-card__title a {
  color: inherit;
  text-decoration: none;
}
.recommended-card__title a:hover {
  opacity: 0.75;
}
.recommended-card__meta {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  color: #580A00;
  opacity: 0.6;
  margin: 0 0 5px;
}
.recommended-card__price {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #580A00;
}

.cart-item__qty-wrap {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--c-border-dk);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  height: 38px;
}

.qty-btn {
  width: 34px;
  height: 100%;
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--c-text-sub);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--ease);
  flex-shrink: 0;
}
.qty-btn:hover {
  color: var(--c-maroon);
}

.qty-input,
input.qty {
  width: 38px;
  height: 100%;
  border: none;
  border-left: 1px solid var(--c-border);
  border-right: 1px solid var(--c-border);
  text-align: center;
  font-family: var(--f-sans);
  font-size: 0.85rem;
  color: var(--c-text);
  background: #fff;
  -moz-appearance: textfield;
}
.qty-input::-webkit-inner-spin-button, .qty-input::-webkit-outer-spin-button,
input.qty::-webkit-inner-spin-button,
input.qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.qty-input:focus,
input.qty:focus {
  outline: none;
}

.woocommerce div.product form.cart div.quantity {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--c-border-dk);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
  height: 44px;
  margin-right: 0;
}
.woocommerce div.product form.cart div.quantity input.qty {
  width: 44px;
  height: 100%;
  border: none;
  border-left: 1px solid var(--c-border);
  border-right: 1px solid var(--c-border);
  text-align: center;
  font-family: var(--f-sans);
  font-size: 0.9rem;
  background: #fff;
  -moz-appearance: textfield;
}
.woocommerce div.product form.cart div.quantity input.qty::-webkit-inner-spin-button, .woocommerce div.product form.cart div.quantity input.qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.woocommerce div.product form.cart div.quantity input.qty:focus {
  outline: none;
}

.shop-main {
  background-color: #F2EFE9;
}

.banner-container {
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 60px;
}

.breadcrumb {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #580A00;
  padding: 14px 0 0;
}
.breadcrumb a {
  color: #580A00;
  text-decoration: none;
  opacity: 0.7;
}
.breadcrumb a:hover {
  opacity: 1;
}
.breadcrumb .breadcrumb__sep {
  opacity: 0.45;
}

.shop-banner {
  background: #F2EFE9;
  padding: 48px 0 40px;
  text-align: center;
}
.shop-banner__title {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #580A00;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 10px;
}
@media (max-width: 768px) {
  .shop-banner__title {
    font-size: 1.563rem;
  }
}
.shop-banner__sub {
  font-family: "Alice", serif;
  font-size: 1.25rem;
  color: #580A00;
  line-height: 1.4;
  max-width: 560px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .shop-banner__sub {
    font-size: 1rem;
  }
}

.shop-layout-main {
  background-color: #f8f8f8;
  padding: 0 0 60px;
}
@media (max-width: 768px) {
  .shop-layout-main {
    padding: 0 0 40px;
  }
}

.shop-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .shop-container {
    padding: 0 20px;
  }
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-top: 0.5px solid rgba(88, 10, 0, 0.25);
  border-bottom: 0.5px solid rgba(88, 10, 0, 0.25);
  margin-bottom: 0;
  position: relative;
  z-index: 100;
}

.shop-toolbar__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.filter-toggle {
  display: none;
}
@media (max-width: 768px) {
  .filter-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #580A00;
    font-family: "Alice", serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: opacity 0.15s ease;
  }
  .filter-toggle:hover {
    opacity: 0.7;
  }
  .filter-toggle__icon {
    display: block;
    flex-shrink: 0;
  }
}

.shop-sidebar-overlay {
  display: none;
}
@media (max-width: 768px) {
  .shop-sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 300;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .shop-sidebar-overlay.is-active {
    display: block;
    opacity: 1;
  }
}

.shop-toolbar__views {
  display: flex;
  gap: 6px;
}
.shop-toolbar__views .view-btn--mobile-only {
  display: none;
}
@media (max-width: 768px) {
  .shop-toolbar__views .view-btn--mobile-only {
    display: flex;
  }
  .shop-toolbar__views .view-btn--desktop-only {
    display: none;
  }
}

.view-btn {
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  opacity: 0.45;
  transition: opacity 0.15s ease;
}
.view-btn--active, .view-btn:hover {
  opacity: 1;
}
.view-btn img {
  display: block;
}

.shop-toolbar__sort {
  display: flex;
  align-items: center;
  padding-left: 18px;
  border-left: 0.5px solid rgba(88, 10, 0, 0.25);
}
@media (max-width: 768px) {
  .shop-toolbar__sort {
    min-width: 0;
    flex-shrink: 1;
  }
}

.sort-select {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #580A00;
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background-color: transparent;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23580A00'/%3E%3C/svg%3E") no-repeat right center;
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 20px;
  /* prevent overflow */
  max-width: 100%;
  width: 100%;
  min-width: 0;
  cursor: pointer;
}
.sort-select:focus {
  outline: none;
}

.shop-layout {
  display: flex;
  gap: 48px;
  align-items: start;
  padding-top: 28px;
}
@media (max-width: 768px) {
  .shop-layout {
    flex-direction: column;
    gap: 24px;
    padding-top: 16px;
  }
}

.shop-sidebar {
  width: 240px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
}
.shop-sidebar .shop-sidebar__header {
  display: none;
}
@media (max-width: 768px) {
  .shop-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 400;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding-bottom: max(50px, env(safe-area-inset-bottom) + 50px);
  }
  .shop-sidebar .filter-group:last-child {
    padding-bottom: 50px;
  }
  .shop-sidebar {
    order: unset;
  }
  .shop-sidebar.is-open {
    transform: translateX(0);
  }
  .shop-sidebar .shop-sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 0.5px solid rgba(88, 10, 0, 0.2);
    margin-bottom: 8px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
  }
  .shop-sidebar .filter-group {
    padding: 20px 24px;
    margin-bottom: 0;
  }
}

.filter-group {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 0.5px solid rgba(88, 10, 0, 0.2);
}
.filter-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.filter-group__title {
  font-family: "Playfair Display", serif;
  font-size: 1.563rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #580A00;
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filter-list--sub {
  padding-left: 24px;
  margin-top: 8px;
  gap: 8px;
}
.filter-list--sub .filter-check__label {
  font-size: 0.875rem;
  opacity: 0.85;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.filter-check__input {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(88, 10, 0, 0.5);
  appearance: none;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: all 0.15s ease;
}
.filter-check__input:checked {
  background: #580A00;
  border-color: #580A00;
}
.filter-check__input:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 4px;
  height: 7px;
  border: 1.5px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.filter-check__label {
  font-family: "Alice", serif;
  font-size: 1rem;
  color: #580A00;
}
.filter-check__count {
  color: #580A00;
  opacity: 0.6;
}

.price-range__inputs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.price-range__input {
  width: 50%;
  height: 50px;
  padding: 8px 10px;
  border: 1px solid #580A00;
  font-family: "Alice", serif;
  font-size: 1rem;
  color: #580A00;
  background: #fff;
}
.price-range__input::placeholder {
  opacity: 0.5;
}
.price-range__input:focus {
  outline: none;
}

.shop-content {
  flex: 1;
  min-width: 0;
  position: relative;
}
@media (max-width: 768px) {
  .shop-content {
    order: 1;
    width: 100%;
  }
}
.shop-content--loading::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 5;
  pointer-events: none;
  animation: shop-fade-in 0.15s ease-out;
}
.shop-content--loading::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  width: 48px;
  height: 48px;
  margin: -24px 0 0 -24px;
  border: 3px solid rgba(88, 10, 0, 0.18);
  border-top-color: #580A00;
  border-radius: 50%;
  animation: shop-spin 0.7s linear infinite;
  z-index: 9999;
  pointer-events: none;
}

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

.filter-subcat-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 16px;
  height: 16px;
  position: relative;
}
.filter-subcat-toggle::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 3px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #580A00;
  border-bottom: 2px solid #580A00;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.filter-subcat-toggle i {
  transition: transform 0.2s ease;
}

.filter-list--sub {
  display: none;
  padding-left: 24px;
  margin-top: 8px;
  gap: 8px;
}
.filter-list--sub .filter-check__label {
  font-size: 0.875rem;
  opacity: 0.85;
}

.filter-list__item--open > .filter-list--sub {
  display: flex;
  flex-direction: column;
}
.filter-list__item--open > .filter-category-row .filter-subcat-toggle {
  transform: rotate(180deg);
}

@keyframes shop-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes shop-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1024px) {
  ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  ul.products {
    gap: 10px;
  }
}
.shop-content--grid1 ul.products {
  grid-template-columns: 1fr;
}
.shop-content--grid2 ul.products {
  grid-template-columns: repeat(2, 1fr);
}
.shop-content--grid3 ul.products {
  grid-template-columns: repeat(3, 1fr);
}
.shop-content--list ul.products {
  grid-template-columns: 1fr;
}
.shop-content--list ul.products .product-card__image-wrap {
  aspect-ratio: 3/2;
  max-width: 280px;
}
.shop-content--list ul.products .product-card {
  flex-direction: row;
  display: flex;
}
.shop-content--list ul.products .product-card__body {
  flex: 1;
  padding: 16px 20px;
  align-items: center;
}

.product-card {
  background: #fff;
  list-style: none;
  border-radius: 0 !important;
  transition: box-shadow 0.2s ease;
  overflow: hidden;
  min-width: 0;
}
.product-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.product-card__image-wrap {
  display: block;
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #F2EFE9;
}
.product-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}
.product-card__image--main {
  opacity: 1;
  z-index: 1;
}
.product-card__image--hover {
  opacity: 0;
  z-index: 2;
}
.product-card__image-wrap:hover .product-card__image--main {
  opacity: 0;
}
.product-card__image-wrap:hover .product-card__image--hover {
  opacity: 1;
}
.product-card__image--placeholder {
  position: absolute;
  inset: 0;
  background: #F2EFE9;
}
.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  background: #580A00;
  color: #fff;
  font-family: "Alice", serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
}
.product-card__body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px 16px;
}
@media (max-width: 768px) {
  .product-card__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 10px 10px 10px;
  }
}
.product-card__info {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.product-card__title {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem !important;
  font-weight: 700;
  color: #580A00;
  margin: 0 0 4px;
  line-height: 1.3;
  overflow-wrap: anywhere;
  word-break: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media (max-width: 768px) {
  .product-card__title {
    font-size: 1rem !important;
    line-height: 1.3;
    white-space: normal;
  }
}
.product-card__title a {
  color: inherit;
  text-decoration: none;
}
.product-card__title a:hover {
  text-decoration: underline;
}
.product-card__meta {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #580A00;
  opacity: 0.65;
  margin: 0;
  line-height: 1.4;
}
.product-card__price {
  font-family: "Alice", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #580A00;
  text-align: left;
}
@media (max-width: 768px) {
  .product-card__price {
    align-self: flex-start;
    text-align: left;
    width: 100%;
    white-space: normal;
    font-size: 1rem;
  }
}
.product-card__price .woocommerce-Price-amount {
  color: #580A00;
}
.product-card__price del {
  color: rgba(88, 10, 0, 0.4);
  font-weight: 400;
  font-size: 0.85em;
  margin-right: 4px;
}
.product-card__price ins {
  text-decoration: none;
}

.shop-pagination {
  text-align: center;
  padding: 40px 0 8px;
}
.shop-pagination .woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.shop-pagination .woocommerce-pagination ul li {
  display: flex;
}
.shop-pagination .woocommerce-pagination li .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #580A00;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.shop-pagination .woocommerce-pagination li .page-numbers:hover {
  border-color: #580A00;
  background: #580A00;
  color: #fff;
}
.shop-pagination .woocommerce-pagination li .page-numbers.current {
  background: #580A00;
  border-color: #580A00;
  color: #fff;
}
.shop-pagination .woocommerce-pagination li .page-numbers.prev, .shop-pagination .woocommerce-pagination li .page-numbers.next {
  font-size: 1rem;
}
.shop-pagination .woocommerce-pagination li .page-numbers.dots {
  border: none;
  cursor: default;
}
.shop-pagination .woocommerce-pagination li .page-numbers.dots:hover {
  background: none;
  color: #580A00;
}

.shop-empty {
  text-align: center;
  padding: 80px 20px;
  font-family: "Alice", serif;
  color: #580A00;
}
.shop-empty p {
  margin: 0 0 16px;
  opacity: 0.7;
}
.shop-empty__alternatives {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.shop-empty__alternatives a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid #580A00;
  border-radius: 999px;
  color: #580A00;
  text-decoration: none;
  font-size: 0.875rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.shop-empty__alternatives a:hover {
  background: #580A00;
  color: #fff;
}
.shop-empty__alt-count {
  opacity: 0.6;
  font-size: 0.9em;
}

.breadcrumb {
  font-size: 1rem;
  color: #580A00;
  font-family: "Alice", serif;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background-color: #F2EFE9;
  padding: 20px;
}
.breadcrumb a {
  color: #580A00;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

.cart-page {
  background-color: #F8F8F8;
}
.cart-page__banner {
  background-color: #F2EFE9;
  padding-bottom: 40px;
}
.cart-page__title {
  text-align: center;
}
.cart-page__title h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.188rem;
  font-weight: 700;
  color: #580A00;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cart-page__title h2 {
    font-size: 1.563rem;
  }
}
.cart-page__content {
  padding: 30px 20px;
}
.cart-page__wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 90px;
  align-items: start;
}
@media (max-width: 1024px) {
  .cart-page__wrapper {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .cart-page__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.cart-page__items {
  background: transparent;
}
.cart-page__sidebar {
  background: #F2EFE9;
  position: sticky;
  top: 2rem;
}
@media (max-width: 768px) {
  .cart-page__sidebar {
    width: 100%;
    position: static;
  }
}

.cart-items__header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.563rem;
  border-bottom: 0.1px solid #580A00;
}
.cart-items__header span {
  font-family: "Playfair Display", serif;
  font-size: 1.563rem;
  color: #580A00;
}
@media (max-width: 768px) {
  .cart-items__header span {
    font-size: 1.25rem;
  }
}
.cart-items__header span:first-child {
  font-weight: 700;
}
.cart-items__header span:last-child {
  font-weight: 400;
}
@media (max-width: 768px) {
  .cart-items__header span:last-child {
    display: none;
  }
}

.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  padding: 2rem 0;
  border-bottom: 0.1px solid #580A00;
}
@media (max-width: 768px) {
  .cart-item {
    flex-direction: column;
    gap: 0;
    padding: 1.25rem 0;
  }
}
.cart-item__image {
  width: 180px;
  height: 200px;
  flex-shrink: 0;
  background: #e8e2d8;
  overflow: hidden;
}
@media (max-width: 768px) {
  .cart-item__image {
    width: 100%;
    height: 200px;
  }
}
.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cart-item__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-family: "Alice", serif;
  min-width: 0;
}
@media (max-width: 768px) {
  .cart-item__details {
    width: 100%;
    padding-top: 0.75rem;
  }
}
.cart-item__name {
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #580A00;
  margin: 0 0 0.3rem;
}
@media (max-width: 768px) {
  .cart-item__name {
    font-size: 1.094rem;
  }
}
.cart-item__name a {
  color: inherit;
  text-decoration: none;
}
.cart-item__desc {
  font-size: 1.25rem;
  color: #580A00;
  margin: 0 0 0.5rem;
}
.cart-item__price {
  font-size: 1.563rem;
  color: #580A00;
  margin: 0 0 1rem;
}
.cart-item__subtotal {
  min-width: 100px;
  text-align: right;
  font-size: 30px;
  color: #580A00;
  font-weight: 400;
  padding-top: 0.2rem;
  font-family: "Alice", serif;
  align-self: flex-start;
}
@media (max-width: 768px) {
  .cart-item__subtotal {
    min-width: unset;
    width: 100%;
    text-align: left;
    font-size: 1.563rem;
    padding-top: 0.75rem;
    border-top: 0.1px solid #580A00;
    margin-top: 0.75rem;
    order: 1;
  }
}
.cart-item__remove {
  font-size: 1.25rem;
  color: #580A00;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  margin-top: 0.85rem;
  width: fit-content;
  background: none;
  border: none;
  padding: 0;
}
@media (max-width: 768px) {
  .cart-item__remove {
    order: 0;
  }
}
.cart-item__remove:hover {
  opacity: 0.7;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #580A00;
  width: fit-content;
}
.qty-stepper__btn {
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  font-size: 1.15rem;
  color: #580A00;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.15s;
}
@media (min-width: 1024px) {
  .qty-stepper__btn {
    width: 40px;
    height: 40px;
  }
}
.qty-stepper__btn:hover {
  background: #e8e0d0;
}
.qty-stepper__input {
  width: 40px;
  height: 30px;
  border: none;
  text-align: center;
  font-size: 1rem;
  background: transparent;
  color: #580A00;
  -moz-appearance: textfield;
}
@media (min-width: 1024px) {
  .qty-stepper__input {
    width: 40px;
    height: 40px;
  }
}
.qty-stepper__input::-webkit-inner-spin-button, .qty-stepper__input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.qty-stepper__input:focus {
  outline: none;
}

.order-summary {
  padding: 1.25rem;
  top: 2rem;
}
@media (min-width: 1024px) {
  .order-summary {
    padding: 1.75rem 1.75rem 2rem;
  }
}
.order-summary__title {
  font-family: "Playfair Display", serif;
  font-size: 1.563rem;
  color: #580A00;
  font-weight: 600;
  margin: 0 0 1rem;
}
.order-summary__divider {
  border: none;
  border-top: 0.1px solid #580A00;
  margin: 0.85rem 0;
}
.order-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.5rem;
  color: #580A00;
  font-family: "Alice", serif;
  padding: 0.45rem 0;
}
.order-summary__row span:last-child {
  font-weight: 400;
}
.order-summary__row--total {
  font-size: 1.05rem;
  font-size: 1.5rem;
  color: #580A00;
  font-family: "Alice", serif;
}
.order-summary__row--total span:last-child {
  font-weight: 500;
}
.order-summary__checkout-btn {
  display: block;
  width: 100%;
  margin-top: 1.75rem;
  background: #580A00;
  text-align: center;
  padding: 10px;
  text-decoration: none;
  transition: background 0.2s ease;
  box-sizing: border-box;
  font-size: 1.25rem;
  color: #FFF2D8;
  font-family: "Alice", serif;
}
.order-summary__checkout-btn:hover {
  background: #5c1a1a;
}

.cart-gold-breakdown-list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.4rem 0;
}

.cart-gold-breakdown {
  border: none;
}
.cart-gold-breakdown__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  padding: 0.5rem 0;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: #580A00;
  font-weight: 600;
  user-select: none;
}
.cart-gold-breakdown__toggle::-webkit-details-marker {
  display: none;
}
.cart-gold-breakdown__toggle-arrow {
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.2s ease;
  color: #580A00;
}
.cart-gold-breakdown[open] .cart-gold-breakdown__toggle-arrow {
  transform: rotate(180deg);
}
.cart-gold-breakdown__body {
  padding: 0 0 0.5rem;
}
.cart-gold-breakdown__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: #580A00;
  font-family: "Alice", serif;
  padding: 0.2rem 0;
}
.cart-gold-breakdown__row span:first-child {
  color: #7C7C7C;
}
.cart-gold-breakdown__row--sub {
  border-top: 0.1px solid rgba(88, 10, 0, 0.2);
  margin-top: 0.3rem;
  padding-top: 0.4rem;
}
.cart-gold-breakdown__row--sub span {
  font-weight: 600;
  color: #580A00;
}

.cart-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  color: #7a6a5a;
}
@media (min-width: 1024px) {
  .cart-empty {
    padding: 5rem 2rem;
  }
}
.cart-empty p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
.cart-empty .btn--dark {
  display: inline-block;
  background: #580A00;
  color: #fff;
  padding: 0.9rem 2.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  transition: background 0.2s;
}
.cart-empty .btn--dark:hover {
  background: #5c1a1a;
}

.checkout-main {
  background: #ffffff;
  min-height: 80vh;
  padding: 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: start;
}
@media (max-width: 960px) {
  .checkout-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 20px;
  }
}

.checkout-section__heading {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
  color: #580A00;
  margin: 0 0 18px;
}
@media (max-width: 768px) {
  .checkout-section__heading {
    font-size: 1.563rem;
  }
}

.checkout-section__block {
  margin-bottom: 32px;
}

.checkout-section__note {
  font-family: "Alice", serif;
  font-size: 1.094rem;
  color: #2A2A2A;
  margin: 6px 0 0;
}
.checkout-section__note a {
  color: #2A2A2A;
  text-decoration: underline;
}

.checkout-fields__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .checkout-fields__row {
    grid-template-columns: 1fr;
  }
}

.woocommerce-checkout .form-row {
  padding: 0;
  margin: 20px 0;
  width: 100%;
}
@media (max-width: 768px) {
  .woocommerce-checkout .form-row {
    margin: 10px 0;
  }
}
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  float: none;
  width: 100%;
  clear: none;
  margin: 0;
}
.woocommerce-checkout #billing_first_name_field,
.woocommerce-checkout #billing_last_name_field,
.woocommerce-checkout #billing_city_field,
.woocommerce-checkout #billing_state_field,
.woocommerce-checkout #billing_postcode_field,
.woocommerce-checkout #billing_phone_field {
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 20px 0;
}
@media (max-width: 768px) {
  .woocommerce-checkout #billing_first_name_field,
  .woocommerce-checkout #billing_last_name_field,
  .woocommerce-checkout #billing_city_field,
  .woocommerce-checkout #billing_state_field,
  .woocommerce-checkout #billing_postcode_field,
  .woocommerce-checkout #billing_phone_field {
    margin: 10px 0;
  }
}
.woocommerce-checkout label {
  display: none;
}
.woocommerce-checkout label[for=billing_country],
.woocommerce-checkout label[for=billing_state] {
  display: block;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #580A00;
  margin-bottom: 0;
}
.woocommerce-checkout label.checkbox,
.woocommerce-checkout label[for*=terms],
.woocommerce-checkout label[for*=ship] {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Alice", serif;
  font-size: 1.25rem;
  color: #580A00;
  cursor: pointer;
  margin-bottom: 0;
}
.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  font-family: "Alice", serif;
  font-size: 1.125rem;
  color: #580A00;
  background: #F8F8F8;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}
.woocommerce-checkout input.input-text:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus {
  outline: none;
  border-color: #580A00;
  background: #fff;
}
.woocommerce-checkout input.input-text::placeholder,
.woocommerce-checkout select::placeholder,
.woocommerce-checkout textarea::placeholder {
  color: #999;
  opacity: 1;
  font-family: "Alice", serif;
  font-size: 1.125rem;
}
.woocommerce-checkout select {
  appearance: none;
  -webkit-appearance: none;
  background-color: #F8F8F8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%234a4a4a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.woocommerce-checkout .select2-container {
  width: 100% !important;
}
.woocommerce-checkout .select2-container .select2-selection--single {
  height: auto;
  padding: 12px 40px 12px 14px;
  border: 1px solid #E0E0E0;
  border-radius: 6px;
  background: #F8F8F8;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%234a4a4a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color 0.2s ease;
}
.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0;
  line-height: 1.5;
  font-family: "Alice", serif;
  font-size: 1.125rem;
  color: #580A00;
}
.woocommerce-checkout .select2-container .select2-selection--single .select2-selection__arrow {
  display: none;
}
.woocommerce-checkout .select2-container.select2-container--open .select2-selection--single, .woocommerce-checkout .select2-container.select2-container--focus .select2-selection--single {
  border-color: #580A00;
  background-color: #fff;
  outline: none;
}
.woocommerce-checkout textarea {
  resize: vertical;
  min-height: 100px;
}
.woocommerce-checkout .checkout-payment-block .woocommerce-checkout-review-order-table {
  display: none;
}
.woocommerce-checkout #payment {
  background: transparent;
  border: none;
  padding: 0;
}
.woocommerce-checkout #payment .wc_payment_methods {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}
.woocommerce-checkout #payment .wc_payment_method {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}
.woocommerce-checkout #payment .wc_payment_method:last-child {
  border-bottom: none;
}
.woocommerce-checkout #payment .wc_payment_method > label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  cursor: pointer;
  font-family: "Alice", serif;
  font-size: 1rem;
  color: #580A00;
  font-weight: 500;
  margin-bottom: 0;
}
.woocommerce-checkout #payment .wc_payment_method > label img {
  height: 22px;
  width: auto;
  margin-left: auto;
  margin-right: 4px;
  object-fit: contain;
}
.woocommerce-checkout #payment .wc_payment_method.payment_method_stripe:has(input[type=radio]:checked) > label, .woocommerce-checkout #payment .wc_payment_method.payment_method_stripe_cc:has(input[type=radio]:checked) > label {
  background: #F2EFE9;
}
.woocommerce-checkout #payment .wc_payment_method input[type=radio] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin: 0;
  accent-color: #580A00;
  cursor: pointer;
}
.woocommerce-checkout #payment .payment_box {
  padding: 12px 16px 16px;
  background: #F2EFE9;
}
.woocommerce-checkout #payment .payment_box p {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  color: #4a4a4a;
  margin: 0 0 10px;
}
.woocommerce-checkout #payment .payment_box .wc-stripe-upe-element {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #ffffff;
  padding: 4px;
  margin-bottom: 0;
}
.woocommerce-checkout #payment .payment_box .wc-stripe-link-authenticated-panel,
.woocommerce-checkout #payment .payment_box #wc-stripe-payment-request-wrapper {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px 14px;
  margin-top: 10px;
  background: #ffffff;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #580A00;
}
.woocommerce-checkout #payment .place-order {
  margin-top: 20px;
  padding: 0;
}
.woocommerce-checkout #payment .place-order #place_order {
  display: block;
  width: 100%;
  padding: 16px;
  background: #580A00;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background all 0.2s ease;
}
.woocommerce-checkout #payment .place-order #place_order:hover {
  background: #280804;
}
.woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  color: #4a4a4a;
  margin-bottom: 14px;
}
.woocommerce-checkout #payment .woocommerce-terms-and-conditions-wrapper a {
  color: #580A00;
  text-decoration: underline;
}
.woocommerce-checkout .return-to-shop,
.woocommerce-checkout a.return-to-cart,
.woocommerce-checkout p.return-to-cart {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #580A00;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.woocommerce-checkout .return-to-shop:hover,
.woocommerce-checkout a.return-to-cart:hover,
.woocommerce-checkout p.return-to-cart:hover {
  opacity: 0.7;
}
.woocommerce-checkout .woocommerce-error,
.woocommerce-checkout .woocommerce-message,
.woocommerce-checkout .woocommerce-info {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  padding: 10px 14px;
  border-radius: 6px;
  margin-bottom: 14px;
  list-style: none;
}
.woocommerce-checkout a.return-to-cart {
  display: inline-block;
  margin-top: 14px;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #4a4a4a;
  text-decoration: underline;
}
.woocommerce-checkout a.return-to-cart:hover {
  color: #580A00;
}

.checkout-right {
  position: sticky;
  top: 40px;
}
@media (max-width: 960px) {
  .checkout-right {
    position: static;
    order: -1;
  }
}

.checkout-summary {
  background: #F2EFE9;
  border-radius: 10px;
  padding: 24px;
}
.checkout-summary__title {
  font-family: "Playfair Display", serif;
  font-size: 1.563rem;
  font-weight: 600;
  color: #580A00;
  margin: 0 0 20px;
}
.checkout-summary__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.checkout-summary__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}
.checkout-summary__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.checkout-summary__item-img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #f8f8f8;
}
.checkout-summary__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.checkout-summary__item-info {
  flex: 1;
  min-width: 0;
}
.checkout-summary__item-info h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #580A00;
  margin: 0 0 2px;
}
.checkout-summary__item-subtitle {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #580A00;
  font-weight: 500;
  margin: 0 0 4px;
  line-height: 1.4;
}
.checkout-summary__item-price {
  font-family: "Alice", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #580A00;
  margin: 0 0 6px;
}
.checkout-summary__item-desc {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  color: #4a4a4a;
  line-height: 1.5;
  margin: 0;
}
.checkout-summary__coupon {
  border-top: 1px dashed #e0e0e0;
  border-bottom: 1px dashed #e0e0e0;
  padding: 12px 0;
  margin-bottom: 16px;
}
.checkout-summary__coupon-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #580A00;
  cursor: pointer;
  padding: 0;
}
.checkout-summary__coupon-toggle svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.checkout-summary__coupon-toggle:hover {
  color: #280804;
}
.checkout-summary__coupon-form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.checkout-summary__totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkout-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #580A00;
}
.checkout-summary__row--total {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  border-top: 1px solid #e0e0e0;
  padding-top: 12px;
  margin-top: 4px;
}

.checkout-coupon__input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  font-family: "Alice", serif;
  font-size: 0.875rem;
}
.checkout-coupon__input:focus {
  outline: none;
  border-color: #580A00;
}

@media (max-width: 768px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .checkout-right {
    position: static;
    order: -1;
  }
}
#wc-stripe-express-checkout-element-wrapper,
.wc-stripe-express-checkout-wrapper,
#wc-stripe-express-checkout-wrapper {
  margin-bottom: 28px;
}

.wc-stripe-express-checkout-divider,
#wc-stripe-express-checkout-element-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #4a4a4a;
  margin-bottom: 12px;
}
.wc-stripe-express-checkout-divider::before, .wc-stripe-express-checkout-divider::after,
#wc-stripe-express-checkout-element-label::before,
#wc-stripe-express-checkout-element-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

#wc-stripe-express-checkout-element {
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.wc-stripe-express-checkout-section {
  margin-bottom: 28px;
}
.wc-stripe-express-checkout-section__separator {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #4a4a4a;
  margin-top: 16px;
}
.wc-stripe-express-checkout-section__separator::before, .wc-stripe-express-checkout-section__separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

.checkout-login {
  margin: 28px 0 24px;
}
@media (max-width: 768px) {
  .checkout-login {
    margin: 20px 0 16px;
  }
}
.checkout-login__prompt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: #F2EFE9;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .checkout-login__prompt {
    padding: 14px 16px;
  }
}
.checkout-login__prompt-text {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #580A00;
}
.checkout-login__toggle {
  background: none;
  border: none;
  padding: 0;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #580A00;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.checkout-login__toggle:hover {
  opacity: 0.7;
}
.checkout-login__form {
  margin-top: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .checkout-login__form {
    padding: 16px;
  }
}
.checkout-login__form .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #580A00;
  cursor: pointer;
  margin: 0;
}
.checkout-login__form .woocommerce-form-login__rememberme input[type=checkbox] {
  width: 16px;
  height: 16px;
  accent-color: #580A00;
  margin: 0;
}
.checkout-login__form .form-row {
  float: none;
  width: 100%;
  margin: 0 0 14px;
}
.checkout-login__form .form-row:last-of-type {
  margin-bottom: 0;
}
.checkout-login__form .woocommerce-form-login__submit {
  display: inline-block;
  padding: 12px 28px;
  background: #580A00;
  color: #ffffff;
  border: none;
  border-radius: 4px;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background all 0.2s ease;
}
@media (max-width: 768px) {
  .checkout-login__form .woocommerce-form-login__submit {
    width: 100%;
  }
}
.checkout-login__form .woocommerce-form-login__submit:hover {
  background: #280804;
}
.checkout-login__form .lost_password {
  margin: 4px 0 0;
  font-size: 0.75rem;
}
.checkout-login__form .lost_password a {
  color: #4a4a4a;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.checkout-login__form .lost_password a:hover {
  color: #580A00;
}

.thankyou-main {
  background: #ffffff;
  min-height: 80vh;
  padding: 60px 0 100px;
}
@media (max-width: 768px) {
  .thankyou-main {
    padding: 24px 16px 48px;
  }
}

.thankyou-header {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .thankyou-header {
    margin-bottom: 24px;
    text-align: center;
  }
}
.thankyou-header__title {
  font-family: "Playfair Display", serif;
  font-size: 2.188rem;
  font-weight: 700;
  color: #580A00;
  margin: 0 0 8px;
  line-height: 1.15;
}
@media (max-width: 768px) {
  .thankyou-header__title {
    font-size: 1.5rem;
    margin: 0 0 6px;
  }
}
.thankyou-header__title--failed {
  color: #e63946;
}
.thankyou-header__sub {
  font-family: "Alice", serif;
  font-size: 1rem;
  color: #4a4a4a;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .thankyou-header__sub {
    font-size: 0.875rem;
  }
}

.thankyou-meta {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 0.5px solid rgba(88, 10, 0, 0.15);
  padding-bottom: 40px;
}
@media (max-width: 768px) {
  .thankyou-meta {
    flex-direction: column;
    gap: 0;
    padding: 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(88, 10, 0, 0.12);
    border-radius: 8px;
    background: #F2EFE9;
  }
}
.thankyou-meta__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 48px;
}
@media (max-width: 768px) {
  .thankyou-meta__item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 0.5px solid rgba(88, 10, 0, 0.1);
  }
  .thankyou-meta__item:first-child {
    padding-top: 0;
  }
  .thankyou-meta__item:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.thankyou-meta__label {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #4a4a4a;
  font-weight: 400;
}
@media (max-width: 768px) {
  .thankyou-meta__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    opacity: 0.8;
  }
}
.thankyou-meta__value {
  font-family: "Alice", serif;
  font-size: 1rem;
  color: #4a4a4a;
  font-weight: 400;
  word-break: break-word;
}
@media (max-width: 768px) {
  .thankyou-meta__value {
    font-size: 0.875rem;
    font-weight: 600;
    color: #580A00;
    text-align: right;
  }
}

.thankyou-details {
  background: #F2EFE9;
  border-radius: 8px;
  padding: 32px 40px 40px;
  margin: 0 0 40px;
}
@media (max-width: 768px) {
  .thankyou-details {
    padding: 20px 16px;
    margin: 0 0 24px;
  }
}
.thankyou-details__title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #580A00;
  margin: 0 0 24px;
}
@media (max-width: 768px) {
  .thankyou-details__title {
    font-size: 1.25rem;
    margin: 0 0 16px;
  }
}

.thankyou-table__head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
}
.thankyou-table__head span {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #580A00;
}
@media (max-width: 768px) {
  .thankyou-table__head span {
    font-size: 0.875rem;
  }
}
.thankyou-table__divider {
  border: none;
  border-top: 0.5px solid rgba(88, 10, 0, 0.2);
  margin: 0;
}
.thankyou-table__divider--top {
  border-top-width: 1px;
  border-top-color: #580A00;
}
.thankyou-table__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 16px;
}
@media (max-width: 768px) {
  .thankyou-table__row {
    padding: 14px 0;
    gap: 12px;
  }
}
.thankyou-table__row--total {
  padding-top: 14px;
  padding-bottom: 0;
}
.thankyou-table__row--total .thankyou-table__col-product strong {
  font-family: "Alice", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #4a4a4a;
}
.thankyou-table__row--total .thankyou-table__col-total {
  font-family: "Alice", serif;
  font-size: 1rem;
  font-weight: 400;
  color: #4a4a4a;
}
@media (max-width: 768px) {
  .thankyou-table__row--total .thankyou-table__col-total {
    font-size: 1rem;
    font-weight: 600;
    color: #580A00;
  }
}
.thankyou-table__col-product {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .thankyou-table__col-product {
    gap: 8px;
  }
}
.thankyou-table__col-total {
  font-family: "Alice", serif;
  font-size: 1rem;
  color: #4a4a4a;
  font-weight: 400;
  flex-shrink: 0;
  text-align: right;
}
@media (max-width: 768px) {
  .thankyou-table__col-total {
    font-size: 0.875rem;
  }
}
.thankyou-table__product-name {
  font-family: "Alice", serif;
  font-size: 1rem;
  color: #4a4a4a;
  font-weight: 400;
  word-break: break-word;
}
@media (max-width: 768px) {
  .thankyou-table__product-name {
    font-size: 0.875rem;
  }
}
.thankyou-table__product-qty {
  font-family: "Alice", serif;
  font-size: 1rem;
  color: #4a4a4a;
  font-weight: 400;
  flex-shrink: 0;
  padding: 2px 8px;
  background: rgba(88, 10, 0, 0.06);
  border-radius: 999px;
}
@media (max-width: 768px) {
  .thankyou-table__product-qty {
    font-size: 0.75rem;
    padding: 1px 7px;
  }
}
.thankyou-table__product-qty::before {
  content: "× ";
  opacity: 0.55;
}

.thankyou-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .thankyou-actions {
    margin-top: 4px;
  }
}
.thankyou-actions .btn--outline {
  display: inline-block;
  padding: 12px 40px;
  border: 1.5px solid #580A00;
  color: #580A00;
  font-family: "Alice", serif;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}
@media (max-width: 768px) {
  .thankyou-actions .btn--outline {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 0.875rem;
  }
}
.thankyou-actions .btn--outline:hover {
  background: #580A00;
  color: #ffffff;
}

.account-main {
  background: #f8f8f8;
  min-height: 80vh;
  padding: 48px 0 100px;
}
@media (max-width: 768px) {
  .account-main {
    padding: 24px 0 60px;
  }
}

.account-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 1024px) {
  .account-layout {
    grid-template-columns: 240px 1fr;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .account-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.account-sidebar {
  position: sticky;
  top: 28px;
}
@media (max-width: 768px) {
  .account-sidebar {
    position: static;
  }
}

.account-nav {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
}
.account-nav__user {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 20px;
  background: #580A00;
}
.account-nav__avatar {
  flex-shrink: 0;
  position: relative;
}
.account-nav__avatar img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.account-nav__avatar::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  border: 2px solid #580A00;
}
.account-nav__user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.account-nav__user-name {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.account-nav__user-email {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.account-nav__list {
  list-style: none;
  margin: 0;
  padding: 10px 0 6px;
}
.account-nav__item {
  margin: 0;
}
.account-nav__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #4a4a4a;
  text-decoration: none;
  transition: color 0.15s ease, background 0.15s ease;
  position: relative;
}
.account-nav__link:hover {
  color: #580A00;
  background: rgba(88, 10, 0, 0.04);
}
.account-nav__item.is-active .account-nav__link, .account-nav__item.woocommerce-MyAccount-navigation-link--is-active .account-nav__link {
  color: #580A00;
  font-weight: 600;
  background: rgba(88, 10, 0, 0.06);
}
.account-nav__item.is-active .account-nav__link::before, .account-nav__item.woocommerce-MyAccount-navigation-link--is-active .account-nav__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: #580A00;
  border-radius: 0 3px 3px 0;
}
.account-nav__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
.account-nav__item.is-active .account-nav__icon, .account-nav__item.woocommerce-MyAccount-navigation-link--is-active .account-nav__icon {
  opacity: 1;
}
.account-nav__link:hover .account-nav__icon {
  opacity: 0.8;
}
.account-nav__item.woocommerce-MyAccount-navigation-link--customer-logout .account-nav__link {
  color: #c0392b;
  margin-top: 4px;
  border-top: 1px solid #e0e0e0;
  padding-top: 14px;
  margin-top: 4px;
}
.account-nav__item.woocommerce-MyAccount-navigation-link--customer-logout .account-nav__link:hover {
  background: rgba(230, 57, 70, 0.05);
}
.account-nav__item.woocommerce-MyAccount-navigation-link--customer-logout .account-nav__icon {
  opacity: 0.7;
}

.account-content {
  min-width: 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
}
@media (max-width: 768px) {
  .account-content {
    padding: 24px 20px;
    border-radius: 12px;
  }
}
.account-content .woocommerce-MyAccount-content > p:first-child {
  margin-top: 0;
}
.account-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #580A00;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}
.account-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #580A00;
  margin: 0 0 16px;
}
.account-content p {
  font-family: "Alice", serif;
  font-size: 1rem;
  color: #4a4a4a;
  line-height: 1.7;
}
.account-content a {
  color: #580A00;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.account-content .woocommerce-form-row,
.account-content .form-row {
  margin: 0 0 18px;
}
.account-content .woocommerce-form-row label,
.account-content .form-row label {
  display: block;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #580A00;
  margin-bottom: 6px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.account-content .woocommerce-form-row input.input-text,
.account-content .woocommerce-form-row input[type=text],
.account-content .woocommerce-form-row input[type=email],
.account-content .woocommerce-form-row input[type=password],
.account-content .woocommerce-form-row select,
.account-content .woocommerce-form-row textarea,
.account-content .form-row input.input-text,
.account-content .form-row input[type=text],
.account-content .form-row input[type=email],
.account-content .form-row input[type=password],
.account-content .form-row select,
.account-content .form-row textarea {
  display: block;
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Alice", serif;
  font-size: 1rem;
  color: #580A00;
  background: #f8f8f8;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.account-content .woocommerce-form-row input.input-text:focus,
.account-content .woocommerce-form-row input[type=text]:focus,
.account-content .woocommerce-form-row input[type=email]:focus,
.account-content .woocommerce-form-row input[type=password]:focus,
.account-content .woocommerce-form-row select:focus,
.account-content .woocommerce-form-row textarea:focus,
.account-content .form-row input.input-text:focus,
.account-content .form-row input[type=text]:focus,
.account-content .form-row input[type=email]:focus,
.account-content .form-row input[type=password]:focus,
.account-content .form-row select:focus,
.account-content .form-row textarea:focus {
  outline: none;
  border-color: #580A00;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(88, 10, 0, 0.08);
}
.account-content .woocommerce-form-row input.input-text::placeholder,
.account-content .woocommerce-form-row input[type=text]::placeholder,
.account-content .woocommerce-form-row input[type=email]::placeholder,
.account-content .woocommerce-form-row input[type=password]::placeholder,
.account-content .woocommerce-form-row select::placeholder,
.account-content .woocommerce-form-row textarea::placeholder,
.account-content .form-row input.input-text::placeholder,
.account-content .form-row input[type=text]::placeholder,
.account-content .form-row input[type=email]::placeholder,
.account-content .form-row input[type=password]::placeholder,
.account-content .form-row select::placeholder,
.account-content .form-row textarea::placeholder {
  color: #aaa;
  opacity: 1;
}
.account-content .woocommerce-Button,
.account-content button[type=submit],
.account-content input[type=submit],
.account-content .button {
  display: inline-block;
  padding: 12px 28px;
  background: #580A00;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
  letter-spacing: 0.02em;
}
.account-content .woocommerce-Button:hover,
.account-content button[type=submit]:hover,
.account-content input[type=submit]:hover,
.account-content .button:hover {
  background: #280804;
  color: #ffffff;
  transform: translateY(-1px);
}
.account-content .woocommerce-Button:active,
.account-content button[type=submit]:active,
.account-content input[type=submit]:active,
.account-content .button:active {
  transform: translateY(0);
}
.account-content .woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}
.account-content .woocommerce-orders-table th {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4a4a4a;
  text-align: left;
  padding: 12px 16px;
  background: #f8f8f8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.account-content .woocommerce-orders-table td {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #4a4a4a;
  padding: 14px 16px;
  border-top: 1px solid #e0e0e0;
  vertical-align: middle;
}
.account-content .woocommerce-orders-table tr:hover td {
  background: rgba(88, 10, 0, 0.02);
}
.account-content mark.order-status {
  background: transparent;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: "Alice", serif;
}
.account-content mark.order-status.processing {
  background: rgba(42, 157, 143, 0.1);
  color: #1a6b62;
}
.account-content mark.order-status.completed {
  background: rgba(88, 10, 0, 0.08);
  color: #580A00;
}
.account-content mark.order-status.on-hold {
  background: rgba(233, 196, 106, 0.2);
  color: #7d6a1e;
}
.account-content mark.order-status.cancelled, .account-content mark.order-status.failed {
  background: rgba(230, 57, 70, 0.08);
  color: #e63946;
}
.account-content .woocommerce-message,
.account-content .woocommerce-error,
.account-content .woocommerce-info {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  list-style: none;
}
.account-content .woocommerce-message {
  background: rgba(42, 157, 143, 0.08);
  color: #1a6b62;
  border-left: 3px solid #2a9d8f;
}
.account-content .woocommerce-error {
  background: rgba(230, 57, 70, 0.06);
  color: #e63946;
  border-left: 3px solid #e63946;
}
.account-content .woocommerce-info {
  background: rgba(88, 10, 0, 0.05);
  color: #580A00;
  border-left: 3px solid #580A00;
}

.account-dashboard__title {
  font-family: "Playfair Display", serif;
  font-size: 2.188rem;
  font-weight: 700;
  color: #580A00;
  margin: 0 0 6px;
}
@media (max-width: 768px) {
  .account-dashboard__title {
    font-size: 1.563rem;
  }
}
.account-dashboard__sub {
  font-family: "Alice", serif;
  font-size: 1rem;
  color: #4a4a4a;
  margin: 0 0 36px;
}
.account-dashboard__section {
  margin-bottom: 36px;
}
.account-dashboard__section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #580A00;
  margin: 0 0 14px;
}
.account-dashboard__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #580A00;
  text-decoration: none;
  font-weight: 600;
  opacity: 0.8;
}
.account-dashboard__link::after {
  content: "→";
}
.account-dashboard__link:hover {
  opacity: 1;
}
.account-dashboard__quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 768px) {
  .account-dashboard__quick-links {
    grid-template-columns: repeat(2, 1fr);
  }
}
.account-dashboard__quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 16px 22px;
  background: #f8f8f8;
  border: 1px solid #e0e0e0;
  border-radius: 14px;
  text-decoration: none;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #580A00;
  font-weight: 500;
  transition: all 0.2s ease;
  text-align: center;
}
.account-dashboard__quick-link svg {
  stroke: #580A00;
  transition: stroke 0.2s ease, transform 0.2s ease;
}
.account-dashboard__quick-link:hover {
  background: #580A00;
  border-color: #580A00;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88, 10, 0, 0.18);
}
.account-dashboard__quick-link:hover svg {
  stroke: #ffffff;
  transform: scale(1.1);
}

.account-orders-list {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}
.account-orders-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #e0e0e0;
  gap: 16px;
  transition: background 0.15s ease;
}
.account-orders-list__item:last-child {
  border-bottom: none;
}
.account-orders-list__item:hover {
  background: rgba(88, 10, 0, 0.02);
}
@media (max-width: 768px) {
  .account-orders-list__item {
    flex-direction: column;
    align-items: flex-start;
  }
}
.account-orders-list__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.account-orders-list__number {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #580A00;
}
.account-orders-list__date {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  color: #7C7C7C;
}
.account-orders-list__right {
  display: flex;
  align-items: center;
  gap: 14px;
}
@media (max-width: 768px) {
  .account-orders-list__right {
    width: 100%;
    justify-content: space-between;
  }
}
.account-orders-list__total {
  font-family: "Alice", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #580A00;
}
.account-orders-list__status {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 9999px;
  letter-spacing: 0.03em;
}
.account-orders-list__status--processing {
  background: rgba(42, 157, 143, 0.1);
  color: #1a6b62;
}
.account-orders-list__status--completed {
  background: rgba(88, 10, 0, 0.08);
  color: #580A00;
}
.account-orders-list__status--on-hold {
  background: rgba(233, 196, 106, 0.2);
  color: #7d6a1e;
}
.account-orders-list__status--cancelled, .account-orders-list__status--failed {
  background: rgba(230, 57, 70, 0.08);
  color: #e63946;
}
.account-orders-list__view {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1.5px solid #580A00;
  border-radius: 6px;
  font-family: "Alice", serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #580A00;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.account-orders-list__view:hover {
  background: #580A00;
  color: #ffffff;
}

.account-auth {
  max-width: 1000px;
  margin: 0 auto;
}
.account-auth--split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 12px 40px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .account-auth--split {
    grid-template-columns: 1fr;
  }
}
.account-auth--single {
  max-width: 480px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06), 0 12px 40px rgba(0, 0, 0, 0.06);
}
.account-auth__panel {
  padding: 52px 44px;
}
@media (max-width: 768px) {
  .account-auth__panel {
    padding: 36px 24px;
  }
}
.account-auth__panel--login {
  background: #ffffff;
}
.account-auth__panel--register {
  background: #F2EFE9;
}
@media (max-width: 768px) {
  .account-auth__panel--register {
    border-top: 1px solid #e0e0e0;
  }
}
.account-auth__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1px;
  background: #e0e0e0;
  position: relative;
}
@media (max-width: 768px) {
  .account-auth__divider {
    width: 100%;
    height: 1px;
  }
}
.account-auth__divider span {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  color: #7C7C7C;
  background: #ffffff;
  padding: 8px 0;
  position: absolute;
}
@media (max-width: 768px) {
  .account-auth__divider span {
    background: #F2EFE9;
    padding: 0 12px;
  }
}
.account-auth__title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #580A00;
  margin: 0 0 6px;
  line-height: 1.2;
}
.account-auth__sub {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #4a4a4a;
  margin: 0 0 32px;
  line-height: 1.6;
}
.account-auth__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.account-auth__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.account-auth__field label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #580A00;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.account-auth__input {
  display: block;
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: "Alice", serif;
  font-size: 1rem;
  color: #580A00;
  background: #f8f8f8;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.account-auth__input:focus {
  outline: none;
  border-color: #580A00;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(88, 10, 0, 0.08);
}
.account-auth__input::placeholder {
  color: #b0b0b0;
  opacity: 1;
}
.account-auth__panel--register .account-auth__input {
  background: #ffffff;
}
.account-auth__forgot {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  color: #7C7C7C;
  text-decoration: none;
  font-weight: 500;
}
.account-auth__forgot:hover {
  color: #580A00;
  text-decoration: underline;
}
.account-auth__remember {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #4a4a4a;
  margin-bottom: 28px;
  cursor: pointer;
  user-select: none;
}
.account-auth__remember input[type=checkbox] {
  width: 17px;
  height: 17px;
  accent-color: #580A00;
  cursor: pointer;
  border-radius: 4px;
}
.account-auth__submit {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  font-family: "Alice", serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  letter-spacing: 0.02em;
}
.account-auth__submit.btn--primary {
  background: #580A00;
  color: #ffffff;
}
.account-auth__submit.btn--primary:hover {
  background: #280804;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(88, 10, 0, 0.25);
}
.account-auth__submit.btn--primary:active {
  transform: translateY(0);
  box-shadow: none;
}
.account-auth__submit.btn--outline {
  background: transparent;
  color: #580A00;
  border: 2px solid #580A00;
}
.account-auth__submit.btn--outline:hover {
  background: #580A00;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(88, 10, 0, 0.2);
}
.account-auth__submit.btn--outline:active {
  transform: translateY(0);
  box-shadow: none;
}
.account-auth__note {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #4a4a4a;
  margin-bottom: 20px;
  line-height: 1.6;
  padding: 12px 14px;
  background: rgba(88, 10, 0, 0.04);
  border-radius: 8px;
}

fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

legend {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #580A00;
  margin-bottom: 16px;
  padding: 0;
}

.woocommerce-privacy-policy-text {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  color: #7C7C7C;
  line-height: 1.6;
  margin-top: 16px;
}
.woocommerce-privacy-policy-text a {
  color: #580A00;
}

.sgj-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #580A00;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  letter-spacing: 0.02em;
}
.sgj-btn:hover {
  background: #280804;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(88, 10, 0, 0.2);
}
.sgj-btn--full {
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

.sgj-back-link {
  display: inline-block;
  margin-top: 14px;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #4a4a4a;
  text-decoration: none;
}
.sgj-back-link:hover {
  color: #580A00;
}
.sgj-back-link--center {
  display: block;
  text-align: center;
}

.sgj-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 60px 20px;
  text-align: center;
  color: #7C7C7C;
}
.sgj-empty svg {
  stroke: #7C7C7C;
  opacity: 0.5;
}
.sgj-empty p {
  font-family: "Alice", serif;
  font-size: 1rem;
  color: #4a4a4a;
  margin: 0;
}

.sgj-orders__row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: background 0.15s ease;
}
.sgj-orders__row:first-child {
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 768px) {
  .sgj-orders__row {
    flex-wrap: wrap;
    gap: 10px;
  }
}
.sgj-orders__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.sgj-orders__number {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #580A00;
}
.sgj-orders__date {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  color: #7C7C7C;
}
.sgj-orders__mid {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: right;
}
@media (max-width: 768px) {
  .sgj-orders__mid {
    text-align: left;
  }
}
.sgj-orders__items {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  color: #7C7C7C;
}
.sgj-orders__total {
  font-family: "Alice", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #580A00;
}
.sgj-orders__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.sgj-orders__status {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 9999px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.sgj-orders__status--processing {
  background: rgba(42, 157, 143, 0.1);
  color: #1a6b62;
}
.sgj-orders__status--completed {
  background: rgba(88, 10, 0, 0.08);
  color: #580A00;
}
.sgj-orders__status--on-hold {
  background: rgba(233, 196, 106, 0.2);
  color: #7d6a1e;
}
.sgj-orders__status--cancelled, .sgj-orders__status--failed {
  background: rgba(230, 57, 70, 0.08);
  color: #e63946;
}
.sgj-orders__status--pending {
  background: rgba(0, 0, 0, 0.05);
  color: #4a4a4a;
}
.sgj-orders__view {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border: 1.5px solid #580A00;
  border-radius: 7px;
  font-family: "Alice", serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #580A00;
  text-decoration: none;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.sgj-orders__view:hover {
  background: #580A00;
  color: #ffffff;
}
.sgj-orders__pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
.sgj-orders__page-btn {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #580A00;
  text-decoration: none;
  font-weight: 600;
}
.sgj-orders__page-btn:hover {
  opacity: 0.7;
}

.sgj-view-order__banner {
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 32px;
  background: rgba(88, 10, 0, 0.05);
  border-left: 4px solid #580A00;
}
.sgj-view-order__banner--processing {
  background: rgba(42, 157, 143, 0.07);
  border-color: #2a9d8f;
}
.sgj-view-order__banner--completed {
  background: rgba(88, 10, 0, 0.05);
  border-color: #580A00;
}
.sgj-view-order__banner--on-hold {
  background: rgba(233, 196, 106, 0.12);
  border-color: #c9a227;
}
.sgj-view-order__banner--cancelled, .sgj-view-order__banner--failed {
  background: rgba(230, 57, 70, 0.06);
  border-color: #e63946;
}
.sgj-view-order__banner-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.sgj-view-order__status-pill {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  background: #580A00;
  color: #ffffff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.sgj-view-order__banner-text {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #4a4a4a;
  margin: 0;
}
.sgj-view-order__section {
  margin-bottom: 32px;
}
.sgj-view-order__section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #580A00;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0e0e0;
}
.sgj-view-order__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sgj-view-order__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #e0e0e0;
}
.sgj-view-order__item:last-child {
  border-bottom: none;
}
.sgj-view-order__item-img {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f8f8;
}
.sgj-view-order__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sgj-view-order__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.sgj-view-order__item-name {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #580A00;
}
.sgj-view-order__item-qty {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  color: #7C7C7C;
}
.sgj-view-order__item-total {
  font-family: "Alice", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #580A00;
  white-space: nowrap;
}
.sgj-view-order__meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .sgj-view-order__meta-grid {
    grid-template-columns: 1fr;
  }
}
.sgj-view-order__totals {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sgj-view-order__total-row {
  display: flex;
  justify-content: space-between;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #4a4a4a;
}
.sgj-view-order__total-row--grand {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #580A00;
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1px solid #e0e0e0;
}
.sgj-view-order__address {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #4a4a4a;
  line-height: 1.8;
  font-style: normal;
}
.sgj-view-order__notes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sgj-view-order__note {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 14px 18px;
}
.sgj-view-order__note-date {
  display: block;
  font-family: "Alice", serif;
  font-size: 0.75rem;
  color: #7C7C7C;
  margin-bottom: 6px;
}
.sgj-view-order__back {
  margin-top: 8px;
}

.sgj-addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .sgj-addresses {
    grid-template-columns: 1fr;
  }
}
.sgj-addresses__card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 24px;
  background: #ffffff;
}
.sgj-addresses__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.sgj-addresses__card-title {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #580A00;
  margin: 0;
}
.sgj-addresses__edit {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #580A00;
  text-decoration: none;
  padding: 5px 12px;
  border: 1.5px solid #580A00;
  border-radius: 6px;
  transition: all 0.15s ease;
}
.sgj-addresses__edit:hover {
  background: #580A00;
  color: #ffffff;
}
.sgj-addresses__address {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #4a4a4a;
  line-height: 1.8;
  font-style: normal;
}
.sgj-addresses__empty {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #7C7C7C;
  font-style: italic;
}

.sgj-edit-address__title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #580A00;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e0e0e0;
}
.sgj-edit-address__fields {
  margin-bottom: 28px;
}
.sgj-edit-address__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sgj-edit-account__section {
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e0e0e0;
}
.sgj-edit-account__section:last-of-type {
  border-bottom: none;
}
.sgj-edit-account__section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #580A00;
  margin: 0 0 6px;
}
.sgj-edit-account__section-sub {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #7C7C7C;
  margin: 0 0 20px;
}
.sgj-edit-account__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .sgj-edit-account__row {
    grid-template-columns: 1fr;
  }
}
.sgj-edit-account__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}
.sgj-edit-account__field label {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #580A00;
  margin-bottom: 7px;
  letter-spacing: 0.01em;
}
.sgj-edit-account__field label span {
  color: #e63946;
  margin-left: 2px;
}
.sgj-edit-account__input {
  display: block;
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-family: "Alice", serif;
  font-size: 1rem;
  color: #580A00;
  background: #f8f8f8;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.sgj-edit-account__input:focus {
  outline: none;
  border-color: #580A00;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(88, 10, 0, 0.08);
}
.sgj-edit-account__input::placeholder {
  color: #aaa;
  opacity: 1;
}
.sgj-edit-account__hint {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  color: #7C7C7C;
  margin-top: 5px;
}
.sgj-edit-account__actions {
  padding-top: 8px;
}

.sgj-lost-password {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}
.sgj-lost-password__icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  color: #580A00;
  opacity: 0.6;
}
.sgj-lost-password__title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #580A00;
  margin: 0 0 8px;
}
.sgj-lost-password__sub {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0 0 32px;
}
.sgj-lost-password__form {
  text-align: left;
}
.sgj-lost-password__field {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.sgj-lost-password__field label {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #580A00;
  margin-bottom: 7px;
}
.sgj-lost-password__input {
  display: block;
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  font-family: "Alice", serif;
  font-size: 1rem;
  color: #580A00;
  background: #f8f8f8;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.sgj-lost-password__input:focus {
  outline: none;
  border-color: #580A00;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(88, 10, 0, 0.08);
}
.sgj-lost-password__input::placeholder {
  color: #b0b0b0;
  opacity: 1;
}

.sgj-order-details__section {
  margin-bottom: 32px;
}
.sgj-order-details__section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #580A00;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e0e0e0;
}
.sgj-order-details__items {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
}
.sgj-order-details__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #e0e0e0;
}
.sgj-order-details__item:last-child {
  border-bottom: none;
}
.sgj-order-details__item-img {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f8f8;
}
.sgj-order-details__item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.sgj-order-details__item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sgj-order-details__item-name {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 600;
  color: #580A00;
}
.sgj-order-details__item-name a {
  color: #580A00;
  text-decoration: none;
}
.sgj-order-details__item-name a:hover {
  text-decoration: underline;
}
.sgj-order-details__item-qty {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  color: #7C7C7C;
}
.sgj-order-details__purchase-note {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  color: #4a4a4a;
  margin-top: 4px;
}
.sgj-order-details__item-total {
  font-family: "Alice", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #580A00;
  white-space: nowrap;
  flex-shrink: 0;
}
.sgj-order-details__totals {
  border-top: 1px solid #e0e0e0;
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}
.sgj-order-details__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #4a4a4a;
}
.sgj-order-details__total-row--grand {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #580A00;
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1px solid #e0e0e0;
}
.sgj-order-details__note {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #4a4a4a;
  padding-top: 10px;
  border-top: 1px solid #e0e0e0;
}
.sgj-order-details__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.sgj-btn--sm {
  padding: 9px 20px;
  font-size: 0.75rem;
}

.sgj-order-addresses {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 8px;
}
.sgj-order-addresses--split {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .sgj-order-addresses--split {
    grid-template-columns: 1fr;
  }
}
.sgj-order-addresses__card {
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 22px 24px;
  background: #f8f8f8;
}
.sgj-order-addresses__title {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #580A00;
  margin: 0 0 12px;
}
.sgj-order-addresses__address {
  font-family: "Alice", serif;
  font-size: 0.875rem;
  color: #4a4a4a;
  line-height: 1.8;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sgj-order-addresses__phone, .sgj-order-addresses__email {
  font-family: "Alice", serif;
  font-size: 0.75rem;
  color: #7C7C7C;
  margin-top: 4px;
}

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