@charset "UTF-8";
/*!
Theme Name: EDU Inspirations
Theme URI: https://eduinspiration.pl
Author: CtrlZ Studio
Author URI: https://ctrlzstudio.pl
Description: Motyw WordPress dla sklepu z materiałami edukacyjnymi EDU Inspirations
Version: 6.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: edu-inspirations
Tags: education, ecommerce, woocommerce, modern, colorful
*/
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}
@keyframes wiggle {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes swing {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: top center;
  }
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
}
@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.1);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.1);
  }
  70% {
    transform: scale(1);
  }
}
.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

.animate-rotate {
  animation: rotate 20s linear infinite;
}

.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}

.animate-wiggle {
  animation: wiggle 1s ease-in-out infinite;
}

.animate-delay-1 {
  animation-delay: 0.1s;
}

.animate-delay-2 {
  animation-delay: 0.2s;
}

.animate-delay-3 {
  animation-delay: 0.3s;
}

.animate-delay-4 {
  animation-delay: 0.4s;
}

.animate-delay-5 {
  animation-delay: 0.5s;
}

.animate-delay-6 {
  animation-delay: 0.6s;
}

.animate-delay-7 {
  animation-delay: 0.7s;
}

.animate-delay-8 {
  animation-delay: 0.8s;
}

.animate-delay-9 {
  animation-delay: 0.9s;
}

.animate-delay-10 {
  animation-delay: 1s;
}

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

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

body {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #5A4A3A;
  background-color: #FFF8F0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: #3D2E1F;
  margin: 0;
}

h1 {
  font-size: 48px;
}
@media (max-width: 992px) {
  h1 {
    font-size: 40.8px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 33.6px;
  }
}

h2 {
  font-size: 40px;
}
@media (max-width: 992px) {
  h2 {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 32px;
}
@media (max-width: 992px) {
  h3 {
    font-size: 27.2px;
  }
}
@media (max-width: 768px) {
  h3 {
    font-size: 25.6px;
  }
}

h4 {
  font-size: 24px;
}
@media (max-width: 768px) {
  h4 {
    font-size: 21.6px;
  }
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p {
  margin: 0 0 16px;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #D4A574;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #B8885A;
}

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.btn:active {
  transform: translateY(0);
}
.btn--primary {
  background-color: #D4A574;
  color: #FFFFFF;
}
.btn--primary:hover {
  background-color: #B8885A;
  color: #FFFFFF;
}
.btn--secondary {
  background-color: #A67C52;
  color: #3D2E1F;
}
.btn--secondary:hover {
  background-color: #8B6642;
  color: #3D2E1F;
}
.btn--accent {
  background-color: #FFD93D;
  color: #3D2E1F;
}
.btn--accent:hover {
  background-color: #FFC700;
  color: #3D2E1F;
}
.btn--outline {
  background-color: transparent;
  border: 2px solid #D4A574;
  color: #D4A574;
}
.btn--outline:hover {
  background-color: #D4A574;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .btn {
    padding: 16px 24px;
    font-size: 14px;
  }
}

.main {
  min-height: calc(100vh - 80px);
}

body.woocommerce-cart .main,
body.woocommerce-account .main {
  margin-top: 40px;
  min-height: 800px;
}
@media (max-width: 768px) {
  body.woocommerce-cart .main,
  body.woocommerce-account .main {
    margin-top: 30px;
  }
}

section {
  padding: 96px 0;
}
@media (max-width: 992px) {
  section {
    padding: 64px 0;
  }
}
@media (max-width: 768px) {
  section {
    padding: 48px 0;
  }
}

.header {
  position: sticky;
  top: 48px;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 16px 0;
}
@media (max-width: 768px) {
  .header {
    top: 40px;
  }
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  flex-shrink: 0;
  z-index: 1001;
}
.header__logo a {
  display: block;
  line-height: 0;
}
.header__logo img {
  width: 130px;
  height: auto;
}
@media (max-width: 768px) {
  .header__logo img {
    width: 100px;
  }
}
.header__mobile-actions {
  display: none;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}
@media (max-width: 992px) {
  .header__mobile-actions {
    display: flex;
  }
}
.header__mobile-search {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #FFFFFF;
  color: #B8885A;
  border: 2px solid #B8885A;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header__mobile-search:hover, .header__mobile-search:active {
  background-color: #B8885A;
  color: #FFFFFF;
}
.header__mobile-search i {
  font-size: 16px;
}
.header__hamburger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 30px;
  height: 24px;
}
.header__hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #3D2E1F;
  border-radius: 8px;
  transition: all 0.15s ease;
}
.header__hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
@media (max-width: 992px) {
  .header__hamburger {
    display: flex;
  }
}
@media (max-width: 992px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: #FFFFFF;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 96px 32px 32px;
    overflow-y: auto;
    transition: right 0.3s ease;
    z-index: 1000;
  }
  .header__nav.is-active {
    right: 0;
  }
}
.header__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  list-style: none;
}
@media (max-width: 992px) {
  .header__menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
  }
}
.header .menu-item {
  position: relative;
}
.header .menu-item a {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #3D2E1F;
  padding: 8px 16px;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}
.header .menu-item a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 100%;
  height: 3px;
  background: #B8885A;
  transition: transform 0.3s ease;
}
.header .menu-item a:hover {
  color: #B8885A;
}
.header .menu-item a:hover::after {
  transform: translateX(-50%) scaleX(1);
}
@media (max-width: 992px) {
  .header .menu-item a {
    display: block;
    width: 100%;
    padding: 16px 0;
  }
}
.header .menu-item--contact a {
  background: linear-gradient(135deg, #D4A574, #B8885A);
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.header .menu-item--contact a::after {
  display: none;
}
.header .menu-item--contact a:hover {
  background: linear-gradient(135deg, #B8885A, #8B6642);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
@media (max-width: 992px) {
  .header .menu-item--contact a {
    width: 100%;
    text-align: center;
    display: block;
  }
}
.header .menu-item.menu-item-has-children > a::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 8px;
  font-size: 14px;
}
.header .menu-item.menu-item-has-children .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 16px;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}
@media (max-width: 992px) {
  .header .menu-item.menu-item-has-children .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 16px 0 0 24px;
  }
}
.header .menu-item.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 16px;
  border-radius: 8px;
}
.header .menu-item.menu-item-has-children .sub-menu li a:hover {
  background-color: #FFF8F0;
}
.header .menu-item.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .header__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(61, 46, 31, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
  }
  .header__overlay.is-active {
    opacity: 1;
    visibility: visible;
  }
}

.header__icons {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1024px) {
  .header__icons {
    display: none;
  }
}

.header__account {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #FFFFFF;
  color: #B8885A;
  border: 2px solid #B8885A;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.header__account:hover {
  background-color: #B8885A;
  transform: scale(1.1);
  color: #FFFFFF;
  border-color: #B8885A;
}
.header__account i {
  font-size: 18px;
}

.header__search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #FFFFFF;
  color: #B8885A;
  border: 2px solid #B8885A;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}
.header__search:hover {
  background-color: #B8885A;
  transform: scale(1.1);
  color: #FFFFFF;
  border-color: #B8885A;
}
.header__search i {
  font-size: 18px;
}

.header__cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #D4A574;
  color: #FFFFFF;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.header__cart:hover {
  background-color: #B8885A;
  transform: scale(1.1);
  color: #FFFFFF;
}
.header__cart i {
  font-size: 18px;
}

.header__cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #FFD93D;
  color: #3D2E1F;
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 700;
  min-width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header__icons-mobile {
  display: none;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid #E8E8E8;
  gap: 12px;
  justify-content: center;
}
@media (max-width: 1024px) {
  .header__icons-mobile {
    display: flex;
  }
}

.header__icon-mobile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.header__icon-mobile i {
  font-size: 20px;
}
.header__icon-mobile--search {
  background-color: #FFFFFF;
  color: #B8885A;
  border: 2px solid #B8885A;
  cursor: pointer;
}
.header__icon-mobile--search:hover {
  background-color: #B8885A;
  color: #FFFFFF;
  transform: scale(1.1);
}
.header__icon-mobile--account {
  background-color: #FFFFFF;
  color: #B8885A;
  border: 2px solid #B8885A;
}
.header__icon-mobile--account:hover {
  background-color: #B8885A;
  color: #FFFFFF;
  transform: scale(1.1);
}
.header__icon-mobile--cart {
  background-color: #D4A574;
  color: #FFFFFF;
}
.header__icon-mobile--cart:hover {
  background-color: #B8885A;
  transform: scale(1.1);
}

.header__icon-mobile-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #FFD93D;
  color: #3D2E1F;
  font-family: "Nunito", sans-serif;
  font-size: 12px;
  font-weight: 700;
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.footer {
  position: relative;
  background-color: #6a5e52;
  color: #FFFFFF;
  padding-top: 0;
  overflow: hidden;
}
.footer__decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.footer__decoration {
  position: absolute;
  opacity: 0.15;
  width: 80px;
  height: 80px;
}
.footer__decoration svg {
  width: 100%;
  height: 100%;
  color: #FFFFFF;
}
.footer__decoration--cloud-1 {
  top: 10%;
  left: 5%;
  animation: float 6s ease-in-out infinite;
  animation-delay: 0s;
}
.footer__decoration--sun {
  top: 15%;
  right: 8%;
  animation: rotate 30s linear infinite;
}
.footer__decoration--cloud-2 {
  bottom: 15%;
  right: 5%;
  animation: float 8s ease-in-out infinite;
  animation-delay: 2s;
}
.footer__decoration--heart {
  top: 50%;
  left: 10%;
  animation: heartbeat 3s ease-in-out infinite;
}
.footer__decoration--money {
  bottom: 20%;
  left: 15%;
  animation: pulse 4s ease-in-out infinite;
}
@media (max-width: 768px) {
  .footer__decoration {
    width: 60px;
    height: 60px;
    opacity: 0.1;
  }
}
.footer__content {
  position: relative;
  z-index: 1;
  padding: 64px 0;
}
@media (max-width: 768px) {
  .footer__content {
    padding: 48px 0;
  }
}
.footer__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
@media (max-width: 992px) {
  .footer__row {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .footer__row {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 992px) {
  .footer__col--about {
    grid-column: 1/-1;
  }
}
.footer__title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.footer__text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}
.footer__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  justify-content: flex-start;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  color: #FFFFFF;
  font-size: 18px;
  transition: all 0.3s ease;
}
.footer__social-link:hover {
  background-color: #D4A574;
  color: #FFFFFF;
  transform: translateY(-4px) rotate(5deg);
}
.footer__social-link i {
  font-size: 18px;
}
.footer__links {
  list-style: none;
}
.footer__links li {
  margin-bottom: 16px;
}
.footer__links li:last-child {
  margin-bottom: 0;
}
.footer__links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  transition: all 0.3s ease;
}
.footer__links a:hover {
  color: #FFFFFF;
  padding-left: 8px;
}
.footer__contact {
  list-style: none;
}
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.85);
}
.footer__contact li:last-child {
  margin-bottom: 0;
}
.footer__contact li i {
  color: #D4A574;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}
.footer__contact li a {
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
}
.footer__contact li a:hover {
  color: #FFFFFF;
}
.footer__bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 0;
}
.footer__bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 768px) {
  .footer__bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
}
.footer__autopay {
  margin-top: 24px;
  text-align: center;
}
.footer__autopay a {
  display: inline-block;
  transition: all 0.3s ease;
}
.footer__autopay a:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}
.footer__autopay img {
  max-width: 100%;
  height: auto;
}
.footer__copyright, .footer__credits {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}
.footer__copyright a, .footer__credits a {
  color: #D4A574;
  font-weight: 600;
  transition: all 0.3s ease;
}
.footer__copyright a:hover, .footer__credits a:hover {
  color: #E8C9A0;
}

.scroll-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 50px;
  height: 50px;
  background-color: #D4A574;
  color: #FFFFFF;
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1300;
}
.scroll-to-top:hover {
  background-color: #B8885A;
  transform: translateY(-4px);
}
.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top i {
  font-size: 18px;
}
@media (max-width: 768px) {
  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 24px;
    right: 24px;
  }
  .scroll-to-top i {
    font-size: 16px;
  }
}

.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  padding: 16px 24px;
  background-color: #4CAF50;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transform: translateX(400px);
  opacity: 0;
  transition: all 0.3s ease;
}
.notification.show {
  transform: translateX(0);
  opacity: 1;
}
.notification i {
  font-size: 20px;
}

