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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #4A3A31;
  background-color: #F6F0EA;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  color: #4A3A31;
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 0.875rem;
  }
}

.desktop-only {
  display: grid;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}
.btn-primary {
  background-color: #4A3A31;
  color: #FFFFFF;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.btn-primary:hover {
  background-color: #D7B28C;
  color: #4A3A31;
  transform: translateY(-2px);
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  background-color: transparent;
  color: #4A3A31;
  padding: 0.75rem 1.5rem;
  border: 2px solid #4A3A31;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background-color: #4A3A31;
  color: #FFFFFF;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #F6F0EA;
  border-bottom: 1px solid #EDE9E3;
  transition: box-shadow 0.3s ease;
}
.header.scrolled {
  box-shadow: 0 2px 20px rgba(74, 58, 49, 0.08);
}

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

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #4A3A31;
}
@media (max-width: 768px) {
  .logo {
    font-size: 1.25rem;
  }
}

.nav-desktop {
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #4A3A31;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #C97064;
  transition: width 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.account-link,
.cart-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #EDE9E3;
  color: #4A3A31;
  transition: all 0.3s ease;
  position: relative;
}
.account-link svg,
.cart-link svg {
  width: 20px;
  height: 20px;
}
.account-link:hover,
.cart-link:hover {
  background-color: #F6E5DC;
  border-color: #D7B28C;
  transform: translateY(-2px);
}

.cart-link .cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: linear-gradient(135deg, #C97064 0%, #B85D52 100%);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #F6F0EA;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lang-selector {
  position: relative;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  background: transparent;
  border: 1px solid #EDE9E3;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #4A3A31;
  transition: all 0.3s ease;
}
.lang-current img {
  border-radius: 2px;
}
.lang-current .lang-arrow {
  transition: transform 0.3s ease;
}
.lang-current:hover {
  background-color: #F6E5DC;
  border-color: #D7B28C;
}

.lang-selector.active .lang-current {
  background-color: #F6E5DC;
  border-color: #D7B28C;
}
.lang-selector.active .lang-current .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 100%;
  background-color: #fff;
  border: 1px solid #EDE9E3;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(74, 58, 49, 0.1);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
  z-index: 100;
}
.lang-dropdown li a {
  display: block;
  padding: 0.625rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #4A3A31;
  text-align: center;
  transition: background-color 0.2s ease;
}
.lang-dropdown li a:hover {
  background-color: #F6E5DC;
}
.lang-dropdown li:first-child a {
  border-radius: 7px 7px 0 0;
}
.lang-dropdown li:last-child a {
  border-radius: 0 0 7px 7px;
}
.lang-dropdown li:only-child a {
  border-radius: 7px;
}

.lang-selector.active .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .lang-current {
    padding: 0.375rem 0.5rem;
  }
  .lang-current .lang-iso {
    display: none;
  }
}
.account-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
.account-link svg {
  width: 22px;
  height: 22px;
}
.account-link:hover {
  background-color: #F6E5DC;
}
@media (max-width: 768px) {
  .account-link {
    width: 36px;
    height: 36px;
  }
  .account-link svg {
    width: 18px;
    height: 18px;
  }
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
}
.menu-toggle .menu-bar {
  width: 24px;
  height: 2px;
  background-color: #4A3A31;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.active .menu-bar:first-child {
  transform: translateY(4px) rotate(45deg);
}
.menu-toggle.active .menu-bar:last-child {
  transform: translateY(-4px) rotate(-45deg);
}
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 1.5rem;
  background-color: #F6F0EA;
  border-top: 1px solid #EDE9E3;
}
.nav-mobile.active {
  display: flex;
}
.nav-mobile .nav-link {
  padding: 0.75rem 0;
  border-bottom: 1px solid #EDE9E3;
}
@media (max-width: 768px) {
  .nav-mobile .nav-link {
    padding: 0.625rem 0;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .nav-mobile {
    padding: 0.75rem 1rem;
  }
}

.footer {
  background-color: #4A3A31;
  color: white;
  padding: 4rem 0 2rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 0 1.5rem;
  }
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer-brand {
    grid-column: 1/-1;
    text-align: center;
    margin-bottom: 0.5rem;
  }
}
.footer-brand .footer-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  display: inline-block;
}
@media (max-width: 768px) {
  .footer-brand .footer-logo {
    font-size: 1.25rem;
  }
}
.footer-brand .footer-tagline {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .footer-brand .footer-tagline {
    font-size: 0.85rem;
  }
}

