* {
  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;
}

.blog-page .page-header,
.author-page .page-header,
.authors-page .page-header {
  padding: 8rem 1.5rem 3rem;
  background: linear-gradient(180deg, #F6F0EA 0%, #F6E5DC 100%);
  text-align: center;
}
.blog-page .page-header .page-header-tag,
.author-page .page-header .page-header-tag,
.authors-page .page-header .page-header-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #C97064;
  margin-bottom: 1rem;
}
.blog-page .page-header h1,
.author-page .page-header h1,
.authors-page .page-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}
.blog-page .page-header .page-header-desc,
.author-page .page-header .page-header-desc,
.authors-page .page-header .page-header-desc {
  font-size: 1.1rem;
  color: #4A3A31;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .blog-page .page-header,
  .author-page .page-header,
  .authors-page .page-header {
    padding: 5.5rem 1rem 2rem;
  }
  .blog-page .page-header h1,
  .author-page .page-header h1,
  .authors-page .page-header h1 {
    font-size: 1.75rem;
  }
  .blog-page .page-header .page-header-desc,
  .author-page .page-header .page-header-desc,
  .authors-page .page-header .page-header-desc {
    font-size: 0.95rem;
  }
}

.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .blog-categories {
    gap: 0.5rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
  .blog-categories::-webkit-scrollbar {
    display: none;
  }
}

.blog-category-tag {
  padding: 0.5rem 1.25rem;
  background-color: transparent;
  border: 1px solid #EDE9E3;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4A3A31;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.blog-category-tag:hover, .blog-category-tag.active {
  background-color: #4A3A31;
  border-color: #4A3A31;
  color: #FFFFFF;
}
@media (max-width: 768px) {
  .blog-category-tag {
    padding: 0.4rem 1rem;
    font-size: 0.8125rem;
  }
}

.articles-section {
  padding: 2rem 0 4rem;
}
@media (max-width: 768px) {
  .articles-section {
    padding: 1.5rem 0 2rem;
  }
}

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

.section-title {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.25rem;
  }
}

.section-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #C97064;
  transition: gap 0.3s ease;
}
.section-link:hover {
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .section-link {
    font-size: 0.8125rem;
  }
}

.section-count {
  font-size: 0.9rem;
  color: #4A3A31;
  opacity: 0.6;
}

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

.article-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(74, 58, 49, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(74, 58, 49, 0.12);
}
.article-card:hover .article-card-image img {
  transform: scale(1.05);
}
.article-card.featured {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  background: linear-gradient(135deg, #F6E5DC 0%, #fff 100%);
}
.article-card.featured .article-card-image img {
  height: 100%;
  min-height: 320px;
}
.article-card.featured .article-card-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.article-card.featured .article-card-title {
  font-size: 1.5rem;
}
.article-card.featured .article-card-excerpt {
  display: block;
  -webkit-line-clamp: unset;
}
@media (max-width: 768px) {
  .article-card.featured {
    grid-template-columns: 1fr;
  }
  .article-card.featured .article-card-image img {
    height: 200px;
    min-height: unset;
  }
  .article-card.featured .article-card-content {
    padding: 1.25rem;
  }
  .article-card.featured .article-card-title {
    font-size: 1.25rem;
  }
}

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

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

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

.article-card-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.article-card-title a {
  color: #4A3A31;
}
.article-card-title a:hover {
  color: #C97064;
}
@media (max-width: 768px) {
  .article-card-title {
    font-size: 1rem;
  }
}

.article-card-excerpt {
  font-size: 0.875rem;
  color: #4A3A31;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #4A3A31;
  opacity: 0.5;
}

.article-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4A3A31;
  margin-top: 1rem;
  transition: gap 0.3s ease, color 0.3s ease;
}
.article-card-link:hover {
  gap: 0.75rem;
  color: #C97064;
}

.blog-single .article-header {
  padding: 8rem 1.5rem 2rem;
  background: linear-gradient(180deg, #F6F0EA 0%, #F6E5DC 100%);
}
@media (max-width: 768px) {
  .blog-single .article-header {
    padding: 5.5rem 1rem 1.5rem;
  }
}
.blog-single .article-header-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.blog-single .article-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #C97064;
  margin-bottom: 1rem;
  transition: opacity 0.3s ease;
}
.blog-single .article-category:hover {
  opacity: 0.7;
}
.blog-single .article-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .blog-single .article-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.blog-single .article-meta {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4A3A31;
  opacity: 0.6;
}

.article-hero-image {
  max-width: 900px;
  margin: -2rem auto 0;
  padding: 0 1.5rem;
}
.article-hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .article-hero-image {
    margin-top: -1rem;
    padding: 0 1rem;
  }
  .article-hero-image img {
    height: 220px;
    border-radius: 12px;
  }
}

