@charset "UTF-8";
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  min-height: 100vh;
  line-height: 1.6;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 1rem;
  color: #1a1a1a;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
@media (max-width: 767px) {
  h1 {
    font-size: 1.5rem;
  }
}

h2 {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.25rem;
  }
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #2d2d2d;
  transition: all 150ms cubic-bezier(0, 0, 0.2, 1);
}
a:hover {
  color: #d97656;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  transition: box-shadow 250ms cubic-bezier(0, 0, 0.2, 1);
}
.site-header.is-scrolled {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1024px) {
  .site-header.is-scrolled {
    padding: 1rem 0;
  }
}
@media (min-width: 1024px) {
  .site-header.is-scrolled .site-branding .custom-logo-link img {
    max-height: 45px;
  }
}

.header-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 767px) {
  .header-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-branding {
  flex-shrink: 0;
}
.site-branding .site-title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.site-branding .site-title a {
  color: #2d2d2d;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.site-branding .site-title a:hover {
  color: #d97656;
}
.site-branding .site-title a:focus-visible {
  outline: 2px solid #d97656;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(217, 118, 86, 0.3);
}
.site-branding .custom-logo-link {
  display: block;
  line-height: 0;
}
.site-branding .custom-logo-link img {
  max-height: 50px;
  width: auto;
  display: block;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 1024px) {
  .site-branding .custom-logo-link img {
    max-height: 60px;
  }
}
.site-branding .custom-logo-link:focus-visible {
  outline: 2px solid #d97656;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(217, 118, 86, 0.3);
}

.main-navigation {
  flex-grow: 1;
  display: none;
}
@media (min-width: 1024px) {
  .main-navigation {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 767px) {
  .main-navigation {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    max-width: 85vw;
    background: #ffffff;
    padding: 4rem 1.5rem;
    transform: translateX(100%);
    transition: transform 350ms cubic-bezier(0, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 500;
    overflow-y: auto;
    justify-content: flex-start;
  }
  .main-navigation.is-active {
    display: flex;
    transform: translateX(0);
  }
}
.main-navigation .primary-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .main-navigation .primary-menu {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1rem;
    padding-top: 6rem;
  }
}
.main-navigation .primary-menu li {
  margin: 0;
}
.main-navigation .primary-menu a {
  color: #2d2d2d;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}
.main-navigation .primary-menu a:hover {
  color: #d97656;
  background: rgba(217, 118, 86, 0.1);
}
.main-navigation .primary-menu a:focus-visible {
  outline: 2px solid #d97656;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(217, 118, 86, 0.3);
}
.main-navigation .primary-menu a.current-menu-item, .main-navigation .primary-menu a[aria-current=page] {
  color: #d97656;
  font-weight: 600;
}
@media (max-width: 767px) {
  .main-navigation .primary-menu a {
    width: 100%;
    padding: 1rem;
    font-size: 1.25rem;
  }
}

.menu-toggle {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
  text-align: inherit;
  line-height: inherit;
}
.menu-toggle:focus {
  outline: none;
}
.menu-toggle {
  display: none;
  padding: 0.5rem;
  z-index: 501;
  position: relative;
}
@media (max-width: 767px) {
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.menu-toggle .menu-toggle-icon {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  background: #2d2d2d;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-toggle .menu-toggle-icon::before, .menu-toggle .menu-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #2d2d2d;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-toggle .menu-toggle-icon::before {
  top: -8px;
}
.menu-toggle .menu-toggle-icon::after {
  bottom: -8px;
}
.menu-toggle.is-active .menu-toggle-icon {
  background: transparent;
}
.menu-toggle.is-active .menu-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.menu-toggle.is-active .menu-toggle-icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}
.menu-toggle:hover .menu-toggle-icon, .menu-toggle:hover .menu-toggle-icon::before, .menu-toggle:hover .menu-toggle-icon::after {
  background: #d97656;
}
.menu-toggle:focus-visible {
  outline: 2px solid #d97656;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(217, 118, 86, 0.3);
}

.mobile-menu-overlay {
  display: none;
}
@media (max-width: 767px) {
  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 45, 45, 0.5);
    z-index: 499;
    opacity: 0;
    transition: opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }
  .mobile-menu-overlay.is-active {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
}

.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
  white-space: nowrap;
}

.header-cart {
  flex-shrink: 0;
  margin-left: auto;
}
@media (max-width: 767px) {
  .header-cart {
    margin-left: 0;
  }
}
.header-cart .cart-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
  text-decoration: none;
  color: #2d2d2d;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-radius: 4px;
}
.header-cart .cart-link:hover {
  background: #d97656;
  color: #ffffff;
}
.header-cart .cart-link:hover .cart-icon {
  stroke: #ffffff;
}
.header-cart .cart-link:hover .cart-count {
  background: #2d2d2d;
}
.header-cart .cart-link:focus-visible {
  outline: 2px solid #d97656;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(217, 118, 86, 0.3);
}
.header-cart .cart-icon {
  width: 24px;
  height: 24px;
  stroke: #2d2d2d;
  fill: none;
  stroke-width: 2;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header-cart .cart-count {
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d97656;
  color: #ffffff;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0 0.5rem;
  line-height: 1;
}
.header-cart .cart-count:empty {
  display: none;
}

.header-search {
  flex-shrink: 0;
}
.header-search .search-form {
  position: relative;
}
.header-search .search-form .search-input {
  padding: 0.5rem 1.5rem;
  padding-right: 40px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.875rem;
  transition: border-color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
.header-search .search-form .search-input:focus {
  outline: none;
  border-color: #d97656;
  box-shadow: 0 0 0 3px rgba(217, 118, 86, 0.3);
}
.header-search .search-form .search-input::placeholder {
  color: #3a3a3a;
  opacity: 0.6;
}
.header-search .search-form .search-submit {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: #3a3a3a;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header-search .search-form .search-submit:hover {
  color: #d97656;
}
.header-search .search-form .search-submit svg {
  width: 20px;
  height: 20px;
  display: block;
}

.site-footer {
  background: #2d2d2d;
  color: #ffffff;
  padding: 4rem 0 2.5rem;
  margin-top: 8rem;
}
@media (max-width: 767px) {
  .site-footer {
    padding: 2.5rem 0 1.5rem;
    margin-top: 4rem;
  }
}

.footer-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 767px) {
  .footer-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
}

.footer-column h3,
.footer-column h4 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 1.5rem;
  line-height: 1.2;
}
.footer-column h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-column li {
  margin: 0;
}
.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 250ms cubic-bezier(0, 0, 0.2, 1);
  display: inline-block;
  position: relative;
  padding-left: 0;
}
.footer-column a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: #d97656;
  transition: width 250ms cubic-bezier(0, 0, 0.2, 1);
}
.footer-column a:hover {
  color: #d97656;
  padding-left: 0.5rem;
}
.footer-column a:hover::before {
  width: 12px;
}
.footer-column a:focus-visible {
  outline: 2px solid #d97656;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(217, 118, 86, 0.3);
}
@media (max-width: 767px) {
  .footer-column a:hover {
    padding-left: 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .footer-branding {
    grid-column: 1/-1;
    text-align: center;
  }
}
.footer-branding h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.footer-branding .footer-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.75;
  margin: 0;
  max-width: 300px;
}
@media (max-width: 767px) {
  .footer-branding .footer-tagline {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer-branding .footer-tagline {
    margin-left: auto;
    margin-right: auto;
  }
}

.footer-social {
  margin-top: 1.5rem;
}
.footer-social .social-title {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}
.footer-social .social-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .footer-social .social-links {
    justify-content: center;
  }
}
.footer-social .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.footer-social .social-link svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-social .social-link:hover {
  background: #d97656;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 118, 86, 0.2);
}
.footer-social .social-link:focus-visible {
  outline: 2px solid #d97656;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(217, 118, 86, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 767px) {
  .footer-bottom {
    padding-top: 1rem;
    margin-top: 1.5rem;
  }
}