.cart-notification {
  position: fixed;
  top: 100px;
  right: 20px;
  max-width: 400px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #B8E6D5 0%, #C1F7DC 100%);
  border-left: 4px solid #4CAF50;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 16px;
  animation: slideInRight 0.3s ease-out;
}
@media (max-width: 768px) {
  .cart-notification {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}
.cart-notification i {
  font-size: 24px;
  color: #4CAF50;
  flex-shrink: 0;
}
.cart-notification span {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #2D3142;
  flex: 1;
}
.cart-notification__link {
  background: #4CAF50;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: "Nunito", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.cart-notification__link:hover {
  background: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
  color: white;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(400px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.woocommerce-message {
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: transparent !important;
}
.woocommerce-message::before {
  display: none !important;
}

.top-bar {
  background: linear-gradient(135deg, #FFD93D 0%, #FFC857 100%);
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1001;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.top-bar__container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-bar__social {
  display: flex;
  gap: 20px;
  align-items: center;
}
.top-bar__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #333;
  transition: all 0.3s ease;
}
.top-bar__social-link i {
  font-size: 14px;
}
.top-bar__social-link:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .top-bar {
    padding: 6px 0;
  }
  .top-bar__social {
    gap: 15px;
  }
  .top-bar__social-link {
    width: 28px;
    height: 28px;
  }
  .top-bar__social-link i {
    font-size: 12px;
  }
}

.edu-cart-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1210;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.edu-cart-popup.is-active {
  opacity: 1;
  visibility: visible;
}
.edu-cart-popup.is-active .edu-cart-popup__content {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.edu-cart-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(61, 46, 31, 0.6);
  backdrop-filter: blur(4px);
}
.edu-cart-popup__content {
  position: relative;
  width: 90%;
  max-width: 700px;
  max-height: 90vh;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (max-width: 768px) {
  .edu-cart-popup__content {
    padding: 16px 16px 24px;
    max-height: 95vh;
    border-radius: 16px;
  }
}
.edu-cart-popup__close {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF8F0;
  border-radius: 9999px;
  color: #5A4A3A;
  font-size: 18px;
  transition: all 0.3s ease;
}
.edu-cart-popup__close:hover {
  background: #D4A574;
  color: #FFFFFF;
  transform: rotate(90deg);
}
@media (max-width: 768px) {
  .edu-cart-popup__close {
    width: 32px;
    height: 32px;
    top: 8px;
    right: 8px;
    font-size: 16px;
  }
}
.edu-cart-popup__header {
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .edu-cart-popup__header {
    margin-bottom: 16px;
  }
}
.edu-cart-popup__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  border-radius: 9999px;
  color: #FFFFFF;
  font-size: 2rem;
  animation: popIn 0.5s ease;
}
@media (max-width: 768px) {
  .edu-cart-popup__icon {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
}
.edu-cart-popup__title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .edu-cart-popup__title {
    font-size: 18px;
    margin-bottom: 4px;
  }
}
.edu-cart-popup__subtitle {
  color: #7A6A5A;
  font-size: 16px;
}
@media (max-width: 768px) {
  .edu-cart-popup__subtitle {
    font-size: 14px;
  }
}
.edu-cart-popup__slider {
  margin-bottom: 48px;
  position: relative;
  padding: 0 50px;
}
@media (max-width: 768px) {
  .edu-cart-popup__slider {
    padding: 0 36px;
    margin-bottom: 24px;
  }
}
.edu-cart-popup__slider .swiper {
  padding: 16px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .edu-cart-popup__slider .swiper {
    padding: 8px 0;
  }
}
.edu-cart-popup__arrow {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 2px solid #D4A574;
  border-radius: 50%;
  color: #D4A574;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.edu-cart-popup__arrow--prev {
  left: 0;
}
.edu-cart-popup__arrow--next {
  right: 0;
}
.edu-cart-popup__arrow:hover:not(:disabled):not(.swiper-button-disabled) {
  background: #D4A574;
  color: #FFFFFF;
}
.edu-cart-popup__arrow:disabled, .edu-cart-popup__arrow.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .edu-cart-popup__arrow {
    width: 28px;
    height: 28px;
  }
  .edu-cart-popup__arrow i {
    font-size: 0.7rem;
  }
}
.edu-cart-popup__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .edu-cart-popup__pagination {
    margin-top: 8px;
    gap: 4px;
  }
}
.edu-cart-popup__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #E8E8E8;
  border-radius: 9999px;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (max-width: 768px) {
  .edu-cart-popup__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.edu-cart-popup__pagination .swiper-pagination-bullet-active {
  background: #D4A574;
  width: 24px;
}
@media (max-width: 768px) {
  .edu-cart-popup__pagination .swiper-pagination-bullet-active {
    width: 18px;
  }
}
.edu-cart-popup__product {
  background: #FFFCF7;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .edu-cart-popup__product {
    padding: 8px;
    border-radius: 12px;
  }
}
.edu-cart-popup__product:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.edu-cart-popup__product-link {
  color: inherit;
  text-decoration: none;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.edu-cart-popup__product-image {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: #FFFFFF;
}
@media (max-width: 768px) {
  .edu-cart-popup__product-image {
    margin-bottom: 8px;
    border-radius: 8px;
  }
}
.edu-cart-popup__product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.edu-cart-popup__product:hover .edu-cart-popup__product-image img {
  transform: scale(1.05);
}
.edu-cart-popup__product-name {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #3D2E1F;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}
@media (max-width: 768px) {
  .edu-cart-popup__product-name {
    font-size: 12px;
    margin-bottom: 4px;
    min-height: 2.2em;
  }
}
.edu-cart-popup__product-price {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #D4A574;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .edu-cart-popup__product-price {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.edu-cart-popup__actions {
  display: flex;
  gap: 24px;
  justify-content: center;
}
@media (max-width: 768px) {
  .edu-cart-popup__actions {
    flex-direction: column;
    gap: 8px;
  }
}
.edu-cart-popup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
@media (max-width: 768px) {
  .edu-cart-popup__btn {
    padding: 8px 24px;
    font-size: 14px;
    gap: 4px;
  }
}
.edu-cart-popup__btn--primary {
  background: linear-gradient(135deg, #D4A574, #B8885A);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}
.edu-cart-popup__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}
.edu-cart-popup__btn--secondary {
  background: #FFF8F0;
  color: #5A4A3A;
}
.edu-cart-popup__btn--secondary:hover {
  background: #E8E8E8;
}

.bestseller-popup__product-add-to-cart {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 16px;
  background: #FFD93D;
  color: #3D2E1F;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: auto;
}
@media (max-width: 768px) {
  .bestseller-popup__product-add-to-cart {
    padding: 8px;
    font-size: 11px;
    gap: 4px;
    border-radius: 8px;
  }
}
.bestseller-popup__product-add-to-cart:hover:not(:disabled) {
  background: #FFC700;
  transform: translateY(-2px);
}
.bestseller-popup__product-add-to-cart:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.bestseller-popup__product-add-to-cart.loading {
  background: #E8E8E8;
}
.bestseller-popup__product-add-to-cart.added {
  background: #4CAF50;
  color: #FFFFFF;
}
.bestseller-popup__product-add-to-cart.in-cart {
  background: #E8E8E8;
  color: #7A6A5A;
}

.edu-error-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1210;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.edu-error-popup.is-active {
  opacity: 1;
  visibility: visible;
}
.edu-error-popup.is-active .edu-error-popup__content {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.edu-error-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(61, 46, 31, 0.6);
  backdrop-filter: blur(4px);
}
.edu-error-popup__content {
  position: relative;
  width: 90%;
  max-width: 450px;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  text-align: center;
  transform: scale(0.9) translateY(20px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (max-width: 768px) {
  .edu-error-popup__content {
    padding: 32px;
  }
}
.edu-error-popup__close {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFF8F0;
  border-radius: 9999px;
  color: #5A4A3A;
  transition: all 0.3s ease;
}
.edu-error-popup__close:hover {
  background: #e74c3c;
  color: #FFFFFF;
  transform: rotate(90deg);
}
.edu-error-popup__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  border-radius: 9999px;
  color: #FFFFFF;
  font-size: 2rem;
  animation: shake 0.5s ease;
}
.edu-error-popup__title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 16px;
}
.edu-error-popup__message {
  color: #7A6A5A;
  font-size: 16px;
  margin-bottom: 48px;
  line-height: 1.6;
}
.edu-error-popup__actions {
  display: flex;
  gap: 24px;
  justify-content: center;
}
@media (max-width: 768px) {
  .edu-error-popup__actions {
    flex-direction: column;
  }
}
.edu-error-popup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.edu-error-popup__btn--primary {
  background: linear-gradient(135deg, #D4A574, #B8885A);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}
.edu-error-popup__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}
.edu-error-popup__btn--secondary {
  background: #FFF8F0;
  color: #5A4A3A;
}
.edu-error-popup__btn--secondary:hover {
  background: #E8E8E8;
}

body.edu-popup-open {
  overflow: hidden;
}

.product-card__cart.is-loading,
.edu-add-to-cart-btn.is-loading {
  pointer-events: none;
}
.product-card__cart.is-loading i,
.edu-add-to-cart-btn.is-loading i {
  animation: spin 1s linear infinite;
}
.product-card__cart.is-added,
.edu-add-to-cart-btn.is-added {
  background: #4CAF50 !important;
  color: #FFFFFF !important;
  border-color: #4CAF50 !important;
}
.product-card__cart.is-error,
.edu-add-to-cart-btn.is-error {
  background: #e74c3c !important;
  color: #FFFFFF !important;
  border-color: #e74c3c !important;
}

.header__cart-count.bounce {
  animation: bounce 0.5s ease;
}

@keyframes popIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes bounce {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
}
.bestseller-popup,
.error-popup {
  display: none !important;
}

.swiper {
  width: 100%;
  padding: 8px 0;
}

.swiper-slide {
  height: auto;
  display: flex;
}

.collections {
  background-color: #FFFFFF;
  padding: 64px 0;
}
@media (max-width: 768px) {
  .collections {
    padding: 48px 0;
  }
}
.collections__main-title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #3D2E1F;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}
.collections__main-title::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #D4A574, #B8885A);
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .collections__main-title {
    font-size: 32px;
  }
}
.collections__tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .collections__tabs {
    gap: 8px;
    margin-bottom: 32px;
  }
}
.collections__tab {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 16px 32px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #5A4A3A;
  background-color: transparent;
  border: 2px solid #E8E8E8;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.collections__tab:hover {
  color: #D4A574;
  border-color: #D4A574;
  transform: translateY(-2px);
}
.collections__tab--active {
  color: #FFFFFF;
  background: linear-gradient(135deg, #D4A574, #B8885A);
  border-color: #D4A574;
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}
@media (max-width: 768px) {
  .collections__tab {
    padding: 8px 24px;
    font-size: 14px;
  }
}
.collections__content {
  position: relative;
}
.collections__slider {
  display: none;
}
.collections__slider--active {
  display: block;
}
.collections__slider-wrapper {
  position: relative;
  padding: 0 50px;
}
@media (max-width: 768px) {
  .collections__slider-wrapper {
    padding: 0 44px;
  }
}
.collections__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: #FFFFFF;
  border: 2px solid #D4A574;
  border-radius: 9999px;
  color: #D4A574;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  z-index: 10;
}
.collections__arrow:hover:not(:disabled):not(.swiper-button-disabled) {
  background-color: #D4A574;
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
}
.collections__arrow:disabled, .collections__arrow.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.collections__arrow--prev {
  left: 0;
}
@media (max-width: 768px) {
  .collections__arrow--prev {
    left: 8px;
  }
}
.collections__arrow--next {
  right: 0;
}
@media (max-width: 768px) {
  .collections__arrow--next {
    right: 8px;
  }
}
@media (max-width: 768px) {
  .collections__arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
.collections__no-products {
  text-align: center;
  padding: 48px;
  color: #7A6A5A;
  font-size: 18px;
}

.sale-products {
  background: linear-gradient(180deg, #FFFCF7 0%, #FFFFFF 100%);
  padding: 64px 0;
}
@media (max-width: 768px) {
  .sale-products {
    padding: 48px 0;
  }
}
.sale-products__title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #3D2E1F;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}
.sale-products__title::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #D4A574, #FFD93D);
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .sale-products__title {
    font-size: 32px;
  }
}
.sale-products__slider {
  position: relative;
  padding: 0 50px;
}
@media (max-width: 768px) {
  .sale-products__slider {
    padding: 0 44px;
  }
}
.sale-products__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: #FFFFFF;
  border: 2px solid #D4A574;
  border-radius: 9999px;
  color: #D4A574;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  z-index: 10;
}
.sale-products__arrow:hover:not(:disabled):not(.swiper-button-disabled) {
  background-color: #D4A574;
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
}
.sale-products__arrow:disabled, .sale-products__arrow.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.sale-products__arrow--prev {
  left: 0;
}
@media (max-width: 768px) {
  .sale-products__arrow--prev {
    left: 8px;
  }
}
.sale-products__arrow--next {
  right: 0;
}
@media (max-width: 768px) {
  .sale-products__arrow--next {
    right: 8px;
  }
}
@media (max-width: 768px) {
  .sale-products__arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
.sale-products__no-products {
  text-align: center;
  padding: 48px;
  color: #7A6A5A;
  font-size: 18px;
}

.reviews {
  background-color: #FFF8F0;
  padding: 64px 0;
}
@media (max-width: 768px) {
  .reviews {
    padding: 48px 0;
  }
}
.reviews__title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #3D2E1F;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}
.reviews__title::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFD93D, #FFC700);
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .reviews__title {
    font-size: 32px;
  }
}
.reviews__slider {
  position: relative;
  padding: 0 50px;
}
@media (max-width: 768px) {
  .reviews__slider {
    padding: 0 44px;
  }
}
.reviews__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: #FFFFFF;
  border: 2px solid #D4A574;
  border-radius: 9999px;
  color: #D4A574;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  z-index: 10;
}
.reviews__arrow:hover:not(:disabled):not(.swiper-button-disabled) {
  background-color: #D4A574;
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
}
.reviews__arrow:disabled, .reviews__arrow.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.reviews__arrow--prev {
  left: 0;
}
@media (max-width: 768px) {
  .reviews__arrow--prev {
    left: 8px;
  }
}
.reviews__arrow--next {
  right: 0;
}
@media (max-width: 768px) {
  .reviews__arrow--next {
    right: 8px;
  }
}
@media (max-width: 768px) {
  .reviews__arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
.reviews__slide {
  height: auto;
}
.reviews__item {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.reviews__item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.reviews__header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.reviews__avatar {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  object-fit: cover;
  border: 3px solid #E8C9A0;
}
.reviews__avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #E8C9A0, #D4A574);
  color: #FFFFFF;
  font-size: 18px;
}
.reviews__meta {
  flex: 1;
}
.reviews__author {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 4px;
}
.reviews__rating {
  display: flex;
  gap: 2px;
}
.reviews__rating i {
  font-size: 14px;
  color: #E8E8E8;
}
.reviews__rating i.reviews__star--active {
  color: #FFD93D;
}
.reviews__content {
  color: #5A4A3A;
  line-height: 1.7;
  font-size: 16px;
}

.product-card {
  position: relative;
  background-color: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.product-card:hover .product-card__cart {
  opacity: 1;
  transform: translateY(0);
}
.product-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
}
.product-card__link:hover {
  color: inherit;
}
.product-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #FFF8F0;
  overflow: hidden;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.product-card__image:hover img {
  transform: scale(1.05);
}
.product-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 9999px;
  z-index: 5;
  min-width: 50px;
  text-align: center;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.product-card__badge--sale {
  background: linear-gradient(135deg, #D4A574, #B8885A);
  color: #FFFFFF;
}
.product-card__badge--new {
  background: linear-gradient(135deg, #FFD93D, #FFC700);
  color: #3D2E1F;
}
.product-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #3D2E1F;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}
.product-card__rating {
  margin-bottom: 8px;
}
.product-card__rating .star-rating {
  font-size: 14px;
  color: #FFD93D;
}
.product-card__price {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #D4A574;
  margin-top: auto;
}
.product-card__price del {
  font-size: 16px;
  font-weight: 400;
  color: #7A6A5A;
  margin-right: 8px;
}
.product-card__omnibus {
  margin-top: 8px;
  padding: 8px;
  background: #FFF8F0;
  border-radius: 8px;
  font-size: 11px;
  color: #7A6A5A;
  display: flex;
  align-items: center;
  gap: 4px;
}
.product-card__omnibus i {
  color: #D4A574;
}
.product-card__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #FFD93D, #FFC700);
  color: #3D2E1F;
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 5;
}
.product-card__cart:hover {
  transform: translateY(0) scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 217, 61, 0.4);
}
.product-card__cart i {
  font-size: 16px;
}
.product-card__cart.is-loading {
  background: #E8E8E8;
  opacity: 1;
  transform: translateY(0);
}
.product-card__cart.is-loading i {
  animation: spin 1s linear infinite;
}
.product-card__cart.is-added {
  background: #4CAF50;
  color: #FFFFFF;
  opacity: 1;
  transform: translateY(0);
}
.product-card__cart.is-error {
  background: #e74c3c;
  color: #FFFFFF;
  opacity: 1;
  transform: translateY(0);
}

.related-products {
  background: #FFFFFF;
  padding: 64px 0;
}
@media (max-width: 768px) {
  .related-products {
    padding: 48px 0;
  }
}
.related-products__title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #3D2E1F;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}
.related-products__title::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #D4A574, #B8885A);
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .related-products__title {
    font-size: 32px;
  }
}
.related-products__slider {
  position: relative;
  padding: 0 50px;
}
@media (max-width: 768px) {
  .related-products__slider {
    padding: 0 44px;
  }
}
.related-products__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: #FFFFFF;
  border: 2px solid #D4A574;
  border-radius: 9999px;
  color: #D4A574;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  z-index: 10;
}
.related-products__arrow:hover:not(:disabled):not(.swiper-button-disabled) {
  background-color: #D4A574;
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
}
.related-products__arrow:disabled, .related-products__arrow.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.related-products__arrow--prev {
  left: 0;
}
@media (max-width: 768px) {
  .related-products__arrow--prev {
    left: 8px;
  }
}
.related-products__arrow--next {
  right: 0;
}
@media (max-width: 768px) {
  .related-products__arrow--next {
    right: 8px;
  }
}
@media (max-width: 768px) {
  .related-products__arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .product-card__cart {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
  }
}
.header__search {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #FFFFFF;
  color: #D4A574;
  border: 2px solid #D4A574;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.header__search:hover {
  background-color: #D4A574;
  color: #FFFFFF;
  transform: scale(1.1);
}
.header__search i {
  font-size: 16px;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 1210;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.search-overlay--active {
  opacity: 1;
  visibility: visible;
}
.search-overlay__inner {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 48px;
}
@media (max-width: 768px) {
  .search-overlay__inner {
    padding: 32px 24px;
  }
}
.search-overlay__close {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  position: fixed;
  top: 32px;
  right: 32px;
  width: 50px;
  height: 50px;
  background-color: rgba(212, 165, 116, 0.1);
  color: #D4A574;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}
.search-overlay__close:hover {
  background-color: #D4A574;
  color: #FFFFFF;
  transform: rotate(90deg);
}
.search-overlay__close i {
  font-size: 18px;
}
@media (max-width: 768px) {
  .search-overlay__close {
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
  }
}
.search-overlay__container {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 80px;
}
@media (max-width: 768px) {
  .search-overlay__container {
    padding-top: 60px;
  }
}
.search-overlay__input-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 48px;
}
.search-overlay__input-icon {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #D4A574;
  pointer-events: none;
}
@media (max-width: 768px) {
  .search-overlay__input-icon {
    left: 24px;
    font-size: 18px;
  }
}
.search-overlay__input {
  width: 100%;
  padding: 32px 64px 32px 60px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #3D2E1F;
  background-color: #FFFFFF;
  border: 3px solid #D4A574;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.search-overlay__input:focus {
  outline: none;
  border-color: #B8885A;
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.2);
}
.search-overlay__input::placeholder {
  color: rgba(90, 74, 58, 0.5);
}
@media (max-width: 768px) {
  .search-overlay__input {
    padding: 24px 48px 24px 50px;
    font-size: 18px;
  }
}
.search-overlay__clear {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  color: #7A6A5A;
  font-size: 20px;
  transition: all 0.3s ease;
}
.search-overlay__clear:hover {
  color: #D4A574;
  transform: translateY(-50%) scale(1.2);
}
@media (max-width: 768px) {
  .search-overlay__clear {
    right: 24px;
    font-size: 18px;
  }
}
.search-overlay__results {
  max-width: 1200px;
  margin: 0 auto;
}
.search-overlay__loading, .search-overlay__error {
  text-align: center;
  padding: 64px;
  font-size: 18px;
  color: #5A4A3A;
}
.search-overlay__loading i, .search-overlay__error i {
  font-size: 50px;
  color: #D4A574;
  margin-bottom: 24px;
}
.search-overlay__empty {
  text-align: center;
  padding: 64px;
}
.search-overlay__empty i {
  font-size: 80px;
  color: #D4A574;
  opacity: 0.3;
  margin-bottom: 32px;
}
.search-overlay__empty p {
  font-size: 18px;
  color: #7A6A5A;
}
.search-overlay__no-results {
  text-align: center;
  padding: 64px;
}
.search-overlay__no-results i {
  font-size: 80px;
  color: #D4A574;
  opacity: 0.3;
  margin-bottom: 32px;
}
.search-overlay__no-results h3 {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 24px;
}
.search-overlay__no-results p {
  font-size: 18px;
  color: #7A6A5A;
}
.search-overlay__products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .search-overlay__products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .search-overlay__products {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 576px) {
  .search-overlay__products {
    grid-template-columns: 1fr;
  }
}
.search-overlay__view-all {
  text-align: center;
  padding: 32px 0;
  border-top: 2px solid #E8E8E8;
}
.search-overlay__view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 24px 64px;
  background-color: #D4A574;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.search-overlay__view-all-btn:hover {
  background-color: #B8885A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 165, 116, 0.4);
}
.search-overlay__view-all-btn i {
  font-size: 16px;
}
@media (max-width: 768px) {
  .search-overlay__view-all-btn {
    font-size: 16px;
    padding: 16px 32px;
  }
}