.footer-nav .footer-title {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  color: white;
}
@media (max-width: 768px) {
  .footer-nav .footer-title {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
  }
}

.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .footer-links li {
    margin-bottom: 0.4rem;
  }
}
.footer-links a {
  font-size: 0.95rem;
  color: white;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.footer-links a:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  .footer-links a {
    font-size: 0.85rem;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
}

.copyright {
  font-size: 0.875rem;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .copyright {
    font-size: 0.8rem;
  }
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.35rem;
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 1.2rem;
  }
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 1.25rem;
  }
}

.see-all {
  font-size: 0.95rem;
  font-weight: 500;
  color: #C97064;
  transition: transform 0.3s ease;
}
.see-all:hover {
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .see-all {
    font-size: 0.85rem;
  }
}

.page-header {
  padding: 8rem 1.5rem 3rem;
  background: linear-gradient(180deg, #F6F0EA 0%, #F6E5DC 100%);
  text-align: center;
}
@media (max-width: 768px) {
  .page-header {
    padding: 5.5rem 1rem 1.5rem;
  }
}
@media (max-width: 480px) {
  .page-header {
    padding: 5rem 0.875rem 1.25rem;
  }
}

.page-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .page-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 480px) {
  .page-title {
    font-size: 1.5rem;
  }
}

.page-subtitle {
  font-size: 1.125rem;
  color: #4A3A31;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page-subtitle {
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .page-subtitle {
    font-size: 0.9rem;
  }
}

.form-row {
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .form-row {
    margin-bottom: 1rem;
  }
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #4A3A31;
}
@media (max-width: 768px) {
  .form-label {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }
}

.form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid #EDE9E3;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  background-color: #F6F0EA;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-control:focus {
  outline: none;
  border-color: #D7B28C;
  box-shadow: 0 0 0 4px rgba(215, 178, 140, 0.2);
}
.form-control::placeholder {
  color: #4A3A31;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .form-control {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%234A3A31' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.25em 1.25em;
  padding-right: 2.5rem;
}

.alert {
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.alert.alert-success {
  background-color: rgba(72, 187, 120, 0.1);
  color: #2f855a;
  border: 1px solid rgba(72, 187, 120, 0.3);
}
.alert.alert-danger {
  background-color: rgba(245, 101, 101, 0.1);
  color: #c53030;
  border: 1px solid rgba(245, 101, 101, 0.3);
}

.swiper {
  width: 100%;
  padding-bottom: 2.5rem;
}

.swiper-pagination-bullet {
  background-color: #4A3A31;
  opacity: 0.3;
  width: 8px;
  height: 8px;
}
.swiper-pagination-bullet-active {
  background-color: #C97064;
  opacity: 1;
}

.cards-swiper .swiper-slide,
.articles-swiper .swiper-slide,
.latest-swiper .swiper-slide,
.products-swiper .swiper-slide {
  height: auto;
}
.cards-swiper .card,
.cards-swiper .article-card,
.cards-swiper .latest-card,
.cards-swiper .product-card,
.articles-swiper .card,
.articles-swiper .article-card,
.articles-swiper .latest-card,
.articles-swiper .product-card,
.latest-swiper .card,
.latest-swiper .article-card,
.latest-swiper .latest-card,
.latest-swiper .product-card,
.products-swiper .card,
.products-swiper .article-card,
.products-swiper .latest-card,
.products-swiper .product-card {
  height: 100%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .fade-in {
    transition: opacity 0.3s ease, transform 0.3s ease;
    transition-delay: 0s !important;
  }
  .swiper .fade-in,
  .swiper-slide .fade-in,
  .swiper-slide.fade-in,
  .mobile-only .fade-in,
  .mobile-only .card,
  .mobile-only .article-card,
  .mobile-only .latest-card,
  .mobile-only .product-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    transition-delay: 0s !important;
  }
}
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background-color: #4A3A31;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  animation: slideIn 0.4s ease;
  max-width: 320px;
}
@media (max-width: 480px) {
  .notification {
    left: 20px;
    right: 20px;
    max-width: none;
  }
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.notification-content svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #D7B28C;
}

