@charset "UTF-8";
:root {
  --primary-color: #dfbb7b;
  --secondary-color: #2c2c2c;
  --accent-color: #8b4513;
  --white-color: #fff;
  --white-color-2: #fffcfc;
  --white-color-3: rgb(236, 229, 217);
  --light-gray-color: #f6f6f6;
  --black-color: #000;
  --text-color: #000;
  --text-light: #666;
  --darkolive-color: #3a3c37;
  --background-color: #fff;
  --background-light: #f8f8f8;
  --background-dark: #2c2c2c;
  --border-color: #e5e5e5;
  --success-color: #28a745;
  --error-color: #dc3545;
  --container-max-width: 144rem;
  --font-family-primary: Montserrat, -apple-system, blinkmacsystemfont, Segoe UI, roboto, sans-serif;
  --font-family-secondary: Montserrat, -apple-system, blinkmacsystemfont, Segoe UI, roboto, sans-serif;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 450;
  --font-weight-semi-bold: 500;
  --font-weight-bold: 600;
  --font-weight-heavy: 700;
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-large: 18px;
  --font-size-xl: 24px;
  --font-size-xxl: 32px;
  --font-size-h1: 48px;
  --font-size-h2: 40px;
  --font-size-h3: 28px;
  --font-size-h4: 24px;
  --font-size-h5: 20px;
  --font-size-h6: 18px;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-14: 14px;
  --spacing-20: 20px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
  --spacing-50: 50px;
  --spacing-75: 75px;
  --spacing-56: 56px;
  --spacing-90: 90px;
  --spacing-150: 150px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 12px;
  --border-radius-xl: 16px;
  --border-radius-24: 24px;
  --border-radius-32: 32px;
  --border-radius-40: 40px;
  --border-radius-48: 48px;
  --border-radius-56: 56px;
  --border-radius-64: 64px;
  --border-radius-72: 72px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  color: #000;
  font-family: "Montserrat", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
dl,
dd,
ol,
ul,
figure,
hr,
fieldset,
legend {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #dfbb7b;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  appearance: button;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
button:focus {
  outline: none;
}

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

:focus {
  outline: 2px solid #dfbb7b;
  outline-offset: 2px;
}

.skip-link {
  background: #dfbb7b;
  border-radius: 4px;
  color: #fff;
  left: 6px;
  padding: 8px;
  position: absolute;
  text-decoration: none;
  top: -40px;
  z-index: 1070;
}
.skip-link:focus {
  top: 6px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-secondary);
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: var(--font-size-h1);
}

h2 {
  font-size: var(--font-size-h2);
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

h5 {
  font-size: var(--font-size-h5);
}

h6 {
  font-size: var(--font-size-h6);
}

p {
  line-height: 1.6;
  margin: 0 0 var(--spacing-md);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover {
  color: var(--accent-color);
}

.container {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 var(--spacing-md);
}
@media (width >= 992px) {
  .container {
    padding: 0 var(--spacing-lg);
  }
}
@media (width >= 1200px) {
  .container {
    padding: 0 var(--spacing-xl);
  }
}

.btn {
  border: none;
  border-radius: var(--border-radius-md);
  cursor: pointer;
  display: inline-block;
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: var(--spacing-sm) var(--spacing-md);
  text-align: center;
  text-decoration: none;
  transition: all var(--transition-fast);
}
.btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}
.btn-primary:hover {
  background-color: var(--accent-color);
  transform: translateY(-1px);
}
.btn-primary:active {
  transform: translateY(0);
}

.cart-count {
  transition: all var(--transition-fast);
}
.cart-count.updated {
  animation: cartCountPulse 0.3s ease-in-out;
  background-color: var(--accent-color) !important;
  transform: scale(1.2);
}

@keyframes cartCountPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1.2);
  }
}
.notification {
  align-items: center;
  background: white;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-md);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: var(--spacing-sm);
  justify-content: space-between;
  max-width: 300px;
  padding: var(--spacing-md) var(--spacing-lg);
  position: fixed;
  right: 20px;
  top: 20px;
  transform: translateX(100%);
  transition: transform var(--transition-fast);
  z-index: 9999;
}
.notification.show {
  transform: translateX(0);
}
.notification.success {
  border-left: 4px solid var(--success-color);
}
.notification.error {
  border-left: 4px solid var(--error-color);
}
.notification .notification-close {
  align-items: center;
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  display: flex;
  font-size: 18px;
  height: 20px;
  justify-content: center;
  padding: 0;
  width: 20px;
}
.notification .notification-close:hover {
  color: #333;
}
@media (width <= 768px) {
  .notification {
    left: 10px;
    max-width: none;
    right: 10px;
    top: 10px;
  }
}