.site-info {
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.75;
}
.site-info a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.site-info a:hover {
  color: #ffffff;
  text-decoration-color: #d97656;
}
.site-info a:focus-visible {
  outline: 2px solid #d97656;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(217, 118, 86, 0.3);
}

.footer-navigation {
  margin-bottom: 1.5rem;
}
.footer-navigation .footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 767px) {
  .footer-navigation .footer-menu {
    flex-direction: column;
    align-items: center;
  }
}
.footer-navigation .footer-menu a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 150ms cubic-bezier(0, 0, 0.2, 1);
  font-size: 0.875rem;
}
.footer-navigation .footer-menu a:hover {
  color: #d97656;
}
.footer-navigation .footer-menu a:focus-visible {
  outline: 2px solid #d97656;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(217, 118, 86, 0.3);
}

.hero-section {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4ecdc4 0%, #d97656 100%);
  color: #ffffff;
  padding: 6rem 1.5rem;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .hero-section {
    min-height: 300px;
    padding: 4rem 1.5rem;
  }
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content {
  animation: fadeInUp 0.8s ease;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  opacity: 0.95;
}
@media (max-width: 767px) {
  .hero-description {
    font-size: 1rem;
  }
}
.hero-description p {
  margin-bottom: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.products-section {
  padding: 6rem 0;
}

.products-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 767px) {
  .products-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #d97656;
  margin: 1.5rem auto 0;
  border-radius: 4px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.product-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.product-image {
  position: relative;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 1;
  grid-row: 1;
}
.product-image a {
  display: block;
  height: 100%;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.product-image:hover img {
  transform: scale(1.05);
}

.product-info {
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: minmax(4rem, auto);
  align-content: start;
}

.product-title {
  grid-column: 1;
  grid-row: 1;
  padding: 1.5rem 1rem 1.5rem 1.5rem;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  align-self: start;
}
.product-title a {
  color: #2d2d2d;
  text-decoration: none;
  line-height: 1.3;
  transition: all 150ms cubic-bezier(0, 0, 0.2, 1);
}
.product-title a:hover {
  color: #d97656;
}

.product-price {
  grid-column: 2;
  grid-row: 1;
  padding: 1.5rem 1.5rem 1.5rem 1rem;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #d97656;
  text-align: right;
  white-space: nowrap;
  align-self: start;
}
.product-price del {
  opacity: 0.6;
  font-size: 1rem;
  margin-right: 0.5rem;
}
.product-price ins {
  text-decoration: none;
}

.product-actions {
  grid-row: 3;
  align-self: end;
}
.product-actions .button,
.product-actions .added_to_cart,
.product-actions .add_to_cart_button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin: 0;
  padding: 1rem 1.5rem;
  background-color: #d97656;
  color: #ffffff;
  border: none;
  border-radius: 0 0 12px 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.product-actions .button::before,
.product-actions .added_to_cart::before,
.product-actions .add_to_cart_button::before {
  content: "🛒";
  font-size: 1.125rem;
}
.product-actions .button:hover,
.product-actions .added_to_cart:hover,
.product-actions .add_to_cart_button:hover {
  background-color: rgb(211.4376811594, 97.9463768116, 61.2623188406);
  transform: none;
}
.product-actions .button:active,
.product-actions .added_to_cart:active,
.product-actions .add_to_cart_button:active {
  transform: none;
}
.product-actions .added_to_cart {
  background: #4ecdc4;
  margin-top: 0;
}

.no-products {
  text-align: center;
  padding: 6rem;
  font-size: 1.25rem;
  color: #2d2d2d;
  opacity: 0.6;
}

.product-category-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.95);
  color: #2d2d2d;
  padding: 0.375rem 0.875rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: capitalize;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.collection-section {
  padding: 6rem 0;
}

.collection-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 767px) {
  .collection-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.collection-header {
  text-align: center;
  margin-bottom: 4rem;
}

.collection-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.collection-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #d97656;
  margin: 1.5rem auto 0;
  border-radius: 4px;
}

.collection-description {
  font-size: 1.25rem;
  color: #6c6c6c;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.collection-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
  padding: 0 1.5rem;
}
@media (max-width: 767px) {
  .collection-filters {
    gap: 0.5rem;
  }
}

.filter-btn {
  padding: 0.625rem 1.5rem;
  background: #f5f5f5;
  color: #2d2d2d;
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: capitalize;
}
.filter-btn:hover {
  background: rgb(232.75, 232.75, 232.75);
  border-color: rgb(228.4, 159.1, 136.7);
}
.filter-btn.active {
  background: #d97656;
  color: #ffffff;
  border-color: #d97656;
}
.filter-btn.active:hover {
  background: rgb(211.4376811594, 97.9463768116, 61.2623188406);
  border-color: rgb(211.4376811594, 97.9463768116, 61.2623188406);
}
@media (max-width: 767px) {
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}

.collection-grid .product-card {
  transition: opacity all 250ms cubic-bezier(0.4, 0, 0.2, 1), transform all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.collection-grid .product-card.hidden {
  display: none;
}

.button,
button[type=submit],
input[type=submit],
.wp-block-button__link {
  display: inline-block;
  padding: 1rem 1.5rem;
  background: #2d2d2d;
  color: #ffffff;
  border: 2px solid #2d2d2d;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 150ms cubic-bezier(0, 0, 0.2, 1);
  text-decoration: none;
}
.button:hover,
button[type=submit]:hover,
input[type=submit]:hover,
.wp-block-button__link:hover {
  background: transparent;
  color: #2d2d2d;
}
.button:active,
button[type=submit]:active,
input[type=submit]:active,
.wp-block-button__link:active {
  transform: scale(0.98);
}
.button.button-secondary,
button[type=submit].button-secondary,
input[type=submit].button-secondary,
.wp-block-button__link.button-secondary {
  background: #d97656;
  border-color: #d97656;
}
.button.button-secondary:hover,
button[type=submit].button-secondary:hover,
input[type=submit].button-secondary:hover,
.wp-block-button__link.button-secondary:hover {
  background: transparent;
  color: #d97656;
}
.button.button-accent,
button[type=submit].button-accent,
input[type=submit].button-accent,
.wp-block-button__link.button-accent {
  background: #4ecdc4;
  border-color: #4ecdc4;
}
.button.button-accent:hover,
button[type=submit].button-accent:hover,
input[type=submit].button-accent:hover,
.wp-block-button__link.button-accent:hover {
  background: transparent;
  color: #4ecdc4;
}
.button.button-outline,
button[type=submit].button-outline,
input[type=submit].button-outline,
.wp-block-button__link.button-outline {
  background: transparent;
  color: #2d2d2d;
}
.button.button-outline:hover,
button[type=submit].button-outline:hover,
input[type=submit].button-outline:hover,
.wp-block-button__link.button-outline:hover {
  background: #2d2d2d;
  color: #ffffff;
}

.site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1;
}

.entry-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 767px) {
  .entry-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.entry-container {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.entry-header {
  margin-bottom: 4rem;
  text-align: center;
}

.entry-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.entry-content {
  max-width: 800px;
  margin: 0 auto;
}
.entry-content > * + * {
  margin-top: 1.5rem;
}
.entry-content h2 {
  margin-top: 4rem;
  margin-bottom: 1.5rem;
}
.entry-content h3 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.entry-content img {
  border-radius: 8px;
}
.entry-content a {
  color: #d97656;
  text-decoration: underline;
}
.entry-content a:hover {
  color: #4ecdc4;
}

.error-404 {
  text-align: center;
  padding: 6rem 1.5rem;
}

.error-container {
  max-width: 600px;
  margin: 0 auto;
}

.page-header {
  margin-bottom: 4rem;
}
.page-header .page-title {
  font-size: 6rem;
  color: #d97656;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .page-header .page-title {
    font-size: 4rem;
  }
}
.page-header .page-subtitle {
  font-size: 1.5rem;
  color: #2d2d2d;
}

.page-content p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

.error-actions {
  margin-top: 4rem;
}

.home .page-content h1 {
  font-size: 150px;
}
@media (max-width: 767px) {
  .home .page-content h1 {
    font-size: 60px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .home .page-content h1 {
    font-size: 100px;
  }
}

.woocommerce-main {
  padding: 0.5rem 0;
}

.woocommerce-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 767px) {
  .woocommerce-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid;
}
.woocommerce-message a,
.woocommerce-info a,
.woocommerce-error a {
  text-decoration: underline;
}

.woocommerce-message {
  background: rgb(228.45, 247.5, 246.15);
  border-color: #4ecdc4;
  color: rgb(31.1674008811, 110.3325991189, 104.7224669604);
}

.woocommerce-info {
  background: #f5f5f5;
  border-color: #2d2d2d;
  color: #2d2d2d;
}

.woocommerce-error {
  background: rgb(249.3, 234.45, 229.65);
  border-color: #d97656;
  color: rgb(185.5326086957, 76.847826087, 41.7173913043);
}

@media (max-width: 767px) {
  .single-product .product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    grid-template-columns: 1fr;
  }
}
.single-product .woocommerce-product-gallery {
  margin-bottom: 2.5rem;
}
.single-product .summary .product_title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}
.single-product .summary .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 1.5rem;
}
.single-product .summary .woocommerce-product-details__short-description {
  margin-bottom: 2.5rem;
}