.article-container {
  display: flex;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
@media (max-width: 992px) {
  .article-container {
    flex-direction: column;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .article-container {
    padding: 2rem 1rem;
  }
}

.article-sidebar {
  width: 250px;
  flex-shrink: 0;
}
@media (max-width: 992px) {
  .article-sidebar {
    width: 100%;
    order: -1;
  }
}

.article-toc {
  position: sticky;
  top: 100px;
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(74, 58, 49, 0.06);
}
@media (max-width: 992px) {
  .article-toc {
    position: static;
  }
}

.article-toc-title {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #4A3A31;
}

.article-toc-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.article-toc-content li {
  margin-bottom: 0.5rem;
}
.article-toc-content a {
  font-size: 0.875rem;
  color: #4A3A31;
  opacity: 0.7;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.article-toc-content a:hover {
  opacity: 1;
  color: #C97064;
}

.article-main {
  flex: 1;
  min-width: 0;
}

.article-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4A3A31;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #EDE9E3;
}
@media (max-width: 768px) {
  .article-intro {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.article-body p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
.article-body h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .article-body h2 {
    font-size: 1.25rem;
    margin-top: 2rem;
  }
}
.article-body h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .article-body h3 {
    font-size: 1.1rem;
  }
}
.article-body ul, .article-body ol {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.article-body li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.article-body blockquote {
  padding: 1.5rem;
  background-color: #F6E5DC;
  border-left: 4px solid #C97064;
  border-radius: 0 12px 12px 0;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.05rem;
}
.article-body img {
  border-radius: 12px;
  margin: 2rem 0;
}
.article-body a {
  color: #C97064;
  text-decoration: underline;
}
.article-body a:hover {
  text-decoration: none;
}
@media (max-width: 768px) {
  .article-body p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
  }
}

.article-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .article-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

.article-gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0;
}

.article-video {
  margin: 2rem 0;
  border-radius: 12px;
  overflow: hidden;
}
.article-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid #EDE9E3;
  margin-top: 2rem;
}

.article-tags-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4A3A31;
}

.article-tag {
  padding: 0.25rem 0.75rem;
  background-color: #F6E5DC;
  border-radius: 50px;
  font-size: 0.8rem;
  color: #4A3A31;
}

.author-box {
  background-color: #F6E5DC;
  border-radius: 16px;
  padding: 2rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .author-box {
    padding: 1.5rem;
    margin-top: 2rem;
  }
}

.author-box-inner {
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .author-box-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.author-avatar {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.author-info {
  flex: 1;
}

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

.author-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.author-bio {
  font-size: 0.9rem;
  color: #4A3A31;
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.author-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .author-links {
    justify-content: center;
  }
}

.author-social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  color: #4A3A31;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.author-social:hover {
  background-color: #4A3A31;
  color: #fff;
}

.author-all-posts {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4A3A31;
  margin-left: auto;
  transition: gap 0.3s ease;
}
.author-all-posts:hover {
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .author-all-posts {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

.article-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-top: 1px solid #EDE9E3;
}
@media (max-width: 768px) {
  .article-share {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
}

.article-share-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4A3A31;
}

.article-share-buttons {
  display: flex;
  gap: 0.5rem;
}

.share-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #F6E5DC;
  color: #4A3A31;
  transition: all 0.3s ease;
}
.share-btn:hover {
  transform: translateY(-2px);
}
.share-btn.share-facebook:hover {
  background-color: #1877f2;
  color: #fff;
}
.share-btn.share-twitter:hover {
  background-color: #1da1f2;
  color: #fff;
}
.share-btn.share-pinterest:hover {
  background-color: #e60023;
  color: #fff;
}
.share-btn.share-email:hover {
  background-color: #4A3A31;
  color: #fff;
}

.related-posts {
  padding: 4rem 0;
  background-color: #F6E5DC;
}
@media (max-width: 768px) {
  .related-posts {
    padding: 2.5rem 0;
  }
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 992px) {
  .related-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
}

.related-products {
  padding: 4rem 0;
  background-color: #F6F0EA;
}
@media (max-width: 768px) {
  .related-products {
    padding: 2.5rem 0;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

.product-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(74, 58, 49, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(74, 58, 49, 0.1);
}

.product-card-image {
  display: block;
  overflow: hidden;
}
.product-card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
@media (max-width: 768px) {
  .product-card-image img {
    height: 140px;
  }
}
.product-card-image:hover img {
  transform: scale(1.05);
}

.product-card-content {
  padding: 1rem;
  text-align: center;
}
@media (max-width: 768px) {
  .product-card-content {
    padding: 0.75rem;
  }
}

.product-card-title {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.product-card-title a {
  color: #4A3A31;
}
.product-card-title a:hover {
  color: #C97064;
}
@media (max-width: 768px) {
  .product-card-title {
    font-size: 0.8125rem;
  }
}

.product-card-price {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #C97064;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .product-card-price {
    font-size: 1rem;
  }
}

.product-card-btn {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: #4A3A31;
  color: #fff;
  border-radius: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.product-card-btn:hover {
  background-color: #C97064;
  color: #fff;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .blog-pagination {
    margin-top: 2rem;
  }
}

.pagination-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pagination-item a, .pagination-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4A3A31;
  background-color: #fff;
  border: 1px solid #EDE9E3;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .pagination-item a, .pagination-item span {
    min-width: 36px;
    height: 36px;
    font-size: 0.8125rem;
  }
}
.pagination-item a:hover {
  background-color: #F6E5DC;
  border-color: #D7B28C;
}
.pagination-item.active span {
  background-color: #4A3A31;
  border-color: #4A3A31;
  color: #fff;
}
.pagination-item.disabled span {
  opacity: 0.4;
  cursor: not-allowed;
}
.pagination-item.pagination-ellipsis span {
  border: none;
  background: transparent;
  min-width: 30px;
}
.pagination-item.pagination-prev a, .pagination-item.pagination-prev span, .pagination-item.pagination-next a, .pagination-item.pagination-next span {
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .pagination-item.pagination-prev .pagination-text, .pagination-item.pagination-next .pagination-text {
    display: none;
  }
}

.author-header {
  padding: 8rem 1.5rem 3rem;
  background: linear-gradient(180deg, #F6F0EA 0%, #F6E5DC 100%);
}
@media (max-width: 768px) {
  .author-header {
    padding: 5.5rem 1rem 2rem;
  }
}

.author-profile {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .author-profile {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}

.author-avatar-large {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}
.author-avatar-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
  box-shadow: 0 4px 12px rgba(74, 58, 49, 0.1);
}
@media (max-width: 768px) {
  .author-avatar-large {
    width: 100px;
    height: 100px;
  }
}

.author-profile-info .author-label {
  margin-bottom: 0.5rem;
}
.author-profile-info .author-name {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 768px) {
  .author-profile-info .author-name {
    font-size: 1.5rem;
  }
}
.author-profile-info .author-bio {
  max-width: 500px;
}
@media (max-width: 768px) {
  .author-profile-info .author-bio {
    max-width: 100%;
  }
}

.author-social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .author-social-links {
    justify-content: center;
  }
}

.author-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #fff;
  color: #4A3A31;
  transition: all 0.3s ease;
}
.author-social-link:hover {
  background-color: #4A3A31;
  color: #fff;
}