.search-product {
  position: relative;
  background-color: #FFFFFF;
  border: 2px solid #E8E8E8;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.search-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border-color: #D4A574;
}
.search-product:hover .product-card__cart {
  opacity: 1;
  transform: translateY(0);
}
.search-product__link {
  display: block;
  text-decoration: none;
}
.search-product__image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: #FFF8F0;
}
.search-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.search-product:hover .search-product__image img {
  transform: scale(1.1);
}
.search-product__content {
  padding: 24px;
}
.search-product__title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #3D2E1F;
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.search-product__price {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #D4A574;
}
.search-product__price del {
  font-size: 16px;
  color: #7A6A5A;
  margin-right: 8px;
}
.search-product__price ins {
  text-decoration: none;
}
@media (max-width: 768px) {
  .search-product .product-card__cart {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }
}

body.search-overlay-open {
  overflow: hidden;
}

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    min-height: 500px;
  }
}
@media (max-width: 576px) {
  .hero {
    min-height: 400px;
  }
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(61, 46, 31, 0.6) 0%, rgba(61, 46, 31, 0.4) 100%);
  z-index: 1;
}
.hero__container {
  position: relative;
  z-index: 2;
}
.hero__content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 0;
}
@media (max-width: 768px) {
  .hero__content {
    padding: 48px 0;
  }
}
.hero__title {
  font-family: "Poppins", sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 32px;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(61, 46, 31, 0.5);
}
@media (max-width: 992px) {
  .hero__title {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 2rem;
  }
}
.hero__subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 48px;
  text-shadow: 0 2px 10px rgba(61, 46, 31, 0.3);
  white-space: pre-line;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 18px;
  }
}
@media (max-width: 576px) {
  .hero__subtitle {
    font-size: 16px;
  }
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 24px 64px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 8px 30px rgba(212, 165, 116, 0.4);
  transition: all 0.3s ease;
}
.hero__cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212, 165, 116, 0.6);
}
.hero__cta i {
  font-size: 16px;
  transition: all 0.3s ease;
}
.hero__cta:hover i {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .hero__cta {
    font-size: 16px;
    padding: 16px 32px;
  }
}

.category-tiles {
  background-color: #fff;
}
.category-tiles__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 992px) {
  .category-tiles__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .category-tiles__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.category-tiles__item {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.category-tiles__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--tile-color, #D4A574);
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.3s ease;
}
.category-tiles__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.category-tiles__item:hover::before {
  transform: scaleX(1);
}
.category-tiles__item:hover .category-tiles__image {
  transform: scale(1.05);
}
.category-tiles__item:hover .category-tiles__arrow {
  transform: translateX(8px);
  opacity: 1;
}
.category-tiles__item--placeholder {
  cursor: default;
  opacity: 0.7;
}
.category-tiles__item--placeholder:hover {
  transform: none;
}
.category-tiles__item--placeholder:hover .category-tiles__image {
  transform: none;
}
.category-tiles__image {
  width: 100%;
  height: 200px;
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.category-tiles__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 768px) {
  .category-tiles__image {
    height: 180px;
  }
}
.category-tiles__title {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .category-tiles__title {
    font-size: 20px;
  }
}
.category-tiles__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--tile-color, #D4A574);
  font-size: 20px;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.cta-section {
  background: linear-gradient(135deg, #FFFCF7 0%, #FAF3E8 100%);
}
.cta-section--contact {
  background: #FFFCF7;
}
.cta-section--orders {
  background: #FFFCF7;
}
.cta-section__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 992px) {
  .cta-section__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.cta-section__content--reverse .cta-section__text {
  order: 2;
}
@media (max-width: 992px) {
  .cta-section__content--reverse .cta-section__text {
    order: 1;
  }
}
.cta-section__content--reverse .cta-section__image {
  order: 1;
}
@media (max-width: 992px) {
  .cta-section__content--reverse .cta-section__image {
    order: 2;
  }
}
.cta-section__text {
  animation: slideInLeft 0.8s ease-out;
}
@media (max-width: 992px) {
  .cta-section__text {
    text-align: center;
  }
}
.cta-section__title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #3D2E1F;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .cta-section__title {
    font-size: 32px;
  }
}
.cta-section__description {
  font-size: 18px;
  line-height: 1.8;
  color: #5A4A3A;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .cta-section__description {
    font-size: 16px;
  }
}
.cta-section__image {
  position: relative;
  animation: slideInRight 0.8s ease-out;
}
@media (max-width: 992px) {
  .cta-section__image {
    max-width: 500px;
    margin: 0 auto;
  }
}
.cta-section__image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.sale-products {
  background-color: #fff;
}
.sale-products__title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #3D2E1F;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}
.sale-products__title::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #D4A574, #B8885A);
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .sale-products__title {
    font-size: 32px;
  }
}
.sale-products__slider {
  position: relative;
  padding: 0 48px;
}
@media (max-width: 768px) {
  .sale-products__slider {
    padding: 0;
  }
}
.sale-products__slides {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .sale-products__slides {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .sale-products__slides {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.sale-products__slide {
  animation: scaleIn 0.5s ease-out;
}
.sale-products__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #FFFFFF;
  border: 2px solid #D4A574;
  border-radius: 9999px;
  color: #D4A574;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  z-index: 10;
}
.sale-products__arrow:hover {
  background-color: #D4A574;
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
}
.sale-products__arrow--prev {
  left: 0;
}
@media (max-width: 768px) {
  .sale-products__arrow--prev {
    left: 16px;
  }
}
.sale-products__arrow--next {
  right: 0;
}
@media (max-width: 768px) {
  .sale-products__arrow--next {
    right: 16px;
  }
}
@media (max-width: 768px) {
  .sale-products__arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
.sale-products__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .sale-products__dots {
    margin-top: 24px;
  }
}
.sale-products__dot {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  width: 12px;
  height: 12px;
  background-color: #E8E8E8;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.sale-products__dot:hover {
  background-color: #E8C9A0;
  transform: scale(1.2);
}
.sale-products__dot--active {
  background-color: #D4A574;
  width: 32px;
}
.sale-products__no-products {
  text-align: center;
  padding: 48px;
  color: #7A6A5A;
  font-size: 18px;
}

.reviews {
  background-color: #FFFFFF;
}
.reviews__title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #3D2E1F;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}
.reviews__title::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #A67C52, #C9B8A3);
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .reviews__title {
    font-size: 32px;
  }
}
.reviews__slider {
  position: relative;
  overflow: hidden;
}
.reviews__slides {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .reviews__slides {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .reviews__slides {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.reviews__slide {
  animation: scaleIn 0.5s ease-out;
}
.reviews__item {
  background-color: #FFFCF7;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: fadeIn 0.8s ease-out;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.reviews__item:nth-child(1) {
  animation-delay: 0.1s;
}
.reviews__item:nth-child(2) {
  animation-delay: 0.2s;
}
.reviews__item:nth-child(3) {
  animation-delay: 0.3s;
}
.reviews__item:nth-child(4) {
  animation-delay: 0.4s;
}
.reviews__item:nth-child(5) {
  animation-delay: 0.5s;
}
.reviews__item:nth-child(6) {
  animation-delay: 0.6s;
}
.reviews__item:nth-child(7) {
  animation-delay: 0.7s;
}
.reviews__item:nth-child(8) {
  animation-delay: 0.8s;
}
.reviews__item:nth-child(9) {
  animation-delay: 0.9s;
}
.reviews__item:nth-child(10) {
  animation-delay: 1s;
}
.reviews__header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.reviews__avatar {
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  object-fit: cover;
  border: 3px solid #A67C52;
  flex-shrink: 0;
}
.reviews__avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #A67C52, #C9B8A3);
  color: #FFFFFF;
  font-size: 20px;
}
.reviews__meta {
  flex: 1;
}
.reviews__author {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 8px;
}
.reviews__rating {
  display: flex;
  gap: 4px;
}
.reviews__rating i {
  font-size: 14px;
  color: #E8E8E8;
}
.reviews__rating i.reviews__star--active {
  color: #FFD93D;
}
.reviews__content {
  font-size: 16px;
  line-height: 1.7;
  color: #5A4A3A;
  font-style: italic;
}

.gallery-realizacji {
  padding: 80px 0;
  background: #FFFCF7;
}
.gallery-realizacji__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.gallery-realizacji__title {
  font-size: 40px;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
  text-align: center;
  margin-bottom: 60px;
  background: #3D2E1F;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gallery-realizacji .edu-gallery-swiper {
  overflow: hidden;
  padding: 10px 0;
}
.gallery-realizacji__slider {
  position: relative;
  padding: 0 50px;
}
@media (max-width: 768px) {
  .gallery-realizacji__slider {
    padding: 0 44px;
  }
}
.gallery-realizacji__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: #FFFFFF;
  border: 2px solid #D4A574;
  border-radius: 9999px;
  color: #D4A574;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  z-index: 10;
}
.gallery-realizacji__arrow:hover:not(:disabled):not(.swiper-button-disabled) {
  background-color: #D4A574;
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.1);
}
.gallery-realizacji__arrow:disabled, .gallery-realizacji__arrow.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.gallery-realizacji__arrow--prev {
  left: 0;
}
@media (max-width: 768px) {
  .gallery-realizacji__arrow--prev {
    left: 8px;
  }
}
.gallery-realizacji__arrow--next {
  right: 0;
}
@media (max-width: 768px) {
  .gallery-realizacji__arrow--next {
    right: 8px;
  }
}
@media (max-width: 768px) {
  .gallery-realizacji__arrow {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}
.gallery-realizacji__item {
  background: #FFFFFF;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  aspect-ratio: 1;
  border-radius: 16px;
}
.gallery-realizacji__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(167, 124, 82, 0.25);
}
.gallery-realizacji__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .gallery-realizacji {
    padding: 60px 0;
  }
  .gallery-realizacji__title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

.faq-search {
  padding: 40px 0 20px;
  background: transparent;
}
.faq-search__container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}
.faq-search__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 2px solid rgba(167, 124, 82, 0.2);
  border-radius: 50px;
  padding: 5px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.faq-search__wrapper:focus-within {
  border-color: #D4A574;
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.2);
}
.faq-search__icon {
  color: #D4A574;
  font-size: 20px;
  margin-right: 15px;
  flex-shrink: 0;
}
.faq-search__input {
  flex: 1;
  border: none;
  outline: none;
  padding: 15px 0;
  font-size: 16px;
  font-family: "Nunito", sans-serif;
  color: #5A4A3A;
  background: transparent;
}
.faq-search__input::placeholder {
  color: #999;
}
.faq-search__clear {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: #999;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8);
}
.faq-search__clear--visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.faq-search__clear:hover {
  background: rgba(212, 165, 116, 0.1);
  color: #D4A574;
}
.faq-search__clear i {
  font-size: 14px;
}
.faq-search__hint {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: #999;
}
@media (max-width: 768px) {
  .faq-search {
    padding: 30px 0 15px;
  }
  .faq-search__wrapper {
    padding: 3px 15px;
  }
  .faq-search__icon {
    font-size: 18px;
    margin-right: 12px;
  }
  .faq-search__input {
    padding: 12px 0;
    font-size: 15px;
  }
  .faq-search__hint {
    font-size: 12px;
  }
}

.faq-no-results {
  display: none;
  text-align: center;
  padding: 60px 20px;
  max-width: 500px;
  margin: 0 auto;
}
.faq-no-results--visible {
  display: block;
}
.faq-no-results__icon {
  font-size: 48px;
  color: #ddd;
  margin-bottom: 20px;
}
.faq-no-results__title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}
.faq-no-results__text {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}
.faq-no-results__text a {
  color: #D4A574;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.faq-no-results__text a:hover {
  color: #B8885A;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .faq-no-results {
    padding: 40px 20px;
  }
  .faq-no-results__icon {
    font-size: 40px;
  }
  .faq-no-results__title {
    font-size: 20px;
  }
  .faq-no-results__text {
    font-size: 14px;
  }
}

.faq-highlight {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.3) 0%, rgba(232, 201, 160, 0.4) 100%);
  color: inherit;
  padding: 2px 4px;
  border-radius: 3px;
  font-weight: inherit;
}

.faq-section__title {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin: 40px 0 10px;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}
.faq-section__title:first-child {
  margin-top: 0;
}
.faq-section__title--hidden {
  display: none;
}
@media (max-width: 768px) {
  .faq-section__title {
    font-size: 18px;
    margin: 30px 0 8px;
  }
}