.woocommerce-cart .cart-collaterals {
  margin-top: 4rem;
}
.woocommerce-cart .cart_totals {
  background: #f5f5f5;
  padding: 2.5rem;
  border-radius: 8px;
}

.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields {
  margin-bottom: 2.5rem;
}
.woocommerce-checkout .form-row {
  margin-bottom: 1.5rem;
}
.woocommerce-checkout .form-row label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.woocommerce-checkout .form-row input[type=text],
.woocommerce-checkout .form-row input[type=email],
.woocommerce-checkout .form-row input[type=tel],
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 150ms cubic-bezier(0, 0, 0.2, 1);
}
.woocommerce-checkout .form-row input[type=text]:focus,
.woocommerce-checkout .form-row input[type=email]:focus,
.woocommerce-checkout .form-row input[type=tel]:focus,
.woocommerce-checkout .form-row select:focus,
.woocommerce-checkout .form-row textarea:focus {
  outline: none;
  border-color: #4ecdc4;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  background: #f5f5f5;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2.5rem;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
  margin-bottom: 0.5rem;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
  color: #d97656;
  font-weight: 600;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 0.5rem 1rem;
  transition: all 150ms cubic-bezier(0, 0, 0.2, 1);
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
  color: #d97656;
}

ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  ul.products {
    grid-template-columns: 1fr;
  }
}
ul.products li.product {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
ul.products li.product:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
ul.products li.product .product-category-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #ffffff;
  color: #2d2d2d;
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
ul.products li.product .woocommerce-loop-product__link,
ul.products li.product a.woocommerce-LoopProduct-link {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto minmax(4rem, auto);
  text-decoration: none;
  color: inherit;
  grid-row: 1/3;
}
ul.products li.product .woocommerce-loop-product__link img,
ul.products li.product a.woocommerce-LoopProduct-link img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f5f5f5;
  transition: transform all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  grid-column: 1/-1;
  grid-row: 1;
}
ul.products li.product .woocommerce-loop-product__link:hover img,
ul.products li.product a.woocommerce-LoopProduct-link:hover img {
  transform: scale(1.05);
}
ul.products li.product .woocommerce-loop-product__link h2.woocommerce-loop-product__title,
ul.products li.product .woocommerce-loop-product__link .woocommerce-loop-product__title,
ul.products li.product a.woocommerce-LoopProduct-link h2.woocommerce-loop-product__title,
ul.products li.product a.woocommerce-LoopProduct-link .woocommerce-loop-product__title {
  grid-column: 1;
  grid-row: 2;
  padding: 1.5rem 1rem 1.5rem 1.5rem;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2d2d2d;
  line-height: 1.3;
  align-self: start;
  text-align: left;
}
ul.products li.product .woocommerce-loop-product__link .price,
ul.products li.product a.woocommerce-LoopProduct-link .price {
  grid-column: 2;
  grid-row: 2;
  padding: 1.5rem 1.5rem 1.5rem 1rem;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #d97656;
  text-align: right;
  white-space: nowrap;
  align-self: start;
}
ul.products li.product .woocommerce-loop-product__link .price del,
ul.products li.product a.woocommerce-LoopProduct-link .price del {
  opacity: 0.6;
  font-size: 1rem;
  margin-right: 0.5rem;
}
ul.products li.product .woocommerce-loop-product__link .price ins,
ul.products li.product a.woocommerce-LoopProduct-link .price ins {
  text-decoration: none;
}
ul.products li.product .add_to_cart_button,
ul.products li.product .product_type_simple,
ul.products li.product .product_type_variable,
ul.products li.product .button {
  grid-row: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin: 0;
  padding: 1rem 1.5rem;
  background-color: #d97656;
  color: #ffffff;
  border: none;
  border-radius: 0 0 12px 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  align-self: end;
}
ul.products li.product .add_to_cart_button::before,
ul.products li.product .product_type_simple::before,
ul.products li.product .product_type_variable::before,
ul.products li.product .button::before {
  content: "🛒";
  font-size: 1.125rem;
}
ul.products li.product .add_to_cart_button:hover,
ul.products li.product .product_type_simple:hover,
ul.products li.product .product_type_variable:hover,
ul.products li.product .button:hover {
  background-color: rgb(211.4376811594, 97.9463768116, 61.2623188406);
  transform: none;
}
ul.products li.product .add_to_cart_button.added,
ul.products li.product .product_type_simple.added,
ul.products li.product .product_type_variable.added,
ul.products li.product .button.added {
  background-color: rgb(224.6, 145.4, 119.8);
}