.btn, .btn-with-arrow, .btn-white, .btn-secondary, .btn-primary, .packaging-add-to-cart {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 64px;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 500;
  justify-content: center;
  min-height: 48px;
  padding: 16px 32px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn:focus, .btn-with-arrow:focus, .btn-white:focus, .btn-secondary:focus, .btn-primary:focus, .packaging-add-to-cart:focus {
  box-shadow: 0 0 0 3px rgba(223, 187, 123, 0.3);
  outline: none;
}
.btn:disabled, .btn-with-arrow:disabled, .btn-white:disabled, .btn-secondary:disabled, .btn-primary:disabled, .packaging-add-to-cart:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.btn-primary, .packaging-add-to-cart {
  background-color: #dfbb7b;
  border-color: #dfbb7b;
  color: #fff;
}
.btn-primary:hover, .packaging-add-to-cart:hover {
  background-color: rgb(213.0487804878, 165.8536585366, 81.9512195122);
  border-color: rgb(213.0487804878, 165.8536585366, 81.9512195122);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.btn-primary:active, .packaging-add-to-cart:active {
  transform: translateY(0);
}

.btn-secondary {
  background-color: transparent;
  border-color: #e5e5e5;
  color: #000;
}
.btn-secondary:hover {
  background-color: #f8f8f8;
  border-color: #000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.btn-secondary:active {
  transform: translateY(0);
}

.btn-white {
  background-color: #fff;
  border-color: #fff;
  color: #000;
}
.btn-white:hover {
  background-color: rgb(242.25, 242.25, 242.25);
  border-color: rgb(242.25, 242.25, 242.25);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.btn-white:active {
  transform: translateY(0);
}

.btn-sm {
  font-size: 14px;
  min-height: 36px;
  padding: 8px 24px;
}

.btn-lg {
  font-size: 18px;
  min-height: 56px;
  padding: 24px 48px;
}

.add-to-cart-btn {
  background-color: var(--primary-color);
  border: none;
  border-radius: var(--border-radius-64);
  color: white;
  cursor: pointer;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semi-bold);
  letter-spacing: 0.5px;
  padding: var(--spacing-md) var(--spacing-lg);
  text-transform: uppercase;
  transition: all var(--transition-fast);
}
.add-to-cart-btn:hover {
  background-color: rgb(213.0487804878, 165.8536585366, 81.9512195122);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.add-to-cart-btn:active {
  transform: translateY(0);
}
.add-to-cart-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
  transform: none;
}
.add-to-cart-btn.success {
  background-color: var(--success-color);
}

.packaging-add-to-cart {
  margin-top: var(--spacing-md);
  max-width: 200px;
  width: 100%;
}
.packaging-add-to-cart:disabled {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.notification {
  align-items: center;
  backdrop-filter: blur(10px);
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-left: 4px solid var(--accent-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--background-dark);
  display: flex;
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  gap: var(--spacing-sm);
  justify-content: space-between;
  line-height: 1.4;
  max-width: 400px;
  padding: var(--spacing-md) var(--spacing-lg);
  position: fixed;
  right: 20px;
  top: 20px;
  transform: translateX(100%);
  transition: all var(--transition-normal);
  z-index: 10000;
}
.notification.show {
  transform: translateX(0);
}
.notification::before {
  content: "✓";
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-bold);
  margin-right: var(--spacing-sm);
}
.notification .notification-close {
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  color: var(--background-dark);
  cursor: pointer;
  display: flex;
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-bold);
  height: 24px;
  justify-content: center;
  padding: 0;
  transition: all var(--transition-fast);
  width: 24px;
}
.notification .notification-close:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}
.notification.success {
  background: linear-gradient(135deg, var(--primary-color) 0%, #f0d4a0 100%);
  border-color: var(--primary-color);
}
.notification.success::before {
  color: var(--accent-color);
  content: "✓";
}
.notification.error {
  background: linear-gradient(135deg, var(--error-color) 0%, #e74c3c 100%);
  border-color: var(--error-color);
  border-left-color: #c0392b;
  color: white;
}
.notification.error::before {
  color: white;
  content: "⚠";
}
.notification.error .notification-close {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.notification.error .notification-close:hover {
  background: rgba(255, 255, 255, 0.4);
}
.notification.show {
  animation: notificationSlideIn 0.3s ease-out;
}
@media (width <= 768px) {
  .notification {
    left: 10px;
    max-width: none;
    right: 10px;
    transform: translateY(-100%);
  }
  .notification.show {
    transform: translateY(0);
  }
}

@keyframes notificationSlideIn {
  0% {
    opacity: 0;
    transform: translateX(100%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
@keyframes notificationSlideInMobile {
  0% {
    opacity: 0;
    transform: translateY(-100%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.quantity-btn {
  align-items: center;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  color: #000;
  display: flex;
  height: 40px;
  justify-content: center;
  margin-inline: 10px;
  transition: all 0.2s ease;
  width: 40px;
}
.quantity-btn:hover {
  background-color: #f8f8f8;
  border-color: #000;
}
.quantity-btn:focus {
  box-shadow: 0 0 0 2px rgba(223, 187, 123, 0.3);
  outline: none;
}

.quantity-input {
  border: none;
  font-size: 16px;
  outline: none;
  padding: 16px;
  text-align: center;
  width: 60px;
}
.quantity-input::-webkit-outer-spin-button, .quantity-input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}
.quantity-input[type=number] {
  appearance: textfield;
}
.quantity-input:focus {
  outline: none;
}

.social-link {
  align-items: center;
  background-color: #000;
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  transition: all 0.2s ease;
  width: 40px;
}
.social-link:hover {
  background-color: #dfbb7b;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.social-link svg {
  height: 20px;
  width: 20px;
}

.carousel-nav {
  align-items: center;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  color: #000;
  display: flex;
  height: 48px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s ease;
  width: 48px;
  z-index: 10;
}
.carousel-nav:hover {
  background-color: #dfbb7b;
  border-color: #dfbb7b;
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}
.carousel-nav:focus {
  box-shadow: 0 0 0 3px rgba(223, 187, 123, 0.3);
  outline: none;
}
.carousel-nav svg {
  height: 24px;
  width: 24px;
}

.carousel-prev {
  left: 24px;
}

.carousel-next {
  right: 24px;
}

.btn-with-arrow .button-arrow {
  margin-left: 8px;
  transition: transform 0.2s ease;
}
.btn-with-arrow:hover .button-arrow {
  transform: translateX(4px);
}

.remove-from-cart {
  align-items: center;
  background: none;
  border: none;
  border-radius: 50%;
  color: #dc3545;
  cursor: pointer;
  display: flex;
  font-size: 18px;
  font-weight: 600;
  height: 36px;
  justify-content: center;
  justify-self: end;
  min-width: 36px;
  padding: 4px;
  transition: all 0.2s ease;
  width: 36px;
}
.remove-from-cart:hover {
  box-shadow: 0 0 0 2px #dfbb7b;
  outline: none;
}
.remove-from-cart:focus {
  box-shadow: 0 0 0 2px #dfbb7b;
  outline: none;
}

.cart-quantity-controls {
  align-items: center;
  display: flex;
  justify-self: start;
  margin: 16px 0 0;
}

.cart-quantity-minus,
.cart-quantity-plus {
  align-items: center;
  background: transparent;
  border: none;
  color: #000;
  cursor: pointer;
  display: flex;
  font-size: 24px;
  font-weight: 600;
  height: 24px;
  justify-content: center;
  padding: 8px;
  width: 24px;
}
.cart-quantity-minus:focus,
.cart-quantity-plus:focus {
  border: none;
  outline: none;
}
.cart-quantity-minus:disabled,
.cart-quantity-plus:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.cart-quantity-input {
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  padding: 8px;
  text-align: center;
  transition: border-color 0.2s ease;
  width: 60px;
}
.cart-quantity-input:focus {
  border-color: #dfbb7b;
  outline: none;
}
.cart-quantity-input::-webkit-outer-spin-button, .cart-quantity-input::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}
.cart-quantity-input[type=number] {
  appearance: textfield;
  background-color: transparent;
  border: none;
}

.empty-cart-message {
  color: var(--text-light);
  font-style: italic;
  padding: var(--spacing-xl);
  text-align: center;
}

.cart-count {
  transition: all var(--transition-fast);
}
.cart-count.updated {
  animation: cartCountPulse 0.3s ease-in-out;
}

@keyframes cartCountPulse {
  0% {
    transform: scale(1);
  }
  50% {
    background-color: var(--accent-color);
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.form-group {
  margin-bottom: var(--spacing-md);
}

.form-label {
  color: var(--text-color);
  display: block;
  font-weight: 500;
  margin-bottom: var(--spacing-xs);
}

.form-input,
.form-textarea {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-base);
  padding: var(--spacing-sm);
  transition: border-color var(--transition-fast);
  width: 100%;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}
.form-input.error,
.form-textarea.error {
  border-color: var(--error-color);
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
select,
textarea {
  min-height: 56px;
}

.submit-btn {
  background-color: var(--primary-color);
  border: none;
  border-radius: var(--border-radius-md);
  color: white;
  cursor: pointer;
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: var(--spacing-sm) var(--spacing-lg);
  transition: all var(--transition-fast);
}
.submit-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-1px);
}
.submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.submit-btn.success {
  background-color: var(--success-color);
}

.carousel-container {
  display: flex;
  overflow: hidden;
  position: relative;
}

.carousel-prev,
.carousel-next {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all var(--transition-fast);
  width: 40px;
  z-index: 10;
}
.carousel-prev:hover,
.carousel-next:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}
.carousel-prev.disabled,
.carousel-next.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-dots {
  display: flex;
  gap: var(--spacing-xs);
  justify-content: center;
  margin-top: var(--spacing-md);
}

.carousel-dot {
  background: var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  height: 10px;
  transition: background-color var(--transition-fast);
  width: 10px;
}
.carousel-dot.active {
  background: var(--primary-color);
}

.accordion-item {
  border-bottom: 1px solid var(--border-color);
}

.accordion-header {
  align-items: center;
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  font-size: var(--font-size-base);
  font-weight: 500;
  justify-content: space-between;
  padding: var(--spacing-md);
  text-align: left;
  transition: color var(--transition-fast);
  width: 100%;
}
.accordion-header:hover {
  color: var(--primary-color);
}

.accordion-icon {
  font-size: var(--font-size-large);
  font-weight: bold;
  transition: transform var(--transition-fast);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--spacing-md);
  transition: max-height var(--transition-normal);
}
.accordion-content.active {
  max-height: 500px;
  padding: 0 var(--spacing-md) var(--spacing-md);
}

/* Header Accent Bar */
.header-accent {
  display: none;
  padding: 4px 0;
}

.accent-text {
  color: white;
  font-size: 12px;
  font-weight: 500;
}

/* Header */
.site-header {
  background-color: #2c2c2c;
  padding: 0 30px;
  position: sticky;
  top: 0;
  transition: all var(--transition-fast);
  z-index: 1000;
}
.site-header .container {
  max-width: unset;
  width: 100%;
}
.site-header .menu-item:last-child {
  border: 1px solid white;
  border-radius: 100px;
  padding: 0 20px;
}
.site-header .menu-item:last-child:hover {
  background-color: white;
  border-color: white;
}
.site-header .menu-item:last-child:hover a {
  color: black;
}

/* Transparent Header */
.site-header.header-transparent {
  backdrop-filter: blur(10px);
  background-color: rgba(33, 33, 33, 0.1);
  transition: all 0.3s ease;
  /* Ensure text remains readable */
  /* Enhance cart icon visibility */
  /* Scrolled state - white background */
}
.site-header.header-transparent .site-title a,
.site-header.header-transparent .nav-menu a,
.site-header.header-transparent .cart-icon svg {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}
.site-header.header-transparent .cart-icon {
  transition: all 0.3s ease;
}
.site-header.header-transparent .cart-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
}
.site-header.header-transparent.header-scrolled {
  backdrop-filter: none;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  /* Change text color to dark for contrast */
  /* Change cart icon color */
  /* Hamburger menu for mobile */
  /* Cart count badge */
}
.site-header.header-transparent.header-scrolled .site-title a {
  color: #2c2c2c;
  text-shadow: none;
}
.site-header.header-transparent.header-scrolled .nav-menu a {
  color: #2c2c2c;
  text-shadow: none;
}
.site-header.header-transparent.header-scrolled .nav-menu a:hover {
  color: #dfbb7b;
}
.site-header.header-transparent.header-scrolled .cart-icon svg {
  stroke: #2c2c2c;
  text-shadow: none;
}
.site-header.header-transparent.header-scrolled .cart-icon:hover {
  background-color: rgba(44, 44, 44, 0.1);
}
.site-header.header-transparent.header-scrolled .cart-icon:hover svg {
  stroke: #dfbb7b;
}
.site-header.header-transparent.header-scrolled .hamburger span {
  background-color: #2c2c2c;
}
.site-header.header-transparent.header-scrolled .cart-count {
  background: #dfbb7b;
  color: white;
}

.header-content {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: var(--spacing-md) 0;
  width: 100%;
}

.site-branding {
  align-items: center;
  display: flex;
}
.site-branding img {
  transition: all 0.3s ease;
}

.site-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin: 0;
  text-transform: lowercase;
}
.site-title a {
  color: white;
  text-decoration: none;
}

/* Navigation */
.main-navigation {
  align-items: center;
  display: flex;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  padding: var(--spacing-xs);
}

.hamburger {
  display: flex;
  flex-direction: column;
  height: 18px;
  justify-content: space-between;
  width: 24px;
}
.hamburger span {
  background-color: white;
  height: 2px;
  transition: all var(--transition-fast);
  width: 100%;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
  display: flex;
  gap: var(--spacing-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu ul,
.nav-menu ol {
  display: flex;
  gap: var(--spacing-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: white;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.nav-menu a:hover {
  color: white;
}

.cart-icon {
  align-items: center;
  border-radius: 50%;
  display: flex;
  height: 40px;
  justify-content: center;
  position: relative;
  transition: all var(--transition-fast);
  width: 40px;
}
.cart-icon:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.1);
}
.cart-icon svg {
  color: white;
  stroke: white;
  transition: all var(--transition-fast);
}
.cart-icon:hover svg {
  color: var(--primary-color);
  stroke: var(--primary-color);
}
.cart-icon .cart-count {
  align-items: center;
  background: var(--primary-color);
  border-radius: 50%;
  color: white;
  display: flex;
  font-size: 12px;
  font-weight: bold;
  height: 20px;
  justify-content: center;
  position: absolute;
  right: -8px;
  top: -8px;
  transition: all var(--transition-fast);
  width: 20px;
}
.cart-icon .cart-count:empty {
  display: none;
}

.site-footer {
  background-color: var(--white-color);
  color: var(--text-color);
  font-family: var(--font-family-primary);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-header {
  margin-bottom: var(--spacing-xxl);
}
.footer-header .footer-title {
  color: var(--black-color);
  font-size: var(--font-size-xxl);
  font-weight: var(--font-weight-light);
  line-height: 1.2;
  margin: 0 0 var(--spacing-sm) 0;
}
.footer-header .footer-tagline {
  color: var(--text-light);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  line-height: 1.4;
  margin: 0;
}

.footer-navigation {
  align-items: start;
  display: grid;
  gap: var(--spacing-xl);
  grid-template-columns: repeat(4, 1fr) auto;
  margin-bottom: var(--spacing-xxl);
}

.footer-column .column-title {
  color: var(--black-color);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin: 0 0 var(--spacing-md) 0;
  transition: color var(--transition-fast);
}
.footer-column .column-title:hover {
  color: var(--text-light);
}
.footer-column .column-title.active {
  color: var(--primary-color);
}
.footer-column .column-title .accordion-icon {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: none;
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-regular);
  height: 16px;
  transition: all var(--transition-fast);
  width: 16px;
}
.footer-column .column-title .accordion-icon.plus {
  background-image: url("../images/footer-Plus.png");
}
.footer-column .column-title .accordion-icon.minus {
  background-image: url("../images/footer-Minus.png");
}
.footer-column .column-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-column .column-links li {
  margin-bottom: var(--spacing-sm);
}
.footer-column .column-links li:last-child {
  margin-bottom: 0;
}
.footer-column .column-links .footer-link {
  color: var(--text-color);
  display: block;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-column .column-links .footer-link:hover {
  color: var(--text-light);
}

.footer-social {
  align-items: flex-start;
  display: flex;
  justify-content: flex-end;
}
.footer-social .social-links {
  display: flex;
  gap: var(--spacing-md);
}
.footer-social .social-link {
  align-items: center;
  background-color: var(--black-color);
  border-radius: 50%;
  color: var(--white-color);
  display: flex;
  height: 40px;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-fast);
  width: 40px;
}
.footer-social .social-link:hover {
  background-color: var(--text-light);
  transform: translateY(-2px);
}
.footer-social .social-link svg {
  height: 20px;
  width: 20px;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  justify-content: space-between;
  padding-top: var(--spacing-lg);
}

.footer-bottom-links {
  display: flex;
  gap: var(--spacing-lg);
}
.footer-bottom-links .footer-link {
  color: var(--text-color);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-bottom-links .footer-link:hover {
  color: var(--text-light);
}

.footer-copyright p {
  color: var(--text-color);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-regular);
  margin: 0;
}

@media (width >= 993px) {
  .footer-column .column-title {
    cursor: default;
  }
  .footer-column .column-title .accordion-icon {
    display: none !important;
  }
  .footer-column .column-links {
    max-height: none !important;
    overflow: visible !important;
  }
}
@media (width <= 992px) {
  .site-footer {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
  }
  .footer-header {
    margin-bottom: var(--spacing-xl);
  }
  .footer-header .footer-title {
    font-size: var(--font-size-xl);
  }
  .footer-header .footer-tagline {
    font-size: var(--font-size-small);
  }
  .footer-navigation {
    gap: var(--spacing-lg);
    grid-template-columns: 1fr;
    margin-bottom: var(--spacing-xl);
  }
  .footer-column {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
  }
  .footer-column:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .footer-column .column-title {
    align-items: center;
    color: var(--black-color);
    cursor: pointer;
    display: flex;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    justify-content: space-between;
    margin: 0 0 var(--spacing-md) 0;
    transition: color var(--transition-fast);
  }
  .footer-column .column-title:hover {
    color: var(--text-light);
  }
  .footer-column .column-title.active {
    color: var(--primary-color);
  }
  .footer-column .column-title .accordion-icon {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    font-size: var(--font-size-large);
    font-weight: var(--font-weight-regular);
    height: 16px;
    transition: all var(--transition-fast);
    width: 16px;
  }
  .footer-column .column-title .accordion-icon.plus {
    background-image: url("../images/footer-Plus.png");
  }
  .footer-column .column-title .accordion-icon.minus {
    background-image: url("../images/footer-Minus.png");
  }
  .footer-column .column-links {
    margin: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height var(--transition-normal);
  }
  .footer-column .column-links.open {
    max-height: 300px;
  }
  .footer-column .column-links li {
    margin-bottom: var(--spacing-sm);
  }
  .footer-column .column-links li:last-child {
    margin-bottom: 0;
  }
  .footer-column .column-links .footer-link {
    color: var(--text-color);
    display: block;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-regular);
    padding-right: 20px;
    position: relative;
    text-decoration: none;
    transition: color var(--transition-fast);
  }
  .footer-column .column-links .footer-link:hover {
    color: var(--text-light);
  }
  .footer-column .column-links .footer-link::after {
    background-image: url("../images/footer-right-arrow.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 12px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform var(--transition-fast);
    width: 12px;
  }
  .footer-column .column-links .footer-link:hover::after {
    transform: translateY(-50%) translateX(2px);
  }
  .footer-social {
    justify-content: center;
    margin-top: var(--spacing-lg);
  }
  .footer-social .social-links {
    gap: var(--spacing-sm);
  }
  .footer-social .social-link {
    height: 36px;
    width: 36px;
  }
  .footer-social .social-link svg {
    height: 18px;
    width: 18px;
  }
  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
  }
  .footer-bottom-links .footer-link {
    font-size: var(--font-size-small);
  }
  .footer-copyright p {
    font-size: var(--font-size-small);
  }
}
.container {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 24px;
}
@media (max-width: 1440px) {
  .container {
    max-width: 1290px;
    padding: 0 32px;
    width: 100%;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px;
}
@media (min-width: 768px) {
  .row {
    margin: 0 -24px;
  }
}

.col {
  flex: 1;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .col {
    padding: 0 24px;
  }
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .col-1 {
    padding: 0 24px;
  }
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .col-2 {
    padding: 0 24px;
  }
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .col-3 {
    padding: 0 24px;
  }
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .col-4 {
    padding: 0 24px;
  }
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .col-5 {
    padding: 0 24px;
  }
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .col-6 {
    padding: 0 24px;
  }
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .col-7 {
    padding: 0 24px;
  }
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .col-8 {
    padding: 0 24px;
  }
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .col-9 {
    padding: 0 24px;
  }
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .col-10 {
    padding: 0 24px;
  }
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .col-11 {
    padding: 0 24px;
  }
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .col-12 {
    padding: 0 24px;
  }
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.text-center {
  text-align: center;
}

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

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

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

.d-none {
  display: none;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-between {
  justify-content: space-between;
}

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

.align-items-start {
  align-items: flex-start;
}

.align-items-end {
  align-items: flex-end;
}

.flex-column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.m-xs {
  margin: 8px;
}

.mt-xs {
  margin-top: 8px;
}

.mb-xs {
  margin-bottom: 8px;
}

.ml-xs {
  margin-left: 8px;
}

.mr-xs {
  margin-right: 8px;
}

.p-xs {
  padding: 8px;
}

.pt-xs {
  padding-top: 8px;
}

.pb-xs {
  padding-bottom: 8px;
}

.pl-xs {
  padding-left: 8px;
}

.pr-xs {
  padding-right: 8px;
}

.m-sm {
  margin: 16px;
}

.mt-sm {
  margin-top: 16px;
}

.mb-sm {
  margin-bottom: 16px;
}

.ml-sm {
  margin-left: 16px;
}

.mr-sm {
  margin-right: 16px;
}

.p-sm {
  padding: 16px;
}

.pt-sm {
  padding-top: 16px;
}

.pb-sm {
  padding-bottom: 16px;
}

.pl-sm {
  padding-left: 16px;
}

.pr-sm {
  padding-right: 16px;
}

.m-md {
  margin: 24px;
}

.mt-md {
  margin-top: 24px;
}

.mb-md {
  margin-bottom: 24px;
}

.ml-md {
  margin-left: 24px;
}

.mr-md {
  margin-right: 24px;
}

.p-md {
  padding: 24px;
}

.pt-md {
  padding-top: 24px;
}

.pb-md {
  padding-bottom: 24px;
}

.pl-md {
  padding-left: 24px;
}

.pr-md {
  padding-right: 24px;
}

.m-lg {
  margin: 32px;
}

.mt-lg {
  margin-top: 32px;
}

.mb-lg {
  margin-bottom: 32px;
}

.ml-lg {
  margin-left: 32px;
}

.mr-lg {
  margin-right: 32px;
}

.p-lg {
  padding: 32px;
}

.pt-lg {
  padding-top: 32px;
}

.pb-lg {
  padding-bottom: 32px;
}

.pl-lg {
  padding-left: 32px;
}

.pr-lg {
  padding-right: 32px;
}

.m-xl {
  margin: 48px;
}

.mt-xl {
  margin-top: 48px;
}

.mb-xl {
  margin-bottom: 48px;
}

.ml-xl {
  margin-left: 48px;
}

.mr-xl {
  margin-right: 48px;
}

.p-xl {
  padding: 48px;
}

.pt-xl {
  padding-top: 48px;
}

.pb-xl {
  padding-bottom: 48px;
}

.pl-xl {
  padding-left: 48px;
}

.pr-xl {
  padding-right: 48px;
}

.hero-section {
  align-items: center;
  background-color: var(--hero-bg-color, #1a1a1a);
  color: var(--hero-text-color, #fff);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: -10rem;
  min-height: 95vh;
  overflow: hidden;
  padding: 0 0 5rem;
  position: relative;
}
@media (max-width: 1440px) {
  .hero-section {
    margin-top: -8rem;
    padding: 0 1.5rem 5rem;
  }
}
@media (max-width: 576px) {
  .hero-section {
    margin-top: -5rem;
    padding: 0 2rem 5rem;
  }
}
.hero-section .hero-video-container {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.hero-section .hero-video-container .hero-video-wrapper {
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.hero-section .hero-video-container .hero-video-wrapper .hero-video {
  height: 100%;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  width: 100%;
  z-index: 1;
}
@media (max-width: 992px) {
  .hero-section .hero-video-container .hero-video-wrapper .hero-video {
    transform: translate(-50%, -50%) scale(1.5);
  }
}
.hero-section .hero-video-container .hero-video-wrapper .hero-video.google-drive-video, .hero-section .hero-video-container .hero-video-wrapper .hero-video.uploaded-video {
  object-fit: cover;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
}
@media (aspect-ratio >= 16/9) {
  .hero-section .hero-video-container .hero-video-wrapper .hero-video.google-drive-video, .hero-section .hero-video-container .hero-video-wrapper .hero-video.uploaded-video {
    height: auto;
    min-height: 100%;
    width: 100%;
  }
}
@media (aspect-ratio <= 16/9) {
  .hero-section .hero-video-container .hero-video-wrapper .hero-video.google-drive-video, .hero-section .hero-video-container .hero-video-wrapper .hero-video.uploaded-video {
    height: 100%;
    min-width: 100%;
    width: auto;
  }
}
.hero-section .hero-video-container .hero-video-overlay {
  background-color: rgb(0, 0, 0, var(--hero-overlay-opacity, 0.5));
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
@media (max-width: 1024px) {
  .hero-section .hero-video-container .hero-video-overlay {
    background-color: rgb(0, 0, 0, var(--hero-overlay-opacity, 0.6));
  }
}
.hero-section .hero-content {
  align-items: flex-end;
  display: flex;
  flex: 1;
  padding: 0 7.4rem;
  position: relative;
  width: 100%;
  z-index: 3;
}
@media (min-width: 1920px) {
  .hero-section .hero-content {
    padding: 0 24rem;
  }
}
@media (max-width: 1440px) {
  .hero-section .hero-content {
    padding: 0 1.5rem;
  }
}
@media (max-width: 1290px) {
  .hero-section .hero-content {
    padding: 0;
  }
}
.hero-section .hero-content .container {
  display: flex;
  justify-content: flex-end;
  max-width: unset;
  padding: 0;
  width: 100%;
}
.hero-section .hero-content .hero-text {
  text-align: left;
  width: 100%;
}
@media (max-width: 1440px) {
  .hero-section .hero-content .hero-text {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    text-align: left;
  }
}
.hero-section .hero-content .hero-text .hero-pre-title {
  color: var(--hero-text-color, #fff);
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.01rem;
  line-height: 1;
  margin: 0;
  margin-bottom: 1.5rem;
  /* 312.5% */
}
@media (max-width: 576px) {
  .hero-section .hero-content .hero-text .hero-pre-title {
    color: #fff;
    font-size: 1.4rem;
  }
}
.hero-section .hero-content .hero-text .hero-title {
  color: var(--hero-text-color, #fff);
  font-family: Montserrat;
  font-size: 4rem;
  font-style: normal;
  font-weight: 300;
  /* 125% */
  letter-spacing: -0.04rem;
  line-height: 1;
  margin-bottom: 3.3rem;
}
@media (max-width: 992px) {
  .hero-section .hero-content .hero-text .hero-title {
    font-size: 3.6rem;
    font-style: normal;
    letter-spacing: -0.36px;
    margin-bottom: 3.5rem;
  }
}
.hero-section .hero-content .hero-text .hero-after-title {
  color: var(--hero-text-color, #fff);
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 45px;
  /* 162.5% */
}
@media (max-width: 1024px) {
  .hero-section .hero-content .hero-text .hero-after-title {
    font-size: 1.4rem;
    line-height: 2.2rem;
    margin-bottom: 0;
  }
}
.hero-section .hero-content .hero-text .hero-actions {
  margin-top: var(--spacing-xl);
}
@media (max-width: 1024px) {
  .hero-section .hero-content .hero-text .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
    margin-top: var(--spacing-lg);
  }
}
@media (max-width: 576px) {
  .hero-section .hero-content .hero-text .hero-actions {
    margin-top: 3.5rem;
  }
}
.hero-section .hero-content .hero-text .hero-actions .hero-button {
  align-items: center;
  border-radius: 76px;
  display: inline-flex;
  font-size: var(--font-size-small);
  font-weight: var(--font-weight-medium);
  padding: var(--spacing-xs) var(--spacing-xl);
  text-decoration: none;
  transition: all var(--transition-normal);
}
@media (max-width: 1024px) {
  .hero-section .hero-content .hero-text .hero-actions .hero-button {
    font-size: 1.3rem;
    justify-content: center;
    min-width: 16rem;
    padding: var(--spacing-sm) var(--spacing-lg);
  }
}
.hero-section .hero-content .hero-text .hero-actions .hero-button--primary {
  background-color: transparent;
  border: 1px solid var(--white-color);
  color: var(--white-color);
}
.hero-section .hero-content .hero-text .hero-actions .hero-button--primary:hover {
  background-color: var(--white-color);
  color: var(--black-color);
  transform: translateY(-1px);
}
.hero-section .hero-content .hero-text .hero-actions .hero-button--secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}
.hero-section .hero-content .hero-text .hero-actions .hero-button--secondary:hover {
  background-color: transparent;
  color: var(--secondary-color);
  transform: translateY(-2px);
}
.hero-section .hero-content .hero-text .hero-actions .hero-button--outline {
  background-color: transparent;
  border-color: var(--hero-text-color, #fff);
  color: var(--hero-text-color, #fff);
}
.hero-section .hero-content .hero-text .hero-actions .hero-button--outline:hover {
  background-color: var(--hero-text-color, #fff);
  color: var(--hero-bg-color, #1a1a1a);
  transform: translateY(-2px);
}
.hero-section .hero-bottom-info {
  align-items: flex-end;
  display: flex;
  justify-content: flex-end;
  padding: var(--spacing-lg) 0 0 0;
  position: relative;
  width: 70%;
  z-index: 3;
}
@media (max-width: 1024px) {
  .hero-section .hero-bottom-info {
    display: none;
  }
}
.hero-section .hero-bottom-info .hero-info-items {
  align-items: center;
  display: flex;
  gap: var(--spacing-xl);
}
.hero-section .hero-bottom-info .hero-info-items .hero-info-item {
  align-items: baseline;
  color: var(--white-color, #fff);
  display: flex;
  font-size: var(--font-size-small);
  font-style: normal;
  font-weight: 300;
  gap: var(--spacing-sm);
  leading-trim: both;
  line-height: 1.2;
  line-height: 3rem;
  text-edge: cap;
  width: max-content;
  /* 214.286% */
}
.hero-section .hero-bottom-info .hero-info-items .hero-info-item svg {
  flex-shrink: 0;
}
.hero-section .hero-bottom-info .hero-info-items .hero-info-item img {
  height: 2.4rem;
  width: 2.4rem;
}
.hero-section .hero-bottom-info .hero-info-items .hero-info-item span {
  font-weight: var(--font-weight-medium);
}
@media (width <= 480px) {
  .hero-section .hero-content .hero-text .hero-title {
    font-size: clamp(2rem, 12vw, 3rem);
  }
}
@supports not (--css: variables) {
  .hero-section {
    background-color: #1a1a1a;
    color: #fff;
  }
  .hero-section .hero-video-overlay {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .hero-section .hero-text .hero-subtitle,
  .hero-section .hero-text .hero-title {
    color: #fff;
  }
  .hero-section .hero-info-items .hero-info-item {
    color: #fff;
  }
}

.hero-section + * {
  position: relative;
  z-index: 10;
}

.video-section {
  align-items: center;
  display: flex;
  height: 75rem;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.video-section .video-container {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.video-section .video-container .video-wrapper {
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.video-section .video-container .video-wrapper .video-background {
  height: auto;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  z-index: 1;
}
@media (aspect-ratio >= 16/9) {
  .video-section .video-container .video-wrapper .video-background {
    height: auto;
    min-height: 100%;
    width: 100%;
  }
}
@media (aspect-ratio <= 16/9) {
  .video-section .video-container .video-wrapper .video-background {
    height: 100%;
    min-width: 100%;
    width: auto;
  }
}
@supports not (object-fit: cover) {
  .video-section .video-container .video-wrapper .video-background {
    height: 100%;
    width: 100%;
  }
}
.video-section .video-container .video-overlay {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.video-section .video-content {
  align-items: center;
  display: flex;
  gap: 0;
  height: 100%;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 3;
}
.video-section .video-content .container {
  width: 100%;
}
.video-section .video-content .video-text {
  margin: 0 auto;
  max-width: 800px;
  text-align: center;
}
.video-section .video-content .video-text .video-title {
  color: #fff;
  font-family: Montserrat;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-style: normal;
  font-weight: 300;
  leading-trim: both;
  letter-spacing: -0.04rem;
  line-height: 1;
  margin-bottom: 2rem;
  text-align: center;
  text-edge: cap;
}
.video-section .video-content .video-text .video-description {
  color: #fff;
  font-size: var(--font-size-large);
  font-size: 2rem;
  font-style: normal;
  font-weight: var(--font-weight-normal);
  font-weight: 300;
  leading-trim: both;
  /* 250% */
  letter-spacing: -0.02rem;
  line-height: 1;
  margin-bottom: 3rem;
  opacity: 0.9;
  text-align: center;
  text-edge: cap;
}
.video-section .video-content .video-text .video-actions .video-button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  gap: var(--spacing-sm);
  padding: 1rem 3.5rem;
  text-decoration: none;
  transition: all var(--transition-normal);
  line-height: 1;
}
.video-section .video-content .video-text .video-actions .video-button--primary {
  background-color: transparent;
  border-color: var(--primary-color);
  border-radius: 76px;
  color: var(--white-color);
  transition: all var(--transition-normal);
}
.video-section .video-content .video-text .video-actions .video-button--primary:hover {
  transform: translateY(-2px);
  padding: 1.5rem 4rem;
  background-color: black;
  border-color: black !important;
  font-weight: 700;
}
.video-section .video-content .video-text .video-actions .video-button--secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white-color);
}
.video-section .video-content .video-text .video-actions .video-button--secondary:hover {
  background-color: transparent;
  color: var(--secondary-color);
  transform: translateY(-2px);
}
.video-section .video-content .video-text .video-actions .video-button--outline {
  background-color: transparent;
  border-color: currentcolor;
}
.video-section .video-content .video-text .video-actions .video-button--outline:hover {
  background-color: currentcolor;
  color: var(--dark-color);
  transform: translateY(-2px);
}
@media (width <= 768px) {
  .video-section {
    height: 30rem;
  }
  .video-section .video-content .video-text .video-title {
    font-size: clamp(2rem, 8vw, 3rem);
    margin-bottom: var(--spacing-md);
  }
  .video-section .video-content .video-text .video-description {
    font-size: var(--font-size-base);
    margin-bottom: var(--spacing-lg);
  }
  .video-section .video-content .video-text .video-actions {
    margin-top: var(--spacing-lg);
  }
  .video-section .video-content .video-text .video-actions .video-button {
    font-size: var(--font-size-small);
    padding: var(--spacing-sm) var(--spacing-lg);
  }
}
@media (width <= 480px) {
  .video-section {
    height: 25rem;
  }
  .video-section .video-content .video-text .video-title {
    font-size: clamp(1.5rem, 10vw, 2.5rem);
  }
}

.video-section + * {
  position: relative;
  z-index: 10;
}

.designed-section {
  align-items: center;
  background-color: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: var(--spacing-xxl) 24rem 9rem 24rem;
}
@media (max-width: 1920px) {
  .designed-section {
    padding: var(--spacing-xxl) 7.4rem 9rem 7.4rem;
  }
}
@media (max-width: 1440px) {
  .designed-section {
    padding: var(--spacing-xxl) 3.4rem 9rem 3.4rem;
  }
}
@media (max-width: 768px) {
  .designed-section {
    padding: var(--spacing-xxl) 1.5rem 9rem 1.5rem;
  }
}
@media (max-width: 576px) {
  .designed-section {
    padding: 3.5rem 2rem 7rem 2rem;
  }
}
.designed-section .container {
  margin: unset;
  padding: unset;
  width: 100%;
  max-width: unset;
}
.designed-section .designed-content {
  align-items: center;
  display: grid;
  gap: var(--spacing-xxl);
  grid-template-columns: 0.8fr 1fr;
  min-height: 61.2rem;
  position: relative;
  /*
      @media (max-width: 992px) {

          grid-template-columns: 1fr;
          gap: var(--spacing-lg);
          min-height: auto;
          max-height: none;
          margin-bottom: var(--spacing-xl);

          display: flex;
          flex-direction: column-reverse;
          align-items: center;
          justify-content: center;
          max-height: 50%;
          height: max-content;
          padding: 0;
          margin: 0;
      }
      */
}
@media (max-width: 1290px) {
  .designed-section .designed-content {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    align-items: start;
    justify-content: center;
  }
}
.designed-section .designed-text {
  box-sizing: border-box;
  display: block;
  max-width: 80rem;
  width: 100%;
}
@media (max-width: 1290px) {
  .designed-section .designed-text {
    order: 2;
    max-width: unset;
    width: 100%;
    min-height: unset;
    height: auto;
    max-height: unset;
    max-width: unset;
    width: 100%;
    z-index: 1;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 4rem;
  }
}
@media (max-width: 768px) {
  .designed-section .designed-text {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
    text-align: center;
  }
}
.designed-section .designed-text .designed-title {
  color: var(--black-color);
  font-family: var(--font-family-secondary);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-size: 4rem;
  font-style: normal;
  font-weight: 300;
  leading-trim: both;
  /* 125% */
  letter-spacing: -0.04rem;
  line-height: 5rem;
  margin-bottom: 2rem;
  max-width: unset;
  text-edge: cap;
  width: max-content;
}
@media (max-width: 576px) {
  .designed-section .designed-text .designed-title {
    font-size: 2.8rem;
    letter-spacing: -0.28px;
    margin-bottom: 2rem;
  }
}
.designed-section .designed-text .designed-subtitle {
  color: var(--text-dark);
  font-size: 2rem;
  font-weight: var(--font-weight-normal);
  line-height: 1.4;
  margin-bottom: 4.5rem;
  opacity: 0.9;
  width: 100%;
}
@media (max-width: 576px) {
  .designed-section .designed-text .designed-subtitle {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 3rem;
    text-align: center;
    width: 99%;
  }
}
.designed-section .designed-text .designed-description {
  color: var(--text-dark);
  font-size: 1.8rem;
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
  margin-bottom: 7.3rem;
  max-width: 37rem;
  opacity: 0.8;
  width: 100%;
}
@media (max-width: 1290px) {
  .designed-section .designed-text .designed-description {
    max-width: 60rem;
  }
}
@media (max-width: 576px) {
  .designed-section .designed-text .designed-description {
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    margin-bottom: 3.5rem;
    text-align: center;
    max-width: 100%;
    /* 150% */
  }
}
.designed-section .designed-text .designed-actions .designed-button {
  align-items: center;
  background-color: transparent;
  border: 1px solid var(--black-color);
  border-radius: var(--border-radius-72);
  color: var(--text-dark);
  display: inline-flex;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  gap: var(--spacing-sm);
  padding: var(--spacing-xs) var(--spacing-xl);
  text-decoration: none;
  transition: all var(--transition-normal);
}
.designed-section .designed-text .designed-actions .designed-button:hover {
  background-color: black;
  color: white;
  transform: translateY(-2px);
}
.designed-section .designed-text .designed-actions .designed-button::after {
  content: "→";
  font-size: var(--font-size-base);
  transition: transform var(--transition-normal);
}
.designed-section .designed-text .designed-actions .designed-button:hover::after {
  transform: translateX(4px);
}
.designed-section .designed-images {
  flex-shrink: 1;
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 1290px) {
  .designed-section .designed-images {
    order: 1;
    max-width: 60rem;
    width: 100%;
    height: auto;
    justify-self: center;
    position: relative;
  }
}
@media (max-width: 768px) {
  .designed-section .designed-images {
    height: auto;
    order: 1;
  }
}
.designed-section .designed-images .designed-main-image {
  margin-left: 0;
  max-width: 51.6rem;
  width: 100%;
  z-index: 2;
  position: absolute;
  bottom: -1.4rem;
  right: 29.8rem;
}
@media (max-width: 1440px) {
  .designed-section .designed-images .designed-main-image {
    max-width: 42.9rem;
    right: 24rem;
    bottom: 0;
  }
}
@media (max-width: 1290px) {
  .designed-section .designed-images .designed-main-image {
    margin: unset;
    position: relative;
    margin-top: 6rem;
    left: 0;
  }
}
@media (max-width: 768px) {
  .designed-section .designed-images .designed-main-image {
    margin-top: calc(var(--spacing-xxl) * 2);
    max-height: 40rem;
    min-width: 21rem;
  }
}
@media (max-width: 576px) {
  .designed-section .designed-images .designed-main-image {
    margin-top: 20%;
    width: 80%;
  }
}
.designed-section .designed-images .designed-main-image .designed-image-container {
  aspect-ratio: 1/1;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.designed-section .designed-images .designed-main-image .designed-image-container img {
  display: block;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform var(--transition-slow);
  width: 100%;
}
.designed-section .designed-images .designed-main-image .designed-image-container::before {
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  inset: 0;
  content: "";
  margin: var(--spacing-xs) var(--spacing-xs) var(--spacing-xs) var(--spacing-xs);
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
.designed-section .designed-images .designed-main-image .designed-image-container:hover img {
  transform: scale(1.02);
}
.designed-section .designed-images .designed-overlay-image {
  max-width: 59.5rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 0;
}
@media (max-width: 1440px) {
  .designed-section .designed-images .designed-overlay-image {
    max-width: 49.4rem;
  }
}
@media (max-width: 1290px) {
  .designed-section .designed-images .designed-overlay-image {
    max-width: 42.9rem;
  }
}
@media (max-width: 576px) {
  .designed-section .designed-images .designed-overlay-image {
    max-width: 80%;
  }
}
.designed-section .designed-images .designed-overlay-image .designed-overlay-container {
  aspect-ratio: 1/1;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.designed-section .designed-images .designed-overlay-image .designed-overlay-container img {
  display: block;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform var(--transition-normal);
  width: 100%;
}
.designed-section .designed-images .designed-overlay-image .designed-overlay-container::before {
  inset: 0;
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
.designed-section .designed-images .designed-overlay-image .designed-overlay-container:hover img {
  transform: scale(1.05);
}
.designed-section .designed-carousel {
  border-top: 1px solid var(--border-light);
  overflow: hidden;
  padding-top: var(--spacing-90);
  width: 100%;
}
@media (max-width: 576px) {
  .designed-section .designed-carousel {
    padding-top: 7rem;
  }
}
.designed-section .designed-carousel .designed-carousel-track {
  align-items: center;
  display: flex;
  white-space: nowrap;
  will-change: transform;
}
.designed-section .designed-carousel .designed-carousel-item {
  color: var(--text-dark);
  font-size: 2rem;
  font-weight: var(--font-weight-medium);
  margin: 0 var(--spacing-sm);
  opacity: 0.7;
  transition: opacity var(--transition-normal);
}
.designed-section .designed-carousel .designed-carousel-item:hover {
  opacity: 1;
}
.designed-section .designed-carousel .designed-carousel-separator {
  color: var(--text-dark);
  font-size: var(--font-size-small);
  margin: 0 var(--spacing-xs);
  opacity: 0.5;
}

.designed-section + * {
  position: relative;
  z-index: 10;
}

.product-hero {
  background-color: var(--background-color);
  padding: var(--spacing-lg) 0;
}
.product-hero .container {
  padding: 0;
}
.product-hero .product-breadcrumb {
  color: var(--text-light);
  font-size: var(--font-size-small);
  margin-bottom: var(--spacing-sm);
}
.product-hero__content {
  align-items: start;
  display: flex;
  gap: var(--spacing-xxl);
  justify-content: space-between;
}
.product-hero__gallery {
  align-items: start;
  display: flex;
  flex: 0 0 50%;
  flex-direction: column;
  justify-content: center;
  max-width: 65rem;
  width: 50%;
}
.product-hero__gallery .gallery-main {
  border-radius: var(--border-radius-sm);
  cursor: zoom-in;
  height: 600px;
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  position: relative;
  width: 100%;
}
.product-hero__gallery .gallery-main-image {
  border-radius: var(--border-radius-sm);
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
  width: 100%;
}
.product-hero__gallery .gallery-main-image:hover {
  transform: scale(1.1);
}
.product-hero__gallery .gallery-main::after {
  background: rgba(255, 255, 255, 0.9);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  border-radius: 50%;
  content: "";
  height: 60px;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity var(--transition-fast);
  width: 60px;
}
.product-hero__gallery .gallery-main:hover::after {
  opacity: 1;
}
.product-hero__gallery .product-gallery {
  position: relative;
  width: 100%;
}
.product-hero__gallery .gallery-thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}
.product-hero__gallery .gallery-thumbnail {
  border: 2px solid transparent;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  flex: 0 0 80px;
  height: 80px;
  overflow: hidden;
  position: relative;
  transition: all var(--transition-fast);
}
.product-hero__gallery .gallery-thumbnail:hover {
  border-color: var(--primary-color);
  transform: scale(1.05);
}
.product-hero__gallery .gallery-thumbnail.active {
  border-color: var(--primary-color);
  transform: scale(1.05);
}
.product-hero__gallery .thumbnail-image {
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
  width: 100%;
}
.product-hero__gallery .thumbnail-image:hover {
  transform: scale(1.1);
}
.product-hero__gallery .product-image-placeholder {
  align-items: center;
  background-color: var(--background-light);
  border-radius: var(--border-radius-lg);
  display: flex;
  height: 600px;
  justify-content: center;
  width: 100%;
}
.product-hero__gallery .product-main-image {
  border-radius: var(--border-radius-lg);
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.product-hero__gallery .no-image-placeholder {
  color: var(--text-light);
  text-align: center;
}
.product-hero__gallery .no-image-placeholder svg {
  margin-bottom: var(--spacing-sm);
}
.product-hero__gallery .no-image-placeholder p {
  font-size: var(--font-size-small);
  margin: 0;
}
.product-hero__info {
  flex: 0 0 50%;
  max-width: 50rem;
  width: 50%;
}
.product-hero__info .product-title {
  color: var(--text-color);
  font-family: var(--font-family-secondary);
  font-size: 4rem;
  font-style: normal;
  font-weight: 400;
  leading-trim: both;
  line-height: 5rem;
  margin-bottom: var(--spacing-xl);
  text-edge: cap;
  /* 125% */
  /* 125% */
}
.product-hero__info .product-price {
  color: var(--primary-color);
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
}
.product-hero__info .product-description {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
}
.product-hero__info .product-actions {
  align-items: center;
  display: flex;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-xl);
}
.product-hero__info .quantity-selector {
  align-items: center;
  display: flex;
  overflow: hidden;
}
.product-hero__info .quantity-btn {
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  font-size: var(--font-size-large);
  font-weight: bold;
  padding: var(--spacing-sm) var(--spacing-md);
  transition: background-color var(--transition-fast);
}
.product-hero__info .quantity-btn:hover {
  background-color: var(--background-light);
}
.product-hero__info .quantity-input {
  border: none;
  font-size: var(--font-size-base);
  outline: none;
  padding: var(--spacing-sm);
  text-align: center;
  width: 60px;
}
.product-hero__info .quantity-input:focus {
  outline: none;
}
.product-hero__info .product-accordion {
  margin-bottom: var(--spacing-xl);
}
.product-hero__info .accordion-item {
  border-bottom: 1px solid var(--border-color);
}
.product-hero__info .accordion-header {
  align-items: center;
  background: none;
  border: none;
  color: var(--text-color);
  cursor: pointer;
  display: flex;
  font-size: var(--font-size-base);
  font-weight: 500;
  justify-content: space-between;
  padding: var(--spacing-md);
  text-align: left;
  transition: color var(--transition-fast);
  width: 100%;
}
.product-hero__info .accordion-header:hover {
  color: var(--primary-color);
}
.product-hero__info .accordion-icon {
  font-size: var(--font-size-large);
  font-weight: bold;
  transition: transform var(--transition-fast);
}
.product-hero__info .accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 var(--spacing-md);
  transition: max-height var(--transition-normal);
}
.product-hero__info .accordion-content.active {
  max-height: 900px;
  padding: 0 var(--spacing-md) var(--spacing-md);
}
.product-hero__info .accordion-content .product-details .product-info-content {
  margin-bottom: var(--spacing-lg);
}
.product-hero__info .accordion-content .product-details .product-info-content h1,
.product-hero__info .accordion-content .product-details .product-info-content h2,
.product-hero__info .accordion-content .product-details .product-info-content h3,
.product-hero__info .accordion-content .product-details .product-info-content h4,
.product-hero__info .accordion-content .product-details .product-info-content h5,
.product-hero__info .accordion-content .product-details .product-info-content h6 {
  color: var(--text-color);
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-semi-bold);
  margin-bottom: var(--spacing-sm);
  margin-top: var(--spacing-md);
}
.product-hero__info .accordion-content .product-details .product-info-content h1:first-child,
.product-hero__info .accordion-content .product-details .product-info-content h2:first-child,
.product-hero__info .accordion-content .product-details .product-info-content h3:first-child,
.product-hero__info .accordion-content .product-details .product-info-content h4:first-child,
.product-hero__info .accordion-content .product-details .product-info-content h5:first-child,
.product-hero__info .accordion-content .product-details .product-info-content h6:first-child {
  margin-top: 0;
}
.product-hero__info .accordion-content .product-details .product-info-content p {
  color: var(--text-color);
  font-size: var(--font-size-base);
  line-height: 1.6;
  margin-bottom: var(--spacing-sm);
}
.product-hero__info .accordion-content .product-details .product-info-content ul,
.product-hero__info .accordion-content .product-details .product-info-content ol {
  list-style: none;
  margin: 0 0 var(--spacing-sm) 0;
  padding: 0;
}
.product-hero__info .accordion-content .product-details .product-info-content ul li,
.product-hero__info .accordion-content .product-details .product-info-content ol li {
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
  font-size: var(--font-size-base);
  line-height: 1.5;
  padding: var(--spacing-xs) 0;
}
.product-hero__info .accordion-content .product-details .product-info-content ul li:last-child,
.product-hero__info .accordion-content .product-details .product-info-content ol li:last-child {
  border-bottom: none;
}
.product-hero__info .accordion-content .product-details .product-info-content ul li strong,
.product-hero__info .accordion-content .product-details .product-info-content ol li strong {
  color: var(--primary-color);
  font-weight: var(--font-weight-semi-bold);
}
.product-hero__info .accordion-content .product-details .product-info-content table {
  border-collapse: collapse;
  margin-bottom: var(--spacing-sm);
  width: 100%;
}
.product-hero__info .accordion-content .product-details .product-info-content table th,
.product-hero__info .accordion-content .product-details .product-info-content table td {
  border: 1px solid var(--border-color);
  padding: var(--spacing-xs) var(--spacing-sm);
  text-align: left;
}
.product-hero__info .accordion-content .product-details .product-info-content table th {
  background-color: var(--background-light);
  font-weight: var(--font-weight-semi-bold);
}
.product-hero__info .accordion-content .product-details .product-specifications,
.product-hero__info .accordion-content .product-details .product-features {
  margin-bottom: var(--spacing-lg);
}
.product-hero__info .accordion-content .product-details .product-specifications h4,
.product-hero__info .accordion-content .product-details .product-features h4 {
  color: var(--text-color);
  font-size: var(--font-size-large);
  font-weight: var(--font-weight-semi-bold);
  margin-bottom: var(--spacing-sm);
}
.product-hero__info .accordion-content .product-details .product-specifications ul,
.product-hero__info .accordion-content .product-details .product-features ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.product-hero__info .accordion-content .product-details .product-specifications ul li,
.product-hero__info .accordion-content .product-details .product-features ul li {
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
  font-size: var(--font-size-base);
  line-height: 1.5;
  padding: var(--spacing-xs) 0;
}
.product-hero__info .accordion-content .product-details .product-specifications ul li:last-child,
.product-hero__info .accordion-content .product-details .product-features ul li:last-child {
  border-bottom: none;
}
.product-hero__info .accordion-content .product-details .product-specifications ul li strong,
.product-hero__info .accordion-content .product-details .product-features ul li strong {
  color: var(--primary-color);
  font-weight: var(--font-weight-semi-bold);
}
.product-hero__info .social-share {
  align-items: center;
  display: flex;
  gap: var(--spacing-xs);
}
.product-hero__info .share-label {
  color: var(--text-color);
  font-weight: 500;
}
.product-hero__info .social-link {
  align-items: center;
  background-color: var(--white-color);
  display: flex;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-fast);
}
.product-hero__info .social-link svg {
  height: 100%;
  max-height: 3rem;
  width: 100%;
}
.product-hero__info .social-link:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.brand-story {
  align-items: center;
  display: flex;
  height: auto;
  overflow: hidden;
  padding: var(--spacing-xxl) 0 0;
  position: relative;
}
@media (max-width: 576px) {
  .brand-story .container {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 2rem;
  }
}
.brand-story__background {
  height: 750px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .brand-story__background {
    height: 50.5rem;
  }
}
@media (max-width: 576px) {
  .brand-story__background {
    height: 31rem;
  }
}
.brand-story .brand-story-video-container {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.brand-story .brand-story-video-container .brand-story-video-wrapper {
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.brand-story .brand-story-video-container .brand-story-video-wrapper .brand-story-video {
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.brand-story .brand-story-video-container .brand-story-video-wrapper .brand-story-video.uploaded-video {
  display: block;
  height: 100%;
  left: 0;
  min-height: 100%;
  min-width: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  position: absolute;
  top: 0;
  visibility: visible;
  width: 100%;
  z-index: 1;
}
.brand-story .brand-story-video-container .brand-story-video-wrapper .brand-story-video[src*=".mp4"], .brand-story .brand-story-video-container .brand-story-video-wrapper .brand-story-video[src*=".mov"], .brand-story .brand-story-video-container .brand-story-video-wrapper .brand-story-video[src*=".avi"], .brand-story .brand-story-video-container .brand-story-video-wrapper .brand-story-video[src*=".mkv"], .brand-story .brand-story-video-container .brand-story-video-wrapper .brand-story-video[src*=".webm"], .brand-story .brand-story-video-container .brand-story-video-wrapper .brand-story-video[src*=".ogg"], .brand-story .brand-story-video-container .brand-story-video-wrapper .brand-story-video[src*=".3gp"], .brand-story .brand-story-video-container .brand-story-video-wrapper .brand-story-video[src*=".flv"], .brand-story .brand-story-video-container .brand-story-video-wrapper .brand-story-video[src*=".wmv"], .brand-story .brand-story-video-container .brand-story-video-wrapper .brand-story-video[src*=".m4v"], .brand-story .brand-story-video-container .brand-story-video-wrapper .brand-story-video[src*=".mpg"], .brand-story .brand-story-video-container .brand-story-video-wrapper .brand-story-video[src*=".mpeg"] {
  height: auto;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
}
.brand-story .brand-story-video-container .brand-story-video-overlay {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.brand-story .brand-story-video-container .video-fallback {
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.brand-story .brand-story-video.uploaded-video {
  display: block !important;
  height: 100% !important;
  left: 0 !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 1 !important;
  position: absolute !important;
  top: 0 !important;
  visibility: visible !important;
  width: 100% !important;
  z-index: 1 !important;
}
.brand-story__content {
  margin-top: 750px;
  max-width: 100%;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .brand-story__content {
    margin-top: 46.5rem;
  }
}
@media (max-width: 576px) {
  .brand-story__content {
    margin-top: 28rem;
  }
}
.brand-story__text-grid {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  margin: 0 auto;
}
.brand-story__text-left {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.brand-story__text-right {
  align-items: center;
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .brand-story__text-right {
    font-size: 1.6rem;
    letter-spacing: 1;
    line-height: 24px;
  }
}
.brand-story__title {
  color: #000;
  font-family: Montserrat;
  font-size: 4rem;
  font-style: normal;
  font-weight: 300;
  leading-trim: both;
  /* 125% */
  letter-spacing: -0.04rem;
  line-height: 5rem;
  margin-bottom: 2rem;
  text-align: center;
  text-edge: cap;
}
@media (max-width: 576px) {
  .brand-story__title {
    font-size: 2.8rem;
    letter-spacing: -0.28px;
    line-height: 1;
    margin-bottom: 2rem;
  }
}
.brand-story__subtitle {
  margin-bottom: 0;
  line-height: 1;
  font-size: 2rem;
}
@media (max-width: 576px) {
  .brand-story__subtitle {
    font-size: 1.8rem;
    letter-spacing: 1;
    text-align: center;
    /* 133.333% */
  }
}
.brand-story__description {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 2.8rem;
  /* 155.556% */
  margin-bottom: 5rem;
  text-align: center;
}
.brand-story__button {
  align-items: center;
  border: 1px solid black !important;
  border: 1px solid #fff;
  border-radius: 10rem;
  color: black;
  display: inline-flex;
  flex-shrink: 0;
  font-size: var(--font-size-base);
  font-weight: 500;
  gap: 1.2rem;
  justify-content: center;
  /* 218.75% */
  letter-spacing: 0.032rem;
  padding: var(--spacing-xs) var(--spacing-xl);
  transition: all var(--transition-fast);
}
.brand-story__button:hover {
  transform: translateY(-1px);
  background-color: black;
  color: white;
}
.brand-story__button .button-arrow {
  transition: transform var(--transition-fast);
}
.brand-story__button:hover .button-arrow {
  transform: translateX(4px);
}

.story-bg-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.background-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  opacity: 0;
  transition: opacity var(--transition-slow);
  width: 100%;
}
.background-image.loaded {
  opacity: 1;
}

.collectors-favorite {
  background-color: var(--white-color);
  padding: 14rem 0 7rem;
}
@media (max-width: 576px) {
  .collectors-favorite {
    padding: 5rem 2rem 7rem 2rem;
  }
}
.collectors-favorite .container {
  margin: 0 auto;
  max-width: var(--container-max-width);
  padding: 0;
}
.collectors-favorite__header {
  margin-bottom: var(--spacing-14);
  text-align: center;
}
.collectors-favorite__stars {
  display: flex;
  gap: var(--spacing-xs);
  justify-content: center;
  margin-bottom: var(--spacing-14);
}
.collectors-favorite__stars .star-icon {
  height: 32px;
  overflow: visible;
  transform: scale(1.4);
  transform-origin: center;
  width: 32px;
}
.collectors-favorite__title {
  color: #000;
  font-size: 4rem;
  font-style: normal;
  font-weight: 300;
  leading-trim: both;
  line-height: 3.4rem;
  margin-bottom: 2rem;
  text-align: center;
  text-edge: cap;
  /* 85% */
}
@media (width <= 768px) {
  .collectors-favorite__title {
    font-size: var(--font-size-h3);
  }
}
@media (width <= 576px) {
  .collectors-favorite__title {
    font-size: var(--font-size-h4);
  }
}
.collectors-favorite__subtitle {
  color: #1e1e1e;
  font-family: Montserrat;
  font-size: 2rem;
  font-style: normal;
  font-weight: 300;
  leading-trim: both;
  line-height: 2.3rem;
  /* 170% */
  margin-bottom: 5rem;
  text-align: center;
  text-edge: cap;
}
@media (width <= 768px) {
  .collectors-favorite__subtitle {
    font-size: var(--font-size-base);
  }
}
@media (width <= 576px) {
  .collectors-favorite__subtitle {
    font-size: var(--font-size-small);
  }
}
.collectors-favorite__features {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}
@media (width <= 768px) {
  .collectors-favorite__features {
    gap: var(--spacing-md);
    padding: 0 1.5rem;
  }
}
@media (width <= 576px) {
  .collectors-favorite__features {
    gap: var(--spacing-sm);
  }
}
.collectors-favorite__feature {
  align-items: center;
  border: 1px solid black;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  justify-content: center;
  max-height: 24.5rem;
  max-width: 46.7rem;
  padding: 4.1rem;
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
}
.collectors-favorite__feature .feature-star {
  height: 5rem;
  width: 5rem;
}
.collectors-favorite__feature .feature-title {
  color: #000;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  leading-trim: both;
  line-height: 1;
  text-align: center;
  text-edge: cap;
  /* 125% */
  text-transform: capitalize;
}
@media (width <= 576px) {
  .collectors-favorite__feature .feature-title {
    font-size: var(--font-size-base);
  }
}
.collectors-favorite__feature .feature-description {
  color: #000;
  font-family: Montserrat;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 300;
  leading-trim: both;
  line-height: 2.8rem;
  margin: 0;
  margin-top: 1.5rem;
  /* 155.556% */
  max-width: 28.4rem;
  text-align: center;
  text-edge: cap;
}
@media (width <= 576px) {
  .collectors-favorite__feature .feature-description {
    font-size: var(--font-size-small);
  }
}

.care-guide {
  background-color: var(--white-color-3);
  padding: var(--spacing-90) 0;
}
.care-guide__content {
  align-items: center;
  display: grid;
  gap: var(--spacing-xl);
  grid-template-columns: 1fr 1fr;
}
.care-guide__title {
  color: var(--text-color);
  font-size: var(--font-size-h2);
  font-weight: 500;
  margin-bottom: var(--spacing-lg);
  /* 117.5% */
}
.care-guide__description {
  color: var(--text-color);
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.6;
  line-height: 3.5rem;
  margin-bottom: var(--spacing-xl);
}
.care-guide__button {
  background-color: var(--white-color);
  border-color: var(--text-color);
  color: var(--text-color);
  display: inline-block;
  font-size: var(--font-size-large);
  font-weight: 600;
  text-decoration: none;
}
.care-guide__button:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.care-video {
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  line-height: 0;
  overflow: hidden;
  position: relative;
}

.care-video-player {
  background-color: var(--background-dark);
  display: block;
  height: 400px;
  margin: 0;
  padding: 0;
  width: 100%;
}
.care-video-player.youtube-embed {
  border: none;
  border-radius: var(--border-radius-lg);
}

iframe.care-video-player {
  border: none;
  border-radius: var(--border-radius-lg);
  display: block;
  height: 400px;
  line-height: 0;
  margin: 0;
  padding: 0;
  width: 100%;
}

.care-video-placeholder {
  line-height: 0;
}

.video-placeholder {
  align-items: center;
  background-color: var(--background-dark);
  color: white;
  cursor: pointer;
  display: flex;
  height: 400px;
  justify-content: center;
  margin: 0;
  padding: 0;
  transition: all var(--transition-fast);
  width: 100%;
}
.video-placeholder:hover {
  background-color: var(--text-color);
}
.video-placeholder:hover .play-icon {
  transform: scale(1.1);
}

.play-icon {
  color: white;
  font-size: 4rem;
}

.premium-packaging {
  background-color: var(--background-color);
  padding: var(--spacing-xxl) 0;
}
.premium-packaging__content {
  align-items: start;
  display: grid;
  display: flex;
  gap: var(--spacing-56);
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 75rem;
}
.premium-packaging__media {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
.premium-packaging__text {
  align-self: start;
  padding-left: var(--spacing-lg);
  padding-top: 0;
}
.premium-packaging__title {
  color: var(--text-color);
  font-size: var(--font-size-h2);
  font-weight: 500;
  line-height: 1.2;
  line-height: 47px;
  margin-top: var(--spacing-xxl);
  /* 117.5% */
}
.premium-packaging__description {
  color: var(--text-color);
  font-size: var(--font-size-base);
  line-height: 1.6;
  margin-bottom: var(--spacing-xl);
}

.packaging-image {
  border-radius: var(--border-radius-lg);
  height: 26.4rem;
  max-width: 26.4rem;
  overflow: hidden;
  position: relative;
  width: 26.4rem;
}

.packaging-product-image {
  border-radius: var(--border-radius-lg);
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.packaging-image-placeholder {
  height: 26.4rem;
  max-width: 26.4rem;
  width: 26.4rem;
}

.image-placeholder {
  align-items: center;
  background-color: #f5f5f5;
  border-radius: var(--border-radius-lg);
  color: var(--text-light);
  display: flex;
  font-size: var(--font-size-base);
  height: 100%;
  justify-content: center;
  padding: var(--spacing-md);
  text-align: center;
  width: 100%;
}

.packaging-product {
  border-radius: var(--border-radius-lg);
  text-align: center;
  width: 100%;
}

.product-info {
  display: flex;
  flex-direction: column;
}

.product-name {
  color: var(--text-color);
  font-size: 1.8rem;
  font-weight: 500;
  leading-trim: both;
  letter-spacing: 0.36px;
  line-height: 35px;
  text-edge: cap;
}

.product-price {
  color: var(--text-color);
  font-size: var(--font-size-base);
  font-weight: 400;
  leading-trim: both;
  /* 218.75% */
  letter-spacing: 0.32px;
  line-height: 35px;
  text-edge: cap;
}

.packaging-add-to-cart {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--text-color);
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.packaging-add-to-cart:hover {
  background-color: var(--white-color);
  border-color: var(--primary-color);
  color: var(--text-color);
}

@media (width <= 768px) {
  .premium-packaging__content {
    gap: var(--spacing-lg);
    grid-template-columns: 1fr;
  }
  .premium-packaging__text {
    padding-left: 0;
    text-align: center;
  }
  .packaging-product {
    max-width: 100%;
  }
  .packaging-image,
  .packaging-image-placeholder {
    max-width: 100%;
  }
}
.essential-accessories {
  background-color: var(--white-color);
  padding: 5.625rem 0;
}

.accessories-title {
  font-size: var(--font-size-h2);
  margin-bottom: 3.1875rem;
  margin-top: 5.625rem;
  text-align: center;
}

.accessories-carousel {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-xl);
  overflow: visible;
  padding: 0 3rem;
  position: relative;
}

.carousel-container {
  align-items: stretch;
  border-radius: var(--border-radius-lg);
  display: flex;
  gap: 1.5625rem;
  height: auto;
  overflow: hidden;
  padding: var(--spacing-lg) 0;
  transition: transform var(--transition-normal);
  width: 100%;
}

.accessory-item {
  background: #f6f6f6;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex: 0 0 26.4rem;
  flex-direction: column;
  flex-shrink: 0;
  min-height: 38.4rem;
  overflow: hidden;
  transition: transform var(--transition-fast);
}
.accessory-item:hover {
  box-shadow: var(--shadow-lg);
}

.accessory-image {
  align-items: center;
  background-color: #f6f6f6;
  display: flex;
  height: 20rem;
  justify-content: center;
  overflow: hidden;
  padding-top: 2rem;
  position: relative;
}
.accessory-image img {
  display: block;
  height: 12rem;
  margin: 0 auto;
  object-fit: cover;
  width: 18.218rem;
}

.accessory-image-placeholder {
  align-items: center;
  background-color: #f6f6f6;
  display: flex;
  height: 20rem;
  justify-content: center;
  padding-top: 2rem;
}

.accessory-info {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.5rem;
}

.accessory-name {
  color: var(--text-color);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.6rem;
  margin-top: 0;
}

.accessory-description {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: var(--spacing-md);
}

.accessory-price {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: auto;
}

.accessory-view-product {
  background-color: var(--primary-color);
  border-radius: var(--border-radius-md);
  color: white;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}
.accessory-view-product:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.accessory-add-to-cart {
  margin-top: 1rem;
}

.carousel-nav {
  align-items: center;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 3rem;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all var(--transition-fast);
  width: 3rem;
  z-index: 20;
}
.carousel-nav:hover {
  background: #000;
  color: white;
}
.carousel-nav.carousel-prev {
  left: -1.5rem;
}
.carousel-nav.carousel-next {
  right: -1.5rem;
}
.carousel-nav svg {
  color: var(--text-color);
  height: 1.5rem;
  width: 1.5rem;
}
.carousel-nav:hover svg {
  color: white;
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
  position: relative;
  z-index: 5;
}

.carousel-dot {
  background: var(--border-color);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  height: 0.75rem;
  transition: background var(--transition-fast);
  width: 0.75rem;
}
.carousel-dot.active {
  background: var(--primary-color);
}

.juicing-inspirations {
  background-color: var(--darkolive-color);
  color: var(--white-color-2);
  padding: var(--spacing-xxl) 0;
}

.inspirations-title {
  font-family: var(--font-family-secondary);
  font-size: 4rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.175;
  text-align: left;
  /* 117.5% */
}

.carousel-container {
  display: flex;
  gap: var(--spacing-lg);
  padding: 5rem 0 2rem;
  transition: transform var(--transition-normal);
}

.inspiration-item {
  background-color: white;
  height: 100%;
  overflow: hidden;
  transition: transform var(--transition-fast);
}
.inspiration-item:hover {
  transform: translateY(-5px);
}

.article-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.article-thumbnail {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.article-content {
  background-color: var(--darkolive-color);
  color: var(--white-color-2);
  padding: 2rem 0;
}

.article-title {
  font-size: var(--font-size-h4);
  margin-bottom: var(--spacing-md);
}
.article-title a {
  color: var(--white-color-2);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.article-title a:hover {
  color: var(--primary-color);
}

.article-excerpt {
  line-height: 1.5;
  margin-bottom: var(--spacing-lg);
}

.read-more-link {
  color: var(--primary-color);
  display: inline-block;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.read-more-link:hover {
  color: var(--accent-color);
}

.partner-form {
  background-color: var(--white-color-3);
  padding: var(--spacing-xxl) 0;
}
.partner-form__content--private-viewing {
  align-items: center;
  display: flex;
  gap: 27rem;
}
.partner-form__header {
  margin-bottom: var(--spacing-xl);
  text-align: center;
}
.partner-form--private_viewing .partner-form__header {
  color: #000;
  font-family: "Neue Haas Grotesk Display Pro";
  font-size: 2rem;
  font-style: normal;
  font-weight: 450;
  leading-trim: both;
  /* 175% */
  letter-spacing: 0.04rem;
  line-height: 3.5rem;
  margin: 0;
  text-edge: cap;
}
.partner-form--private_viewing .partner-form__header .partner-form__title {
  margin: 0;
  margin-bottom: 7rem;
  text-align: left;
}
.partner-form--private_viewing .partner-form__header .partner-form__description {
  margin: 0;
  margin-bottom: 4.5rem;
  max-width: none;
  text-align: left;
}
.partner-form__title {
  color: #000;
  font-family: Montserrat;
  font-size: 4rem;
  font-style: normal;
  font-weight: 300;
  leading-trim: both;
  line-height: 4.7rem;
  text-edge: cap;
  /* 117.5% */
}
.partner-form__description {
  color: var(--text-light);
  font-size: var(--font-size-large);
  line-height: 1.6;
  margin: 0 auto;
  max-width: 600px;
}
.partner-form--private_viewing .partner-form__description {
  color: #000;
  font-size: 2rem;
  font-style: normal;
  font-weight: 450;
  leading-trim: both;
  /* 175% */
  letter-spacing: 0.04rem;
  line-height: 3.5rem;
  text-edge: cap;
}
.partner-form__left {
  width: 70%;
}
@media (width <= 992px) {
  .partner-form__left {
    width: 100%;
  }
}
.partner-form__right {
  width: 30%;
}
@media (width <= 992px) {
  .partner-form__right {
    justify-items: center;
    text-align: center;
    width: 100%;
  }
}
.partner-form__contact-info {
  padding: 0 var(--spacing-lg);
}
.partner-form__contact-info .contact-info__title {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  leading-trim: both;
  letter-spacing: 0.4px;
  line-height: 35px;
  /* 175% */
  margin-bottom: 6rem;
  text-edge: cap;
}
.partner-form__contact-info .contact-info__details {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.partner-form__contact-info .contact-detail {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}
.partner-form__contact-info .contact-label {
  color: var(--text-color);
  font-size: var(--font-size-base);
  font-weight: 500;
}
.partner-form__contact-info .contact-value {
  color: var(--text-color);
  font-size: var(--font-size-base);
}

.trade-inquiry-form,
.private-viewing-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  margin: 0 auto;
  padding: var(--spacing-xl);
}
.partner-form--private_viewing .trade-inquiry-form,
.partner-form--private_viewing .private-viewing-form {
  margin: 0;
  padding: 0;
}

.partner-form .form-row {
  display: flex;
  margin-bottom: 0;
}

.partner-form .form-row > .form-group {
  flex: 1 1 0;
}

.partner-form .form-row > .form-group + .form-group {
  margin-left: var(--spacing-lg);
}

@media (width <= 768px) {
  .partner-form .form-row {
    flex-direction: column;
  }
  .partner-form .form-row > .form-group + .form-group {
    margin-left: 0;
  }
}
.form-group {
  margin-bottom: 0;
  position: relative;
  width: 100%;
}
.form-group .form-label:has(+ .form-input:focus),
.form-group .form-label:has(+ .form-input:not(:placeholder-shown)) {
  top: -10px;
}
.form-group .form-label:has(+ .form-textarea:focus),
.form-group .form-label:has(+ .form-textarea:not(:placeholder-shown)) {
  top: -29px;
}

.form-label {
  color: var(--text-color);
  display: block;
  font-weight: 500;
  left: 20px;
  margin-bottom: var(--spacing-xs);
  position: absolute;
  top: 20px;
  transition: top var(--transition-fast);
}

.form-input,
.form-textarea {
  background-color: transparent;
  border-color: var(--text-color);
  border-radius: 0;
  border-width: 0 0 1px;
  font-size: var(--font-size-base);
  padding: var(--spacing-sm);
  transition: border-color var(--transition-fast);
  width: 100%;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}
.form-input.error,
.form-textarea.error {
  border-color: var(--error-color);
}

.form-textarea {
  border-width: 1px;
}

@media (width <= 992px) {
  .form-actions {
    text-align: center;
  }
}

.submit-btn {
  background-color: var(--primary-color);
  border: none;
  border-radius: var(--border-radius-72);
  color: black;
  cursor: pointer;
  font-size: var(--font-size-base);
  font-weight: 500;
  padding: var(--spacing-14) var(--spacing-56);
  transition: all var(--transition-fast);
}
.submit-btn:hover {
  box-shadow: 0 0.8rem 2rem rgba(223, 187, 123, 0.3);
  color: black;
  transform: translateY(-0.2rem);
  background-color: var(--primary-color);
}
.submit-btn:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.submit-btn.success {
  background-color: var(--success-color);
}

@media (width <= 992px) {
  .partner-form__content--private-viewing {
    align-items: center;
    flex-direction: column;
    gap: var(--spacing-lg);
    justify-content: center;
  }
  .partner-form__contact-info {
    margin-top: var(--spacing-lg);
    padding: 0;
  }
}
.cart-section {
  background-color: #fff;
  color: #000;
  margin-bottom: 75px;
  padding: 48px 0 0;
}
.cart-section .container {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 16px;
  width: 100%;
}

.cart-header {
  margin-bottom: 56px;
  text-align: center;
  text-align: left;
}
.cart-header .cart-title {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  leading-trim: both;
  line-height: 47px;
  margin-bottom: 24px;
  text-edge: cap;
}
.cart-header .cart-description {
  font-size: 18px;
  font-weight: 400;
  leading-trim: both;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 61.5rem;
  text-edge: cap;
}

.empty-cart {
  padding: 64px 0;
  text-align: center;
}
.empty-cart .empty-cart-icon {
  font-size: 80px;
  margin-bottom: 32px;
  opacity: 0.5;
}
.empty-cart h2 {
  color: #000;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 24px;
}
.empty-cart p {
  color: #666;
  font-size: 18px;
  margin-bottom: 48px;
}

.cart-content {
  display: grid;
  gap: 150px;
  grid-template-columns: minmax(64.5rem, 1fr) minmax(49.5rem, 1fr);
  max-width: none;
  width: 100%;
}
@media (max-width: 992px) {
  .cart-content {
    gap: 32px;
    grid-template-columns: 1fr;
  }
}

.cart-items-column .cart-items-title {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  leading-trim: both;
  line-height: 47px;
  margin-bottom: 24px;
  text-edge: cap;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cart-item {
  background-color: #f6f6f6;
  display: grid;
  gap: 32px;
  grid-template-columns: auto 1fr;
  padding: 20px;
  position: relative;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .cart-item {
    gap: 24px;
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.cart-item-image {
  flex-shrink: 0;
  height: auto;
  overflow: hidden;
  width: 120px;
}
.cart-item-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}
.cart-item-image a:hover img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .cart-item-image {
    height: 100px;
    margin: 0 auto;
    width: 100px;
  }
}

.cart-item-details {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.cart-item-info {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-around;
}
.cart-item-info .cart-item-title {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  leading-trim: both;
  line-height: 1.3;
  line-height: 22px;
  margin-bottom: 16px;
  text-edge: cap;
}
.cart-item-info .cart-item-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.cart-item-info .cart-item-title a:hover {
  color: #dfbb7b;
}
.cart-item-info .cart-item-meta {
  color: #666;
  font-size: 14px;
}

.cart-item-controls {
  align-items: center;
  display: flex;
  gap: 24px;
}
@media (max-width: 768px) {
  .cart-item-controls {
    gap: 16px;
    justify-items: center;
  }
}

.cart-item-price {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  justify-self: center;
  min-width: 120px;
  text-align: center;
  white-space: nowrap;
}

.cart-summary-column {
  height: fit-content;
  position: sticky;
  top: 32px;
}
@media (max-width: 992px) {
  .cart-summary-column {
    position: static;
  }
}

.cart-summary {
  background-color: #fff;
  padding: 0;
}

.cart-summary-title {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  leading-trim: both;
  line-height: 47px;
  margin-bottom: 32px;
  padding-bottom: 0;
  text-edge: cap;
}

.cart-summary-details {
  margin-bottom: 32px;
}

.summary-row {
  align-items: center;
  border-bottom: 1px solid #f8f8f8;
  display: flex;
  justify-content: space-between;
  padding: 48px 0;
}
.summary-row:first-child {
  padding-top: 0;
}
@media (max-width: 576px) {
  .summary-row:first-child {
    padding-bottom: 20px;
  }
}
.summary-row:nth-child(2) {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 576px) {
  .summary-row:nth-child(2) {
    padding-top: 20px;
  }
}
.summary-row .summary-label {
  color: #000;
  font-size: 16px;
  font-weight: 450;
}
.summary-row .summary-value {
  color: #000;
  font-size: 16px;
  font-weight: 500;
}

.shipping-note {
  color: #666;
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
}
@media (max-width: 992px) {
  .shipping-note {
    justify-self: end;
  }
}

.cart-summary-actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.cart-summary-actions .checkout-btn {
  border: none;
  font-size: 18px;
  font-weight: 500;
  justify-content: center;
  margin: 0;
  padding: 14px 0 14px 0;
  width: 100%;
}
.cart-summary-actions .checkout-btn:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  color: #000;
  transform: none;
}
.cart-summary-actions .back-to-shop-btn {
  border: 1px solid #3a3c37;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  font-size: 16px;
  justify-content: center;
  margin: 0;
  padding: 24px 32px;
  padding: 13px 0;
  width: 100%;
}
.cart-summary-actions .back-to-shop-btn:hover {
  border: none;
  border: 1px solid transparent;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  color: #000;
  transform: none;
}

.secure-checkout {
  align-items: baseline;
  border-top: 1px solid #f8f8f8;
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
  padding-top: 24px;
}
.secure-checkout .secure-checkout-icon {
  align-items: center;
  color: #28a745;
  display: flex;
}
.secure-checkout span {
  color: #000;
  font-size: 16px;
  font-weight: 450;
}

.payment-methods {
  align-items: center;
  border-top: 1px solid #f8f8f8;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding-top: 24px;
}
.payment-methods .payment-method {
  align-items: center;
  background-color: #f8f8f8;
  border-radius: 4px;
  display: flex;
  height: 32px;
  justify-content: center;
  padding: 0 8px;
  width: auto;
}
.payment-methods .payment-method img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.mobile-checkout-bar {
  background-color: #fff;
  border-top: 1px solid #e5e5e5;
  bottom: 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 24px;
  position: fixed;
  right: 0;
  z-index: 1020;
}
@media (max-width: 992px) {
  .mobile-checkout-bar {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
  }
}

.mobile-checkout-summary .mobile-subtotal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-checkout-summary .mobile-subtotal .mobile-subtotal-label {
  color: #666;
  font-size: 14px;
}
.mobile-checkout-summary .mobile-subtotal .mobile-subtotal-value {
  color: #000;
  font-size: 18px;
  font-weight: 500;
}
.mobile-checkout-summary .mobile-shipping-note {
  color: #666;
  font-size: 14px;
  margin-top: 8px;
}

.mobile-checkout-btn {
  font-size: 18px;
  font-weight: 500;
  padding: 24px 48px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .cart-section {
    padding: 32px 0;
  }
  .cart-header {
    margin-bottom: 32px;
  }
  .cart-header .cart-title {
    font-size: 40px;
  }
  .cart-header .cart-description {
    font-size: 16px;
  }
  .cart-content {
    margin-bottom: 32px;
  }
  .cart-item {
    display: flex;
    padding: 24px;
    text-align: left;
  }
  .cart-item-controls {
    align-items: center;
    gap: 0;
  }
  .cart-summary {
    padding: 24px;
  }
}
@media (max-width: 576px) {
  .cart-section .container {
    padding: 0 16px;
  }
  .cart-section .container .cart-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  .cart-header {
    margin-bottom: 50px;
  }
  .cart-header .cart-title {
    font-size: 24px;
    line-height: 47px;
    margin-bottom: 24px;
  }
  .cart-header .cart-description {
    font-size: 16px;
    line-height: 26px;
  }
  .cart-item {
    align-items: start;
    display: flex;
    position: relative;
  }
  .cart-item-image {
    display: flex;
    height: 13rem;
    min-width: 13rem;
    position: relative;
    width: auto;
  }
  .cart-item-image img {
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    width: 100%;
  }
  .cart-item-details {
    align-items: center;
    display: flex;
    gap: 0;
    position: relative;
    width: 100%;
  }
  .cart-item-info {
    width: 100%;
  }
  .cart-item-info .cart-item-title {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 16px;
    max-width: calc(100% - 20px);
  }
  .cart-item-info .cart-quantity-controls {
    align-items: center;
    display: inline-flex;
    gap: 16px;
    margin-top: 16px;
    margin-top: 40px;
  }
  .cart-item-info .cart-quantity-minus,
  .cart-item-info .cart-quantity-plus {
    background: transparent;
    border: none;
    color: #000;
    font-size: 24px;
    font-weight: 600;
    height: auto;
    line-height: 1;
    padding: 0;
    width: auto;
  }
  .cart-item-info .cart-quantity-input {
    background: transparent;
    border: none;
    color: #000;
    font-size: 18px;
    font-weight: 600;
    padding: 0;
    width: 28px;
  }
  .cart-item-controls {
    align-items: center;
    display: flex;
    gap: 16px;
    height: 100%;
    justify-content: flex-end;
    margin-top: 0;
  }
  .cart-item-price {
    bottom: 25px;
    font-size: 20px;
    font-weight: 600;
    min-width: auto;
    position: absolute;
    right: 0;
    text-align: right;
  }
  .remove-from-cart {
    height: 24px;
    padding: 0;
    position: absolute;
    right: -10px;
    top: 0;
    width: 24px;
    z-index: 1020;
  }
  .remove-from-cart span,
  .remove-from-cart img {
    display: inline-block;
    height: 24px;
    width: 24px;
  }
  .mobile-checkout-bar {
    padding: 16px;
  }
}
.payment-method {
  transition: transform 0.2s ease;
}
.payment-method:hover {
  transform: scale(1.1);
}

.cart-item.updating {
  opacity: 0.7;
  pointer-events: none;
}
.cart-item.updating::after {
  animation: spin 1s linear infinite;
  border: 2px solid #dfbb7b;
  border-radius: 50%;
  border-top-color: transparent;
  content: "";
  height: 20px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.cart-quantity-input:focus,
.cart-quantity-minus:focus,
.cart-quantity-plus:focus,
.remove-from-cart:focus {
  border: none;
  outline: transparent;
}

@media print {
  .cart-section .mobile-checkout-bar,
  .cart-section .cart-summary-actions,
  .cart-section .remove-from-cart {
    display: none;
  }
}
.related-products {
  background-color: #f6f6f6;
  padding: 64px 0;
}
.related-products .related-products-section .related-products-title {
  color: #000;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 48px;
  text-align: center;
}
.related-products .related-products-section .related-products-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .related-products .related-products-section .related-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .related-products .related-products-section .related-products-grid {
    grid-template-columns: 1fr;
  }
}
.related-products .related-products-section .related-products-carousel {
  margin-bottom: 48px;
  overflow: visible;
  padding: 0 32px;
  position: relative;
}
.related-products .related-products-section .related-products-carousel .swiper {
  direction: ltr;
  overflow: hidden;
  width: 100%;
}
.related-products .related-products-section .related-products-carousel .swiper-wrapper {
  display: flex;
}
.related-products .related-products-section .related-product-card {
  flex: 0 0 33.333%;
}
@media (max-width: 992px) {
  .related-products .related-products-section .related-product-card {
    flex-basis: 50%;
  }
}
@media (max-width: 576px) {
  .related-products .related-products-section .related-product-card {
    flex-basis: 100%;
  }
}
.related-products .related-products-section .carousel-dots.swiper-pagination {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 2rem;
  position: static;
}
.related-products .related-products-section .carousel-dots.swiper-pagination .swiper-pagination-bullet {
  background: #d9d9d9;
  border-radius: 50%;
  height: 0.75rem;
  opacity: 1;
  width: 0.75rem;
}
.related-products .related-products-section .carousel-dots.swiper-pagination .swiper-pagination-bullet-active {
  background: #3a3c37;
}
.related-products .related-products-section .related-product-card {
  align-items: center;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  padding: 54px 0 20px 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.related-products .related-products-section .related-product-card:hover {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.related-products .related-products-section .related-product-card .related-product-image {
  display: block;
  margin-bottom: 16px;
}
.related-products .related-products-section .related-product-card .related-product-image img {
  display: block;
  height: auto;
  max-width: 76px;
  width: 100%;
}
.related-products .related-products-section .related-product-card .related-product-title {
  font-size: 16px;
  margin: 0 8px;
  margin-bottom: 4.5rem;
  padding: 0 20px;
  text-align: center;
}
.related-products .related-products-section .related-product-card .related-product-title a {
  color: #000;
  cursor: pointer;
  font-style: normal;
  font-weight: 500;
  leading-trim: both;
  line-height: 1.2;
  text-decoration: none;
  text-edge: cap;
  transition: color 0.2s ease;
}
.related-products .related-products-section .related-product-card .related-product-price {
  color: #000;
  font-weight: 450;
  margin-bottom: 16px;
  margin-bottom: 54px;
  padding: 0 20px;
}
.related-products .related-products-section .related-product-card .ajax_add_to_cart {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  leading-trim: both;
  margin-left: 20px;
  padding: 0 20px;
  text-edge: cap;
}
.related-products .related-products-section .related-product-card .ajax_add_to_cart::after {
  color: #000;
  content: "+";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  margin-left: 10px;
}
.related-products .related-products-section .swiper-button-next,
.related-products .related-products-section .swiper-button-prev {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  height: 30px;
  justify-content: center;
  width: 30px;
}
.related-products .related-products-section .swiper-button-next::after,
.related-products .related-products-section .swiper-button-prev::after {
  content: "";
}
.related-products .related-products-section .swiper-button-next img,
.related-products .related-products-section .swiper-button-prev img {
  transition: filter 0.2s ease;
}
.related-products .related-products-section .swiper-button-next:hover img,
.related-products .related-products-section .swiper-button-prev:hover img {
  filter: brightness(0) invert(1);
}

.cart-footer {
  align-items: stretch;
  display: flex;
  gap: 48px;
  padding: 64px 0;
}
@media (max-width: 768px) {
  .cart-footer {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
}

.cart-footer-column {
  border-top: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  max-width: 254px;
  width: fit-content;
}
@media (max-width: 768px) {
  .cart-footer-column {
    max-width: 100%;
    width: 100%;
  }
}
.cart-footer-column h3 {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  leading-trim: both;
  letter-spacing: 0.16px;
  line-height: 1.75;
  margin-bottom: 24px;
  padding-top: 16px;
  text-edge: cap;
}
.cart-footer-column p {
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  leading-trim: both;
  letter-spacing: 0.14px;
  line-height: 1.6;
  line-height: 22px;
  margin-bottom: 24px;
  text-edge: cap;
}
.cart-footer-column .customer-care-email {
  color: #000;
}
.cart-footer-column .cart-footer-link {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  leading-trim: both;
  /* 200% */
  letter-spacing: 0.14px;
  line-height: 28px;
  margin-top: auto;
  text-decoration: none;
  text-decoration-line: underline;
  text-decoration-skip-ink: auto;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  text-edge: cap;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: color 0.2s ease;
}
.cart-footer-column .cart-footer-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cart-footer {
    margin-top: 32px;
    padding-top: 32px;
  }
}
.checkout-page .woocommerce-checkout .woocommerce-billing-fields {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 48px;
  padding: 0;
}
.checkout-page .woocommerce-checkout .woocommerce-billing-fields h3 {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 32px;
}
.checkout-page .woocommerce-checkout .woocommerce-billing-fields .billing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.checkout-page .woocommerce-checkout .woocommerce-billing-fields .billing-grid > .form-row {
  flex: 0 0 100%;
}
.checkout-page .woocommerce-checkout .woocommerce-billing-fields .billing-grid #billing_first_name_field {
  flex: 0 0 calc(50% - 24px / 2);
}
.checkout-page .woocommerce-checkout .woocommerce-billing-fields .billing-grid #billing_last_name_field {
  flex: 0 0 calc(50% - 24px / 2);
}
.checkout-page .woocommerce-checkout .woocommerce-billing-fields .billing-grid #billing_phone_field {
  flex-basis: 100%;
}
.checkout-page .woocommerce-checkout .woocommerce-billing-fields .billing-grid #billing_address_1_field {
  flex-basis: 100%;
}
.checkout-page .woocommerce-checkout .woocommerce-billing-fields .billing-grid #billing_address_2_field {
  flex-basis: 100%;
}
.checkout-page .woocommerce-checkout .woocommerce-billing-fields .billing-grid #billing_country_field {
  flex: 0 0 calc(33.333% - 24px * 2 / 3);
}
.checkout-page .woocommerce-checkout .woocommerce-billing-fields .billing-grid #billing_city_field {
  flex: 0 0 calc(33.333% - 24px * 2 / 3);
}
.checkout-page .woocommerce-checkout .woocommerce-billing-fields .billing-grid #billing_postcode_field {
  flex: 0 0 calc(33.333% - 24px * 2 / 3);
}
.checkout-page .woocommerce-checkout .woocommerce-billing-fields .billing-grid #billing_state_field {
  flex: 0 0 calc(33.333% - 24px * 2 / 3);
}
.checkout-page .woocommerce-checkout .woocommerce-billing-fields .billing-grid.has-state #billing_postcode_field {
  flex-basis: 100%;
}
.checkout-page .woocommerce-checkout .woocommerce-billing-fields .billing-grid #billing_email_field {
  flex-basis: 100%;
}

.checkout-page .woocommerce-checkout .woocommerce-shipping-toggle {
  margin: 32px 0 24px;
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-toggle label.checkbox {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  gap: 16px;
  user-select: none;
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-toggle input[type=checkbox] {
  appearance: none;
  background: #f6f6f6;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  height: 28px;
  outline: none;
  position: relative;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  width: 48px;
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-toggle input[type=checkbox]::after {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  content: "";
  height: 22px;
  left: 3px;
  position: absolute;
  top: 3px;
  transition: transform 0.2s ease;
  width: 22px;
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-toggle input[type=checkbox]:hover {
  border-color: #dfbb7b;
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-toggle input[type=checkbox]:focus {
  border-color: #dfbb7b;
  box-shadow: 0 0 0 3px rgba(223, 187, 123, 0.15);
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-toggle input[type=checkbox]:checked {
  background: #dfbb7b;
  border-color: #dfbb7b;
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-toggle input[type=checkbox]:checked::after {
  transform: translateX(20px);
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-toggle span {
  color: #000;
  font-weight: 450;
  line-height: 1;
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-fields {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 48px;
  padding: 0;
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-fields h3 {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 32px;
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-fields .shipping-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-fields .shipping-grid > .form-row {
  flex: 0 0 100%;
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-fields .shipping-grid #shipping_first_name_field {
  flex: 0 0 calc(50% - 24px / 2);
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-fields .shipping-grid #shipping_last_name_field {
  flex: 0 0 calc(50% - 24px / 2);
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-fields .shipping-grid #shipping_phone_field {
  flex-basis: 100%;
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-fields .shipping-grid #shipping_address_1_field {
  flex-basis: 100%;
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-fields .shipping-grid #shipping_address_2_field {
  flex-basis: 100%;
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-fields .shipping-grid #shipping_country_field {
  flex: 0 0 calc(33.333% - 24px * 2 / 3);
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-fields .shipping-grid #shipping_city_field {
  flex: 0 0 calc(33.333% - 24px * 2 / 3);
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-fields .shipping-grid #shipping_postcode_field {
  flex: 0 0 calc(33.333% - 24px * 2 / 3);
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-fields .shipping-grid #shipping_state_field {
  flex: 0 0 calc(33.333% - 24px * 2 / 3);
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-fields .shipping-grid #order_comments_field {
  flex-basis: 100%;
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-fields .shipping-grid #order_comments_field label.order-comments-label {
  background: transparent;
  color: #000;
  font-size: 16px;
  margin: 0 0 8px;
  padding: 0;
  pointer-events: auto;
  position: static;
  transform: none;
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-fields .shipping-grid #order_comments_field textarea {
  min-height: 120px;
}
.checkout-page .woocommerce-checkout .woocommerce-shipping-fields .shipping-grid.has-state #shipping_postcode_field {
  flex-basis: 100%;
}

.checkout-page .checkout.woocommerce-checkout .woocommerce-checkout-review-order {
  align-self: start;
  border: none;
  border-radius: 0;
  box-shadow: none;
  grid-area: summary;
  padding: 0;
  position: sticky;
  top: 120px;
}
.checkout-page .checkout.woocommerce-checkout .woocommerce-checkout-review-order::before {
  color: #000;
  content: "Order Summary";
  display: block;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 32px;
}
.checkout-page .checkout.woocommerce-checkout .order-summary-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}
.checkout-page .checkout.woocommerce-checkout .order-summary-item {
  align-items: flex-start;
  display: flex;
  gap: 24px;
  justify-content: space-between;
}
.checkout-page .checkout.woocommerce-checkout .order-summary-item .item-left {
  display: flex;
  flex: 1 1 auto;
  gap: 16px;
}
.checkout-page .checkout.woocommerce-checkout .order-summary-item .item-thumb img {
  border-radius: 8px;
  display: block;
  height: 64px;
  object-fit: cover;
  width: 64px;
}
.checkout-page .checkout.woocommerce-checkout .order-summary-item .item-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkout-page .checkout.woocommerce-checkout .order-summary-item .item-title {
  color: #000;
  font-weight: 450;
}
.checkout-page .checkout.woocommerce-checkout .order-summary-item .item-qty {
  color: #666;
  font-size: 14px;
  text-transform: uppercase;
}
.checkout-page .checkout.woocommerce-checkout #coupon_code {
  background-color: transparent;
}
.checkout-page .checkout.woocommerce-checkout .order-summary-item .item-qty {
  align-self: flex-start;
  flex: 0 0 auto;
  min-width: 32px;
  text-align: center;
}
.checkout-page .checkout.woocommerce-checkout .order-summary-item .item-price {
  flex: 0 0 auto;
  font-weight: 500;
  min-width: 90px;
  text-align: right;
  white-space: nowrap;
}
.checkout-page .checkout.woocommerce-checkout .order-summary-totals {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checkout-page .checkout.woocommerce-checkout .order-summary-row {
  align-items: center;
  border-bottom: 1px solid #f8f8f8;
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
}
.checkout-page .checkout.woocommerce-checkout .order-summary-row .label {
  color: #000;
  font-weight: 500;
}
.checkout-page .checkout.woocommerce-checkout .order-summary-row .value {
  font-weight: 500;
  text-align: right;
}
.checkout-page .checkout.woocommerce-checkout .order-summary-row.order-total {
  border-bottom: none;
  border-top: 2px solid #e5e5e5;
}
.checkout-page .checkout.woocommerce-checkout .order-summary-row.order-total .label,
.checkout-page .checkout.woocommerce-checkout .order-summary-row.order-total .value {
  font-size: 18px;
  font-weight: 600;
}

.checkout-page .woocommerce-checkout .woocommerce-checkout-payment {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 0;
  padding: 48px;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-payment .payment_methods {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-payment .place-order {
  margin-top: 32px;
}

.checkout-page .checkout-inline-error-message {
  color: #dc3545;
  display: block;
  font-size: 14px;
  font-weight: 450;
  margin-bottom: 16px;
  margin-top: 8px;
  text-align: left;
  width: 100%;
}
.checkout-page .checkout.woocommerce-checkout {
  align-items: start;
  display: grid;
  gap: 14px;
  grid-template-areas: "details summary" "payment summary";
  grid-template-columns: 1fr 1.1fr;
}
.checkout-page .checkout.woocommerce-checkout .col-1,
.checkout-page .checkout.woocommerce-checkout .col-2,
.checkout-page .checkout.woocommerce-checkout .col-1-set,
.checkout-page .checkout.woocommerce-checkout .col-2-set {
  max-width: none;
  padding: 0;
}
.checkout-page .checkout.woocommerce-checkout .form-row {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.checkout-page .checkout.woocommerce-checkout #customer_details {
  grid-area: details;
  width: 100%;
}
.checkout-page .checkout.woocommerce-checkout #customer_details .woocommerce-billing-fields {
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 15px 0 0;
}
.checkout-page .checkout.woocommerce-checkout #customer_details .woocommerce-billing-fields #billing_postcode_field {
  order: 10;
}
.checkout-page .checkout.woocommerce-checkout #customer_details .woocommerce-billing-fields #billing_email_field {
  order: 20;
}
.checkout-page .checkout.woocommerce-checkout #order_review_heading {
  display: none;
  visibility: hidden;
}
.checkout-page .checkout.woocommerce-checkout #order_review {
  background: #f6f6f6;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: block;
  padding: 48px;
  width: 100%;
}
.checkout-page .checkout.woocommerce-checkout .woocommerce-checkout-review-order {
  align-self: start;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  grid-area: summary;
  padding: 0;
  position: sticky;
  top: 0;
  width: 100%;
}
.checkout-page .checkout.woocommerce-checkout .woocommerce-checkout-review-order::before {
  color: #000;
  content: "Order Summary";
  display: block;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 32px;
}
.checkout-page .checkout.woocommerce-checkout .woocommerce-checkout-review-order .checkout-notices {
  margin: 0 0 24px;
}
.checkout-page .checkout.woocommerce-checkout .woocommerce-checkout-payment {
  grid-area: payment;
}
.checkout-page .checkout-notice {
  background-color: #f8f8f8;
  border-radius: 12px;
  margin: 48px 0;
  padding: 64px 0;
  text-align: center;
}
.checkout-page .checkout-notice p {
  color: #666;
  font-size: 18px;
  margin-bottom: 48px;
}
.checkout-page .woocommerce-checkout .woocommerce-billing-fields,
.checkout-page .woocommerce-checkout .woocommerce-shipping-fields,
.checkout-page .woocommerce-checkout .woocommerce-additional-fields {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 48px;
  padding: 0;
}
.checkout-page .woocommerce-checkout .woocommerce-billing-fields h3,
.checkout-page .woocommerce-checkout .woocommerce-shipping-fields h3,
.checkout-page .woocommerce-checkout .woocommerce-additional-fields h3 {
  border-bottom: 2px solid #e5e5e5;
  color: #000;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 32px;
  padding-bottom: 16px;
}
.checkout-page .woocommerce-checkout .woocommerce-billing-fields #shipping_postcode_field,
.checkout-page .woocommerce-checkout .woocommerce-shipping-fields #shipping_postcode_field,
.checkout-page .woocommerce-checkout .woocommerce-additional-fields #shipping_postcode_field {
  order: 40;
  width: 100%;
}
.checkout-page .woocommerce-checkout .form-row {
  margin-bottom: 24px;
  position: relative;
}
.checkout-page .woocommerce-checkout .form-row input,
.checkout-page .woocommerce-checkout .form-row select,
.checkout-page .woocommerce-checkout .form-row textarea,
.checkout-page .woocommerce-checkout .form-row .select2-container .select2-selection--single {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  font-size: 16px;
  min-height: 56px;
  padding: 24px 16px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.checkout-page .woocommerce-checkout .form-row input::placeholder,
.checkout-page .woocommerce-checkout .form-row textarea::placeholder {
  color: transparent;
}
.checkout-page .woocommerce-checkout .form-row input:focus,
.checkout-page .woocommerce-checkout .form-row select:focus,
.checkout-page .woocommerce-checkout .form-row textarea:focus {
  border-color: #dfbb7b;
  box-shadow: 0 0 0 2px rgba(223, 187, 123, 0.1);
  outline: none;
}
.checkout-page .woocommerce-checkout .form-row label {
  background: #fff;
  color: #666;
  font-weight: 450;
  left: 16px;
  margin: 0;
  padding: 0 8px;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease, top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
  z-index: 2;
}
.checkout-page .woocommerce-checkout .form-row.is-focused label, .checkout-page .woocommerce-checkout .form-row.has-value label {
  color: #000;
  font-size: 14px;
  top: -8px;
  transform: none;
}
.checkout-page .woocommerce-checkout .form-row textarea {
  min-height: 100px;
  resize: vertical;
}
.checkout-page .woocommerce-checkout .form-row .select2-container {
  width: 100% !important;
}
.checkout-page .woocommerce-checkout .form-row .select2-container .select2-selection--single {
  align-items: center;
  display: flex;
  height: 56px;
}
.checkout-page .woocommerce-checkout .form-row .select2-selection__rendered {
  color: #000;
  line-height: 1.4;
  padding-left: 16px;
}
.checkout-page .woocommerce-checkout .form-row:not(.has-value) .select2-selection__rendered {
  color: transparent;
}
.checkout-page .woocommerce-checkout .form-row .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 16px;
}
.checkout-page .woocommerce-checkout .form-row .select2-container--focus .select2-selection--single {
  border-color: #dfbb7b;
  box-shadow: 0 0 0 2px rgba(223, 187, 123, 0.1);
}
.checkout-page .woocommerce-checkout .form-row#billing_state_field.required label, .checkout-page .woocommerce-checkout .form-row#shipping_state_field.required label {
  color: #000;
  font-size: 14px;
  top: -8px;
  transform: none;
}
.checkout-page .woocommerce-checkout .form-row#billing_state_field .select2-selection__rendered, .checkout-page .woocommerce-checkout .form-row#shipping_state_field .select2-selection__rendered {
  color: #666;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-review-order-table {
  border-collapse: collapse;
  margin-bottom: 32px;
  width: 100%;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-review-order-table th,
.checkout-page .woocommerce-checkout .woocommerce-checkout-review-order-table td {
  border-bottom: 1px solid #f8f8f8;
  padding: 16px;
  text-align: left;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-review-order-table thead {
  display: none;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-review-order-table th {
  color: #000;
  font-weight: 500;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-review-order-table td {
  color: #000;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-review-order-table .product-total {
  font-weight: 500;
  text-align: right;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th,
.checkout-page .woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td {
  border-bottom: none;
  border-top: 2px solid #e5e5e5;
  font-size: 18px;
  font-weight: 600;
  text-align: right;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-review-order-table .product-name {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: 64px 1fr auto;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-review-order-table .product-name .checkout-item-thumb img {
  border-radius: 8px;
  display: block;
  height: 64px;
  object-fit: cover;
  width: 64px;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-review-order-table .product-name .checkout-item-title {
  color: #000;
  font-weight: 450;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-review-order-table .product-name .checkout-item-qty {
  color: #666;
  font-size: 14px;
  margin-left: 8px;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-review-order-table .checkout-notices {
  margin-bottom: 24px;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-payment {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-top: 0;
  padding: 48px;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-payment .payment_methods {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-payment .payment_methods li {
  border-bottom: 1px solid #e5e5e5;
  padding: 16px 0;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-payment .payment_methods li:last-child {
  border-bottom: none;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-payment .payment_methods li label {
  color: #000;
  cursor: pointer;
  font-weight: 450;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-payment .payment_methods li .payment_box {
  background-color: #fff;
  border-radius: 8px;
  color: #666;
  font-size: 14px;
  margin-top: 16px;
  padding: 16px;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-payment .place-order {
  margin-top: 32px;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-payment .place-order .button {
  align-items: center;
  background-color: #dfbb7b;
  border: 2px solid #dfbb7b;
  border-radius: 64px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 18px;
  font-weight: 500;
  justify-content: center;
  min-height: 48px;
  padding: 24px 32px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-payment .place-order .button:hover {
  background-color: rgb(213.0487804878, 165.8536585366, 81.9512195122);
  border-color: rgb(213.0487804878, 165.8536585366, 81.9512195122);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.checkout-page .woocommerce-checkout .woocommerce-checkout-payment .place-order .button:focus {
  box-shadow: 0 0 0 3px rgba(223, 187, 123, 0.3);
  outline: none;
}
@media (max-width: 768px) {
  .checkout-page .checkout-header {
    margin-bottom: 32px;
    padding: 32px 0;
  }
  .checkout-page .checkout-header .checkout-title {
    font-size: 40px;
  }
  .checkout-page .checkout-header .checkout-description {
    font-size: 16px;
  }
  .checkout-page .woocommerce-checkout .woocommerce-billing-fields,
  .checkout-page .woocommerce-checkout .woocommerce-shipping-fields,
  .checkout-page .woocommerce-checkout .woocommerce-additional-fields,
  .checkout-page .woocommerce-checkout .woocommerce-checkout-review-order {
    margin-bottom: 24px;
    padding: 24px;
  }
  .checkout-page .woocommerce-checkout .form-row {
    margin-bottom: 16px;
  }
  .checkout-page .woocommerce-checkout .woocommerce-checkout-review-order-table {
    font-size: 14px;
  }
  .checkout-page .woocommerce-checkout .woocommerce-checkout-review-order-table th,
  .checkout-page .woocommerce-checkout .woocommerce-checkout-review-order-table td {
    padding: 8px;
  }
  .checkout-page .woocommerce-checkout .woocommerce-checkout-payment {
    margin-top: 24px;
    padding: 24px;
  }
  .checkout-page .checkout.woocommerce-checkout {
    grid-template-areas: "details" "summary" "payment";
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .checkout-page .checkout-header .container {
    padding: 0 16px;
  }
  .checkout-page .woocommerce-checkout .woocommerce-checkout-review-order-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
@media print {
  .checkout-page .checkout-header {
    display: none;
  }
  .checkout-page .woocommerce-checkout .woocommerce-checkout-payment {
    display: none;
  }
}

.thankyou-page {
  padding: 64px 0;
}
.thankyou-page .thankyou-header {
  margin-bottom: 48px;
  text-align: center;
}
.thankyou-page .thankyou-header .thankyou-title {
  font-size: 40px;
  font-weight: 600;
  margin: 0 0 8px;
}
.thankyou-page .thankyou-header .thankyou-subtitle {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 16px;
}
.thankyou-page .thankyou-header .thankyou-description {
  color: #666;
}
.thankyou-page .thankyou-order-card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  margin: 0 auto 64px;
  max-width: 760px;
  padding: 48px;
}
.thankyou-page .thankyou-order-card .section-title {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 32px;
}
.thankyou-page .thankyou-order-card .order-meta-grid {
  display: grid;
  gap: 16px 48px;
  grid-template-columns: 1fr auto;
  margin-bottom: 32px;
}
.thankyou-page .thankyou-order-card .order-meta-grid .order-meta-label {
  color: #666;
}
.thankyou-page .thankyou-order-card .order-meta-grid .order-meta-value {
  text-align: right;
}
.thankyou-page .thankyou-order-card .order-totals {
  border-top: 1px solid #e5e5e5;
  padding-top: 24px;
}
.thankyou-page .thankyou-order-card .order-totals .row {
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 100%;
  padding: 8px 0;
}
.thankyou-page .thankyou-order-card .order-totals .total {
  font-weight: 600;
}
.thankyou-page .thankyou-customer {
  margin: 0 auto 64px;
  max-width: 760px;
}
.thankyou-page .thankyou-customer .section-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
}
.thankyou-page .thankyou-customer .customer-grid {
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr 1fr;
}
.thankyou-page .thankyou-customer .block-title {
  color: #666;
  margin-bottom: 8px;
}
.thankyou-page .thankyou-items {
  margin: 0 auto 64px;
  max-width: 980px;
}
.thankyou-page .thankyou-items .items-list {
  border-top: 1px solid #e5e5e5;
  margin-inline: auto;
  max-width: 760px;
}
.thankyou-page .thankyou-items .thankyou-item {
  align-items: center;
  border-bottom: 1px solid #e5e5e5;
  display: grid;
  gap: 32px;
  grid-template-columns: 100px 1fr auto;
  padding: 32px 0;
}
.thankyou-page .thankyou-items .thankyou-item .item-thumb img {
  height: auto;
  object-fit: cover;
  width: 100px;
}
.thankyou-page .thankyou-items .thankyou-item .item-title {
  font-weight: 450;
}
.thankyou-page .thankyou-items .thankyou-item .item-qty {
  color: #666;
  margin-top: 8px;
}
.thankyou-page .thankyou-items .thankyou-item .item-price {
  font-weight: 500;
}
.thankyou-page .thankyou-footer-links {
  margin-top: 64px;
}
.thankyou-page .thankyou-footer-links .links-grid {
  display: flex;
  gap: 48px;
  justify-content: center;
}
.thankyou-page .thankyou-footer-links .links-grid a {
  color: #000;
  text-decoration: none;
}
@media (max-width: 768px) {
  .thankyou-page {
    padding: 48px 0;
  }
  .thankyou-page .thankyou-order-card {
    padding: 32px;
  }
  .thankyou-page .thankyou-customer .customer-grid {
    gap: 32px;
    grid-template-columns: 1fr;
  }
  .thankyou-page .thankyou-items .thankyou-item {
    gap: 24px;
    grid-template-columns: 72px 1fr auto;
  }
}

.shop-page {
  padding: 64px 0;
}
.shop-page .shop-header {
  margin-bottom: 48px;
}
.shop-page .shop-header .shop-title {
  color: #000;
  font-family: "Montserrat", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 40px;
  font-weight: 500;
  margin: 0 0 16px;
  text-align: left;
}
.shop-page .shop-header .term-description,
.shop-page .shop-header .woocommerce-products-header__description {
  color: #666;
  max-width: 720px;
}
.shop-page .shop-toolbar {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}
.shop-page .shop-toolbar .woocommerce-result-count {
  color: #666;
}
.shop-page .shop-toolbar .woocommerce-ordering select {
  appearance: none;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 24px;
  padding: 10px 14px;
}
.shop-page .shop-grid ul.products {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .shop-page .shop-grid ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 576px) {
  .shop-page .shop-grid ul.products {
    grid-template-columns: 1fr;
  }
}
.shop-page .shop-grid ul.products::before,
.shop-page .shop-grid ul.products::after {
  content: none;
  display: none;
}
.shop-page .shop-grid ul.products li.product {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  float: none;
  margin: 0;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  width: auto;
}
.shop-page .shop-grid ul.products li.product:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.shop-page .shop-grid ul.products li.product a.woocommerce-LoopProduct-link {
  display: block;
  padding: 24px 24px 0;
}
.shop-page .shop-grid ul.products li.product .woocommerce-loop-product__title {
  color: #000;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0;
  padding: 0;
}
.shop-page .shop-grid ul.products li.product .price {
  color: #000;
  font-weight: 500;
  padding: 0 24px 24px;
}
.shop-page .shop-grid ul.products li.product .button {
  background: #dfbb7b;
  border-radius: 32px;
  color: #fff;
  margin: auto 24px 24px;
  padding: 10px 16px;
  text-align: center;
  transition: background 0.2s ease;
}
.shop-page .shop-grid ul.products li.product .button:hover {
  background: rgb(217.0292682927, 174.312195122, 98.3707317073);
}
.shop-page .shop-grid ul.products li.product a img {
  border-bottom: 1px solid #e5e5e5;
  display: block;
  height: auto;
  margin: 0 0 24px;
  width: 100%;
}
.shop-page .shop-pagination {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.shop-page .shop-pagination .woocommerce-pagination ul.page-numbers {
  border: 0;
  display: inline-flex;
  gap: 6px;
  padding: 0;
}
.shop-page .shop-pagination .woocommerce-pagination ul.page-numbers li {
  border: 0;
}
.shop-page .shop-pagination .woocommerce-pagination ul.page-numbers a,
.shop-page .shop-pagination .woocommerce-pagination ul.page-numbers span {
  align-items: center;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  color: #000;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  width: 40px;
}
.shop-page .shop-pagination .woocommerce-pagination ul.page-numbers .current {
  background: #dfbb7b;
  border-color: #dfbb7b;
  color: #fff;
}

.blog-hero {
  align-items: flex-end;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(60, 60, 60, 0.9) 100%);
  color: var(--white-color);
  display: flex;
  justify-content: flex-start;
  margin-top: -10rem;
  min-height: 66.4rem;
  overflow: hidden;
  padding: 0 7.4rem 8rem;
  position: relative;
}
@media (max-width: 992px) {
  .blog-hero {
    margin-top: -8rem;
    min-height: 80vh;
    padding: 0 2rem 6rem;
  }
}
@media (max-width: 768px) {
  .blog-hero {
    min-height: 70vh;
    padding: 0 1.5rem 4rem;
  }
}
.blog-hero__background {
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
.blog-hero__background img,
.blog-hero__background video {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.blog-hero::before {
  background-image: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%), linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.blog-hero__overlay {
  background-color: rgba(0, 0, 0, 0.3);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
}
.blog-hero__content {
  margin: 0 auto;
  max-width: 144rem;
  position: relative;
  width: 100%;
  z-index: 4;
}
.blog-hero__content .container {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  max-width: 144rem;
  text-align: left;
}
.blog-hero__text {
  margin-bottom: 4rem;
  /* Design spec: max content width 664px */
  max-width: 66.4rem;
}
@media (max-width: 992px) {
  .blog-hero__text {
    margin-bottom: 3rem;
    max-width: 50rem;
  }
}
@media (max-width: 768px) {
  .blog-hero__text {
    max-width: 100%;
  }
}
.blog-hero__title {
  color: var(--white-color);
  font-family: "Montserrat", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 5.6rem;
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.056rem;
  line-height: 6.4rem;
  margin: 0 0 2.4rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 992px) {
  .blog-hero__title {
    font-size: 4rem;
    letter-spacing: -0.04rem;
    line-height: 4.8rem;
    margin-bottom: 1.6rem;
  }
}
@media (max-width: 768px) {
  .blog-hero__title {
    font-size: 3.2rem;
    line-height: 4rem;
    margin-bottom: 1.2rem;
  }
}
.blog-hero__description {
  color: rgba(255, 255, 255, 0.9);
  font-family: "Montserrat", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 300;
  line-height: 2.8rem;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
@media (max-width: 992px) {
  .blog-hero__description {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}
@media (max-width: 768px) {
  .blog-hero__description {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
.blog-hero__search {
  max-width: 54rem;
  width: 100%;
}

.blog-search-form {
  width: 100%;
}
.blog-search-form__wrapper {
  align-items: center;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  display: flex;
  padding: 0 2.4rem;
  position: relative;
  transition: all 0.3s ease;
}
.blog-search-form__wrapper:focus-within {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .blog-search-form__wrapper {
    padding: 0 1.6rem;
  }
}
.blog-search-form__icon {
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
  margin-right: 1.2rem;
}
@media (max-width: 768px) {
  .blog-search-form__icon {
    height: 18px;
    margin-right: 1rem;
    width: 18px;
  }
}
.blog-search-form__input {
  background: transparent;
  border: none;
  color: var(--white-color);
  flex: 1;
  font-family: "Montserrat", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  outline: none;
  padding: 1.8rem 0;
}
.blog-search-form__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.blog-search-form__input::-webkit-search-cancel-button {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgb(255%20255%20255%20/%2060%)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
  background-size: contain;
  cursor: pointer;
  height: 20px;
  width: 20px;
}
@media (max-width: 768px) {
  .blog-search-form__input {
    font-size: 1.4rem;
    padding: 1.4rem 0;
  }
}

.blog-search-form--light .blog-search-form__wrapper {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.blog-search-form--light .blog-search-form__icon {
  color: rgba(0, 0, 0, 0.55);
}
.blog-search-form--light .blog-search-form__input {
  color: #1a1a1a;
}
.blog-search-form--light .blog-search-form__input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.blog-archive-main {
  background-color: var(--light-bg-color);
  padding: 8rem 0;
}
@media (max-width: 992px) {
  .blog-archive-main {
    padding: 6rem 0;
  }
}
@media (max-width: 768px) {
  .blog-archive-main {
    padding: 4rem 0;
  }
}

.blog-posts-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  margin-bottom: 6rem;
}
@media (max-width: 992px) {
  .blog-posts-grid {
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    margin-bottom: 5rem;
  }
}
@media (max-width: 768px) {
  .blog-posts-grid {
    gap: 2rem;
    grid-template-columns: 1fr;
    margin-bottom: 4rem;
  }
}

.blog-card {
  background: var(--white-color);
  border-radius: 1.2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: all 0.3s ease;
}
.blog-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}
.blog-card__image {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
}
.blog-card__image-link {
  display: block;
  height: 100%;
  position: relative;
  text-decoration: none;
  width: 100%;
}
.blog-card__thumbnail {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}
.blog-card__overlay {
  align-items: center;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
  display: flex;
  height: 100%;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
}
.blog-card__read-more {
  border: 2px solid var(--white-color);
  border-radius: 50px;
  color: var(--white-color);
  font-family: "Montserrat", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 1rem 2rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.blog-card__image-link:hover .blog-card__thumbnail {
  transform: scale(1.05);
}
.blog-card__image-link:hover .blog-card__overlay {
  opacity: 1;
}
.blog-card__image-link:hover .blog-card__read-more {
  background-color: var(--white-color);
  color: var(--dark-color);
}
.blog-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 2.4rem;
}
@media (max-width: 768px) {
  .blog-card__content {
    padding: 2rem;
  }
}
.blog-card__meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}
@media (max-width: 576px) {
  .blog-card__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }
}
.blog-card__date {
  color: var(--text-muted);
  font-family: "Montserrat", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.blog-card__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.blog-card__category {
  background-color: rgba(var(--primary-color-rgb), 0.1);
  border-radius: 50px;
  color: var(--primary-color);
  font-family: "Montserrat", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  text-transform: uppercase;
}
.blog-card__title {
  color: var(--dark-color);
  font-family: "Montserrat", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 1.6rem;
}
@media (max-width: 768px) {
  .blog-card__title {
    font-size: 2rem;
    margin-bottom: 1.4rem;
  }
}
.blog-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-card__title a:hover {
  color: var(--primary-color);
}
.blog-card__excerpt {
  color: var(--text-color);
  flex: 1;
  font-family: "Montserrat", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .blog-card__excerpt {
    font-size: 1.4rem;
    margin-bottom: 1.8rem;
  }
}
.blog-card__footer {
  margin-top: auto;
}
.blog-card__link {
  align-items: center;
  color: var(--primary-color);
  display: inline-flex;
  font-family: "Montserrat", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  gap: 0.8rem;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.blog-card__link svg {
  transition: transform 0.3s ease;
}
.blog-card__link:hover {
  color: var(--dark-color);
  gap: 1.2rem;
}
.blog-card__link:hover svg {
  transform: translateX(4px);
}

.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}
.blog-pagination .page-numbers {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-pagination .page-numbers li {
  margin: 0;
}
.blog-pagination .page-numbers a,
.blog-pagination .page-numbers span {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 50px;
  display: flex;
  font-family: "Montserrat", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  height: 4.4rem;
  justify-content: center;
  min-width: 4.4rem;
  padding: 0 1.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-pagination .page-numbers a.page-numbers,
.blog-pagination .page-numbers span.page-numbers {
  background-color: transparent;
  color: var(--text-muted);
}
.blog-pagination .page-numbers a.page-numbers:hover,
.blog-pagination .page-numbers span.page-numbers:hover {
  background-color: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
}
.blog-pagination .page-numbers a.current,
.blog-pagination .page-numbers span.current {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}
.blog-pagination .page-numbers a.prev, .blog-pagination .page-numbers a.next,
.blog-pagination .page-numbers span.prev,
.blog-pagination .page-numbers span.next {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}
.blog-pagination .page-numbers a.prev:hover, .blog-pagination .page-numbers a.next:hover,
.blog-pagination .page-numbers span.prev:hover,
.blog-pagination .page-numbers span.next:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
}
.blog-pagination .page-numbers a.prev svg, .blog-pagination .page-numbers a.next svg,
.blog-pagination .page-numbers span.prev svg,
.blog-pagination .page-numbers span.next svg {
  height: 16px;
  width: 16px;
}

.no-posts-found {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 40rem;
  text-align: center;
}
.no-posts-found__content {
  max-width: 50rem;
}
.no-posts-found__content h2 {
  color: var(--dark-color);
  font-family: "Montserrat", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 3.2rem;
  font-weight: 300;
  margin: 0 0 1.6rem;
}
@media (max-width: 768px) {
  .no-posts-found__content h2 {
    font-size: 2.8rem;
  }
}
.no-posts-found__content p {
  color: var(--text-color);
  font-family: "Montserrat", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 3rem;
}
@media (max-width: 768px) {
  .no-posts-found__content p {
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
  }
}
.no-posts-found__content .btn {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 50px;
  display: inline-flex;
  font-family: "Montserrat", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  justify-content: center;
  letter-spacing: 0.05em;
  padding: 1.2rem 2.4rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.no-posts-found__content .btn.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}
.no-posts-found__content .btn.btn-primary:hover {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.blog-posts-section {
  background-color: #fff;
  overflow-x: hidden;
  padding: 13rem 0 7rem;
}
@media (max-width: 768px) {
  .blog-posts-section {
    padding: 53px 0 7rem;
  }
}
.blog-posts-section .container {
  max-width: 144rem;
  padding: 0;
}
.blog-posts-section .container .blog-posts-button a {
  background-color: white;
  border: 1px solid black;
  color: black;
  display: flex;
  line-height: 1;
  margin-inline: auto;
  padding: 1rem 5.6rem;
  text-align: center;
  transition: all 0.3s ease;
  width: fit-content;
}
.blog-posts-section .container .blog-posts-button a::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.blog-posts-section .container .blog-posts-button a:hover {
  transform: unset;
  background-color: black;
  color: white;
  font-weight: 700;
  box-shadow: none;
}

.blog-posts-header {
  margin-bottom: 3rem;
  text-align: center;
}
@media (width <= 992px) {
  .blog-posts-header {
    margin-bottom: 40px;
  }
}

.blog-posts-title {
  color: #000;
  font-family: Montserrat;
  font-size: 4rem;
  font-style: normal;
  font-weight: 300;
  margin-bottom: 2rem;
  /* 117.5% */
  letter-spacing: -0.04rem;
  line-height: 4.7rem;
  text-align: center;
}
@media (max-width: 576px) {
  .blog-posts-title {
    font-size: 2.8rem;
    letter-spacing: -0.28px;
    line-height: 3.6rem;
    margin-bottom: 2rem;
  }
}

.blog-posts-subtitle {
  color: #000;
  font-size: 2rem;
  font-style: normal;
  font-weight: 300;
  leading-trim: both;
  line-height: 1;
  margin-bottom: 0;
  text-align: center;
  text-edge: cap;
  /* 235% */
}
@media (max-width: 576px) {
  .blog-posts-subtitle {
    font-size: 1.8rem;
    line-height: 2.4rem;
    margin-bottom: 3.5rem;
  }
}

.blog-posts-container {
  max-width: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.blog-posts-grid {
  display: grid;
  gap: 5rem;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 0;
  transition: gap 200ms ease;
}
@media (width <= 1024px) {
  .blog-posts-grid {
    gap: 30px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 992px) {
  .blog-posts-grid {
    display: none;
  }
}
.blog-posts-section--carousel .blog-posts-grid {
  display: none;
}

.blog-posts-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (width <= 992px) {
  .blog-posts-list {
    display: none;
  }
}
.blog-posts-section--carousel .blog-posts-list {
  display: none;
}
.blog-posts-list .blog-card {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 30px;
}
@media (max-width: 576px) {
  .blog-posts-list .blog-card {
    flex-direction: column;
    gap: 20px;
  }
}
.blog-posts-list .blog-card .blog-card-image-container {
  flex: 0 0 300px;
}
@media (max-width: 576px) {
  .blog-posts-list .blog-card .blog-card-image-container {
    flex: none;
    width: 100%;
  }
}
.blog-posts-list .blog-card .blog-card-content {
  flex: 1;
}

.blog-card {
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 220ms ease, transform 220ms ease;
}
.blog-card.is-filter-hiding {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}
.blog-card.is-filter-removed {
  display: none !important;
}
.blog-card:hover {
  box-shadow: unset;
  transform: unset;
}

.blog-card-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card-image-container {
  max-width: 44.5rem;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media (max-width: 576px) {
  .blog-card-image-container {
    aspect-ratio: 1/1;
    margin-bottom: 2.5rem;
  }
}

.blog-card-image-link {
  display: block;
  height: 100%;
  text-decoration: none;
  width: 100%;
}

.blog-card-image {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}
.blog-card:hover .blog-card-image {
  transform: scale(1.05);
}

.blog-card-image--placeholder {
  align-items: center;
  background: #f5f5f5;
  color: #999;
  display: flex;
  justify-content: center;
}

.blog-card-content {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 4.4rem 3.5rem 0;
}
@media (max-width: 576px) {
  .blog-card-content {
    margin-bottom: 3.5rem;
    padding: 0;
  }
}

.blog-card-title {
  color: #000;
  font-family: Montserrat;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 400;
  leading-trim: both;
  line-height: 1;
  /* 213.636% */
  margin-bottom: 1.4rem;
  text-align: center;
  text-edge: cap;
}
@media (max-width: 576px) {
  .blog-card-title {
    font-size: 1.8rem;
    line-height: 2.4rem;
    margin-bottom: 2.5rem;
    text-align: left;
  }
}

.blog-card-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-card-title-link:hover {
  color: #667eea;
}

.blog-card-excerpt {
  flex: 1;
  margin-bottom: 0;
}
.blog-card-excerpt p {
  color: #000;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  leading-trim: both;
  line-height: 2.6rem;
  /* 162.5% */
  margin-bottom: 0;
  text-align: center;
  text-edge: cap;
}
@media (max-width: 576px) {
  .blog-card-excerpt p {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}

.blog-card-actions {
  margin-top: 2rem;
}

.blog-card-read-more {
  color: #000;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  gap: 0;
  leading-trim: both;
  /* 218.75% */
  letter-spacing: 0.032rem;
  line-height: 3.5rem;
  text-align: center;
  text-decoration: underline;
  text-decoration-line: underline;
  text-decoration-skip-ink: auto;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  text-edge: cap;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.blog-card-read-more:hover {
  font-weight: 500;
}
.blog-card-read-more::after {
  content: "→";
  transition: transform 0.3s ease;
}
.blog-card-read-more:hover::after {
  transform: translateX(4px);
}
@media (width <= 992px) {
  .blog-card-read-more {
    font-size: 1.4rem;
    line-height: 2rem;
    text-align: left;
  }
}

.blog-posts-section .blog-posts-swiper {
  display: none;
  max-width: 100%;
  overflow: hidden;
  padding: 20px 0 60px;
  width: 100%;
}
@media (width <= 992px) {
  .blog-posts-section .blog-posts-swiper {
    display: block !important;
    margin: 0;
    padding: 0;
    width: 100%;
  }
}
.blog-posts-section .blog-posts-swiper .swiper-slide {
  height: auto;
  width: 100%;
}
@media (width <= 992px) {
  .blog-posts-section .blog-posts-swiper .swiper-slide {
    padding: 0;
  }
}
.blog-posts-section.blog-posts-section--carousel .blog-posts-container {
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
}
.blog-posts-section.blog-posts-section--carousel .blog-posts-swiper {
  display: block;
  max-width: 100%;
  overflow: hidden;
  padding: 20px 0 60px;
  width: 100%;
}
@media (width <= 992px) {
  .blog-posts-section.blog-posts-section--carousel .blog-posts-swiper {
    margin: 0;
    padding: 0;
  }
}
.blog-posts-section.blog-posts-section--carousel .blog-posts-grid,
.blog-posts-section.blog-posts-section--carousel .blog-posts-list {
  display: none;
}
.blog-posts-section .blog-posts-nav {
  align-items: center;
  background: rgba(58, 60, 55, 0.35);
  border: none;
  border-radius: 50%;
  box-shadow: none;
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  position: absolute;
  top: 74%;
  transition: all 0.3s ease;
  width: 40px;
  z-index: 10;
}
@media (width <= 768px) {
  .blog-posts-section .blog-posts-nav {
    top: 60%;
  }
}
.blog-posts-section .blog-posts-nav::before {
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  content: "";
  display: block;
  height: 12px;
  transition: all 0.3s ease;
  width: 12px;
}
.blog-posts-section .blog-posts-nav::after {
  content: none !important;
  display: none !important;
}
.blog-posts-section .blog-posts-nav:hover {
  background: rgba(58, 60, 55, 0.5);
}
.blog-posts-section .blog-posts-nav img {
  display: none;
}
.blog-posts-section .blog-posts-nav.swiper-button-disabled {
  cursor: not-allowed;
  opacity: 0.3;
}
.blog-posts-section .blog-posts-nav.swiper-button-disabled:hover {
  background: rgba(58, 60, 55, 0.35);
}
.blog-posts-section .blog-posts-nav--prev {
  left: 10px;
  transform: translateY(-50%);
}
.blog-posts-section .blog-posts-nav--prev::before {
  transform: rotate(-135deg);
}
@media (width <= 992px) {
  .blog-posts-section .blog-posts-nav--prev {
    left: 5px;
    transform: translateY(-50%);
  }
}
.blog-posts-section .blog-posts-nav--next {
  right: 10px;
  transform: translateY(-50%);
}
.blog-posts-section .blog-posts-nav--next::before {
  transform: rotate(45deg);
}
@media (width <= 992px) {
  .blog-posts-section .blog-posts-nav--next {
    right: 5px;
    transform: translateY(-50%);
  }
}
.blog-posts-section .blog-posts-pagination {
  display: none !important;
}

.blog-posts-empty {
  padding: 60px 20px;
  text-align: center;
}
.blog-posts-empty p {
  color: #666;
  font-family: "Neue Haas Grotesk Display Pro", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.125rem;
  margin: 0;
}

@media (prefers-color-scheme: dark) {
  .blog-posts-section {
    background-color: #1a1a1a;
    color: #fff;
  }
  .blog-posts-title {
    color: #fff;
  }
  .blog-posts-subtitle {
    color: #ccc;
  }
  .blog-card {
    background: #2a2a2a;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
  }
  .blog-card:hover {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  }
  .blog-card-title {
    color: #fff;
  }
  .blog-card-excerpt p {
    color: #ccc;
  }
  .blog-posts-empty p {
    color: #ccc;
  }
}
.posts-section {
  background-color: #fff;
  overflow-x: hidden;
  padding: 7rem 0 14rem;
}
@media (max-width: 768px) {
  .posts-section {
    padding: 0 0 14rem;
  }
}
@media (max-width: 576px) {
  .posts-section {
    padding: 0 0 14rem;
  }
}
.posts-section .container {
  max-width: 1440px;
  overflow-x: hidden;
  padding: 0;
}

.posts-section-header {
  margin-bottom: 5rem;
  text-align: center;
}
@media (max-width: 768px) {
  .posts-section-header {
    margin-bottom: 40px;
  }
}

.posts-section-title {
  font-family: Montserrat;
  font-size: 40px;
  font-style: light;
  font-weight: 300;
  leading-trim: cap_height;
  letter-spacing: 1;
  line-height: 47px;
  margin-bottom: 2rem;
}

.posts-section-subtitle {
  font-family: Montserrat;
  font-size: 20px;
  font-style: light;
  font-weight: 300;
  leading-trim: cap_height;
  letter-spacing: 0%;
  line-height: 1.25;
  text-align: center;
}
@media (max-width: 768px) {
  .posts-section-subtitle {
    margin-bottom: 0;
  }
}

.posts-container {
  margin-bottom: 40px;
}

.posts-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 144rem;
}
@media (max-width: 768px) {
  .posts-grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }
}

.posts-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.posts-item--list {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  display: flex;
  gap: 20px;
  padding: 20px;
  transition: all 0.3s ease;
}
.posts-item--list:hover {
  border-color: #d0d0d0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .posts-item--list {
    flex-direction: column;
    gap: 15px;
  }
}

.posts-item-image {
  flex-shrink: 0;
  width: 150px;
}
@media (max-width: 768px) {
  .posts-item-image {
    width: 100%;
  }
}
.posts-item-image img {
  border-radius: 4px;
  height: 100px;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 768px) {
  .posts-item-image img {
    height: 200px;
  }
}

.posts-item-content {
  flex: 1;
}

.posts-item-date {
  color: #888;
  font-family: "Neue Haas Grotesk Display Pro", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.posts-item-title {
  font-family: "Neue Haas Grotesk Display Pro", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 12px;
}
.posts-item-title a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
}
.posts-item-title a:hover {
  color: #007cba;
}

.posts-item-excerpt {
  color: #555;
  font-family: "Neue Haas Grotesk Display Pro", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
}

.posts-item-link {
  color: #007cba;
  font-family: "Neue Haas Grotesk Display Pro", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}
.posts-item-link:hover {
  color: #005a87;
  text-decoration: underline;
}

.posts-item-link-inline {
  color: #dfbb7b;
  font-family: "Neue Haas Grotesk Display Pro", "Helvetica Neue", Arial, sans-serif;
  font-size: inherit;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.posts-item-link-inline:hover {
  color: #b8955a;
}

.posts-masonry {
  column-count: 3;
  column-gap: 30px;
}
@media (max-width: 768px) {
  .posts-masonry {
    column-count: 1;
  }
}

.posts-masonry-item {
  break-inside: avoid;
  margin-bottom: 30px;
}

.posts-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  height: auto;
  overflow: hidden;
  transition: all 0.3s ease;
}
.posts-card:hover {
  border-color: #d0d0d0;
  transform: translateY(-2px);
}

.posts-card--carousel {
  margin: 0 15px;
}

.posts-card-image {
  overflow: hidden;
  position: relative;
}
.posts-card-image img {
  height: 220px;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}
.posts-card-image:hover img {
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .posts-card-image {
    aspect-ratio: 1/1;
  }
  .posts-card-image img {
    height: 100%;
  }
}

.posts-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.posts-card-date {
  color: #888;
  font-family: "Neue Haas Grotesk Display Pro", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.posts-card-title {
  margin: 0 0 16px;
}
.posts-card-title a {
  color: #000;
  font-family: Montserrat;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 400;
  leading-trim: both;
  line-height: 3rem;
  text-edge: cap;
  /* 136.364% */
}

.posts-card-excerpt {
  color: #666;
  flex: 1;
  font-family: "Neue Haas Grotesk Display Pro", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.posts-card-link {
  color: #007cba;
  font-family: "Neue Haas Grotesk Display Pro", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: auto;
  text-decoration: none;
  transition: color 0.3s ease;
}
.posts-card-link:hover {
  color: #005a87;
  text-decoration: underline;
}

.posts-card-link-inline {
  color: #dfbb7b;
  font-family: Figtree;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  leading-trim: both;
  line-height: 2.4rem;
  text-decoration-line: underline;
  text-decoration-skip-ink: auto;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  text-edge: cap;
  text-underline-offset: auto;
  text-underline-position: from-font;
}
.posts-card-link-inline:hover {
  text-decoration: underline;
}

.posts-swiper {
  padding: 0 60px;
  position: relative;
}
@media (max-width: 768px) {
  .posts-swiper {
    padding: 0 40px;
  }
}

.posts-nav {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  display: flex;
  height: 40px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  width: 40px;
  z-index: 10;
}
.posts-nav:hover {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.posts-nav img {
  height: 20px;
  width: 20px;
}

.posts-nav--prev {
  left: 10px;
}

.posts-nav--next {
  right: 10px;
}

.posts-pagination {
  margin-top: 30px;
  text-align: center;
}
.posts-pagination .swiper-pagination-bullet {
  background: #ccc;
  height: 8px;
  margin: 0 4px;
  opacity: 1;
  transition: all 0.3s ease;
  width: 8px;
}
.posts-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #007cba;
  transform: scale(1.2);
}

.posts-cta {
  margin-top: 40px;
  text-align: center;
}

.posts-cta-button {
  background: transparent;
  border: 2px solid #1a1a1a;
  border-radius: 4px;
  color: #1a1a1a;
  display: inline-block;
  font-family: "Neue Haas Grotesk Display Pro", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.posts-cta-button:hover {
  background: #1a1a1a;
  color: #fff;
}

.posts-empty {
  padding: 60px 20px;
  text-align: center;
}
.posts-empty p {
  color: #888;
  font-family: "Neue Haas Grotesk Display Pro", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  margin: 0;
}

@media (max-width: 768px) {
  .posts-card-content {
    padding: 15px;
  }
  .posts-card-title {
    font-size: 1rem;
  }
  .posts-card-excerpt {
    font-size: 0.85rem;
  }
  .posts-nav {
    height: 35px;
    width: 35px;
  }
  .posts-nav img {
    height: 16px;
    width: 16px;
  }
  .posts-nav--prev {
    left: 5px;
  }
  .posts-nav--next {
    right: 5px;
  }
}
.posts-recipe-grid {
  align-items: start;
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 1440px;
}
@media (max-width: 768px) {
  .posts-recipe-grid {
    display: none;
  }
}

.posts-recipe-featured {
  display: flex;
  flex-direction: column;
  height: 800px;
}
.posts-recipe-featured .posts-card-image {
  height: 800px;
}

.posts-recipe-regular {
  display: grid;
  gap: 3rem;
  grid-template-rows: calc(50% - 1rem) calc(50% - 1rem);
  height: 78.9rem;
}

.posts-cta-recipe {
  grid-column: 1/-1;
  margin-top: 3rem;
  text-align: center;
}
@media (max-width: 768px) {
  .posts-cta-recipe {
    display: none;
  }
}

.posts-cta-button-recipe {
  background: transparent;
  border: 1px solid #000;
  border-radius: 10rem;
  color: #000;
  display: inline-block;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  leading-trim: both;
  letter-spacing: 0.032rem;
  line-height: 1.5rem;
  padding: 1rem 5.6rem;
  text-decoration: none;
  text-edge: cap;
  transition: all 0.3s ease;
}
.posts-cta-button-recipe:hover {
  background: #1a1a1a;
  color: #fff;
}

.posts-card--recipe-featured {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.posts-card--recipe-featured .posts-card-image {
  height: 100%;
  position: relative;
}
.posts-card--recipe-featured .posts-card-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.posts-card--recipe-featured .posts-card-content {
  padding: 2.5rem 0 0;
}

.posts-card-title-overlay {
  bottom: 20px;
  left: 20px;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 2;
}
@media (max-width: 768px) {
  .posts-card-title-overlay {
    bottom: 15px;
    left: 15px;
  }
}

.posts-card--recipe-featured .posts-card-image,
.posts-card--recipe-regular .posts-card-image {
  overflow: hidden;
  position: relative;
}
.posts-card--recipe-featured .posts-card-title-overlay,
.posts-card--recipe-regular .posts-card-title-overlay {
  bottom: 2rem;
  left: 2rem;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 2;
}
@media (max-width: 768px) {
  .posts-card--recipe-featured .posts-card-title-overlay,
  .posts-card--recipe-regular .posts-card-title-overlay {
    bottom: 1.5rem;
    left: 1.5rem;
  }
}
.posts-card--recipe-featured .posts-card-title-overlay .posts-card-title,
.posts-card--recipe-regular .posts-card-title-overlay .posts-card-title {
  margin: 0;
}
.posts-card--recipe-featured .posts-card-title-overlay .posts-card-title a,
.posts-card--recipe-regular .posts-card-title-overlay .posts-card-title a {
  color: #fff;
  font-family: Montserrat;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  .posts-card--recipe-featured .posts-card-title-overlay .posts-card-title a,
  .posts-card--recipe-regular .posts-card-title-overlay .posts-card-title a {
    font-size: 1.8rem;
  }
}
.posts-card--recipe-featured .posts-card-title-overlay .posts-card-title a:hover,
.posts-card--recipe-regular .posts-card-title-overlay .posts-card-title a:hover {
  opacity: 0.9;
}

.posts-card--recipe-regular {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.posts-card--recipe-regular .posts-card-image {
  height: 100%;
  position: relative;
}
.posts-card--recipe-regular .posts-card-image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.posts-card--recipe-regular .posts-card-title-overlay .posts-card-title a {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .posts-card--recipe-regular .posts-card-title-overlay .posts-card-title a {
    font-size: 1.6rem;
  }
}

.posts-regular-post {
  display: flex;
  height: 100%;
}

@media (max-width: 768px) {
  .posts-section--recipe-style .posts-section-header {
    margin-bottom: 40px;
    text-align: center;
  }
  .posts-section--recipe-style .posts-section-title {
    text-align: center;
  }
  .posts-section--recipe-style .posts-section-subtitle {
    text-align: center;
  }
  .posts-section--recipe-style .posts-card {
    margin: 0 auto;
    overflow: visible;
    padding: 0;
    width: 100%;
  }
  .posts-section--recipe-style .posts-card-image {
    height: 100%;
    margin-bottom: 0;
    overflow: visible;
    position: relative;
    width: 100%;
  }
  .posts-section--recipe-style .posts-card-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  .posts-section--recipe-style .posts-card-content {
    bottom: 0;
    display: flex;
    height: fit-content;
    position: absolute;
  }
  .posts-section--recipe-style .posts-card-title-overlay {
    bottom: 20px;
    display: block;
    left: 20px;
    position: absolute;
    z-index: 2;
  }
  .posts-section--recipe-style .posts-card-title-overlay .posts-card-title {
    margin: 0;
    text-align: left;
  }
  .posts-section--recipe-style .posts-card-title-overlay .posts-card-title a {
    color: #fff;
    font-family: Montserrat;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  }
}
.posts-section--recipe-style .posts-swiper {
  display: none;
  overflow: visible;
  padding: 20px 0 60px;
  position: relative;
}
@media (max-width: 768px) {
  .posts-section--recipe-style .posts-swiper {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    padding: 0;
    width: 100%;
  }
}
.posts-section--recipe-style .posts-swiper .swiper-slide {
  height: auto;
}
@media (max-width: 768px) {
  .posts-section--recipe-style .posts-swiper .swiper-slide {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .posts-section--recipe-style .posts-cta {
    display: block;
    margin-top: 40px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .posts-section--recipe-style .posts-cta-button {
    background: transparent;
    border: 1px solid #000;
    border-radius: 10rem;
    padding: 1rem 3rem;
  }
}
@media (min-width: 769px) {
  .posts-section--recipe-style .posts-nav {
    display: none;
  }
}
@media (max-width: 768px) {
  .posts-section--recipe-style .posts-nav {
    align-items: center;
    background: rgba(58, 60, 55, 0.35);
    border: none;
    border-radius: 50%;
    box-shadow: none;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    width: 40px;
    z-index: 10;
  }
  .posts-section--recipe-style .posts-nav::before {
    border-right: 3px solid #fff;
    border-top: 3px solid #fff;
    content: "";
    display: block;
    height: 12px;
    transition: all 0.3s ease;
    width: 12px;
  }
  .posts-section--recipe-style .posts-nav::after {
    content: none !important;
    display: none !important;
  }
  .posts-section--recipe-style .posts-nav:hover {
    background: rgba(58, 60, 55, 0.5);
  }
  .posts-section--recipe-style .posts-nav img {
    display: none;
  }
  .posts-section--recipe-style .posts-nav.swiper-button-disabled {
    cursor: not-allowed;
    opacity: 0.3;
  }
  .posts-section--recipe-style .posts-nav.swiper-button-disabled:hover {
    background: rgba(58, 60, 55, 0.35);
  }
}
@media (max-width: 768px) {
  .posts-section--recipe-style .posts-nav--prev {
    left: 5px;
    transform: translateY(-50%);
  }
  .posts-section--recipe-style .posts-nav--prev::before {
    transform: rotate(-135deg);
  }
}
@media (max-width: 768px) {
  .posts-section--recipe-style .posts-nav--next {
    right: 5px;
    transform: translateY(-50%);
  }
  .posts-section--recipe-style .posts-nav--next::before {
    transform: rotate(45deg);
  }
}
.posts-section--recipe-style .posts-pagination {
  display: none !important;
}

.posts-featured-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  max-width: 1200px;
}
@media (max-width: 768px) {
  .posts-featured-grid {
    display: none;
  }
}

.posts-regular-container {
  display: flex;
  flex-direction: column;
  gap: 4.3rem;
}

.posts-cta-inline {
  margin-top: 10px;
}

.posts-cta-button-inline {
  border: 1px solid #000;
  border-radius: 10rem;
  color: #000;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  leading-trim: both;
  /* 218.75% */
  letter-spacing: 0.032rem;
  line-height: 3.5rem;
  padding: 1rem 5.5rem;
  text-edge: cap;
  transition: all 0.6s ease;
}
.posts-cta-button-inline:hover {
  background: #1a1a1a;
  color: #fff;
}

.posts-regular-post {
  margin-bottom: 0;
}
.posts-regular-post:last-child {
  margin-bottom: 0;
}

.posts-card--featured {
  height: 100%;
}
.posts-card--featured .posts-card-image {
  height: 100%;
}
.posts-card--featured .posts-card-image img {
  height: 100%;
  object-fit: cover;
}
@media (width <= 1024px) {
  .posts-card--featured .posts-card-image img {
    height: 300px;
  }
}
.posts-card--featured .posts-card-content {
  padding: 2rem 0 0;
}
@media (max-width: 768px) {
  .posts-card--featured .posts-card-content {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .posts-section--featured-grid .posts-card {
    padding: 0 1rem;
  }
  .posts-section--featured-grid .posts-card-image {
    aspect-ratio: 1/1;
    margin-bottom: 1rem;
  }
  .posts-section--featured-grid .posts-card-image img {
    height: 100%;
  }
  .posts-section--featured-grid .posts-card-content {
    align-items: flex-start;
    padding: 2rem 0 0;
  }
  .posts-section--featured-grid .posts-card-date {
    text-align: left;
  }
  .posts-section--featured-grid .posts-card-title {
    margin-bottom: 1.5rem;
    text-align: left;
  }
  .posts-section--featured-grid .posts-card-title a {
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  .posts-section--featured-grid .posts-card-excerpt {
    font-size: 1.4rem;
    line-height: 2.2rem;
    text-align: left;
  }
}

.posts-card-title {
  color: #000;
  font-size: 2.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 3rem;
  /* 136.364% */
}
@media (max-width: 768px) {
  .posts-card-title a {
    color: #fff;
  }
}

.posts-card-excerpt {
  color: #000;
  font-family: Figtree;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 300;
  leading-trim: both;
  line-height: 2.4rem;
  margin: 0;
  text-edge: cap;
  /* 150% */
}
@media (max-width: 768px) {
  .posts-card-excerpt {
    font-size: 0.9rem;
  }
}

.posts-card--regular {
  height: auto;
}
.posts-card--regular .posts-card-image img {
  height: 180px;
  object-fit: cover;
}
@media (width <= 1024px) {
  .posts-card--regular .posts-card-image img {
    height: 200px;
  }
}
.posts-card--regular .posts-card-content {
  padding: 20px;
}
@media (max-width: 768px) {
  .posts-card--regular .posts-card-content {
    padding: 15px;
  }
}
.posts-section--carousel .posts-container {
  overflow: hidden;
}

.posts-section--masonry .posts-masonry-item:first-child {
  margin-top: 0;
}

.posts-section--list .posts-item--list:first-child {
  margin-top: 0;
}

.posts-section--featured-grid .posts-swiper {
  display: none;
  overflow: visible;
  padding: 20px 0 60px;
  position: relative;
}
.posts-section--featured-grid .posts-swiper .swiper-slide {
  height: auto;
}
@media (max-width: 768px) {
  .posts-section--featured-grid .posts-nav {
    align-items: center;
    background: rgba(58, 60, 55, 0.35);
    border: none;
    border-radius: 50%;
    box-shadow: none;
    cursor: pointer;
    display: flex;
    height: 40px;
    justify-content: center;
    position: absolute;
    top: 60%;
    transition: all 0.3s ease;
    width: 40px;
    z-index: 10;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .posts-section--featured-grid .posts-nav {
    top: 70%;
  }
}
@media (max-width: 768px) {
  .posts-section--featured-grid .posts-nav::before {
    border-right: 3px solid #fff;
    border-top: 3px solid #fff;
    content: "";
    display: block;
    height: 12px;
    transition: all 0.3s ease;
    width: 12px;
  }
  .posts-section--featured-grid .posts-nav::after {
    content: none !important;
    display: none !important;
  }
  .posts-section--featured-grid .posts-nav:hover {
    background: rgba(58, 60, 55, 0.5);
  }
  .posts-section--featured-grid .posts-nav img {
    display: none;
  }
  .posts-section--featured-grid .posts-nav.swiper-button-disabled {
    cursor: not-allowed;
    opacity: 0.3;
  }
  .posts-section--featured-grid .posts-nav.swiper-button-disabled:hover {
    background: rgba(58, 60, 55, 0.35);
  }
}
@media (max-width: 768px) {
  .posts-section--featured-grid .posts-nav--prev {
    left: 5px;
    transform: translateY(-50%);
  }
  .posts-section--featured-grid .posts-nav--prev::before {
    transform: rotate(-135deg);
  }
}
@media (max-width: 768px) {
  .posts-section--featured-grid .posts-nav--next {
    right: 5px;
    transform: translateY(-50%);
  }
  .posts-section--featured-grid .posts-nav--next::before {
    transform: rotate(45deg);
  }
}
@media (max-width: 768px) {
  .posts-section--featured-grid .posts-pagination {
    display: none;
  }
}

.product-showcase {
  background-color: var(--white-color);
  padding: 8.4rem 0 14rem;
}
@media (width <= 992px) {
  .product-showcase {
    padding: 4rem 0;
  }
}
.product-showcase .container {
  display: grid;
  gap: 11rem;
  grid-template-columns: 1.4fr 1fr;
  justify-items: end;
  margin: 0 auto;
  max-width: var(--container-max-width);
  padding: 0;
}
@media (width <= 1024px) {
  .product-showcase .container {
    gap: 4rem;
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
@media (width <= 768px) {
  .product-showcase .container {
    gap: 3rem;
    padding: 0 1.5rem;
  }
}
.product-showcase__image {
  height: 100%;
  margin-right: auto;
  max-height: 74rem;
  max-width: 74rem;
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.product-showcase__image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.product-showcase__image::before {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
  bottom: -2rem;
  content: "";
  filter: blur(1rem);
  height: 2rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 80%;
  z-index: -1;
}
.product-showcase__image .product-showcase__video-container {
  position: relative;
  width: 100%;
  min-height: 74rem;
  border-radius: inherit;
  overflow: hidden;
  background-color: #000;
  transition: opacity 0.3s ease;
}
.product-showcase__image .product-showcase__video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.product-showcase__image .product-showcase__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  z-index: 1;
}
.product-showcase__image .product-showcase__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 2;
}
.product-showcase__image .product-showcase__poster {
  display: block;
  width: 100%;
  height: auto !important;
  border-radius: inherit;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
}
.product-showcase__image .product-showcase__poster--visible {
  opacity: 1;
  visibility: visible;
}
.product-showcase__image .product-showcase__media-placeholder {
  align-items: center;
  background: #f5f5f5;
  border-radius: inherit;
  color: #999;
  display: flex;
  font-size: 1.6rem;
  justify-content: center;
  min-height: 40rem;
  padding: 2rem;
  position: relative;
  text-align: center;
  z-index: 0;
}
.product-showcase__image .product-showcase__video-container--fallback {
  background-color: transparent;
}
.product-showcase__image .product-showcase__video-container--fallback .product-showcase__video-wrapper,
.product-showcase__image .product-showcase__video-container--fallback .product-showcase__video-overlay {
  display: none;
}
.product-showcase__image .product-showcase__video-container--fallback .product-showcase__poster {
  opacity: 1;
  visibility: visible;
}
.product-showcase__content {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  max-width: 52rem;
}
@media (width <= 1024px) {
  .product-showcase__content {
    text-align: center;
  }
}
.product-showcase__title {
  color: #000;
  font-family: Montserrat;
  font-size: 4rem;
  font-style: normal;
  font-weight: 300;
  leading-trim: both;
  /* 125% */
  letter-spacing: -0.04rem;
  line-height: 1;
  margin-bottom: 4.5rem;
  text-edge: cap;
}
@media (width <= 768px) {
  .product-showcase__title {
    font-size: 2.8rem;
  }
}
@media (width <= 576px) {
  .product-showcase__title {
    font-size: 2.4rem;
  }
}
.product-showcase__subtitle {
  color: #000;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  leading-trim: both;
  line-height: 1;
  /* 170% */
  margin-bottom: 1.7rem;
  text-edge: cap;
}
@media (width <= 768px) {
  .product-showcase__subtitle {
    font-size: 1.6rem;
  }
}
@media (width <= 576px) {
  .product-showcase__subtitle {
    font-size: 1.4rem;
  }
}
.product-showcase__description {
  color: #000;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 300;
  leading-trim: both;
  line-height: 2.8rem;
  /* 155.556% */
  margin-bottom: 7.3rem;
  text-edge: cap;
}
@media (width <= 768px) {
  .product-showcase__description {
    font-size: 1.5rem;
  }
}
@media (width <= 576px) {
  .product-showcase__description {
    font-size: 1.4rem;
  }
}
.product-showcase__button {
  align-items: center;
  align-self: flex-start;
  background-color: rgb(223, 187, 123);
  border: none;
  border-radius: var(--border-radius-72);
  color: #000;
  cursor: pointer;
  display: inline-flex;
  font-size: 1.6rem;
  font-weight: 500;
  justify-content: center;
  margin-top: 0;
  padding: 1rem 3.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (width <= 1024px) {
  .product-showcase__button {
    align-self: center;
  }
}
@media (width <= 768px) {
  .product-showcase__button {
    font-size: 1.5rem;
    padding: 1.2rem 2.5rem;
  }
}
@media (width <= 576px) {
  .product-showcase__button {
    font-size: 1.4rem;
    padding: 1rem 2rem;
  }
}
.product-showcase__button:hover {
  box-shadow: 0 0.8rem 2rem rgba(223, 187, 123, 0.3);
  color: black;
  transform: translateY(-0.2rem);
  padding: 1rem 4rem;
}
.product-showcase__button:active {
  transform: translateY(0);
}
.product-showcase--reverse .container {
  grid-template-columns: 1fr 1fr;
}
@media (width <= 1024px) {
  .product-showcase--reverse .container {
    grid-template-columns: 1fr;
  }
}
.product-showcase--reverse .product-showcase__image {
  order: 2;
}
.product-showcase--reverse .product-showcase__content {
  order: 1;
}
.product-showcase--centered .container {
  grid-template-columns: 1fr;
  max-width: 80rem;
  text-align: center;
}
.product-showcase--centered .product-showcase__content {
  align-items: center;
}
.product-showcase--centered .product-showcase__button {
  align-self: center;
}
.product-showcase--minimal {
  padding: 6rem 0;
}
.product-showcase--minimal .container {
  gap: 4rem;
}
.product-showcase--minimal .product-showcase__title {
  font-size: 3rem;
}
.product-showcase--minimal .product-showcase__subtitle {
  font-size: 1.6rem;
}
.product-showcase--minimal .product-showcase__description {
  font-size: 1.5rem;
}

.recipe-single {
  background-color: var(--background-color);
  color: var(--text-color);
}

.recipe-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 520px;
  width: 100%;
  color: var(--white-color);
}
.recipe-hero.has-placeholder {
  background: linear-gradient(150deg, #5c5141 0%, #2c2823 100%);
}
.recipe-hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.recipe-hero__background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: brightness(0.8);
}
.recipe-hero__background--fallback {
  background: linear-gradient(120deg, rgba(50, 44, 36, 0.9), rgb(30, 27, 24));
}
.recipe-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.65) 65%);
  mix-blend-mode: multiply;
}
.recipe-hero__content {
  position: relative;
  z-index: 2;
  padding: clamp(120px, 18vw, 200px) 0 clamp(80px, 12vw, 140px);
}
.recipe-hero__inner {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}
.recipe-hero__eyebrow {
  font-family: var(--font-family-secondary);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}
.recipe-hero__title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: var(--font-weight-heavy);
  line-height: 1.05;
}
.recipe-hero__summary {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin: 0;
}
@media (max-width: 768px) {
  .recipe-hero {
    min-height: 440px;
  }
  .recipe-hero__content {
    padding: 140px 0 96px;
  }
  .recipe-hero__inner {
    max-width: none;
    gap: var(--spacing-sm);
  }
  .recipe-hero__title {
    font-size: clamp(34px, 8vw, 44px);
  }
  .recipe-hero__summary {
    font-size: 17px;
  }
}

.recipe-breadcrumb {
  background-color: var(--background-color);
  border-bottom: 1px solid var(--border-color);
  padding: var(--spacing-lg) 0;
}
.recipe-breadcrumb__nav {
  display: flex;
}
.recipe-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  flex-wrap: wrap;
  color: var(--text-light);
  font-size: 15px;
}
.recipe-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.recipe-breadcrumb__link {
  color: inherit;
  transition: color var(--transition-fast);
}
.recipe-breadcrumb__link:hover {
  color: var(--primary-color);
}
.recipe-breadcrumb__current {
  color: var(--text-color);
  font-weight: var(--font-weight-semi-bold);
}
.recipe-breadcrumb__separator {
  color: rgba(0, 0, 0, 0.3);
  font-size: 18px;
}

.recipe-body {
  padding: clamp(72px, 10vw, 120px) 0 clamp(96px, 12vw, 140px);
}
.recipe-body__meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 4vw, 32px);
  margin-bottom: clamp(48px, 8vw, 72px);
}
.recipe-body__meta-item {
  background: #F6F6F6;
  padding: 16px 28px;
  min-width: 160px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.recipe-body__meta-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(0, 0, 0, 0.55);
}
.recipe-body__meta-value {
  font-size: 18px;
  font-weight: var(--font-weight-semi-bold);
  color: var(--secondary-color);
  text-align: center;
}
.recipe-body__content {
  max-width: 760px;
  margin: 0 auto clamp(56px, 10vw, 96px);
  font-size: 18px;
  line-height: 1.8;
}
.recipe-body__content p {
  color: rgba(0, 0, 0, 0.78);
}
.recipe-body__content > *:last-child {
  margin-bottom: 0;
}
.recipe-body__section {
  max-width: 960px;
  margin: 0 auto clamp(56px, 9vw, 88px);
}
.recipe-body__section:last-child {
  margin-bottom: 0;
}
.recipe-body__section-title {
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: clamp(24px, 4vw, 32px);
  text-align: center;
}
.recipe-body__ingredients-list {
  list-style: none;
  padding: clamp(24px, 5vw, 40px);
  background: #F6F6F6;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: max-content;
  margin: 0 auto;
}
.recipe-body__ingredients-list li {
  font-size: 17px;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
  border-bottom: 1px solid #E0E0E0;
  padding-bottom: 1rem;
}
.recipe-body__ingredients-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(153, 153, 153);
}
.recipe-body__instructions-list {
  list-style: none;
  counter-reset: recipe-steps;
  display: grid;
  gap: clamp(20px, 4vw, 28px);
  margin: 0;
  padding: 0;
}
.recipe-body__instructions-item {
  counter-increment: recipe-steps;
}
.recipe-body__instructions-card {
  background: var(--background-color);
  border-radius: var(--border-radius-32);
  padding: clamp(24px, 5vw, 40px);
  box-shadow: 0 24px 48px rgba(15, 15, 15, 0.06);
}
.recipe-body__instructions-header {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 24px);
  margin-bottom: clamp(12px, 2vw, 16px);
}
.recipe-body__instructions-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(223, 187, 123, 0.16);
  color: var(--primary-color);
  font-weight: var(--font-weight-semi-bold);
  font-size: 16px;
}
.recipe-body__instructions-title {
  font-size: 20px;
  font-weight: var(--font-weight-semi-bold);
  margin: 0;
}
.recipe-body__instructions-text {
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  color: rgba(0, 0, 0, 0.75);
}
.recipe-body__nutrition-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}
.recipe-body__nutrition-item {
  background: rgb(249, 248, 246);
  border-radius: var(--border-radius-lg);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.recipe-body__nutrition-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.55);
}
.recipe-body__nutrition-value {
  font-size: 18px;
  font-weight: var(--font-weight-semi-bold);
  color: var(--secondary-color);
  margin: 0;
}
@media (max-width: 640px) {
  .recipe-body__meta-item {
    min-width: 140px;
    padding: 14px 20px;
  }
  .recipe-body__ingredients-list {
    padding: 24px;
  }
  .recipe-body__instructions-card {
    padding: 24px;
  }
}

.recipe-related {
  padding: clamp(88px, 10vw, 140px) 0 clamp(120px, 12vw, 160px);
  background: var(--background-light);
}
.recipe-related__header {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 24px;
}
.recipe-related__title {
  color: #000;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 28px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  /* 167.857% */
}
.recipe-related__carousel {
  position: relative;
  padding: 0 56px;
}
.recipe-related__carousel .carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white-color);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  height: 48px;
  width: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
}
.recipe-related__carousel .carousel-prev {
  left: 0;
}
.recipe-related__carousel .carousel-next {
  right: 0;
}
.recipe-related .carousel-container {
  gap: clamp(20px, 4vw, 32px);
}
.recipe-related__card {
  min-width: 320px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  background: var(--background-color);
  overflow: hidden;
}
.recipe-related__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.recipe-related__thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.recipe-related__card:hover .recipe-related__thumbnail {
  transform: scale(1.05);
}
.recipe-related__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgb(240, 236, 228);
  color: rgba(0, 0, 0, 0.2);
}
.recipe-related__image-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--secondary-color);
}
.recipe-related__card-content {
  padding: clamp(24px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.recipe-related__card-title {
  font-size: 22px;
  line-height: 1.3;
}
.recipe-related__card-title a {
  color: inherit;
}
.recipe-related__card-summary {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.68);
  margin: 0;
}
.recipe-related__card-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: var(--font-weight-semi-bold);
  color: var(--primary-color);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
}
.recipe-related__card-link svg {
  transition: transform var(--transition-fast);
}
.recipe-related__card-link:hover svg {
  transform: translateX(4px);
}
@media (max-width: 1024px) {
  .recipe-related__carousel {
    padding: 0 32px;
  }
}
@media (max-width: 768px) {
  .recipe-related {
    padding: 80px 0 120px;
  }
  .recipe-related__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .recipe-related__carousel {
    padding: 0;
  }
  .recipe-related__carousel .carousel-nav {
    display: none;
  }
  .recipe-related__card {
    min-width: 280px;
  }
}

.recipe-archive {
  background-color: var(--background-color);
  color: var(--text-color);
}
.recipe-archive__hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 50vw, 664px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: clamp(120px, 18vw, 180px) 0 clamp(80px, 12vw, 120px);
}
.recipe-archive__hero--no-image {
  background: linear-gradient(120deg, rgb(64, 90, 69) 0%, rgb(26, 45, 31) 100%);
}
.recipe-archive__hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: brightness(0.75);
}
.recipe-archive__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.65) 60%, rgba(0, 0, 0, 0.75) 100%);
  mix-blend-mode: multiply;
}
.recipe-archive__hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 100%;
}
.recipe-archive__hero-content {
  text-align: center;
  color: var(--white-color);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  max-width: unset;
  align-items: flex-start;
}
.recipe-archive__hero-title {
  color: #FFF;
  leading-trim: both;
  text-edge: cap;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: 47px;
  /* 117.5% */
  letter-spacing: -0.4px;
}
.recipe-archive__hero-subtitle {
  color: #FFF;
  text-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0;
  /* 235% */
}
.recipe-archive__filters {
  padding: clamp(48px, 8vw, 72px) 0 clamp(12px, 4vw, 24px);
  background: var(--background-color);
  border-bottom: 1px solid var(--border-color);
}
.recipe-archive__search-form {
  max-width: 520px;
  margin: 0 auto clamp(40px, 6vw, 56px);
}
.recipe-archive__search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  height: 56px;
  border-radius: 999px;
  background: var(--light-gray-color);
  color: rgba(0, 0, 0, 0.6);
}
.recipe-archive__search-input-wrapper svg {
  flex-shrink: 0;
}
.recipe-archive__search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 16px;
  font-family: var(--font-family-secondary);
  color: var(--text-color);
  outline: none;
}
.recipe-archive__search-input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}
.recipe-archive__filter-bar {
  display: inline-flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.recipe-archive__filter {
  border: none;
  background: rgba(0, 0, 0, 0.04);
  color: var(--secondary-color);
  border-radius: 999px;
  padding: 10px 24px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.recipe-archive__filter:hover {
  background: rgba(0, 0, 0, 0.1);
}
.recipe-archive__filter.is-active {
  background: var(--secondary-color);
  color: var(--white-color);
}
.recipe-archive__groups {
  padding: clamp(72px, 10vw, 110px) 0 clamp(90px, 12vw, 140px);
}
.recipe-archive__group {
  margin-bottom: clamp(72px, 12vw, 128px);
  transition: opacity var(--transition-fast);
}
.recipe-archive__group.is-filter-hidden, .recipe-archive__group.is-empty {
  display: none;
}
.recipe-archive__group-header {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(36px, 8vw, 60px);
  text-align: center;
}
.recipe-archive__group-eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 12px;
}
.recipe-archive__group-title {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: var(--font-weight-heavy);
  margin: 0;
}
.recipe-archive__group-description {
  margin-top: 16px;
  max-width: 680px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
}
.recipe-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 36px);
}
@media (max-width: 1024px) {
  .recipe-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .recipe-archive__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.recipe-archive__group-footer {
  margin-top: clamp(32px, 6vw, 48px);
  display: flex;
  justify-content: center;
}
.recipe-archive__group-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 180px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--secondary-color);
  color: var(--white-color);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background var(--transition-fast);
}
.recipe-archive__group-button:hover {
  background: var(--primary-color);
}
.recipe-archive__empty {
  padding: 120px 0;
  text-align: center;
}
.recipe-archive__empty h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
.recipe-archive__empty p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.55);
}

.recipe-card {
  background: var(--background-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.recipe-card.is-search-hidden {
  display: none;
}
.recipe-card__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
}
.recipe-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}
.recipe-card:hover .recipe-card__image {
  transform: scale(1.05);
}
.recipe-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: rgb(239, 237, 232);
  color: rgba(0, 0, 0, 0.2);
}
.recipe-card__link {
  display: block;
  width: 100%;
  height: 100%;
}
.recipe-card__content {
  padding: clamp(24px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.recipe-card__title {
  font-size: 22px;
  font-weight: var(--font-weight-semi-bold);
  line-height: 1.3;
  margin: 0;
}
.recipe-card__title a {
  color: inherit;
}
.recipe-card__summary {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: rgba(0, 0, 0, 0.68);
}
.recipe-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: var(--font-weight-semi-bold);
  color: var(--primary-color);
}
.recipe-card__cta svg {
  transition: transform var(--transition-fast);
}
.recipe-card__cta:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .recipe-archive__filters {
    padding-bottom: 32px;
  }
  .recipe-archive__filter-bar {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }
  .recipe-archive__filter-bar::-webkit-scrollbar {
    height: 4px;
  }
  .recipe-archive__filter {
    white-space: nowrap;
  }
}
@media (width <= 1200px) {
  .container {
    padding: 0 var(--spacing-lg);
  }
  .product-hero__content {
    gap: var(--spacing-lg);
  }
  .care-guide__content,
  .premium-packaging__content {
    gap: var(--spacing-lg);
  }
  .accessory-item {
    flex: 0 0 26.4rem;
  }
  .form-row {
    gap: var(--spacing-md);
    grid-template-columns: 1fr;
  }
}
@media (width <= 992px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  .product-hero__content {
    gap: var(--spacing-lg);
    grid-template-columns: 1fr;
  }
  .care-guide__content {
    gap: var(--spacing-lg);
    grid-template-columns: 1fr;
  }
  .premium-packaging__content {
    gap: var(--spacing-lg);
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-content {
    gap: var(--spacing-lg);
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--spacing-md);
    text-align: center;
  }
  .nav-menu {
    background-color: #2c2c2c;
    border-top: 1px solid #87ceeb;
    display: none;
    flex-direction: column;
    gap: var(--spacing-sm);
    left: 0;
    padding: var(--spacing-md);
    position: absolute;
    top: 100%;
    width: 100%;
  }
  .nav-menu.active {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .carousel-container {
    flex-direction: column;
  }
  .accessory-item,
  .inspiration-item {
    flex: 0 0 100%;
  }
}
@media (width <= 480px) {
  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .quantity-selector {
    justify-content: center;
  }
  .social-share {
    justify-content: center;
  }
  .care-guide__title,
  .premium-packaging__title,
  .accessories-title,
  .inspirations-title {
    font-size: var(--font-size-h3);
  }
  .header-accent .accent-text {
    font-size: 10px;
  }
}

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