.welcome-popup {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #F6F0EA;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  max-width: 320px;
  z-index: 1500;
  animation: popupSlideIn 0.5s ease;
  border: 1px solid #EDE9E3;
}
.welcome-popup h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #4A3A31;
}
.welcome-popup p {
  font-size: 0.9rem;
  color: #4A3A31;
  opacity: 0.8;
  margin-bottom: 1rem;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .welcome-popup {
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    max-width: none;
    padding: 1.25rem;
  }
  .welcome-popup h3 {
    font-size: 1.1rem;
  }
  .welcome-popup p {
    font-size: 0.85rem;
  }
}

.welcome-popup-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.welcome-popup-close:hover {
  opacity: 1;
}
.welcome-popup-close svg {
  width: 20px;
  height: 20px;
}

.welcome-popup-form {
  display: flex;
  gap: 0.5rem;
}
.welcome-popup-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 2px solid #EDE9E3;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: "Inter", sans-serif;
}
.welcome-popup-form input:focus {
  outline: none;
  border-color: #D7B28C;
}
.welcome-popup-form button {
  padding: 0.75rem 1rem;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .welcome-popup-form {
    flex-direction: column;
    gap: 0.5rem;
  }
  .welcome-popup-form input {
    padding: 0.625rem 0.875rem;
    font-size: 0.9rem;
  }
  .welcome-popup-form button {
    padding: 0.625rem 1rem;
  }
}

#page,
#columns_container,
#columns,
#center_column {
  background-color: transparent;
}

.breadcrumb {
  display: none;
}

.hero {
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F6F0EA 0%, #F6E5DC 100%);
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, #E8C9B8 0%, transparent 50%), radial-gradient(circle at 80% 20%, #D7B28C 0%, transparent 40%);
  opacity: 0.3;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero {
    padding: 6rem 1rem 2rem;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 5.5rem 0.875rem 1.5rem;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #4A3A31;
  opacity: 0.8;
  animation: fadeInUp 0.8s ease-out 0.2s backwards;
}
@media (max-width: 768px) {
  .hero-subtitle {
    font-size: 1rem;
  }
}

.hero-decoration {
  position: absolute;
  bottom: 2rem;
  right: 10%;
  opacity: 0.15;
  animation: float 6s ease-in-out infinite;
}
@media (max-width: 768px) {
  .hero-decoration {
    display: none;
  }
}

.heart-icon {
  width: 120px;
  height: 120px;
  color: #C97064;
}

.search-section {
  padding: 4rem 0;
  background-color: #F6F0EA;
  position: relative;
  z-index: 100;
}
@media (max-width: 768px) {
  .search-section {
    padding: 2rem 0;
  }
}

.search-box {
  background-color: #F6E5DC;
  padding: 2rem;
  border-radius: 16px;
  position: relative;
  z-index: 100;
}
@media (max-width: 768px) {
  .search-box {
    padding: 1.25rem;
    border-radius: 12px;
  }
}

.search-input-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  z-index: 9999;
}
@media (max-width: 768px) {
  .search-input-wrapper {
    margin-bottom: 1rem;
  }
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #4A3A31;
  opacity: 0.5;
}