.product-page {
  background-color: #ffffff;
  padding: 2rem 0;
}
@media (min-width: 1024px) {
  .product-page {
    padding: 3rem 0;
  }
}

.woocommerce-breadcrumb {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
  font-size: 0.875rem;
  color: #818181;
}
@media (min-width: 1024px) {
  .woocommerce-breadcrumb {
    padding: 0 1.5rem;
  }
}
.woocommerce-breadcrumb a {
  color: #818181;
  text-decoration: none;
  transition: color all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.woocommerce-breadcrumb a:hover {
  color: #d97656;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  overflow-x: hidden;
}
@media (min-width: 1024px) {
  .product-container {
    padding: 0 1.5rem;
  }
}

.product-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .product-layout {
    gap: 3rem;
  }
}
@media (min-width: 1024px) {
  .product-layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
  }
}

.product-gallery-column {
  max-width: 100%;
  min-width: 0;
}
.product-gallery-column .woocommerce-product-gallery {
  margin: 0 !important;
  opacity: 1 !important;
  max-width: 100% !important;
  width: 100% !important;
  float: none !important;
}
.product-gallery-column .woocommerce-product-gallery .flex-viewport {
  overflow: hidden;
  max-width: 100% !important;
  width: 100% !important;
}
.product-gallery-column .woocommerce-product-gallery__wrapper {
  margin: 0 !important;
  max-width: none !important;
}
.product-gallery-column .woocommerce-product-gallery__image {
  margin: 0 !important;
}
.product-gallery-column .woocommerce-product-gallery__image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  background-color: #f5f5f5;
}
.product-gallery-column .woocommerce-product-gallery .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}
.product-gallery-column .woocommerce-product-gallery .flex-control-thumbs li {
  width: 100%;
}
.product-gallery-column .woocommerce-product-gallery .flex-control-thumbs li img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.product-gallery-column .woocommerce-product-gallery .flex-control-thumbs li img.flex-active, .product-gallery-column .woocommerce-product-gallery .flex-control-thumbs li img:hover {
  border-color: #d97656;
}