.faq-accordion__item {
  margin-top: 20px;
  margin-bottom: 15px;
  background: #fff;
  border: 2px solid rgba(167, 124, 82, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-accordion__item--hidden {
  display: none;
}
.faq-accordion__item--active {
  border-color: #D4A574 !important;
}
.faq-accordion__item--active .faq-accordion__header {
  background: #D4A574 !important;
}
.faq-accordion__item--active .faq-accordion__icon {
  transform: rotate(180deg);
  color: #fff !important;
}
.faq-accordion__item--active .faq-accordion__question {
  color: #fff !important;
}
.faq-accordion__header {
  width: 100%;
  padding: 20px 25px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}
.faq-accordion__header:hover {
  background: rgba(199, 178, 153, 0.1);
}
.faq-accordion__question {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  flex: 1;
}
.faq-accordion__icon {
  color: #D4A574;
  font-size: 18px;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}
.faq-accordion__content {
  display: none;
  padding: 0 25px 30px 25px;
  animation: slideDown 0.3s ease;
}
.faq-accordion__answer {
  font-size: 15px;
  line-height: 1.9;
  color: #666;
  margin: 0;
  padding-top: 30px;
}
.faq-accordion__answer ul, .faq-accordion__answer ol {
  margin: 15px 0;
  padding-left: 30px;
}
.faq-accordion__answer ul li {
  list-style-type: disc;
  margin-bottom: 8px;
  color: #666;
}
.faq-accordion__answer ol li {
  list-style-type: decimal;
  margin-bottom: 8px;
  color: #666;
}
.faq-accordion__answer strong {
  color: #333;
  font-weight: 600;
}
.faq-accordion__answer a {
  color: #D4A574;
  text-decoration: none;
  transition: color 0.3s ease;
}
.faq-accordion__answer a:hover {
  color: #B8885A;
  text-decoration: underline;
}
.faq-accordion__answer p {
  margin-bottom: 15px;
}
.faq-accordion__answer p:last-child {
  margin-bottom: 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq-section {
  padding: 80px 0;
  background: #fff;
}
.faq-section__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }
}

.faq-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #E0D5C7 0%, #FAF3E8 100%);
  text-align: center;
}
.faq-cta__container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-cta__title {
  font-size: 32px;
  font-weight: 300;
  font-family: "Poppins", sans-serif;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #D4A574 0%, #B8885A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.faq-cta__text {
  font-size: 18px;
  color: #666;
  margin-bottom: 30px;
}
.faq-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, #D4A574 0%, #E8C9A0 100%);
  color: #fff;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.faq-cta__button:hover {
  background: linear-gradient(135deg, #B8885A 0%, #D4A574 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(199, 178, 153, 0.4);
  border-color: #B8885A;
}
.faq-cta__button i {
  font-size: 18px;
}
.faq-cta__more {
  text-align: center;
  margin-top: 48px;
}
.faq-cta__more .btn--outline {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 24px 48px;
  background: transparent;
  border: 2px solid #D4A574;
  border-radius: 9999px;
  color: #D4A574;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.faq-cta__more .btn--outline:hover {
  background: #D4A574;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.faq-cta__more .btn--outline i {
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .faq-cta {
    padding: 60px 0;
  }
  .faq-cta__title {
    font-size: 26px;
  }
  .faq-cta__text {
    font-size: 16px;
  }
  .faq-cta__button {
    padding: 15px 30px;
    font-size: 15px;
  }
  .faq-cta__more {
    margin-top: 32px;
  }
}

.error-404 {
  position: relative;
  background: linear-gradient(135deg, #FFFCF7 0%, #FFF8F0 50%, #FFFFFF 100%);
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 96px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .error-404 {
    min-height: 70vh;
    padding: 64px 0;
  }
}
.error-404__container {
  position: relative;
  z-index: 1;
}
.error-404__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.error-404__number {
  font-family: "Poppins", sans-serif;
  font-size: 180px;
  font-weight: 800;
  background: linear-gradient(135deg, #D4A574, #B8885A, #A67C52);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .error-404__number {
    font-size: 120px;
  }
}
@media (max-width: 480px) {
  .error-404__number {
    font-size: 90px;
  }
}
.error-404__title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #3D2E1F;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .error-404__title {
    font-size: 32px;
  }
}
.error-404__description {
  font-size: 18px;
  color: #5A4A3A;
  line-height: 1.8;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .error-404__description {
    font-size: 16px;
  }
}
.error-404__actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .error-404__actions .btn {
    flex: 1 1 100%;
  }
}
.error-404__links {
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
  border: 1px solid #E8E8E8;
}
.error-404__links-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 24px;
}
.error-404__links-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .error-404__links-list {
    grid-template-columns: 1fr;
  }
}
.error-404__links-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  color: #5A4A3A;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.error-404__links-list li a:hover {
  background-color: #FFF8F0;
  color: #D4A574;
  padding-left: 24px;
}
.error-404__links-list li a:hover i {
  transform: translateX(4px);
}
.error-404__links-list li a i {
  color: #D4A574;
  font-size: 14px;
  transition: all 0.3s ease;
}

.shop-header {
  padding: 48px 0;
  background: linear-gradient(135deg, #FAF3E8 0%, #F5E6D3 100%);
  text-align: center;
}
.shop-header__title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .shop-header__title {
    font-size: 32px;
  }
}
.shop-header__description {
  font-size: 18px;
  color: #5A4A3A;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .shop-header__description {
    font-size: 16px;
  }
}

