:root {
    --color-bg-main: #F6F0EA;
    --color-bg-secondary: #E8C9B8;
    --color-accent: #D7B28C;
    --color-text-main: #4A3A31;
    --color-border-light: #EDE9E3;
    --color-button-bg: #4A3A31;
    --color-button-text: #FFFFFF;
    --color-hover-bg: #D7B28C;
    --color-terracotta: #C97064;
    --color-cream: #F6E5DC;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-text-main);
    background-color: var(--color-bg-main);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--color-text-main);
    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;
}

.btn-primary {
    background-color: var(--color-button-bg);
    color: var(--color-button-text);
    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: var(--color-hover-bg);
    color: var(--color-text-main);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-button-bg);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--color-button-bg);
    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: var(--color-button-bg);
    color: var(--color-button-text);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--color-bg-main);
    border-bottom: 1px solid var(--color-border-light);
    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;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.nav-desktop {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-main);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-terracotta);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.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:hover {
    background-color: var(--color-border-light);
}

.account-link svg {
    width: 22px;
    height: 22px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-bar {
    width: 24px;
    height: 2px;
    background-color: var(--color-text-main);
    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);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 1rem 1.5rem;
    background-color: var(--color-bg-main);
    border-top: 1px solid var(--color-border-light);
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile .nav-link {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-border-light);
}

.hero {
    padding: 8rem 1.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--color-bg-main) 0%, var(--color-cream) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 80%, var(--color-bg-secondary) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, var(--color-accent) 0%, transparent 40%);
    opacity: 0.3;
    pointer-events: none;
}

.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;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-main);
    opacity: 0.8;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-decoration {
    position: absolute;
    bottom: 2rem;
    right: 10%;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.heart-icon {
    width: 120px;
    height: 120px;
    color: var(--color-terracotta);
}

@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);
    }
}

.search-section {
    padding: 4rem 0;
    background-color: var(--color-bg-main);
    position: relative;
    z-index: 100;
}

.section-title {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 1.5rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.see-all {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-terracotta);
    transition: transform 0.3s ease;
}

.see-all:hover {
    transform: translateX(4px);
}

.search-box {
    background-color: var(--color-cream);
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    z-index: 100;
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    z-index: 9999;
}

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

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--color-border-light);
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background-color: var(--color-bg-main);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(215, 178, 140, 0.2);
}

.search-input::placeholder {
    color: var(--color-text-main);
    opacity: 0.5;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.filter-btn {
    padding: 0.625rem 1.25rem;
    border: 2px solid var(--color-border-light);
    border-radius: 50px;
    background-color: var(--color-bg-main);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-main);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: var(--color-accent);
    background-color: var(--color-cream);
}

.filter-btn.active {
    background-color: var(--color-button-bg);
    border-color: var(--color-button-bg);
    color: var(--color-button-text);
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.tag {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    background-color: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--color-text-main);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--color-bg-secondary);
    border-color: var(--color-bg-secondary);
}

.tag.active {
    background-color: var(--color-terracotta);
    border-color: var(--color-terracotta);
    color: white;
}

.favorites-section {
    padding: 4rem 0;
    background-color: var(--color-cream);
    position: relative;
    z-index: 1;
}

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

.card {
    background-color: var(--color-bg-secondary);
    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-image {
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.25rem;
}

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

.card-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.card-excerpt {
    font-size: 0.9rem;
    color: var(--color-text-main);
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.card-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-button-bg);
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.card-link:hover {
    color: var(--color-terracotta);
    transform: translateX(4px);
}

.articles-section {
    padding: 4rem 0;
    background-color: var(--color-bg-main);
    position: relative;
    z-index: 1;
}

.articles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.article-card {
    background-color: var(--color-cream);
    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.featured {
    grid-column: 1;
    grid-row: 1 / span 3;
}

.article-image {
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-card.featured .article-image img {
    height: 300px;
}

.article-content {
    padding: 1.5rem;
}

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

.article-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.article-card.featured .article-title {
    font-size: 1.5rem;
}

.article-excerpt {
    font-size: 0.95rem;
    color: var(--color-text-main);
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-main);
    opacity: 0.6;
}

.latest-section {
    padding: 4rem 0;
    background-color: var(--color-bg-secondary);
    position: relative;
    z-index: 1;
}

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

.latest-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: var(--color-bg-main);
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.latest-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.latest-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-terracotta);
    opacity: 0.3;
    line-height: 1;
}

.latest-content {
    flex: 1;
}

.latest-category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-terracotta);
    margin-bottom: 0.25rem;
}

.latest-title {
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.latest-date {
    font-size: 0.8rem;
    color: var(--color-text-main);
    opacity: 0.6;
}

.newsletter-section {
    padding: 4rem 0;
    background-color: var(--color-bg-main);
    position: relative;
    z-index: 1;
}

.newsletter-box {
    background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-bg-secondary) 100%);
    padding: 3rem;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: white;
    margin-bottom: 1rem;
}

.newsletter-text {
    font-size: 1rem;
    color: white;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    gap: 0.75rem;
}

.form-input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background-color: var(--color-bg-main);
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: white;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-button-bg);
}