.search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #EDE9E3;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  background-color: #F6F0EA;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.search-input:focus {
  outline: none;
  border-color: #D7B28C;
  box-shadow: 0 0 0 4px rgba(215, 178, 140, 0.2);
}
.search-input::placeholder {
  color: #4A3A31;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .search-input {
    padding: 0.875rem 0.875rem 0.875rem 2.75rem;
    font-size: 0.95rem;
  }
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .filter-buttons {
    margin-bottom: 1rem;
    gap: 0.5rem;
  }
}
@media (max-width: 480px) {
  .filter-buttons {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
}

.filter-btn {
  padding: 0.625rem 1.25rem;
  border: 2px solid #EDE9E3;
  border-radius: 50px;
  background-color: #F6F0EA;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4A3A31;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter-btn:hover {
  border-color: #D7B28C;
  background-color: #F6E5DC;
}
.filter-btn.active {
  background-color: #4A3A31;
  border-color: #4A3A31;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .filter-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  .filter-btn {
    flex-shrink: 0;
    padding: 0.4rem 0.875rem;
    font-size: 0.8rem;
  }
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 480px) {
  .category-tags {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
}

.tag {
  padding: 0.5rem 1rem;
  border: 1px solid #EDE9E3;
  border-radius: 8px;
  background-color: transparent;
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  color: #4A3A31;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tag:hover {
  background-color: #E8C9B8;
  border-color: #E8C9B8;
}
.tag.active {
  background-color: #C97064;
  border-color: #C97064;
  color: white;
}
@media (max-width: 480px) {
  .tag {
    flex-shrink: 0;
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
  }
}

.search-suggestions {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  right: 0;
  background: #FFFBF7;
  border: 2px solid #EDE9E3;
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: none;
  max-height: 320px;
  overflow-y: auto;
}
.search-suggestions.active {
  display: block;
}
@media (max-width: 768px) {
  .search-suggestions {
    max-height: 280px;
    border-radius: 0 0 10px 10px;
  }
}

.suggestion-category {
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #C97064;
  background: #F6E5DC;
}
@media (max-width: 768px) {
  .suggestion-category {
    padding: 0.625rem 0.875rem;
    font-size: 0.7rem;
  }
}

.suggestion-item {
  padding: 0.875rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #EDE9E3;
}
.suggestion-item:last-child {
  border-bottom: none;
}
.suggestion-item:hover {
  background-color: #F6E5DC;
}
.suggestion-item svg {
  width: 18px;
  height: 18px;
  opacity: 0.5;
}
.suggestion-item span {
  flex: 1;
}
.suggestion-item .suggestion-tag {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  background: #E8C9B8;
  border-radius: 4px;
  color: #4A3A31;
}
@media (max-width: 768px) {
  .suggestion-item {
    padding: 0.75rem 0.875rem;
    gap: 0.625rem;
  }
  .suggestion-item svg {
    width: 16px;
    height: 16px;
  }
  .suggestion-item span {
    font-size: 0.9rem;
  }
  .suggestion-item .suggestion-tag {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
  }
}

.favorites-section {
  padding: 4rem 0;
  background-color: #F6E5DC;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .favorites-section {
    padding: 2rem 0;
  }
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.card {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease 0.1s;
  max-height: 600px;
  overflow: hidden;
}
.card.card-filtering {
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  max-height: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.card {
  background-color: #E8C9B8;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.card:hover .card-image img {
  transform: scale(1.05);
}

.card-image {
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .card-image img {
    height: 180px;
  }
}
@media (max-width: 480px) {
  .card-image img {
    height: 160px;
  }
}

.card-content {
  padding: 1.25rem;
}
@media (max-width: 768px) {
  .card-content {
    padding: 1rem;
  }
}

.card-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #C97064;
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .card-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}

.card-excerpt {
  font-size: 0.9rem;
  color: #4A3A31;
  opacity: 0.8;
  margin-bottom: 1rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .card-excerpt {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.card-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4A3A31;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}
.card-link:hover {
  color: #C97064;
  transform: translateX(4px);
}
@media (max-width: 768px) {
  .card-link {
    font-size: 0.85rem;
  }
}

.articles-section {
  padding: 4rem 0;
  background-color: #F6F0EA;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .articles-section {
    padding: 2rem 0;
  }
}

.articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.article-card {
  background-color: #F6E5DC;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.article-card:hover .article-image img {
  transform: scale(1.05);
}
.article-card.featured {
  grid-column: 1;
  grid-row: 1/span 3;
}
.article-card.featured .article-image img {
  height: 300px;
}
@media (max-width: 768px) {
  .article-card.featured .article-image img {
    height: 200px;
  }
}
.article-card.featured .article-title {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .article-card.featured .article-title {
    font-size: 1.2rem;
  }
}
@media (max-width: 768px) {
  .article-card.featured {
    grid-column: 1;
    grid-row: auto;
  }
}

.article-image {
  overflow: hidden;
}
.article-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .article-image img {
    height: 180px;
  }
}