.shop-archive {
  background-color: #FFFCF7;
  padding: 48px 0 64px;
}
@media (max-width: 768px) {
  .shop-archive {
    padding: 32px 0 48px;
  }
}
.shop-archive__results-bar {
  font-size: 16px;
  color: #5A4A3A;
  font-family: "Poppins", sans-serif;
  margin-bottom: 24px;
  padding: 0 8px;
}
.shop-archive__results-bar strong {
  color: #D4A574;
  font-weight: 700;
}
.shop-archive__controls {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 48px;
  padding: 32px;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .shop-archive__controls {
    flex-wrap: wrap;
    padding: 24px;
    gap: 16px;
  }
}
.shop-archive__filter-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #D4A574, #B8885A);
  color: #FFFFFF;
  border-radius: 9999px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.shop-archive__filter-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.shop-archive__filter-toggle i {
  font-size: 14px;
}
@media (max-width: 992px) {
  .shop-archive__filter-toggle {
    display: flex;
  }
}
@media (max-width: 768px) {
  .shop-archive__filter-toggle {
    padding: 8px 24px;
    font-size: 14px;
  }
}
.shop-archive__search {
  flex: 1;
  max-width: 500px;
}
@media (max-width: 768px) {
  .shop-archive__search {
    max-width: 100%;
    width: 100%;
    order: -1;
  }
}
.shop-archive__search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.shop-archive__search-icon {
  position: absolute;
  left: 20px;
  color: #D4A574;
  font-size: 16px;
  pointer-events: none;
}
.shop-archive__search-input {
  width: 100%;
  padding: 14px 50px 14px 50px;
  font-size: 15px;
  font-family: "Nunito", sans-serif;
  border: 2px solid #E8E8E8;
  border-radius: 9999px;
  background: #FFFCF7;
  transition: all 0.3s ease;
}
.shop-archive__search-input:focus {
  outline: none;
  border-color: #D4A574;
  background: #FFFFFF;
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.15);
}
.shop-archive__search-input::placeholder {
  color: #7A6A5A;
}
.shop-archive__search-clear {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: #7A6A5A;
  font-size: 18px;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
}
.shop-archive__search-clear:hover {
  color: #D4A574;
}
.shop-archive__sorting {
  flex-shrink: 0;
  margin-left: auto;
}
@media (max-width: 768px) {
  .shop-archive__sorting {
    width: 100%;
    margin-left: 0;
  }
}
.shop-archive__results {
  font-size: 16px;
  color: #5A4A3A;
  font-family: "Poppins", sans-serif;
}
.shop-archive__results strong {
  color: #D4A574;
  font-weight: 700;
}
@media (max-width: 768px) {
  .shop-archive__results {
    font-size: 14px;
    flex: 1 1 100%;
    order: -1;
    text-align: center;
  }
}
.shop-archive__sorting select {
  padding: 16px 32px;
  padding-right: 48px;
  border: 2px solid #E8E8E8;
  border-radius: 9999px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #3D2E1F;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C7B299' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 24px center;
  background-size: 12px;
  cursor: pointer;
  appearance: none;
  transition: all 0.3s ease;
}
.shop-archive__sorting select:hover {
  border-color: #D4A574;
}
.shop-archive__sorting select:focus {
  outline: none;
  border-color: #D4A574;
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}
@media (max-width: 768px) {
  .shop-archive__sorting select {
    font-size: 14px;
    padding: 8px 24px;
    padding-right: 32px;
  }
}
.shop-archive__content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
}
@media (max-width: 992px) {
  .shop-archive__content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) {
  .shop-archive__sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    background-color: #FFFFFF;
    z-index: 1200;
    transition: left 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  .shop-archive__sidebar.is-active {
    left: 0;
  }
}
.shop-archive__sidebar-inner {
  position: sticky;
  top: calc(60px + 24px);
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}
@media (max-width: 992px) {
  .shop-archive__sidebar-inner {
    position: static;
    border-radius: 0;
    height: 100%;
    max-height: none;
    padding: 48px 32px;
  }
}
.shop-archive__sidebar-inner::-webkit-scrollbar {
  width: 6px;
}
.shop-archive__sidebar-inner::-webkit-scrollbar-track {
  background: #FFF8F0;
  border-radius: 9999px;
}
.shop-archive__sidebar-inner::-webkit-scrollbar-thumb {
  background: #D4A574;
  border-radius: 9999px;
}
.shop-archive__sidebar-inner::-webkit-scrollbar-thumb:hover {
  background: #B8885A;
}
.shop-archive__sidebar-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 2px solid #E8E8E8;
}
@media (max-width: 992px) {
  .shop-archive__sidebar-header {
    display: flex;
  }
}
.shop-archive__sidebar-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #3D2E1F;
  display: flex;
  align-items: center;
  gap: 8px;
}
.shop-archive__sidebar-title i {
  color: #D4A574;
}
.shop-archive__sidebar-close {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #FFF8F0;
  color: #5A4A3A;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
.shop-archive__sidebar-close:hover {
  background: #D4A574;
  color: #FFFFFF;
  transform: rotate(90deg);
}
.shop-archive__products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 992px) {
  .shop-archive__products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .shop-archive__products {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.shop-archive__products ul.products {
  display: contents;
  list-style: none;
  margin: 0;
  padding: 0;
}
.shop-archive__product-item {
  animation: fadeInUp 0.5s ease-out backwards;
}
.shop-archive__product-item:nth-child(1) {
  animation-delay: 0.05s;
}
.shop-archive__product-item:nth-child(2) {
  animation-delay: 0.1s;
}
.shop-archive__product-item:nth-child(3) {
  animation-delay: 0.15s;
}
.shop-archive__product-item:nth-child(4) {
  animation-delay: 0.2s;
}
.shop-archive__product-item:nth-child(5) {
  animation-delay: 0.25s;
}
.shop-archive__product-item:nth-child(6) {
  animation-delay: 0.3s;
}
.shop-archive__product-item:nth-child(7) {
  animation-delay: 0.35s;
}
.shop-archive__product-item:nth-child(8) {
  animation-delay: 0.4s;
}
.shop-archive__product-item:nth-child(9) {
  animation-delay: 0.45s;
}
.shop-archive__product-item:nth-child(10) {
  animation-delay: 0.5s;
}
.shop-archive__product-item:nth-child(11) {
  animation-delay: 0.55s;
}
.shop-archive__product-item:nth-child(12) {
  animation-delay: 0.6s;
}
.shop-archive__pagination {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 2px solid #E8E8E8;
}
.shop-archive__pagination .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
}
.shop-archive__pagination .pagination li a,
.shop-archive__pagination .pagination li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 8px 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #5A4A3A;
  background-color: #FFFFFF;
  border: 2px solid #E8E8E8;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.shop-archive__pagination .pagination li a:hover,
.shop-archive__pagination .pagination li span:hover {
  background: #D4A574;
  border-color: #D4A574;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.shop-archive__pagination .pagination li a.current,
.shop-archive__pagination .pagination li span.current {
  background: #D4A574;
  border-color: #D4A574;
  color: #FFFFFF;
}
.shop-archive__pagination .pagination li a i,
.shop-archive__pagination .pagination li span i {
  font-size: 14px;
}
.shop-archive__pagination .pagination li .dots {
  border: none;
  background: transparent;
  pointer-events: none;
}
@media (max-width: 768px) {
  .shop-archive__pagination .pagination li a,
  .shop-archive__pagination .pagination li span {
    min-width: 38px;
    height: 38px;
    font-size: 14px;
  }
}
.shop-archive__no-products {
  text-align: center;
  padding: 64px;
  background-color: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.shop-archive__no-products-icon {
  margin-bottom: 32px;
}
.shop-archive__no-products-icon i {
  font-size: 80px;
  color: #D4A574;
  opacity: 0.3;
}
.shop-archive__no-products-title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 24px;
}
.shop-archive__no-products-text {
  font-size: 18px;
  color: #7A6A5A;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.shop-filter {
  border-bottom: 1px solid #E8E8E8;
  padding: 24px 0;
}
.shop-filter:first-child {
  padding-top: 0;
}
.shop-filter:last-child {
  border-bottom: none;
}
.shop-filter__item {
  margin-bottom: 8px;
}
.shop-filter__item--hidden {
  display: none;
}
.shop-filter__item--active .shop-filter__link {
  color: #D4A574;
  font-weight: 700;
  background-color: rgba(212, 165, 116, 0.1);
}
.shop-filter__item--featured-new .shop-filter__link {
  background: linear-gradient(135deg, rgba(255, 217, 61, 0.1) 0%, rgba(255, 199, 0, 0.1) 100%);
  font-weight: 700;
  padding: 16px;
  border-radius: 12px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.shop-filter__item--featured-new .shop-filter__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #FFD93D 0%, #FFC700 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.shop-filter__item--featured-new .shop-filter__link .shop-filter__featured-icon,
.shop-filter__item--featured-new .shop-filter__link .shop-filter__name,
.shop-filter__item--featured-new .shop-filter__link .shop-filter__count {
  position: relative;
  z-index: 1;
}
.shop-filter__item--featured-new .shop-filter__link .shop-filter__featured-icon {
  color: #FFC700;
  font-size: 16px;
  margin-right: 8px;
}
.shop-filter__item--featured-new .shop-filter__link:hover {
  border-color: #FFC700;
  transform: translateX(4px);
}
.shop-filter__item--featured-new .shop-filter__link:hover::before {
  opacity: 0.1;
}
.shop-filter__item--featured-new.shop-filter__item--active .shop-filter__link {
  background: linear-gradient(135deg, #FFD93D 0%, #FFC700 100%);
  color: #FFFFFF;
  border-color: #FFC700;
}
.shop-filter__item--featured-new.shop-filter__item--active .shop-filter__link .shop-filter__featured-icon {
  color: #FFFFFF;
}
.shop-filter__item--featured-new.shop-filter__item--active .shop-filter__link .shop-filter__count {
  color: rgba(255, 255, 255, 0.9);
}
.shop-filter__item--featured-bestseller .shop-filter__link {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, rgba(166, 124, 82, 0.1) 100%);
  font-weight: 700;
  padding: 16px;
  border-radius: 12px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.shop-filter__item--featured-bestseller .shop-filter__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #D4A574 0%, #A67C52 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.shop-filter__item--featured-bestseller .shop-filter__link .shop-filter__featured-icon,
.shop-filter__item--featured-bestseller .shop-filter__link .shop-filter__name,
.shop-filter__item--featured-bestseller .shop-filter__link .shop-filter__count {
  position: relative;
  z-index: 1;
}
.shop-filter__item--featured-bestseller .shop-filter__link .shop-filter__featured-icon {
  color: #A67C52;
  font-size: 16px;
  margin-right: 8px;
}
.shop-filter__item--featured-bestseller .shop-filter__link:hover {
  border-color: #A67C52;
  transform: translateX(4px);
}
.shop-filter__item--featured-bestseller .shop-filter__link:hover::before {
  opacity: 0.1;
}
.shop-filter__item--featured-bestseller.shop-filter__item--active .shop-filter__link {
  background: linear-gradient(135deg, #D4A574 0%, #A67C52 100%);
  color: #FFFFFF;
  border-color: #A67C52;
}
.shop-filter__item--featured-bestseller.shop-filter__item--active .shop-filter__link .shop-filter__featured-icon {
  color: #FFFFFF;
}
.shop-filter__item--featured-bestseller.shop-filter__item--active .shop-filter__link .shop-filter__count {
  color: rgba(255, 255, 255, 0.9);
}
.shop-filter__item--featured-recommended .shop-filter__link {
  background: linear-gradient(135deg, rgba(201, 184, 163, 0.1) 0%, rgba(197, 184, 165, 0.1) 100%);
  font-weight: 700;
  padding: 16px;
  border-radius: 12px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.shop-filter__item--featured-recommended .shop-filter__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #C9B8A3 0%, #C5B8A5 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.shop-filter__item--featured-recommended .shop-filter__link .shop-filter__featured-icon,
.shop-filter__item--featured-recommended .shop-filter__link .shop-filter__name,
.shop-filter__item--featured-recommended .shop-filter__link .shop-filter__count {
  position: relative;
  z-index: 1;
}
.shop-filter__item--featured-recommended .shop-filter__link .shop-filter__featured-icon {
  color: #C5B8A5;
  font-size: 16px;
  margin-right: 8px;
}
.shop-filter__item--featured-recommended .shop-filter__link:hover {
  border-color: #C5B8A5;
  transform: translateX(4px);
}
.shop-filter__item--featured-recommended .shop-filter__link:hover::before {
  opacity: 0.1;
}
.shop-filter__item--featured-recommended.shop-filter__item--active .shop-filter__link {
  background: linear-gradient(135deg, #C9B8A3 0%, #C5B8A5 100%);
  color: #FFFFFF;
  border-color: #C5B8A5;
}
.shop-filter__item--featured-recommended.shop-filter__item--active .shop-filter__link .shop-filter__featured-icon {
  color: #FFFFFF;
}
.shop-filter__item--featured-recommended.shop-filter__item--active .shop-filter__link .shop-filter__count {
  color: rgba(255, 255, 255, 0.9);
}
.shop-filter__featured-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}
.shop-filter__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #3D2E1F;
  cursor: pointer;
  transition: all 0.3s ease;
}
.shop-filter__title:hover {
  color: #D4A574;
}
.shop-filter__title i {
  font-size: 14px;
  transition: all 0.3s ease;
}
.shop-filter__content {
  max-height: 0;
  transition: max-height 0.3s ease;
}
.shop-filter__content--active {
  max-height: 1000px;
  margin-top: 24px;
}
.shop-filter__content--active ~ .shop-filter__title i {
  transform: rotate(180deg);
}
.shop-filter__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.shop-filter__item {
  margin-bottom: 8px;
}
.shop-filter__item--hidden {
  display: none;
}
.shop-filter__item--active .shop-filter__link {
  color: #D4A574;
  font-weight: 700;
  background-color: rgba(212, 165, 116, 0.1);
}
.shop-filter__show-more {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  margin-top: 24px;
  padding: 16px;
  background-color: #FFF8F0;
  color: #D4A574;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.shop-filter__show-more:hover {
  background-color: rgba(212, 165, 116, 0.1);
}
.shop-filter__show-more i {
  font-size: 12px;
  transition: all 0.3s ease;
}
.shop-filter__show-more.is-expanded i {
  transform: rotate(180deg);
}
.shop-filter__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  color: #5A4A3A;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.shop-filter__link:hover {
  background-color: #FFF8F0;
  color: #D4A574;
  transform: translateX(4px);
}
.shop-filter__name {
  flex: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}
.shop-filter__count {
  font-size: 14px;
  color: #7A6A5A;
}

.shop-sidebar-overlay {
  display: none;
}
@media (max-width: 992px) {
  .shop-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(61, 46, 31, 0.5);
    z-index: 1199;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .shop-sidebar-overlay.is-active {
    display: block;
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 768px) {
  .product-card__cart {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
  }
}
.main--product {
  background: #FFFCF7;
  padding: 48px 0;
}

.product-single__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 992px) {
  .product-single__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
.product-single__breadcrumb {
  font-size: 14px;
  color: #7A6A5A;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.product-single__breadcrumb a {
  color: #7A6A5A;
  text-decoration: none;
  transition: all 0.3s ease;
}
.product-single__breadcrumb a:hover {
  color: #D4A574;
}
.product-single__breadcrumb i {
  font-size: 0.6rem;
  opacity: 0.5;
}
.product-single__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #3D2E1F;
  line-height: 1.3;
  margin: 0 0 24px;
}
@media (max-width: 768px) {
  .product-single__title {
    font-size: 24px;
  }
}
.product-single__price {
  margin-bottom: 24px;
}
.product-single__price .price {
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: #D4A574;
  display: flex;
  align-items: center;
  gap: 16px;
}
.product-single__price .price del {
  font-size: 1.1rem;
  color: #7A6A5A;
  font-weight: 600;
}
.product-single__price .price ins {
  text-decoration: none;
  color: #D4A574;
}
.product-single__omnibus {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  background: #FFF8F0;
  border: 1px solid #E8E8E8;
  border-radius: 9999px;
  font-size: 14px;
  color: #5A4A3A;
  margin-bottom: 32px;
}
.product-single__omnibus i {
  color: #D4A574;
}
.product-single__summary .product_meta {
  margin-top: 32px;
  padding: 24px;
  background: #FFF8F0;
  border-radius: 12px;
  font-size: 14px;
}
.product-single__summary .product_meta span {
  display: block;
  margin-bottom: 8px;
}
.product-single__summary .product_meta span:last-child {
  margin-bottom: 0;
}
.product-single__summary .product_meta a {
  color: #D4A574;
  text-decoration: none;
  font-weight: 600;
}
.product-single__summary .product_meta a:hover {
  text-decoration: underline;
}

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

.product-gallery__main {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}
.product-gallery__main img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .product-gallery__main img {
    max-height: 350px;
  }
}
.product-gallery__arrow {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #D4A574;
  border-radius: 50%;
  color: #D4A574;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}
.product-gallery__arrow--prev {
  left: 16px;
}
.product-gallery__arrow--next {
  right: 16px;
}
.product-gallery__arrow:hover {
  background: #D4A574;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .product-gallery__arrow {
    width: 36px;
    height: 36px;
  }
  .product-gallery__arrow i {
    font-size: 0.875rem;
  }
}
.product-gallery__counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(61, 46, 31, 0.7);
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 600;
}
.product-gallery__thumbs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.product-gallery__thumb {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #E8E8E8;
  opacity: 0.6;
  transition: all 0.3s ease;
}
.product-gallery__thumb:hover {
  opacity: 1;
  border-color: #E8C9A0;
}
.product-gallery__thumb--active {
  opacity: 1;
  border-color: #D4A574;
}
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .product-gallery__thumb {
    width: 60px;
    height: 60px;
  }
}

.product-single form.cart {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.product-single form.cart .quantity {
  display: none;
}
.product-single form.cart .single_add_to_cart_button {
  width: 100%;
  max-width: 320px;
  padding: 24px 48px;
  background: #D4A574;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}
.product-single form.cart .single_add_to_cart_button::before {
  content: "\f07a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.product-single form.cart .single_add_to_cart_button:hover {
  background: #B8885A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}
.product-single form.cart .single_add_to_cart_button.loading {
  opacity: 0.7;
  pointer-events: none;
}

.product-tabs {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 48px;
  margin-bottom: 64px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .product-tabs {
    padding: 24px;
  }
}
.product-tabs__nav {
  display: flex;
  gap: 16px;
  border-bottom: 2px solid #E8E8E8;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .product-tabs__nav {
    display: none;
  }
}
.product-tabs__tab {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  padding: 24px 32px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #7A6A5A;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product-tabs__tab:hover {
  color: #D4A574;
}
.product-tabs__tab--active {
  color: #D4A574;
  border-bottom-color: #D4A574;
}
@media (max-width: 576px) {
  .product-tabs__tab {
    padding: 16px 24px;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .product-tabs__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
.product-tabs__panel {
  display: none;
}
.product-tabs__panel--active {
  display: block;
}
@media (max-width: 768px) {
  .product-tabs__panel {
    display: block;
    border: 1px solid #E8E8E8;
    border-radius: 12px;
    overflow: hidden;
  }
  .product-tabs__panel--active .product-tabs__accordion-content {
    display: block;
  }
  .product-tabs__panel--active .product-tabs__accordion-header i {
    transform: rotate(180deg);
  }
}
.product-tabs__panel h2 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .product-tabs__panel h2 {
    display: none;
  }
}
.product-tabs__panel p, .product-tabs__panel ul, .product-tabs__panel ol {
  line-height: 1.7;
  color: #5A4A3A;
  margin-bottom: 24px;
}
.product-tabs__panel ul, .product-tabs__panel ol {
  padding-left: 32px;
}
.product-tabs__accordion-header {
  display: none;
}
@media (max-width: 768px) {
  .product-tabs__accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: #FFFCF7;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .product-tabs__accordion-header:hover {
    background: #FFF8F0;
  }
  .product-tabs__accordion-header span {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #3D2E1F;
  }
  .product-tabs__accordion-header i {
    color: #D4A574;
    font-size: 14px;
    transition: all 0.3s ease;
  }
}
@media (max-width: 768px) {
  .product-tabs__accordion-content {
    display: none;
    padding: 24px;
    background: #FFFFFF;
  }
}

.product-faq__item {
  border: 1px solid #E8E8E8;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}
.product-faq__item--active .product-faq__question i {
  transform: rotate(180deg);
}
.product-faq__item--active .product-faq__answer {
  display: block;
}
.product-faq__question {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFCF7;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}
.product-faq__question:hover {
  background: #FFF8F0;
}
.product-faq__question span {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #3D2E1F;
  padding-right: 24px;
}
.product-faq__question i {
  color: #D4A574;
  font-size: 14px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.product-faq__answer {
  display: none;
  padding: 24px 32px;
  background: #FFFFFF;
}
.product-faq__answer p {
  margin-bottom: 16px;
}
.product-faq__answer p:last-child {
  margin-bottom: 0;
}
.product-faq__answer ul {
  padding-left: 32px;
  margin: 16px 0;
}
.product-faq__answer ul li {
  margin-bottom: 8px;
}

.how-to-order__step {
  background: #FFFCF7;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  border-left: 4px solid #D4A574;
}
@media (max-width: 576px) {
  .how-to-order__step {
    padding: 24px;
  }
}
.how-to-order__step-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.how-to-order__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #D4A574, #B8885A);
  color: #FFFFFF;
  border-radius: 9999px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.how-to-order__step-header h3 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #3D2E1F;
  margin: 0;
}
.how-to-order__step-content {
  padding-left: 56px;
}
@media (max-width: 576px) {
  .how-to-order__step-content {
    padding-left: 0;
  }
}
.how-to-order__step-content p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: #5A4A3A;
}
.how-to-order__step-content p:last-child {
  margin-bottom: 0;
}
.how-to-order__step-content ul {
  margin: 0;
  padding-left: 32px;
}
.how-to-order__step-content ul li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #5A4A3A;
}
.how-to-order__payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
  margin-top: 16px !important;
  padding-left: 0 !important;
  list-style: none !important;
}
.how-to-order__payment-methods li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: #FFFFFF;
  border-radius: 12px;
  font-size: 14px;
}
.how-to-order__payment-methods li i {
  color: #D4A574;
  width: 20px;
  text-align: center;
}
.how-to-order__note {
  background: #FAF3E8;
  padding: 24px;
  border-radius: 12px;
  border-left: 3px solid #FFD93D;
  margin: 24px 0;
}
.how-to-order__note i {
  color: #FFC700;
  margin-right: 8px;
}
.how-to-order__info-box {
  display: flex;
  gap: 32px;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 32px;
}
@media (max-width: 576px) {
  .how-to-order__info-box {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }
}
.how-to-order__info-box--account {
  background: linear-gradient(135deg, rgba(232, 201, 160, 0.3), rgba(245, 230, 211, 0.5));
  border: 1px solid #E8C9A0;
}
.how-to-order__info-box--important {
  background: linear-gradient(135deg, rgba(255, 229, 125, 0.3), rgba(255, 217, 61, 0.2));
  border: 1px solid #FFD93D;
}
.how-to-order__info-box--social {
  background: linear-gradient(135deg, rgba(224, 213, 199, 0.3), rgba(224, 217, 204, 0.3));
  border: 1px solid #E0D5C7;
}
.how-to-order__info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 9999px;
  flex-shrink: 0;
}
.how-to-order__info-icon i {
  font-size: 1.5rem;
}
.how-to-order__info-box--account .how-to-order__info-icon {
  background: #D4A574;
  color: #FFFFFF;
}
.how-to-order__info-box--important .how-to-order__info-icon {
  background: #FFD93D;
  color: #3D2E1F;
}
.how-to-order__info-box--social .how-to-order__info-icon {
  background: #C9B8A3;
  color: #FFFFFF;
}
.how-to-order__info-content {
  flex: 1;
}
.how-to-order__info-content h4 {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 16px;
}
.how-to-order__info-content p {
  margin-bottom: 16px;
  line-height: 1.6;
  color: #5A4A3A;
}
.how-to-order__info-content ul {
  margin: 0;
  padding-left: 32px;
}
.how-to-order__info-content ul li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: #5A4A3A;
}

.product-bestsellers {
  background: #FFFFFF;
  padding: 64px 0;
}
@media (max-width: 768px) {
  .product-bestsellers {
    padding: 48px 0;
  }
}
.product-bestsellers__title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #3D2E1F;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}
.product-bestsellers__title::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #D4A574, #FFD93D);
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .product-bestsellers__title {
    font-size: 32px;
  }
}
.product-bestsellers__wrapper {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .product-bestsellers__wrapper {
    padding: 0 44px;
  }
}
.product-bestsellers__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border: 2px solid #D4A574;
  border-radius: 50%;
  color: #D4A574;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}
.product-bestsellers__arrow:hover:not(:disabled):not(.swiper-button-disabled) {
  background: #D4A574;
  color: #FFFFFF;
}
.product-bestsellers__arrow:disabled, .product-bestsellers__arrow.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.product-bestsellers__arrow--prev {
  left: 0;
}
.product-bestsellers__arrow--next {
  right: 0;
}
@media (max-width: 768px) {
  .product-bestsellers__arrow {
    width: 36px;
    height: 36px;
  }
  .product-bestsellers__arrow i {
    font-size: 0.75rem;
  }
}

.woocommerce-tabs,
.related.products {
  display: none !important;
}

.onsale {
  display: none !important;
}

.contact-header {
  position: relative;
  background: linear-gradient(135deg, #E0D5C7 0%, #E0D9CC 50%, #FAF3E8 100%);
  padding: 64px 0 48px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .contact-header {
    padding: 48px 0 32px;
  }
}
.contact-header__container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.contact-header__title {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #3D2E1F;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .contact-header__title {
    font-size: 40px;
  }
}
.contact-header__subtitle {
  font-size: 18px;
  color: #5A4A3A;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .contact-header__subtitle {
    font-size: 16px;
  }
}