.social-section {
    padding: 4rem 0;
    background-color: var(--color-cream);
}

.social-content {
    text-align: center;
}

.social-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 0.5rem;
}

.social-text {
    font-size: 1rem;
    color: var(--color-text-main);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-link {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-main);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--color-button-bg);
    color: white;
    transform: translateY(-4px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.footer {
    background-color: var(--color-button-bg);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    display: block;
    margin-bottom: 1rem;
}

.footer-tagline {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

.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;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.95rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    font-size: 0.85rem;
    opacity: 0.6;
}

.desktop-only {
    display: grid;
}

.mobile-only {
    display: none;
}

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

.swiper-pagination-bullet {
    background-color: var(--color-text-main);
    opacity: 0.3;
    width: 8px;
    height: 8px;
}

.swiper-pagination-bullet-active {
    background-color: var(--color-terracotta);
    opacity: 1;
}

.cards-swiper .swiper-slide,
.articles-swiper .swiper-slide,
.latest-swiper .swiper-slide,
.products-swiper .swiper-slide {
    height: auto;
}

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

.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;
}

.mobile-only .product-image img {
    height: 160px;
}

.mobile-only .product-content {
    padding: 0.875rem;
}

.mobile-only .product-title {
    font-size: 0.9rem;
}

.mobile-only .product-price {
    font-size: 1rem;
    margin-bottom: 0.625rem;
}

.mobile-only .btn-primary {
    padding: 0.5rem 0.875rem;
    font-size: 0.85rem;
}

.page-header {
    padding: 8rem 1.5rem 3rem;
    background: linear-gradient(180deg, var(--color-bg-main) 0%, var(--color-cream) 100%);
    text-align: center;
}

.page-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-main);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 4rem 0;
    position: relative;
    z-index: 1;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--color-cream);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.product-image {
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: 1.25rem;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-terracotta);
    margin-bottom: 1rem;
}

.article-full {
    max-width: 800px;
    margin: 0 auto;
}

.article-header {
    padding: 8rem 1.5rem 2rem;
    background: linear-gradient(180deg, var(--color-bg-main) 0%, var(--color-cream) 100%);
}

.article-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.article-header .article-category {
    margin-bottom: 1rem;
}

.article-header .article-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.article-header .article-meta {
    justify-content: flex-start;
}

.article-hero-image {
    margin: -2rem auto 0;
    max-width: 900px;
    padding: 0 1.5rem;
}

.article-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
}

.article-body {
    padding: 3rem 1.5rem;
}

.article-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.article-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.account-section {
    padding: 4rem 0;
}

.account-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
}

.account-sidebar {
    background-color: var(--color-cream);
    padding: 1.5rem;
    border-radius: 12px;
    height: fit-content;
}

.account-menu {
    list-style: none;
}

.account-menu li {
    margin-bottom: 0.5rem;
}

.account-menu a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.account-menu a:hover,
.account-menu a.active {
    background-color: var(--color-bg-secondary);
}

.account-content {
    background-color: var(--color-cream);
    padding: 2rem;
    border-radius: 12px;
}

.form-row {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-border-light);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background-color: var(--color-bg-main);
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-accent);
}