.author-articles {
  padding: 3rem 0 4rem;
}
@media (max-width: 768px) {
  .author-articles {
    padding: 2rem 0;
  }
}

.authors-list {
  padding: 3rem 0 4rem;
}
@media (max-width: 768px) {
  .authors-list {
    padding: 2rem 0;
  }
}

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

.author-card {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(74, 58, 49, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.author-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(74, 58, 49, 0.12);
}

.author-card-link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  color: #4A3A31;
}
@media (max-width: 768px) {
  .author-card-link {
    padding: 1.25rem;
    gap: 1rem;
  }
}

.author-card-avatar {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}
.author-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.author-card-avatar.author-card-avatar-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F6E5DC;
  border-radius: 50%;
  color: #4A3A31;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .author-card-avatar {
    width: 60px;
    height: 60px;
  }
}

.author-card-info {
  flex: 1;
  min-width: 0;
}

.author-card-name {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}
@media (max-width: 768px) {
  .author-card-name {
    font-size: 1rem;
  }
}

.author-card-bio {
  font-size: 0.875rem;
  color: #4A3A31;
  opacity: 0.7;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.author-card-count {
  font-size: 0.8rem;
  color: #C97064;
  font-weight: 500;
}

.author-card-arrow {
  flex-shrink: 0;
  color: #4A3A31;
  opacity: 0.3;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.author-card:hover .author-card-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.blog-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: #4A3A31;
  opacity: 0.5;
}
.blog-empty svg {
  margin-bottom: 1rem;
}
.blog-empty p {
  font-size: 1rem;
}

.blog-page .newsletter-section,
.blog-single .newsletter-section,
.author-page .newsletter-section,
.authors-page .newsletter-section {
  padding: 4rem 0;
  background-color: #F6F0EA;
}
@media (max-width: 768px) {
  .blog-page .newsletter-section,
  .blog-single .newsletter-section,
  .author-page .newsletter-section,
  .authors-page .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;
    text-align: center;
  }
}

.newsletter-content {
  color: #fff;
}
.newsletter-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #fff;
}
@media (max-width: 768px) {
  .newsletter-content h2 {
    font-size: 1.25rem;
  }
}
.newsletter-content p {
  font-size: 0.95rem;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .newsletter-content p {
    font-size: 0.875rem;
  }
}

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

.related-posts-swiper .swiper-slide,
.related-products-swiper .swiper-slide {
  height: auto;
}
.related-posts-swiper .swiper-pagination,
.related-products-swiper .swiper-pagination {
  position: relative;
  margin-top: 1.5rem;
}
.related-posts-swiper .swiper-pagination-bullet,
.related-products-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #4A3A31;
  opacity: 0.2;
}
.related-posts-swiper .swiper-pagination-bullet-active,
.related-products-swiper .swiper-pagination-bullet-active {
  background-color: #C97064;
  opacity: 1;
}

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