.contact-content {
  background-color: #FFFCF7;
  padding: 64px 0;
}
@media (max-width: 768px) {
  .contact-content {
    padding: 48px 0;
  }
}
.contact-content__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
}
@media (max-width: 992px) {
  .contact-content__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact-form {
  background-color: #FFFFFF;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  animation: fadeInUp 0.6s ease-out;
}
@media (max-width: 768px) {
  .contact-form {
    padding: 32px;
  }
}
.contact-form__header {
  margin-bottom: 32px;
}
.contact-form__title {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #3D2E1F;
  margin-bottom: 16px;
}
.contact-form__description {
  font-size: 16px;
  color: #7A6A5A;
  line-height: 1.6;
}
.contact-form__row {
  margin-bottom: 32px;
}
.contact-form__row:last-child {
  margin-bottom: 0;
}
.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form__label {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #3D2E1F;
}
.contact-form__required {
  color: #D4A574;
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  padding: 24px;
  border: 2px solid #E8E8E8;
  border-radius: 12px;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  color: #3D2E1F;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}
.contact-form__input:focus, .contact-form__textarea:focus {
  outline: none;
  border-color: #D4A574;
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: #7A6A5A;
}
.contact-form__textarea {
  resize: vertical;
  min-height: 150px;
}
.contact-form__submit {
  width: 100%;
  padding: 24px 48px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .contact-form__submit {
    font-size: 16px;
    padding: 16px 32px;
  }
}
.contact-form__message {
  margin-top: 24px;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  display: none;
}
.contact-form__message.success {
  display: block;
  background-color: rgba(166, 124, 82, 0.2);
  color: #8B6642;
  border: 2px solid #A67C52;
}
.contact-form__message.error {
  display: block;
  background-color: rgba(212, 165, 116, 0.2);
  color: #B8885A;
  border: 2px solid #D4A574;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.contact-info__card {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease-out;
}
.contact-info__card:nth-child(1) {
  animation-delay: 0.1s;
}
.contact-info__card:nth-child(2) {
  animation-delay: 0.2s;
}
.contact-info__card:nth-child(3) {
  animation-delay: 0.3s;
}
.contact-info__card:nth-child(4) {
  animation-delay: 0.4s;
}
.contact-info__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.contact-info__icon {
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
}
.contact-info__icon--company {
  background: #D4A574;
  color: #FFFFFF;
}
.contact-info__icon--email {
  background: #D4A574;
  color: #FFFFFF;
}
.contact-info__icon--messenger {
  background: #D4A574;
  color: #FFFFFF;
}
.contact-info__icon--phone {
  background: #D4A574;
  color: #FFFFFF;
}
.contact-info__icon--time {
  background: #D4A574;
  color: #FFFFFF;
}
.contact-info__title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 16px;
}
.contact-info__content {
  font-size: 16px;
  color: #5A4A3A;
  line-height: 1.8;
}
.contact-info__content p {
  margin-bottom: 8px;
}
.contact-info__content p:last-child {
  margin-bottom: 0;
}
.contact-info__content a {
  color: #D4A574;
  font-weight: 600;
  transition: all 0.3s ease;
}
.contact-info__content a:hover {
  color: #B8885A;
  text-decoration: underline;
}
.contact-info__content strong {
  font-weight: 700;
  color: #3D2E1F;
}
.contact-info__note {
  font-size: 14px;
  color: #7A6A5A;
  font-style: italic;
}

.woocommerce .wc-block-components-button,
.woocommerce .button,
.woocommerce .wp-element-button {
  background-color: #D4A574 !important;
  color: #FFFFFF !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 16px 32px !important;
  font-family: "Poppins", sans-serif !important;
  font-weight: 600 !important;
  transition: all 0.3s ease;
}
.woocommerce .wc-block-components-button:hover,
.woocommerce .button:hover,
.woocommerce .wp-element-button:hover {
  background-color: #B8885A !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12) !important;
}
.woocommerce .wc-block-cart .wc-block-cart-items {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.woocommerce .wc-block-cart .wc-block-cart-items__header th {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #3D2E1F;
  border-bottom: 2px solid #D4A574;
  padding-bottom: 16px;
}
.woocommerce .wc-block-cart .wc-block-cart-items__row {
  border-bottom: 1px solid #E8E8E8;
}
.woocommerce .wc-block-cart .wc-block-cart-items__row:last-child {
  border-bottom: none;
}
.woocommerce .wc-block-cart .wc-block-cart-item__image img {
  border-radius: 12px;
}
.woocommerce .wc-block-cart .wc-block-cart-item__remove-link {
  color: #D4A574 !important;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}
.woocommerce .wc-block-cart .wc-block-cart-item__remove-link:hover {
  color: #B8885A !important;
  text-decoration: underline;
}
.woocommerce .wc-block-cart .wc-block-components-sidebar {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.woocommerce .wc-block-cart .wc-block-components-sidebar h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  color: #3D2E1F;
  margin-bottom: 32px;
}
.woocommerce .wc-block-cart .wc-block-components-totals-wrapper {
  border-top: 1px solid #E8E8E8;
  padding-top: 24px;
  margin-top: 24px;
}
.woocommerce .wc-block-cart .wc-block-components-totals-wrapper:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}
.woocommerce .wc-block-cart .wc-block-components-totals-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-family: "Poppins", sans-serif;
}
.woocommerce .wc-block-cart .wc-block-components-totals-item__label {
  font-weight: 600;
  color: #5A4A3A;
}
.woocommerce .wc-block-cart .wc-block-components-totals-item__value {
  font-weight: 700;
  color: #3D2E1F;
}
.woocommerce .wc-block-cart .wc-block-components-totals-footer-item {
  border-top: 2px solid #D4A574;
  padding-top: 24px;
  margin-top: 24px;
}
.woocommerce .wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  font-weight: 700;
  font-size: 18px;
}
.woocommerce .wc-block-cart .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 20px;
  color: #D4A574;
}
.woocommerce .woocommerce-MyAccount-navigation {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.woocommerce .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.woocommerce .woocommerce-MyAccount-navigation li {
  margin-bottom: 8px;
}
.woocommerce .woocommerce-MyAccount-navigation li:last-child {
  margin-bottom: 0;
}
.woocommerce .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 16px 24px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #5A4A3A;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.woocommerce .woocommerce-MyAccount-navigation li a:hover {
  background-color: rgba(212, 165, 116, 0.1);
  color: #D4A574;
  transform: translateX(4px);
}
.woocommerce .woocommerce-MyAccount-navigation li.is-active a {
  background-color: #D4A574;
  color: #FFFFFF;
}
.woocommerce .woocommerce-MyAccount-content {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.woocommerce .woocommerce-MyAccount-content p {
  line-height: 1.7;
  margin-bottom: 24px;
}
.woocommerce .woocommerce-MyAccount-content a {
  color: #D4A574;
  font-weight: 600;
  transition: all 0.3s ease;
}
.woocommerce .woocommerce-MyAccount-content a:hover {
  color: #B8885A;
  text-decoration: underline;
}
.woocommerce .woocommerce-form .form-row {
  margin-bottom: 24px;
}
.woocommerce .woocommerce-form .form-row label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #3D2E1F;
  margin-bottom: 8px;
  display: block;
}
.woocommerce .woocommerce-form .form-row input[type=text],
.woocommerce .woocommerce-form .form-row input[type=email],
.woocommerce .woocommerce-form .form-row input[type=password],
.woocommerce .woocommerce-form .form-row input[type=tel],
.woocommerce .woocommerce-form .form-row textarea,
.woocommerce .woocommerce-form .form-row select {
  width: 100%;
  padding: 16px;
  border: 2px solid #E8E8E8;
  border-radius: 8px;
  font-family: "Nunito", sans-serif;
  transition: all 0.3s ease;
}
.woocommerce .woocommerce-form .form-row input[type=text]:focus,
.woocommerce .woocommerce-form .form-row input[type=email]:focus,
.woocommerce .woocommerce-form .form-row input[type=password]:focus,
.woocommerce .woocommerce-form .form-row input[type=tel]:focus,
.woocommerce .woocommerce-form .form-row textarea:focus,
.woocommerce .woocommerce-form .form-row select:focus {
  outline: none;
  border-color: #D4A574;
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}
.woocommerce .woocommerce-form .button {
  margin-top: 24px;
}
.woocommerce .shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  overflow: hidden;
}
.woocommerce .shop_table th {
  background-color: #D4A574;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  padding: 24px;
  text-align: left;
}
.woocommerce .shop_table th:first-child {
  border-top-left-radius: 16px;
  border: 0 !important;
}
.woocommerce .shop_table th:last-child {
  border-top-right-radius: 16px;
}
.woocommerce .shop_table td {
  padding: 24px;
  border-bottom: 1px solid #E8E8E8;
}
.woocommerce .shop_table tr:last-child td {
  border-bottom: none;
}
.woocommerce table.my_account_orders .button {
  margin: 4px !important;
}

@media (max-width: 768px) {
  .woocommerce .wc-block-cart .wc-block-components-sidebar-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .woocommerce .woocommerce-MyAccount-navigation,
  .woocommerce .woocommerce-MyAccount-content {
    padding: 24px;
  }
}
.woocommerce-cart .cart-empty {
  background: linear-gradient(135deg, #FFF9E6 0%, #FFE8F0 100%);
  padding: 80px 40px;
  border-radius: 20px;
  text-align: center;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
}
.woocommerce-cart .cart-empty::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: #FFD4E5;
  opacity: 0.3;
  border-radius: 50%;
}
.woocommerce-cart .cart-empty::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  background: #B8E6F0;
  opacity: 0.3;
  border-radius: 50%;
}
.woocommerce-cart .cart-empty::before {
  display: none !important;
}
.woocommerce-cart .cart-empty .woocommerce-info {
  background: transparent !important;
  border: none !important;
  color: #2D3142 !important;
  padding: 0 !important;
  margin: 0 !important;
  position: relative;
  z-index: 1;
}
.woocommerce-cart .cart-empty .woocommerce-info::before {
  display: none !important;
}

.woocommerce-info.cart-empty-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.woocommerce-info.cart-empty-message::before {
  content: "\f07a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 5rem;
  color: #FF9AA2;
  opacity: 0.5;
  animation: float 3s ease-in-out infinite;
}
.woocommerce-info.cart-empty-message .empty-cart-title {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2D3142;
  margin: 0;
}
@media (max-width: 768px) {
  .woocommerce-info.cart-empty-message .empty-cart-title {
    font-size: 1.5rem;
  }
}
.woocommerce-info.cart-empty-message .empty-cart-text {
  font-size: 1.125rem;
  color: #666;
  margin: 0 0 32px 0;
  max-width: 500px;
}
.woocommerce-info.cart-empty-message .button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  background: linear-gradient(135deg, #FF9AA2 0%, #B8E6F0 100%) !important;
  color: white !important;
  font-family: "Poppins", sans-serif !important;
  font-size: 1.125rem !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  border: none !important;
  text-decoration: none !important;
  box-shadow: 0 6px 25px rgba(255, 154, 162, 0.4);
  transition: all 0.3s ease;
}
.woocommerce-info.cart-empty-message .button i {
  font-size: 1.25rem;
}
.woocommerce-info.cart-empty-message .button:hover {
  background: linear-gradient(135deg, #FF6B76 0%, #A0D9E8 100%) !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255, 107, 118, 0.5) !important;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.empty-cart {
  padding: 64px 0;
}
.empty-cart__header {
  text-align: center;
  margin-bottom: 64px;
}
.empty-cart__icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, #FFFCF7 0%, #FFF8F0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.empty-cart__icon i {
  font-size: 3rem;
  color: #D4A574;
}
.empty-cart__title {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #3D2E1F;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .empty-cart__title {
    font-size: 40px;
  }
}
.empty-cart__text {
  font-size: 18px;
  color: #5A4A3A;
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .empty-cart__text {
    font-size: 16px;
  }
}
.empty-cart__buttons {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.empty-cart__btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 24px 48px;
  border-radius: 9999px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.empty-cart__btn--primary {
  background: #D4A574;
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}
.empty-cart__btn--primary:hover {
  background: #B8885A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
}
.empty-cart__btn--secondary {
  background: transparent;
  color: #D4A574;
  border: 2px solid #D4A574;
}
.empty-cart__btn--secondary:hover {
  background: #D4A574;
  color: #FFFFFF;
  transform: translateY(-2px);
}
.empty-cart__products {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 64px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
@media (max-width: 768px) {
  .empty-cart__products {
    padding: 48px 32px;
  }
}
.empty-cart__products-title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #3D2E1F;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}
.empty-cart__products-title::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #D4A574, #FFD93D);
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .empty-cart__products-title {
    font-size: 32px;
  }
}
.empty-cart__slider {
  position: relative;
  padding: 0 60px;
}
@media (max-width: 768px) {
  .empty-cart__slider {
    padding: 0 44px;
  }
}
.empty-cart__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #FFFFFF;
  border: 2px solid #D4A574;
  border-radius: 50%;
  color: #D4A574;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}
.empty-cart__arrow:hover:not(:disabled):not(.swiper-button-disabled) {
  background: #D4A574;
  color: #FFFFFF;
}
.empty-cart__arrow:disabled, .empty-cart__arrow.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.empty-cart__arrow--prev {
  left: 0;
}
.empty-cart__arrow--next {
  right: 0;
}
@media (max-width: 768px) {
  .empty-cart__arrow {
    width: 36px;
    height: 36px;
  }
  .empty-cart__arrow i {
    font-size: 0.75rem;
  }
}
.empty-cart__pagination {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 32px !important;
  position: static !important;
  width: 100% !important;
  left: auto !important;
  transform: none !important;
  bottom: auto !important;
}
.empty-cart__pagination .swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  background: #E8E8E8 !important;
  border-radius: 9999px !important;
  opacity: 1 !important;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0 4px !important;
}
.empty-cart__pagination .swiper-pagination-bullet-active {
  background: #D4A574 !important;
  width: 24px !important;
}

.wc-block-cart__empty-cart__title,
.wp-block-woocommerce-empty-cart-block > .wp-block-heading,
.wp-block-woocommerce-empty-cart-block > .wp-block-separator,
.wp-block-woocommerce-empty-cart-block > .wc-block-grid,
.wp-block-woocommerce-empty-cart-block > .wp-block-woocommerce-product-new,
.wp-block-woocommerce-empty-cart-block > hr,
.wp-block-woocommerce-empty-cart-block > h2:not(.empty-cart__title):not(.empty-cart__products-title) {
  display: none !important;
}

.wp-block-woocommerce-cart .empty-cart ~ * {
  display: none !important;
}