@media (max-width: 1024px) {
    .newsletter-box {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .account-grid {
        grid-template-columns: 1fr;
    }
    
    .account-sidebar {
        order: -1;
    }
    
    .account-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .account-menu li {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-container {
        padding: 0.75rem 1rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-mobile {
        padding: 0.75rem 1rem;
    }
    
    .nav-mobile .nav-link {
        padding: 0.625rem 0;
        font-size: 0.95rem;
    }
    
    .account-link {
        width: 36px;
        height: 36px;
    }
    
    .account-link svg {
        width: 18px;
        height: 18px;
    }
    
    .hero {
        padding: 6rem 1rem 2rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-decoration {
        display: none;
    }
    
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .search-section {
        padding: 2rem 0;
    }
    
    .search-box {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .search-input {
        padding: 0.875rem 0.875rem 0.875rem 2.75rem;
        font-size: 0.95rem;
    }
    
    .search-input-wrapper {
        margin-bottom: 1rem;
    }
    
    .filter-buttons {
        margin-bottom: 1rem;
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .section-header {
        margin-bottom: 1.25rem;
    }
    
    .section-title {
        font-size: 1.35rem;
        margin-bottom: 0;
    }
    
    .see-all {
        font-size: 0.85rem;
    }
    
    .favorites-section {
        padding: 2rem 0;
    }
    
    .articles-section {
        padding: 2rem 0;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .article-card.featured {
        grid-column: 1;
        grid-row: auto;
    }
    
    .article-image img {
        height: 180px;
    }
    
    .article-card.featured .article-image img {
        height: 200px;
    }
    
    .article-content {
        padding: 1rem;
    }
    
    .article-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .article-card.featured .article-title {
        font-size: 1.2rem;
    }
    
    .article-excerpt {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .latest-section {
        padding: 2rem 0;
    }
    
    .latest-grid {
        gap: 1rem;
    }
    
    .latest-card {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .latest-number {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .latest-content h3 {
        font-size: 1rem;
    }
    
    .latest-content p {
        font-size: 0.85rem;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .card-image img {
        height: 180px;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .card-excerpt {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .newsletter-section {
        padding: 2rem 0;
    }
    
    .newsletter-box {
        padding: 1.5rem 1.25rem;
        border-radius: 12px;
    }
    
    .newsletter-title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .newsletter-text {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .form-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .form-input {
        padding: 0.875rem 1rem;
    }
    
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .footer-logo {
        font-size: 1.25rem;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
    }
    
    .footer-title {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-links li {
        margin-bottom: 0.4rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
    
    .page-header {
        padding: 5.5rem 1rem 1.5rem;
    }
    
    .page-title {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .page-subtitle {
        font-size: 0.95rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .product-image img {
        height: 150px;
    }
    
    .product-content {
        padding: 0.875rem;
    }
    
    .product-title {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .product-price {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .product-card .btn-primary {
        padding: 0.625rem 1rem;
        font-size: 0.85rem;
        width: 100%;
    }
    
    .article-header {
        padding: 5.5rem 1rem 1.5rem;
    }
    
    .article-header .article-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .article-hero-image {
        margin-top: -1rem;
        padding: 0 1rem;
    }
    
    .article-hero-image img {
        height: 200px;
        border-radius: 12px;
    }
    
    .article-body {
        padding: 1.5rem 1rem;
    }
    
    .article-body p {
        margin-bottom: 1rem;
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .article-body h2 {
        font-size: 1.25rem;
        margin-top: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .account-section {
        padding: 2rem 0;
    }
    
    .account-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .account-sidebar {
        padding: 1rem;
    }
    
    .account-menu {
        display: flex;
        gap: 0.5rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .account-menu li {
        flex-shrink: 0;
    }
    
    .account-menu a {
        padding: 0.5rem 0.875rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .account-content {
        padding: 1.25rem;
    }
    
    .form-row {
        margin-bottom: 1rem;
    }
    
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .form-control {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .swiper {
        padding-bottom: 2.5rem;
    }
    
    .swiper-slide .card,
    .swiper-slide .article-card,
    .swiper-slide .product-card {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.875rem;
    }
    
    .hero {
        padding: 5.5rem 0.875rem 1.5rem;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .filter-buttons {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
        margin: 0 -0.25rem;
        padding-left: 0.25rem;
    }
    
    .filter-btn {
        flex-shrink: 0;
        padding: 0.4rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .category-tags {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .tag {
        flex-shrink: 0;
        padding: 0.4rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .latest-card {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.875rem;
    }
    
    .latest-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .newsletter-box {
        padding: 1.25rem 1rem;
    }
    
    .newsletter-title {
        font-size: 1.1rem;
    }
    
    .newsletter-text {
        font-size: 0.85rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
    }
    
    .product-image img {
        height: 130px;
    }
    
    .product-content {
        padding: 0.75rem;
    }
    
    .product-title {
        font-size: 0.8rem;
    }
    
    .product-price {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .product-card .btn-primary {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }
    
    .footer-title {
        font-size: 0.85rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
    }
    
    .social-section {
        padding: 2rem 0;
    }
    
    .social-title {
        font-size: 1.25rem;
    }
    
    .social-text {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 0.875rem;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
    }
    
    .page-header {
        padding: 5rem 0.875rem 1.25rem;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
    }
    
    .card-image img {
        height: 160px;
    }
    
    .welcome-popup {
        left: 0.75rem;
        right: 0.75rem;
        bottom: 0.75rem;
        padding: 1.25rem;
    }
    
    .welcome-popup h3 {
        font-size: 1.1rem;
    }
    
    .welcome-popup p {
        font-size: 0.85rem;
    }
    
    .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;
    }
}

.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;
    }
}

.search-suggestions {
    position: absolute;
    top: calc(100% - 2px);
    left: 0;
    right: 0;
    background: #FFFBF7;
    border: 2px solid var(--color-border-light);
    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;
}

.suggestion-category {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-terracotta);
    background: var(--color-cream);
}

.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 var(--color-border-light);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background-color: var(--color-cream);
}

.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: var(--color-bg-secondary);
    border-radius: 4px;
    color: var(--color-text-main);
}

@media (max-width: 768px) {
    .search-suggestions {
        max-height: 280px;
        border-radius: 0 0 10px 10px;
    }
    
    .suggestion-category {
        padding: 0.625rem 0.875rem;
        font-size: 0.7rem;
    }
    
    .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;
    }
}

.welcome-popup {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--color-bg-main);
    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 var(--color-border-light);
}

.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 h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-main);
}

.welcome-popup p {
    font-size: 0.9rem;
    color: var(--color-text-main);
    opacity: 0.8;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.welcome-popup-form {
    display: flex;
    gap: 0.5rem;
}

.welcome-popup-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--color-border-light);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.welcome-popup-form input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.welcome-popup-form button {
    padding: 0.75rem 1rem;
    white-space: nowrap;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 480px) {
    .welcome-popup {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }
    
    .welcome-popup-form {
        flex-direction: column;
    }
}