.product-details-column {
  min-width: 0;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.product-details-column .product-summary {
  width: 100%;
  max-width: none;
}
.product-details-column .product-summary .product-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: #d97656;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.product-details-column .product-summary .product-title {
  margin: 0 0 1rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d2d2d;
}
@media (min-width: 1024px) {
  .product-details-column .product-summary .product-title {
    font-size: 2rem;
  }
}
.product-details-column .product-summary .woocommerce-product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.product-details-column .product-summary .woocommerce-product-rating .star-rating {
  color: #d97656;
}
.product-details-column .product-summary .woocommerce-product-rating .woocommerce-review-link {
  font-size: 0.875rem;
  color: #818181;
  text-decoration: none;
}
.product-details-column .product-summary .woocommerce-product-rating .woocommerce-review-link:hover {
  color: #d97656;
}
.product-details-column .product-summary .price {
  display: block;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #d97656;
}
.product-details-column .product-summary .price del {
  opacity: 0.6;
  font-size: 1.25rem;
  margin-right: 0.5rem;
}
.product-details-column .product-summary .price ins {
  text-decoration: none;
}
.product-details-column .product-summary .woocommerce-product-details__short-description {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #575757;
}
.product-details-column .product-summary .cart {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}
.product-details-column .product-summary .cart .single_variation_wrap {
  flex: 1 1 100%;
}
.product-details-column .product-summary .cart .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-start;
}
.product-details-column .product-summary .cart .quantity {
  flex: 0 0 140px;
}
.product-details-column .product-summary .cart .single_add_to_cart_button {
  flex: 1 1 auto;
  min-width: 200px;
}
.product-details-column .product-summary .cart .variations {
  flex: 1 1 100%;
  margin-bottom: 1.5rem;
  border: none;
}
.product-details-column .product-summary .cart .variations tr {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.product-details-column .product-summary .cart .variations .label {
  padding: 0;
  margin-bottom: 0.5rem;
}
.product-details-column .product-summary .cart .variations .label label {
  font-weight: 600;
  color: #2d2d2d;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-details-column .product-summary .cart .variations .value {
  padding: 0;
}
.product-details-column .product-summary .cart .variations .value select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #d5d5d5;
  border-radius: 8px;
  font-size: 1rem;
  background-color: white;
  cursor: pointer;
  transition: border-color all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.product-details-column .product-summary .cart .variations .value select:hover {
  border-color: #ababab;
}
.product-details-column .product-summary .cart .variations .value select:focus {
  outline: none;
  border-color: #d97656;
}
.product-details-column .product-summary .cart .quantity {
  margin-bottom: 0;
  height: 100%;
}
.product-details-column .product-summary .cart .quantity-wrapper {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  height: 100%;
}
.product-details-column .product-summary .cart .quantity-wrapper .quantity-btn {
  width: 44px;
  height: auto;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #d5d5d5;
  background-color: white;
  color: #2d2d2d;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.product-details-column .product-summary .cart .quantity-wrapper .quantity-btn:hover {
  border-color: #d97656;
  color: #d97656;
  background-color: rgb(253.1, 248.15, 246.55);
}
.product-details-column .product-summary .cart .quantity-wrapper .quantity-btn:active {
  transform: scale(0.95);
}
.product-details-column .product-summary .cart .quantity-wrapper .qty {
  width: 60px;
  height: auto;
  min-height: 52px;
  text-align: center;
  border: 2px solid #d5d5d5;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem;
}
.product-details-column .product-summary .cart .quantity-wrapper .qty:focus {
  outline: none;
  border-color: #d97656;
}
.product-details-column .product-summary .cart .single_add_to_cart_button {
  padding: 0 2rem;
  height: 52px;
  margin-bottom: 0;
  background-color: #d97656;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.product-details-column .product-summary .cart .single_add_to_cart_button:hover {
  background-color: rgb(211.4376811594, 97.9463768116, 61.2623188406);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 118, 86, 0.3);
}
.product-details-column .product-summary .cart .single_add_to_cart_button:active {
  transform: translateY(0);
}
.product-details-column .product-summary .cart .single_add_to_cart_button.disabled, .product-details-column .product-summary .cart .single_add_to_cart_button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.product-details-column .product-summary .cart .single_add_to_cart_button.disabled:hover, .product-details-column .product-summary .cart .single_add_to_cart_button:disabled:hover {
  background-color: #d97656;
  transform: none;
  box-shadow: none;
}