.page-o-nas .o-nas__hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #FAF3E8 0%, #F5E6D3 100%);
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.page-o-nas .o-nas__hero::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: #E8C9A0;
  opacity: 0.3;
  transform: rotate(45deg);
  border-radius: 16px;
}
.page-o-nas .o-nas__hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .page-o-nas .o-nas__hero .container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.page-o-nas .o-nas__hero-content {
  position: relative;
  z-index: 1;
}
.page-o-nas .o-nas__hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .page-o-nas .o-nas__hero-title {
    font-size: 2rem;
  }
}
.page-o-nas .o-nas__hero-subtitle {
  font-size: 1.25rem;
  color: #5A4A3A;
  line-height: 1.6;
}
.page-o-nas .o-nas__hero-image {
  position: relative;
}
.page-o-nas .o-nas__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  animation: float 6s ease-in-out infinite;
  border-radius: 16px;
}
.page-o-nas .o-nas__historia {
  padding: 80px 0;
}
.page-o-nas .o-nas__historia-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .page-o-nas .o-nas__historia-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.page-o-nas .o-nas__historia-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.page-o-nas .o-nas__historia-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .page-o-nas .o-nas__historia-title {
    font-size: 1.75rem;
  }
}
.page-o-nas .o-nas__historia-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #5A4A3A;
}
.page-o-nas .o-nas__historia-text p {
  margin-bottom: 16px;
}
.page-o-nas .o-nas__historia-text p:last-child {
  margin-bottom: 0;
}
.page-o-nas .o-nas__wartosci {
  padding: 80px 0;
  background: linear-gradient(135deg, #FAF3E8 0%, #F5E6D3 100%);
  border-radius: 16px;
}
.page-o-nas .o-nas__wartosci-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #3D2E1F;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .page-o-nas .o-nas__wartosci-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }
}
.page-o-nas .o-nas__wartosci-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 992px) {
  .page-o-nas .o-nas__wartosci-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .page-o-nas .o-nas__wartosci-grid {
    grid-template-columns: 1fr;
  }
}
.page-o-nas .o-nas__wartosc-item {
  background: #FFFFFF;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 16px;
}
.page-o-nas .o-nas__wartosc-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.page-o-nas .o-nas__wartosc-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, #E8C9A0 0%, #C9A882 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #3D2E1F;
  transition: all 0.3s ease;
  border-radius: 16px;
}
.o-nas__wartosc-item:hover .page-o-nas .o-nas__wartosc-icon {
  transform: scale(1.1) rotate(5deg);
}
.page-o-nas .o-nas__wartosc-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 16px;
}
.page-o-nas .o-nas__wartosc-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #5A4A3A;
}
.page-o-nas .o-nas__team {
  padding: 80px 0;
  background: linear-gradient(135deg, #FAF3E8 0%, #F5E6D3 100%);
  border-radius: 16px;
}
.page-o-nas .o-nas__team-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #3D2E1F;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .page-o-nas .o-nas__team-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }
}
.page-o-nas .o-nas__team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 992px) {
  .page-o-nas .o-nas__team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .page-o-nas .o-nas__team-grid {
    grid-template-columns: 1fr;
  }
}
.page-o-nas .o-nas__team-member {
  text-align: center;
  transition: all 0.3s ease;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
}
.page-o-nas .o-nas__team-member:hover {
  transform: translateY(-5px);
}
.page-o-nas .o-nas__team-photo {
  width: 200px;
  height: 200px;
  margin: 0 auto 24px;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}
.page-o-nas .o-nas__team-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #E8C9A0 0%, #C9A882 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  border-radius: 16px;
}
.o-nas__team-member:hover .page-o-nas .o-nas__team-photo::before {
  opacity: 0.2;
}
.page-o-nas .o-nas__team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  border-radius: 16px;
}
.page-o-nas .o-nas__team-photo .o-nas__team-member:hover img {
  transform: scale(1.05);
}
.page-o-nas .o-nas__team-name {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 8px;
}
.page-o-nas .o-nas__team-position {
  font-size: 1rem;
  color: #A67C52;
  font-weight: 600;
  margin-bottom: 12px;
}
.page-o-nas .o-nas__team-bio {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #5A4A3A;
}
.page-o-nas .o-nas__cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #E8C9A0 0%, #C9A882 100%);
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}
.page-o-nas .o-nas__cta::before, .page-o-nas .o-nas__cta::after {
  content: "";
  position: absolute;
  background: #FFFFFF;
  opacity: 0.1;
  border-radius: 16px;
}
.page-o-nas .o-nas__cta::before {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  transform: rotate(45deg);
}
.page-o-nas .o-nas__cta::after {
  width: 200px;
  height: 200px;
  bottom: -100px;
  right: -100px;
}
.page-o-nas .o-nas__cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-o-nas .o-nas__cta-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .page-o-nas .o-nas__cta-title {
    font-size: 1.75rem;
  }
}
.page-o-nas .o-nas__cta-text {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #3D2E1F;
  margin-bottom: 32px;
}
.page-o-nas .o-nas__cta-button {
  display: inline-block;
  padding: 16px 48px;
  background: #3D2E1F;
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-radius: 60px;
}
.page-o-nas .o-nas__cta-button:hover {
  background: #A67C52;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.page-o-mnie .o-mnie__hero {
  padding: 60px 0 80px;
  background: linear-gradient(135deg, #FAF3E8 0%, #F5E6D3 100%);
  position: relative;
  overflow: hidden;
}
.page-o-mnie .o-mnie__hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: #E8C9A0;
  opacity: 0.2;
  transform: rotate(45deg);
}
.page-o-mnie .o-mnie__hero-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .page-o-mnie .o-mnie__hero-wrapper {
    grid-template-columns: 250px 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .page-o-mnie .o-mnie__hero-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .page-o-mnie .o-mnie__hero-image {
    max-width: 250px;
    margin: 0 auto;
  }
}
.page-o-mnie .o-mnie__hero-image-frame {
  position: relative;
}
.page-o-mnie .o-mnie__hero-image-frame::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: -12px;
  bottom: -12px;
  background: linear-gradient(135deg, #D4A574 0%, #A67C52 100%);
  z-index: -1;
}
.page-o-mnie .o-mnie__hero-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .page-o-mnie .o-mnie__hero-content {
    text-align: left;
  }
}
.page-o-mnie .o-mnie__hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: #FFFFFF;
  font-size: 0.875rem;
  font-weight: 600;
  color: #A67C52;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.page-o-mnie .o-mnie__hero-label i {
  color: #FFD93D;
}
.page-o-mnie .o-mnie__hero-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 16px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .page-o-mnie .o-mnie__hero-title {
    font-size: 1.75rem;
  }
}
.page-o-mnie .o-mnie__hero-subtitle {
  font-size: 1rem;
  color: #5A4A3A;
  line-height: 1.8;
  margin-bottom: 24px;
}
.page-o-mnie .o-mnie__hero-subtitle p {
  margin-bottom: 12px;
}
.page-o-mnie .o-mnie__hero-subtitle p:last-child {
  margin-bottom: 0;
}
.page-o-mnie .o-mnie__hero-education {
  background: #FFFFFF;
  padding: 20px 24px;
  margin-top: 20px;
}
.page-o-mnie .o-mnie__hero-education-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 12px;
}
.page-o-mnie .o-mnie__hero-education-title i {
  color: #A67C52;
  font-size: 1.125rem;
}
.page-o-mnie .o-mnie__hero-education-list {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #5A4A3A;
}
.page-o-mnie .o-mnie__hero-education-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-o-mnie .o-mnie__hero-education-list ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
}
.page-o-mnie .o-mnie__hero-education-list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: #D4A574;
}
.page-o-mnie .o-mnie__hero-education-list ul li:last-child {
  margin-bottom: 0;
}
.page-o-mnie .o-mnie__hero-education-list p {
  margin-bottom: 8px;
}
.page-o-mnie .o-mnie__hero-education-list p:last-child {
  margin-bottom: 0;
}
.page-o-mnie .o-mnie__story {
  padding: 70px 0;
  background: #FFFFFF;
}
.page-o-mnie .o-mnie__story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media (max-width: 992px) {
  .page-o-mnie .o-mnie__story .container {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .page-o-mnie .o-mnie__story .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.page-o-mnie .o-mnie__story-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
}
.page-o-mnie .o-mnie__story-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #D4A574 0%, #A67C52 100%);
}
.page-o-mnie .o-mnie__story-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #5A4A3A;
}
.page-o-mnie .o-mnie__story-text p {
  margin-bottom: 12px;
}
.page-o-mnie .o-mnie__story-text p:last-child {
  margin-bottom: 0;
}
.page-o-mnie .o-mnie__story-intro {
  font-size: 1rem;
  color: #5A4A3A;
  line-height: 1.6;
  margin-bottom: 20px;
}
.page-o-mnie .o-mnie__story-features {
  margin-top: 20px;
  background: #FFFCF7;
  padding: 20px;
}
.page-o-mnie .o-mnie__story-features-intro {
  font-weight: 600;
  color: #3D2E1F;
  margin-bottom: 12px;
  font-size: 0.9375rem;
}
.page-o-mnie .o-mnie__story-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-o-mnie .o-mnie__story-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.9375rem;
  color: #5A4A3A;
}
.page-o-mnie .o-mnie__story-features-list li i {
  color: #D4A574;
  margin-top: 3px;
  flex-shrink: 0;
}
.page-o-mnie .o-mnie__story-offer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-o-mnie .o-mnie__story-offer-items ul, .page-o-mnie .o-mnie__story-offer-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-o-mnie .o-mnie__story-offer-items ul li, .page-o-mnie .o-mnie__story-offer-benefits ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #E8E8E8;
  font-size: 0.9375rem;
  color: #5A4A3A;
}
.page-o-mnie .o-mnie__story-offer-items ul li:last-child, .page-o-mnie .o-mnie__story-offer-benefits ul li:last-child {
  border-bottom: none;
}
.page-o-mnie .o-mnie__story-offer-items ul li i, .page-o-mnie .o-mnie__story-offer-benefits ul li i {
  color: #D4A574;
  flex-shrink: 0;
}
.page-o-mnie .o-mnie__story-offer-benefits {
  background: linear-gradient(135deg, #FAF3E8 0%, #F5E6D3 50%);
  padding: 20px;
}
.page-o-mnie .o-mnie__story-offer-benefits-title {
  font-weight: 600;
  color: #3D2E1F;
  margin-bottom: 12px;
  font-size: 0.9375rem;
}
.page-o-mnie .o-mnie__story-offer-benefits ul li {
  border-color: rgba(61, 46, 31, 0.1);
}
.page-o-mnie .o-mnie__story-offer-benefits ul li i {
  color: #FFD93D;
}
.page-o-mnie .o-mnie__cta {
  padding: 70px 0;
  background: linear-gradient(135deg, #E8C9A0 0%, #C9A882 100%);
  position: relative;
  overflow: hidden;
}
.page-o-mnie .o-mnie__cta::before, .page-o-mnie .o-mnie__cta::after {
  content: "";
  position: absolute;
  background: #FFFFFF;
  opacity: 0.1;
}
.page-o-mnie .o-mnie__cta::before {
  width: 250px;
  height: 250px;
  top: -125px;
  left: -125px;
  transform: rotate(45deg);
}
.page-o-mnie .o-mnie__cta::after {
  width: 180px;
  height: 180px;
  bottom: -90px;
  right: -90px;
}
.page-o-mnie .o-mnie__cta-wrapper {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-o-mnie .o-mnie__cta-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.page-o-mnie .o-mnie__cta-icon i {
  font-size: 1.75rem;
  color: #A67C52;
}
.page-o-mnie .o-mnie__cta-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .page-o-mnie .o-mnie__cta-title {
    font-size: 1.5rem;
  }
}
.page-o-mnie .o-mnie__cta-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #3D2E1F;
  margin-bottom: 20px;
}
.page-o-mnie .o-mnie__cta-text p {
  margin-bottom: 12px;
}
.page-o-mnie .o-mnie__cta-text p:last-child {
  margin-bottom: 0;
}
.page-o-mnie .o-mnie__cta-thanks {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 24px;
}
.page-o-mnie .o-mnie__cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: #3D2E1F;
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.page-o-mnie .o-mnie__cta-button:hover {
  background: #8B6642;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.page-o-mnie .o-mnie__cta-button i {
  font-size: 1rem;
}

.page-legal .legal-page__header {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #F0F8FF 0%, #FFF9E6 100%);
  text-align: center;
}
.page-legal .legal-page__title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2D3142;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .page-legal .legal-page__title {
    font-size: 1.75rem;
  }
}
.page-legal .legal-page__updated {
  font-size: 0.9375rem;
  color: #666;
  font-style: italic;
}
.page-legal .legal-page__content {
  padding: 60px 0;
}
.page-legal .legal-page__content .container {
  max-width: 1200px;
}
.page-legal .legal-page__sections {
  background: white;
  padding: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .page-legal .legal-page__sections {
    padding: 24px;
  }
}
.page-legal .legal-page__section {
  margin-bottom: 48px;
}
.page-legal .legal-page__section:last-child {
  margin-bottom: 0;
}
.page-legal .legal-page__section-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #2D3142;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #FFD4E5;
}
@media (max-width: 768px) {
  .page-legal .legal-page__section-title {
    font-size: 1.5rem;
  }
}
.page-legal .legal-page__section-content {
  font-size: 1rem;
  line-height: 1.8;
  color: #333;
}
.page-legal .legal-page__section-content p {
  margin-bottom: 16px;
}
.page-legal .legal-page__section-content p:last-child {
  margin-bottom: 0;
}
.page-legal .legal-page__section-content pre,
.page-legal .legal-page__section-content .wp-block-verse {
  white-space: pre-wrap;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0 0 16px;
  padding: 0;
  background: transparent;
  border: none;
  max-width: 100%;
}
.page-legal .legal-page__section-content h3, .page-legal .legal-page__section-content h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #2D3142;
  margin-top: 24px;
  margin-bottom: 12px;
}
.page-legal .legal-page__section-content h3 {
  font-size: 1.375rem;
}
.page-legal .legal-page__section-content h4 {
  font-size: 1.125rem;
}
.page-legal .legal-page__section-content ul, .page-legal .legal-page__section-content ol {
  margin: 16px 0;
  padding-left: 24px;
}
.page-legal .legal-page__section-content ul li, .page-legal .legal-page__section-content ol li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.page-legal .legal-page__section-content ul {
  list-style-type: disc;
}
.page-legal .legal-page__section-content ol {
  list-style-type: decimal;
}
.page-legal .legal-page__section-content a {
  color: #FF6B9D;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-legal .legal-page__section-content a:hover {
  color: #2D3142;
  text-decoration: underline;
}
.page-legal .legal-page__section-content strong {
  font-weight: 700;
  color: #2D3142;
}
.page-legal .legal-page__section-content em {
  font-style: italic;
}
.page-legal .legal-page__section-content blockquote {
  border-left: 4px solid #FFD4E5;
  padding-left: 20px;
  margin: 24px 0;
  font-style: italic;
  color: #666;
}
.page-legal .legal-page__section-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.page-legal .legal-page__section-content table th, .page-legal .legal-page__section-content table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #E5E5E5;
}
.page-legal .legal-page__section-content table th {
  background: #F0F8FF;
  font-weight: 700;
  color: #2D3142;
}
.page-legal .legal-page__section-content table tr:last-child td {
  border-bottom: none;
}
.page-legal .legal-page__section-content .wp-block-image {
  max-width: 100%;
  margin: 16px 0;
}
.page-legal .legal-page__section-content .wp-block-image img {
  max-width: 100%;
  height: auto;
}
.page-legal .legal-page__placeholder {
  text-align: center;
  padding: 60px 20px;
  background: #FFF9E6;
  color: #666;
  font-style: italic;
}
.page-legal .legal-page__contact {
  margin-top: 60px;
  padding: 32px;
  background: linear-gradient(135deg, #F0F8FF 0%, #FFF9E6 100%);
  text-align: center;
}
.page-legal .legal-page__contact-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2D3142;
  margin-bottom: 16px;
}
.page-legal .legal-page__contact-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 12px;
}
.page-legal .legal-page__contact-email a {
  color: #FF6B9D;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-legal .legal-page__contact-email a:hover {
  color: #2D3142;
  text-decoration: underline;
}
.page-legal .legal-page__toc {
  margin-top: 40px;
  padding: 32px 0;
  background: #F9F9F9;
}
.page-legal .legal-page__toc-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2D3142;
  margin-bottom: 16px;
}
.page-legal .legal-page__toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-legal .legal-page__toc-list li {
  margin-bottom: 8px;
}
.page-legal .legal-page__toc-list li a {
  color: #FF6B9D;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}
.page-legal .legal-page__toc-list li a:hover {
  color: #2D3142;
  padding-left: 8px;
}
@media print {
  .page-legal .legal-page__header {
    background: none;
    padding: 20px 0;
  }
  .page-legal .legal-page__sections {
    box-shadow: none;
  }
  .page-legal .legal-page__toc {
    display: none;
  }
  .page-legal .legal-page__contact {
    background: none;
    border-top: 2px solid #E5E5E5;
  }
}

.page-categories .categories-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #FAF3E8 0%, #FFF8F0 100%);
  position: relative;
  overflow: hidden;
}
.page-categories .categories-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: #E8C9A0;
  opacity: 0.25;
  border-radius: 50%;
}
.page-categories .categories-hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: #E0D5C7;
  opacity: 0.25;
  border-radius: 50%;
}
.page-categories .categories-hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-categories .categories-hero__title {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #3D2E1F;
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease-out;
}
@media (max-width: 768px) {
  .page-categories .categories-hero__title {
    font-size: 2rem;
  }
}
.page-categories .categories-hero__subtitle {
  font-size: 1.25rem;
  color: #7A6A5A;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}
.page-categories .categories-grid {
  padding: 80px 0;
}
.page-categories .categories-grid__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
}
@media (max-width: 768px) {
  .page-categories .categories-grid__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.page-categories .category-tile {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.5s ease;
  animation: scaleIn 0.5s ease-out;
}
.page-categories .category-tile:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.page-categories .category-tile__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.page-categories .category-tile__image {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #FAF3E8 0%, #FFF8F0 100%);
}
.page-categories .category-tile__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.category-tile:hover .page-categories .category-tile__image img {
  transform: scale(1.1);
}
.page-categories .category-tile__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 46, 31, 0.65) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.category-tile:hover .page-categories .category-tile__overlay {
  opacity: 1;
}
.page-categories .category-tile__button {
  background: #FFD93D;
  color: #3D2E1F;
  padding: 12px 32px;
  border-radius: 9999px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(255, 199, 0, 0.4);
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.category-tile:hover .page-categories .category-tile__button {
  transform: translateY(0);
}
.page-categories .category-tile__button:hover {
  background: #FFC700;
  box-shadow: 0 6px 25px rgba(255, 199, 0, 0.6);
}
.page-categories .category-tile__content {
  padding: 30px;
}
.page-categories .category-tile__name {
  font-family: "Poppins", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #3D2E1F;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.category-tile:hover .page-categories .category-tile__name {
  color: #B8885A;
}
.page-categories .category-tile__description {
  font-size: 0.9375rem;
  color: #7A6A5A;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.page-categories .category-tile__count {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #D4A574;
}
.page-categories .category-tile__count i {
  font-size: 1.125rem;
}
.page-categories .categories-empty {
  text-align: center;
  padding: 80px 20px;
  color: #7A6A5A;
}
.page-categories .categories-empty i {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.3;
}
.page-categories .categories-empty p {
  font-size: 1.125rem;
  font-style: italic;
}
.page-categories .categories-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #F5E6D3 0%, #FAF3E8 100%);
  position: relative;
  overflow: hidden;
}
.page-categories .categories-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: #FFFFFF;
  opacity: 0.1;
  border-radius: 50%;
}
.page-categories .categories-cta::after {
  content: "";
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: #FFFFFF;
  opacity: 0.1;
  border-radius: 50%;
}
.page-categories .categories-cta__content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-categories .categories-cta__title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #3D2E1F;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .page-categories .categories-cta__title {
    font-size: 1.75rem;
  }
}
.page-categories .categories-cta__text {
  font-size: 1.125rem;
  color: #5A4A3A;
  margin-bottom: 32px;
  line-height: 1.6;
}
.page-categories .categories-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 48px;
  background: #FFFFFF;
  color: #3D2E1F;
  font-family: "Poppins", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}