.article-content {
  padding: 1.5rem;
}
@media (max-width: 768px) {
  .article-content {
    padding: 1rem;
  }
}

.article-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #C97064;
  margin-bottom: 0.5rem;
}

.article-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .article-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
}

.article-excerpt {
  font-size: 0.95rem;
  color: #4A3A31;
  opacity: 0.8;
  margin-bottom: 1rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .article-excerpt {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

.article-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: #4A3A31;
  opacity: 0.6;
}

.latest-section {
  padding: 4rem 0;
  background-color: #E8C9B8;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .latest-section {
    padding: 2rem 0;
  }
}

.latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .latest-grid {
    gap: 1rem;
  }
}

.latest-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: #F6F0EA;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.latest-card:hover {
  transform: translateX(8px);
}
@media (max-width: 768px) {
  .latest-card {
    padding: 1rem;
    gap: 0.75rem;
  }
}
@media (max-width: 480px) {
  .latest-card {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.875rem;
  }
}

.latest-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #C97064;
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .latest-number {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .latest-number {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
}

.latest-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}
@media (max-width: 768px) {
  .latest-content h3 {
    font-size: 1rem;
  }
}
.latest-content p {
  font-size: 0.875rem;
  color: #4A3A31;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .latest-content p {
    font-size: 0.85rem;
  }
}

.newsletter-section {
  padding: 4rem 0;
  background-color: #F6F0EA;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .newsletter-section {
    padding: 2rem 0;
  }
}

.newsletter-box {
  background: linear-gradient(135deg, #C97064 0%, #E8C9B8 100%);
  padding: 3rem;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}
@media (max-width: 768px) {
  .newsletter-box {
    grid-template-columns: 1fr;
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
  }
}

.newsletter-content {
  color: white;
}

.newsletter-title {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
  color: white;
}
@media (max-width: 768px) {
  .newsletter-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
}

.newsletter-text {
  font-size: 1rem;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .newsletter-text {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
}

.newsletter-form .form-group {
  display: flex;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .newsletter-form .form-group {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.newsletter-form .form-input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: none;
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  background-color: white;
}
.newsletter-form .form-input::placeholder {
  color: #4A3A31;
  opacity: 0.5;
}
.newsletter-form .form-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}
@media (max-width: 768px) {
  .newsletter-form .form-input {
    padding: 0.875rem 1rem;
  }
}
.newsletter-form .btn-primary {
  background-color: #4A3A31;
  white-space: nowrap;
}
.newsletter-form .btn-primary:hover {
  background-color: rgb(43.3170731707, 33.9512195122, 28.6829268293);
  color: white;
}

.mobile-only .card-image img {
  height: 180px;
}
.mobile-only .card-content {
  padding: 1rem;
}
.mobile-only .card-title {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.mobile-only .card-excerpt {
  font-size: 0.875rem;
  margin-bottom: 0.6rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mobile-only .card-link {
  font-size: 0.85rem;
}
.mobile-only .article-image img {
  height: 160px;
}
.mobile-only .article-content {
  padding: 0.875rem;
}
.mobile-only .article-title {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.mobile-only .article-excerpt {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

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