.product-features {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eaeaea;
}
.product-features .product-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.product-features .product-feature:last-child {
  margin-bottom: 0;
}
.product-features .product-feature .feature-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: #4ecdc4;
}
.product-features .product-feature .feature-text {
  display: flex;
  flex-direction: column;
}
.product-features .product-feature .feature-text strong {
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 0.25rem;
}
.product-features .product-feature .feature-text span {
  font-size: 0.875rem;
  color: #818181;
}

.woocommerce-tabs {
  grid-column: 1/-1 !important;
  max-width: 1200px;
  margin: 3rem auto 0 !important;
  clear: both !important;
  width: 100% !important;
  display: block !important;
  position: static !important;
  float: none !important;
}
@media (min-width: 1024px) {
  .woocommerce-tabs {
    padding: 0 1.5rem;
  }
}
.woocommerce-tabs .tabs {
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 0 0 2rem;
  list-style: none;
  border-bottom: 2px solid #eaeaea;
}
.woocommerce-tabs .tabs li {
  margin: 0;
  padding: 0;
}
.woocommerce-tabs .tabs li a {
  display: block;
  padding: 1rem 0;
  color: #818181;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: all all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.woocommerce-tabs .tabs li a:hover {
  color: #d97656;
}
.woocommerce-tabs .tabs li.active a {
  color: #d97656;
  border-bottom-color: #d97656;
}
.woocommerce-tabs .panel {
  padding: 0;
  line-height: 1.6;
}
.woocommerce-tabs .panel h2 {
  margin-top: 0;
}
.woocommerce-tabs .panel table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.woocommerce-tabs .panel table thead {
  background-color: #f5f5f5;
}
.woocommerce-tabs .panel table thead th {
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 600;
  color: #2d2d2d;
  border-bottom: 2px solid #e0e0e0;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.woocommerce-tabs .panel table tbody tr {
  transition: background-color all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.woocommerce-tabs .panel table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}