.page-categories .categories-cta__button i {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}
.page-categories .categories-cta__button:hover {
  background: #3D2E1F;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}
.page-categories .categories-cta__button:hover i {
  transform: scale(1.2);
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.categories-search {
  margin-top: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}
.categories-search__wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.categories-search__icon {
  position: absolute;
  left: 20px;
  color: #D4A574;
  font-size: 18px;
  pointer-events: none;
}
.categories-search__input {
  width: 100%;
  padding: 16px 60px 16px 55px;
  font-size: 16px;
  font-family: "Nunito", sans-serif;
  border: 2px solid #E8E8E8;
  border-radius: 9999px;
  background: #FFFFFF;
  transition: all 0.3s ease;
}
.categories-search__input:focus {
  outline: none;
  border-color: #D4A574;
  box-shadow: 0 4px 20px rgba(212, 165, 116, 0.15);
}
.categories-search__input::placeholder {
  color: #7A6A5A;
}
.categories-search__clear {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: #7A6A5A;
  font-size: 20px;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
}
.categories-search__clear:hover {
  color: #D4A574;
}

.categories-grid__layout {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 992px) {
  .categories-grid__layout {
    display: flex;
    flex-direction: row;
    gap: 0;
    padding-left: 0;
  }
}
.categories-grid__content {
  min-height: 400px;
}
@media (max-width: 992px) {
  .categories-grid__content {
    flex: 1;
    padding-left: 16px;
  }
}
.categories-grid__wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .categories-grid__wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .categories-grid__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.categories-grid__empty {
  text-align: center;
  padding: 80px 20px;
  color: #7A6A5A;
}
.categories-grid__empty i {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.3;
  color: #D4A574;
}
.categories-grid__empty p {
  font-size: 1.125rem;
  font-style: italic;
}

@media (max-width: 992px) {
  .categories-alphabet {
    position: sticky;
    top: 100px;
    left: 0;
    z-index: 100;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    padding: 8px;
    overflow-y: auto;
    align-self: start;
    flex-shrink: 0;
    scrollbar-width: thin;
    scrollbar-color: #E8C9A0 transparent;
  }
  .categories-alphabet::-webkit-scrollbar {
    width: 4px;
  }
  .categories-alphabet::-webkit-scrollbar-track {
    background: transparent;
  }
  .categories-alphabet::-webkit-scrollbar-thumb {
    background: #E8C9A0;
    border-radius: 9999px;
  }
}
.categories-alphabet__sticky {
  position: sticky;
  top: 100px;
}
@media (max-width: 992px) {
  .categories-alphabet__sticky {
    position: static;
  }
}
.categories-alphabet__title {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #7A6A5A;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 992px) {
  .categories-alphabet__title {
    display: none;
  }
}
.categories-alphabet__letters {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 992px) {
  .categories-alphabet__letters {
    gap: 3px;
  }
}
.categories-alphabet__letter {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  border: 2px solid #E8E8E8;
  border-radius: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #5A4A3A;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.categories-alphabet__letter:hover {
  background: #E8C9A0;
  border-color: #D4A574;
  color: #B8885A;
  transform: translateX(5px);
}
.categories-alphabet__letter--active {
  background: #D4A574;
  border-color: #D4A574;
  color: #FFFFFF;
  transform: translateX(5px);
}
@media (max-width: 992px) {
  .categories-alphabet__letter {
    width: 32px;
    height: 32px;
    font-size: 13px;
    border-radius: 8px;
  }
  .categories-alphabet__letter:hover {
    transform: scale(1.1);
  }
  .categories-alphabet__letter--active {
    transform: scale(1.1);
  }
}

.single-post__hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, #FFF9E6 0%, #FFE8F0 100%);
  position: relative;
}
.single-post__breadcrumb {
  font-size: 0.9375rem;
  color: #666;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.single-post__breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}
.single-post__breadcrumb a:hover {
  color: #FF6B9D;
}
.single-post__breadcrumb i {
  font-size: 0.75rem;
  opacity: 0.5;
}
.single-post__breadcrumb span {
  color: #2D3142;
  font-weight: 600;
}
.single-post__title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #2D3142;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .single-post__title {
    font-size: 1.75rem;
  }
}
.single-post__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.9375rem;
  color: #666;
}
.single-post__meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.single-post__meta span i {
  color: #FF9AA2;
}
.single-post__meta a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}
.single-post__meta a:hover {
  color: #FF6B9D;
}
.single-post__content-wrapper {
  padding: 60px 0;
}
.single-post__grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
}
@media (max-width: 992px) {
  .single-post__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.single-post__article {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .single-post__article {
    padding: 24px;
  }
}
.single-post__featured-image {
  margin-bottom: 32px;
  border-radius: 16px;
  overflow: hidden;
}
.single-post__featured-image img {
  width: 100%;
  height: auto;
  display: block;
}
.single-post__content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #333;
}
.single-post__content p {
  margin-bottom: 20px;
}
.single-post__content h2, .single-post__content h3, .single-post__content h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: #2D3142;
  margin: 32px 0 16px;
}
.single-post__content h2 {
  font-size: 2rem;
}
.single-post__content h3 {
  font-size: 1.5rem;
}
.single-post__content h4 {
  font-size: 1.25rem;
}
.single-post__content ul, .single-post__content ol {
  margin: 20px 0;
  padding-left: 24px;
}
.single-post__content ul li, .single-post__content ol li {
  margin-bottom: 8px;
}
.single-post__content a {
  color: #FF6B9D;
  text-decoration: none;
}
.single-post__content a:hover {
  text-decoration: underline;
}
.single-post__content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
}
.single-post__content blockquote {
  border-left: 4px solid #FFD4E5;
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: #666;
}
.single-post__tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid #F5F5F5;
  font-size: 0.9375rem;
}
.single-post__tags i {
  color: #FF9AA2;
}
.single-post__tags a {
  background: #FFF9E6;
  color: #2D3142;
  padding: 6px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.single-post__tags a:hover {
  background: #FFD4E5;
  transform: translateY(-2px);
}
.single-post__navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid #F5F5F5;
}
@media (max-width: 768px) {
  .single-post__navigation {
    grid-template-columns: 1fr;
  }
}
.single-post__nav-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #F9F9F9;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.single-post__nav-link i {
  font-size: 1.25rem;
  color: #FF9AA2;
}
.single-post__nav-link span {
  flex: 1;
}
.single-post__nav-link span small {
  display: block;
  font-size: 0.875rem;
  color: #999;
  margin-bottom: 4px;
}
.single-post__nav-link span strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #2D3142;
  line-height: 1.4;
}
.single-post__nav-link:hover {
  background: #FFE8F0;
  transform: translateY(-2px);
}
.single-post__nav-link--prev {
  text-align: left;
}
.single-post__nav-link--next {
  text-align: right;
  flex-direction: row-reverse;
}
.single-post__sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.single-post__widget {
  background: white;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.single-post__widget-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2D3142;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #FFD4E5;
}
.single-post__recent-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.single-post__recent-list li {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #F5F5F5;
}
.single-post__recent-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.single-post__recent-list li a {
  display: flex;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.single-post__recent-list li a:hover h4 {
  color: #FF6B9D;
}
.single-post__recent-list li a img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.single-post__recent-list li a div {
  flex: 1;
}
.single-post__recent-list li a h4 {
  font-family: "Nunito", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #2D3142;
  margin: 0 0 4px 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}
.single-post__recent-list li a span {
  font-size: 0.8125rem;
  color: #999;
}
.single-post__categories-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.single-post__categories-list li {
  margin-bottom: 8px;
}
.single-post__categories-list li:last-child {
  margin-bottom: 0;
}
.single-post__categories-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: #F9F9F9;
  border-radius: 8px;
  color: #2D3142;
  text-decoration: none;
  transition: all 0.3s ease;
}
.single-post__categories-list li a span {
  color: #999;
  font-size: 0.875rem;
}
.single-post__categories-list li a:hover {
  background: #FFE8F0;
  color: #FF6B9D;
}

#comments {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 2px solid #F5F5F5;
}
#comments .comments-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2D3142;
  margin-bottom: 24px;
}
#comments .comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}
#comments .comment-list .comment {
  margin-bottom: 20px;
  padding: 20px;
  background: #F9F9F9;
  border-radius: 12px;
}
#comments .comment-list .comment .comment-author {
  font-weight: 600;
  margin-bottom: 8px;
}
#comments .comment-list .comment .comment-meta {
  font-size: 0.875rem;
  color: #999;
  margin-bottom: 12px;
}
#comments .comment-list .comment .comment-content {
  line-height: 1.6;
}
#comments .comment-respond .comment-reply-title {
  font-family: "Poppins", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2D3142;
  margin-bottom: 20px;
}
#comments .comment-respond .comment-form input[type=text],
#comments .comment-respond .comment-form input[type=email],
#comments .comment-respond .comment-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E5E5E5;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
#comments .comment-respond .comment-form input[type=text]:focus,
#comments .comment-respond .comment-form input[type=email]:focus,
#comments .comment-respond .comment-form textarea:focus {
  outline: none;
  border-color: #FF9AA2;
}
#comments .comment-respond .comment-form textarea {
  min-height: 120px;
  resize: vertical;
}
#comments .comment-respond .comment-form .form-submit .submit {
  background: linear-gradient(135deg, #FF9AA2 0%, #B8E6F0 100%);
  color: white;
  padding: 12px 32px;
  border: none;
  border-radius: 50px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
#comments .comment-respond .comment-form .form-submit .submit:hover {
  background: linear-gradient(135deg, #FF6B76 0%, #A0D9E8 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 118, 0.3);
}

.single-post__navigation {
  display: none !important;
}

#comments {
  display: none !important;
}

.blog-archive__hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #FFF9E6 0%, #FFE8F0 100%);
  text-align: center;
}
.blog-archive__title {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #2D3142;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .blog-archive__title {
    font-size: 2rem;
  }
}
.blog-archive__description {
  font-size: 1.125rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.blog-archive__content {
  padding: 80px 0;
}
.blog-archive__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .blog-archive__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.blog-archive__empty {
  text-align: center;
  padding: 80px 20px;
}
.blog-archive__empty i {
  font-size: 5rem;
  color: #FF9AA2;
  opacity: 0.3;
  margin-bottom: 24px;
}
.blog-archive__empty h2 {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2D3142;
  margin-bottom: 16px;
}
.blog-archive__empty p {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 32px;
}
.blog-archive__empty .button {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #FF9AA2 0%, #B8E6F0 100%);
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.blog-archive__empty .button:hover {
  background: linear-gradient(135deg, #FF6B76 0%, #A0D9E8 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 107, 118, 0.3);
}
.blog-archive__pagination {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
.blog-archive__pagination .pagination {
  display: flex;
  gap: 8px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-archive__pagination .pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  background: white;
  color: #2D3142;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.blog-archive__pagination .pagination .page-numbers:hover {
  background: #FFE8F0;
  color: #FF6B9D;
  transform: translateY(-2px);
}
.blog-archive__pagination .pagination .page-numbers.current {
  background: linear-gradient(135deg, #FF9AA2 0%, #B8E6F0 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(255, 154, 162, 0.3);
}
.blog-archive__pagination .pagination .page-numbers.dots {
  background: transparent;
  box-shadow: none;
  cursor: default;
}
.blog-archive__pagination .pagination .page-numbers.dots:hover {
  background: transparent;
  transform: none;
}
.blog-archive__pagination .pagination .page-numbers i {
  font-size: 0.875rem;
}

.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.1);
}
.blog-card__image {
  display: block;
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}
.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card__content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: #999;
  margin-bottom: 16px;
}
.blog-card__meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-card__meta span i {
  color: #FF9AA2;
}
.blog-card__meta a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-card__meta a:hover {
  color: #FF6B9D;
}
.blog-card__title {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-card__title a {
  color: #2D3142;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-card__title a:hover {
  color: #FF6B9D;
}
.blog-card__excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
  flex: 1;
}
.blog-card__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #FF9AA2 0%, #B8E6F0 100%);
  color: white;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  align-self: flex-start;
  transition: all 0.3s ease;
}
.blog-card__button i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}
.blog-card__button:hover {
  background: linear-gradient(135deg, #FF6B76 0%, #A0D9E8 100%);
  box-shadow: 0 4px 12px rgba(255, 107, 118, 0.3);
  color: white;
}
.blog-card__button:hover i {
  transform: translateX(4px);
}