.woocommerce-tabs .panel table tbody tr:nth-child(even) {
  background-color: #fafafa;
}
.woocommerce-tabs .panel table tbody tr:hover {
  background-color: rgb(253.1, 248.15, 246.55);
}
.woocommerce-tabs .panel table tbody tr td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #e0e0e0;
  color: #2d2d2d;
}
.woocommerce-tabs .panel table tbody tr td:first-child {
  font-weight: 500;
}
.woocommerce-tabs .panel table tbody tr:last-child td {
  border-bottom: none;
}
@media (max-width: 767px) {
  .woocommerce-tabs .panel table {
    font-size: 0.875rem;
  }
  .woocommerce-tabs .panel table thead th,
  .woocommerce-tabs .panel table tbody td {
    padding: 0.5rem 0.75rem;
  }
}
.woocommerce-tabs .entry-content {
  margin: 0;
}

.related.products {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding: 0 1rem;
}
@media (min-width: 1024px) {
  .related.products {
    padding: 0 1.5rem;
  }
}
.related.products h2 {
  margin-bottom: 2rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: #2d2d2d;
  text-align: center;
}
.related.products .products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .related.products .products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .related.products .products {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
.related.products .products li.product {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.related.products .products li.product:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.related.products .products li.product .product-category-label {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #ffffff;
  color: #2d2d2d;
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.related.products .products li.product .woocommerce-loop-product__link {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto minmax(4rem, auto);
  text-decoration: none;
  color: inherit;
  grid-row: 1/3;
}
.related.products .products li.product .woocommerce-loop-product__link img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f5f5f5;
  transition: transform all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  grid-column: 1/-1;
  grid-row: 1;
}
.related.products .products li.product .woocommerce-loop-product__link:hover img {
  transform: scale(1.05);
}
.related.products .products li.product .woocommerce-loop-product__link h2.woocommerce-loop-product__title {
  grid-column: 1;
  grid-row: 2;
  padding: 1.5rem 1rem 1.5rem 1.5rem;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2d2d2d;
  line-height: 1.3;
  align-self: start;
  text-align: left;
}
.related.products .products li.product .woocommerce-loop-product__link .price {
  grid-column: 2;
  grid-row: 2;
  padding: 1.5rem 1.5rem 1.5rem 1rem;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #d97656;
  text-align: right;
  white-space: nowrap;
  align-self: start;
}
.related.products .products li.product .woocommerce-loop-product__link .price del {
  opacity: 0.6;
  font-size: 1rem;
  margin-right: 0.5rem;
}
.related.products .products li.product .woocommerce-loop-product__link .price ins {
  text-decoration: none;
}
.related.products .products li.product .add_to_cart_button,
.related.products .products li.product .product_type_simple,
.related.products .products li.product .product_type_variable,
.related.products .products li.product .button {
  grid-row: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin: 0;
  padding: 1rem 1.5rem;
  background-color: #d97656;
  color: #ffffff;
  border: none;
  border-radius: 0 0 12px 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  align-self: end;
}
.related.products .products li.product .add_to_cart_button::before,
.related.products .products li.product .product_type_simple::before,
.related.products .products li.product .product_type_variable::before,
.related.products .products li.product .button::before {
  content: "🛒";
  font-size: 1.125rem;
}
.related.products .products li.product .add_to_cart_button:hover,
.related.products .products li.product .product_type_simple:hover,
.related.products .products li.product .product_type_variable:hover,
.related.products .products li.product .button:hover {
  background-color: rgb(211.4376811594, 97.9463768116, 61.2623188406);
  transform: none;
}
.related.products .products li.product .add_to_cart_button.added,
.related.products .products li.product .product_type_simple.added,
.related.products .products li.product .product_type_variable.added,
.related.products .products li.product .button.added {
  background-color: rgb(224.6, 145.4, 119.8);
}