@font-face {
    font-family: 'GreenthRegular';
    src: url('assets/fonts/GreenthRegular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

:root {
    --primary-color: #2d5016;
    --secondary-color: #4a7c2a;
    --accent-color: #6b9e3e;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f8f6f0;
    --bg-white: #ffffff;
    --border-color: #e0ddd4;
    --badge-new: #ff6b6b;
    --badge-hit: #4ecdc4;
    --badge-out: #95a5a6;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #f8f6f0 0%, #e8e6e0 100%);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

/* Заголовки */
.title {
    font-family: 'GreenthRegular', Arial, sans-serif;
    font-weight: 400;
    letter-spacing: .05em;
    line-height: 1.25;
}

.container {
    width: 100%;
    box-sizing: border-box;
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
}

/* Header */
.header {
    width: 100%;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(6px);
    padding: 12px 0;
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: all 0.3s ease;
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 150px;
    height: 34px;
    background: white;
    mask: url('./assets/images/logo.svg') center no-repeat;
    mask-size: contain;
    transition: background 0.3s ease;
}

.header--scrolled .logo {
    background: rgb(49, 49, 49);
}

.header-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.header-nav__link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.header-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.header-nav__link:hover::after {
    width: 100%;
}

.header-nav__link:hover {
    opacity: 0.8;
}

.header--scrolled .header-nav__link {
    color: rgb(49, 49, 49);
}

.header--scrolled .header-nav__link::after {
    background: rgb(49, 49, 49);
}

.social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.social-link::before {
    content: '';
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.social-icon {
    display: block;
    width: 24px;
    height: 24px;
    background: white;
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    transition: background 0.3s ease;
    position: relative;
    z-index: 1;
}

.header--scrolled .social-icon {
    background: rgb(49, 49, 49);
}

.social-link--whatsapp .social-icon {
    mask: url('./assets/images/whatsapp.svg') center no-repeat;
}

.social-link--instagram .social-icon {
    mask: url('./assets/images/instagram.svg') center no-repeat;
}

.social-link--tiktok .social-icon {
    mask: url('./assets/images/tiktok.svg') center no-repeat;
}

.social-link:hover::before {
    opacity: .4;
}

.social-link--whatsapp:hover .social-icon {
    background: #25D366;
}

.social-link--whatsapp::before {
    background: radial-gradient(circle, rgba(37, 211, 102, 0.8) 0%, rgba(37, 211, 102, 0.4) 50%, transparent 100%);
    filter: blur(14px);
}

.social-link--instagram:hover .social-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link--instagram::before {
    background: linear-gradient(45deg,
            rgba(245, 160, 77, 0.95) 0%,
            rgba(240, 148, 51, 0.9) 10%,
            rgba(230, 104, 60, 0.85) 25%,
            rgba(220, 39, 67, 0.8) 40%,
            rgba(204, 35, 102, 0.75) 55%,
            rgba(188, 24, 136, 0.7) 70%,
            rgba(188, 24, 136, 0.65) 85%,
            rgba(188, 24, 136, 0.5) 100%);
    filter: blur(14px);

}

.social-link--tiktok:hover .social-icon {
    background: #000000;
}

.social-link--tiktok::before {
    background: linear-gradient(45deg,
            rgba(255, 0, 80, 0.9) 0%,
            rgba(255, 0, 80, 0.9) 50%,
            rgba(0, 242, 234, 0.9) 50%,
            rgba(0, 242, 234, 0.9) 100%);
    filter: blur(14px);
}

/* Hero Section */
.hero {
    color: white;
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin-top: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    flex: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
}

.hero-slide[data-bg-image="assets/images/slider01.jpg"] {
    background-image: url('assets/images/slider01.jpg');
}

.hero-slide[data-bg-image="assets/images/slider02.jpg"] {
    background-image: url('assets/images/slider02.jpg');
}

.hero-slide[data-bg-image="assets/images/slider03.jpg"] {
    background-image: url('assets/images/slider03.jpg');
}

.hero-slide[data-bg-image="assets/images/slider04.webp"] {
    background-image: url('assets/images/slider04.webp');
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    z-index: 0;
    pointer-events: none;
}

.hero-slide--image::before {
    background: var(--slide-overlay, linear-gradient(135deg, rgba(20, 35, 10, 0.85) 0%, rgba(30, 50, 15, 0.8) 100%));
}

.hero-slide[data-bg-image="assets/images/slider01.jpg"]::before {
    background: linear-gradient(135deg, rgba(20, 35, 10, 0.85) 0%, rgba(30, 50, 15, 0.8) 100%);
}

.hero-slide[data-bg-image="assets/images/slider02.jpg"]::before {
    background: linear-gradient(135deg, rgba(60, 40, 20, 0.85) 0%, rgba(80, 55, 30, 0.8) 100%);
}

.hero-slide[data-bg-image="assets/images/slider03.jpg"]::before {
    background: linear-gradient(135deg, rgba(60, 40, 20, 0.85) 0%, rgba(80, 55, 30, 0.8) 100%);
}

.hero-slide[data-bg-image="assets/images/slider04.webp"]::before {
    background: linear-gradient(135deg, rgba(40, 30, 50, 0.85) 0%, rgba(60, 45, 70, 0.8) 100%);
}

.hero-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content__wrapper {
    text-align: center;
    position: relative;
}

.hero-overline {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.8;
    margin-bottom: 1.5rem;
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-size: 74px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    padding-bottom: 0.2em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title__line {
    display: block;
    line-height: 1.5;
}

.hero-title__line:last-child {
    padding-bottom: 0.1em;
}

.hero-title__line--accent {
    font-size: 50px;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-feature__number {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1;
}

.hero-feature__text {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-feature__divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-btn--primary {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-btn--primary:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-accents {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-accent {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.hero-accent__icon {
    font-size: 2rem;
    line-height: 1;
    opacity: 0.9;
}

.hero-accent__text {
    font-size: 0.875rem;
    font-weight: 400;
    opacity: 0.85;
    letter-spacing: 0.02em;
}

/* Social Cards */
.social-cards {
    position: absolute;
    left: 50%;
    top: calc(100% + 2.5rem);
    transform: translateX(-50%);
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 2;
    margin-top: 0;
    opacity: 0;
    animation: socialCardsFadeIn 0.8s ease-out 0.6s forwards;
}

@keyframes socialCardsFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.social-card {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.12) 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    text-decoration: none;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    max-width: 320px;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.1) 50%,
            rgba(255, 255, 255, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.social-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    pointer-events: none;
}


.social-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.social-card__icon .social-icon {
    width: 28px;
    height: 28px;
    background: white;
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    transition: all 0.4s ease;
}

.social-card__header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    z-index: 1;
    text-align: left;
}

.social-card__content {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    position: relative;
    z-index: 1;
    flex: 1;
}

.social-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin: 0;
    letter-spacing: -0.01em;
    transition: all 0.4s ease;
}

.social-card__username {
    font-size: 0.8125rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    letter-spacing: 0.01em;
    transition: all 0.4s ease;
}

.social-card__description {
    font-size: 0.8125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.4;
    transition: all 0.4s ease;
}

.social-card__feed {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
}

.social-card__feed-item {
    aspect-ratio: 1;
    border-radius: 8px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.social-card__feed-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-card__feed-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}


.social-card__feed--messages {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    grid-template-columns: none;
}

.social-card__message {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    animation: fadeInUp 0.6s ease-out;
    position: relative;
}

.social-card__message:nth-child(1) {
    animation-delay: 0.1s;
}

.social-card__message:nth-child(2) {
    animation-delay: 0.2s;
}

.social-card__message:nth-child(3) {
    animation-delay: 0.3s;
}

/* Входящие сообщения (слева) */
.social-card__message--incoming {
    justify-content: flex-start;
}

.social-card__message--incoming .social-card__message-bubble {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.1) 100%);
    border-radius: 7.5px 7.5px 7.5px 2px;
    margin-left: 0;
}

.social-card__message--incoming .social-card__message-bubble::after {
    content: '';
    position: absolute;
    left: -6px;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 8px 0;
    border-color: transparent rgba(255, 255, 255, 0.15) transparent transparent;
}

/* Исходящие сообщения (справа) */
.social-card__message--outgoing {
    justify-content: flex-end;
}

.social-card__message--outgoing .social-card__message-bubble {
    background: linear-gradient(135deg,
            rgba(37, 211, 102, 0.25) 0%,
            rgba(37, 211, 102, 0.2) 100%);
    border-radius: 7.5px 7.5px 2px 7.5px;
    margin-right: 0;
    border-color: rgba(37, 211, 102, 0.2);
}

.social-card__message--outgoing .social-card__message-bubble::after {
    content: '';
    position: absolute;
    right: -6px;
    bottom: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 8px 6px;
    border-color: transparent transparent transparent rgba(37, 211, 102, 0.25);
}

.social-card__message-bubble {
    max-width: 75%;
    min-width: 40px;
    height: auto;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: visible;
}

.social-card__message-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.08) 0%,
            transparent 100%);
    pointer-events: none;
}

.social-card__message:nth-child(1) {
    width: 65%;
}

.social-card__message:nth-child(2) {
    width: 80%;
    margin-left: auto;
}

.social-card__message:nth-child(3) {
    width: 55%;
}

.social-card__message:nth-child(1) .social-card__message-bubble {
    min-height: 32px;
}

.social-card__message:nth-child(2) .social-card__message-bubble {
    min-height: 36px;
}

.social-card__message:nth-child(3) .social-card__message-bubble {
    min-height: 28px;
}

/* Instagram Card */
.social-card--instagram .social-card__icon .social-icon {
    mask: url('./assets/images/instagram.svg') center no-repeat;
}

.social-card--instagram {
    background: linear-gradient(135deg,
            rgba(225, 48, 108, 0.25) 0%,
            rgba(240, 148, 51, 0.2) 50%,
            rgba(188, 24, 136, 0.25) 100%);
    border-color: rgba(225, 48, 108, 0.5);
    box-shadow:
        0 16px 48px rgba(225, 48, 108, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15);
}

.social-card--instagram .social-card__icon {
    background: linear-gradient(135deg,
            rgba(240, 148, 51, 0.35) 0%,
            rgba(220, 39, 67, 0.35) 50%,
            rgba(188, 24, 136, 0.35) 100%);
    border-color: rgba(225, 48, 108, 0.6);
    box-shadow:
        0 4px 12px rgba(225, 48, 108, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

.social-card--instagram .social-card__feed-item {
    background: linear-gradient(135deg,
            rgba(240, 148, 51, 0.15) 0%,
            rgba(220, 39, 67, 0.12) 50%,
            rgba(188, 24, 136, 0.15) 100%);
    border-color: rgba(225, 48, 108, 0.3);
}

.social-card--instagram .social-card__feed-item::after {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* TikTok Card */
.social-card--tiktok .social-card__icon .social-icon {
    mask: url('./assets/images/tiktok.svg') center no-repeat;
}

.social-card--tiktok {
    background: linear-gradient(135deg,
            rgba(255, 0, 80, 0.25) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 242, 234, 0.25) 100%);
    border-color: rgba(255, 0, 80, 0.5);
    box-shadow:
        0 16px 48px rgba(0, 242, 234, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15);
}

.social-card--tiktok .social-card__icon {
    background: linear-gradient(135deg,
            rgba(255, 0, 80, 0.35) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 242, 234, 0.35) 100%);
    border-color: rgba(255, 0, 80, 0.6);
    box-shadow:
        0 4px 12px rgba(0, 242, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}


.social-card--tiktok .social-card__feed-item {
    background: linear-gradient(135deg,
            rgba(255, 0, 80, 0.15) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 242, 234, 0.15) 100%);
    border-color: rgba(255, 0, 80, 0.3);
}

.social-card--tiktok .social-card__feed-item::after {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* WhatsApp Card */
.social-card--whatsapp .social-card__icon .social-icon {
    mask: url('./assets/images/whatsapp.svg') center no-repeat;
}

.social-card--whatsapp {
    background: linear-gradient(135deg,
            rgba(37, 211, 102, 0.25) 0%,
            rgba(37, 211, 102, 0.18) 50%,
            rgba(37, 211, 102, 0.25) 100%);
    border-color: rgba(37, 211, 102, 0.5);
    box-shadow:
        0 16px 48px rgba(37, 211, 102, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15);
}

.social-card--whatsapp .social-card__icon {
    background: rgba(37, 211, 102, 0.4);
    border-color: rgba(37, 211, 102, 0.6);
    box-shadow:
        0 4px 12px rgba(37, 211, 102, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
}

.social-card--whatsapp .social-card__message--incoming .social-card__message-bubble {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.15) 100%);
    border-color: rgba(255, 255, 255, 0.25);
}

.social-card--whatsapp .social-card__message--incoming .social-card__message-bubble::after {
    border-color: transparent rgba(255, 255, 255, 0.2) transparent transparent;
}

.social-card--whatsapp .social-card__message--outgoing .social-card__message-bubble {
    background: linear-gradient(135deg,
            rgba(37, 211, 102, 0.35) 0%,
            rgba(37, 211, 102, 0.28) 100%);
    border-color: rgba(37, 211, 102, 0.35);
}

.social-card--whatsapp .social-card__message--outgoing .social-card__message-bubble::after {
    border-color: transparent transparent transparent rgba(37, 211, 102, 0.35);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    z-index: 10;
    padding: 0 2rem;
}

.hero-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hero-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.hero-nav-btn:active {
    transform: translateY(0);
}

.hero-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.hero-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-dot.active {
    background: white;
    width: 24px;
    border-radius: 12px;
}

/* Order Section */
.order-section {
    padding: 8rem 0;
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

/* Hieroglyph Decorative Elements */
.hieroglyph-decor {
    position: absolute;
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 300;
    color: rgba(45, 80, 22, 0.08);
    font-family: 'GreenthRegular', Arial, sans-serif;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
    user-select: none;
    transition: opacity 0.3s ease;
}

.hieroglyph-decor--top-left {
    top: 5%;
    left: 5%;
    transform: rotate(-15deg);
}

.hieroglyph-decor--top-right {
    top: 5%;
    right: 5%;
    transform: rotate(15deg);
}

.hieroglyph-decor--bottom-left {
    bottom: 5%;
    left: 5%;
    transform: rotate(15deg);
}

.hieroglyph-decor--middle-left {
    top: 50%;
    left: 3%;
    transform: translateY(-50%) rotate(-10deg);
}

.hieroglyph-decor--middle-right {
    top: 50%;
    right: 3%;
    transform: translateY(-50%) rotate(10deg);
}

.hieroglyph-decor--bottom-right {
    bottom: 5%;
    right: 5%;
    transform: rotate(-15deg);
}

@media (max-width: 768px) {
    .hieroglyph-decor {
        font-size: clamp(2rem, 6vw, 5rem);
        opacity: 0.6;
    }

    .hieroglyph-decor--top-left,
    .hieroglyph-decor--top-right {
        top: 3%;
    }

    .hieroglyph-decor--bottom-left,
    .hieroglyph-decor--bottom-right {
        bottom: 3%;
    }
}

@media (max-width: 480px) {
    .hieroglyph-decor {
        font-size: clamp(1.5rem, 5vw, 3rem);
        opacity: 0.5;
    }
}

.order-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(248, 246, 240, 0) 0%, rgba(248, 246, 240, 0.5) 100%);
    pointer-events: none;
}

.order-section__wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.order-overline {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

.order-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.order-title__line {
    display: block;
}

.order-description {
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 3.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.order-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.order-action-btn {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 2.5rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    min-width: 220px;
}

.order-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.order-action-btn__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.order-action-btn__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
    z-index: 1;
}

.order-action-btn__label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    transition: color 0.4s ease;
}

.order-action-btn__text {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-light);
    transition: color 0.4s ease;
}

.order-action-btn--whatsapp {
    border-color: rgba(37, 211, 102, 0.2);
}

.order-action-btn--whatsapp .order-action-btn__icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.order-action-btn--whatsapp:hover {
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.2);
}

.order-action-btn--whatsapp:hover::before {
    background: rgba(37, 211, 102, 0.05);
    opacity: 1;
}

.order-action-btn--whatsapp:hover .order-action-btn__icon {
    background: #25D366;
    color: white;
    transform: scale(1.05);
}

.order-action-btn--whatsapp:hover .order-action-btn__label {
    color: #25D366;
}

.order-action-btn--telegram {
    border-color: rgba(0, 136, 204, 0.2);
}

.order-action-btn--telegram .order-action-btn__icon {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
}

.order-action-btn--telegram:hover {
    border-color: #0088cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 136, 204, 0.2);
}

.order-action-btn--telegram:hover::before {
    background: rgba(0, 136, 204, 0.05);
    opacity: 1;
}

.order-action-btn--telegram:hover .order-action-btn__icon {
    background: #0088cc;
    color: white;
    transform: scale(1.05);
}

.order-action-btn--telegram:hover .order-action-btn__label {
    color: #0088cc;
}

.order-action-btn--instagram {
    border-color: rgba(225, 48, 108, 0.2);
}

.order-action-btn--instagram .order-action-btn__icon {
    background: rgba(225, 48, 108, 0.1);
    color: #E1306C;
}

.order-action-btn--instagram:hover {
    border-color: #E1306C;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(225, 48, 108, 0.2);
}

.order-action-btn--instagram:hover::before {
    background: rgba(225, 48, 108, 0.05);
    opacity: 1;
}

.order-action-btn--instagram:hover .order-action-btn__icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    transform: scale(1.05);
}

.order-action-btn--instagram:hover .order-action-btn__label {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Main */
.main {
    padding: 6rem 0 8rem;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

/* Tea Hieroglyph Decorations */
.tea-hieroglyphs {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 4rem 8rem;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
}

.tea-hieroglyph {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 300;
    color: var(--primary-color);
    font-family: 'GreenthRegular', Arial, sans-serif;
    line-height: 1;
    letter-spacing: 0.1em;
    display: block;
    position: relative;
}

.tea-hieroglyph::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 1.5rem;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    opacity: 0.3;
}

@media (max-width: 1024px) {
    .tea-hieroglyphs {
        padding: 3rem 4rem;
    }

    .tea-hieroglyph {
        font-size: clamp(2rem, 3vw, 3rem);
    }
}

@media (max-width: 768px) {
    .tea-hieroglyphs {
        padding: 2rem 2rem;
        flex-wrap: wrap;
        gap: 2rem;
        justify-content: center;
    }

    .tea-hieroglyph {
        font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    }

    .tea-hieroglyph::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .tea-hieroglyphs {
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }

    .tea-hieroglyph {
        font-size: clamp(1.2rem, 2vw, 2rem);
    }
}

.tea-map-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 1;
}

.tea-map-overline {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1rem;
    display: block;
}

.tea-map-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.tea-map-title__line {
    display: block;
}

.tea-map-description {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.6;
}

/* Filters */
.filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.filter-btn {
    padding: 0.875rem 1.75rem;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-dark);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    letter-spacing: 0.01em;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.1);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
}

/* Search */
.search-box {
    position: relative;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.search-box__icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
    z-index: 1;
}

.search-box__icon svg {
    width: 20px;
    height: 20px;
}

#searchInput {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 3.75rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 300;
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--text-dark);
}

#searchInput::placeholder {
    color: var(--text-light);
}

#searchInput:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(45, 80, 22, 0.12);
}

#searchInput:focus+.search-box__icon,
.search-box:focus-within .search-box__icon {
    color: var(--primary-color);
}

/* Tea Grid */
.tea-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.tea-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tea-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(135deg, rgba(20, 35, 10, 0.8) 0%, rgba(30, 50, 15, 0.75) 100%),
        url('assets/images/slider01.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    pointer-events: none;
}

.tea-card:hover {
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.12) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.tea-card:hover::after {
    opacity: 1;
}

.tea-card.hidden {
    display: none;
}

/* Glass effect text colors on hover */
.tea-card:hover .tea-type,
.tea-card:hover .tea-name,
.tea-card:hover .price-label,
.tea-card:hover .price-value,
.tea-card:hover .price-unit {
    color: white;
}

.tea-card:hover .tea-name {
    color: white;
}

.tea-card:hover .price-value {
    color: white;
}

.tea-card:hover .badge.new {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.tea-card:hover .badge.hit {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.tea-card:hover .badge.out {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.25);
}

.tea-card:hover .tea-price-section {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.tea-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.tea-type {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
    font-family: inherit;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tea-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.badge {
    padding: 0.375rem 0.875rem;
    border-radius: 6px;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    line-height: 1;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.badge.new {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.badge.hit {
    background: rgba(78, 205, 196, 0.1);
    color: #4ecdc4;
    border: 1px solid rgba(78, 205, 196, 0.2);
}

.badge.out {
    background: rgba(149, 165, 166, 0.1);
    color: #95a5a6;
    border: 1px solid rgba(149, 165, 166, 0.2);
}

.tea-name {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tea-price-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    position: relative;
    z-index: 1;
    transition: border-top-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 300;
    letter-spacing: 0.01em;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.01em;
    text-align: right;
    white-space: nowrap;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-unit {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 300;
    margin-left: 0.25rem;
    transition: color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer__logo {
    margin-bottom: 0.5rem;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover .footer-logo-img {
    opacity: 0.8;
}

.footer__tagline {
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.footer__title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: white;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__contact-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 300;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer__contact-link:hover {
    color: white;
    transform: translateX(4px);
}

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

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.footer-social-icon {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.footer-social-link:hover .footer-social-icon {
    opacity: 1;
    transform: scale(1.1);
}

.footer-social-link--whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
}

.footer-social-link--whatsapp:hover .footer-social-icon {
    filter: brightness(0) saturate(100%) invert(67%) sepia(61%) saturate(1352%) hue-rotate(87deg) brightness(95%) contrast(86%);
}

.footer-social-link--instagram:hover {
    background: rgba(225, 48, 108, 0.2);
}

.footer-social-link--instagram:hover .footer-social-icon {
    filter: brightness(0) saturate(100%) invert(27%) sepia(98%) saturate(2878%) hue-rotate(320deg) brightness(95%) contrast(92%);
}

.footer-social-link--tiktok:hover {
    background: rgba(0, 0, 0, 0.3);
}

.footer-social-link--tiktok:hover .footer-social-icon {
    filter: brightness(0) invert(1);
}

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

.footer__copyright {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 6rem 1rem;
    color: var(--text-light);
}

.empty-state h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.empty-state p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-light);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {

    /* Header Mobile */
    .header {
        padding: 10px 0;
    }

    .header__inner {
        flex-wrap: nowrap;
        gap: 0.75rem;
        justify-content: space-between;
    }

    .logo {
        width: 120px;
        height: 28px;
        flex-shrink: 0;
    }

    .header-nav {
        /* hide top menu on tablets and phones */
        display: none;
    }

    .header-nav__link {
        font-size: 0.8125rem;
        padding: 0.4rem 0;
        white-space: nowrap;
    }

    .social-links {
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }


    /* Hero Mobile */
    .hero {
        min-height: 100vh;
        height: 100vh;
    }

    .hero-slide {
        padding: 5rem 0 3rem;
    }

    .hero-title {
        font-size: 40px;
        margin-bottom: 1rem;
        line-height: 1.25;
    }

    .hero-title__line--accent {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        gap: 1rem;
        margin-top: 2rem;
        flex-direction: column;
        align-items: center;
        padding: 0 1rem;
    }

    .hero-btn {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .hero-accents {
        gap: 1.5rem;
        margin-top: 2rem;
        flex-wrap: wrap;
    }

    .hero-accent {
        gap: 0.5rem;
    }

    .hero-accent__icon {
        font-size: 1.5rem;
    }

    .hero-accent__text {
        font-size: 0.8125rem;
    }

    .hero-features {
        gap: 1.5rem;
    }

    .hero-feature__divider {
        height: 30px;
    }

    .hero-nav {
        bottom: 1.5rem;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .hero-nav-btn {
        width: 40px;
        height: 40px;
    }

    .hero-nav-btn svg {
        width: 18px;
        height: 18px;
    }

    .hero-dot {
        width: 7px;
        height: 7px;
    }

    .hero-dot.active {
        width: 20px;
    }

    .hero-overline {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .hero-feature__text {
        font-size: 0.75rem;
    }

    .hero-feature__divider {
        display: none;
    }

    /* Social Cards Mobile */
    .social-cards {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-top: 2rem;
        padding: 0 1rem;
        max-width: 100%;
    }

    .hero-slide .social-cards {
        position: relative;
        margin-top: 2.5rem;
    }

    .social-cards {
        gap: 1rem;
        margin-top: 2rem;
    }

    .social-card {
        min-width: 100%;
        max-width: 100%;
        padding: 1.25rem 1.5rem;
        gap: 1rem;
    }

    .social-card__header {
        gap: 0.875rem;
    }

    .social-card__icon {
        width: 48px;
        height: 48px;
    }


    .social-card__title {
        font-size: 1rem;
    }

    .social-card__username {
        font-size: 0.75rem;
    }

    .social-card__description {
        font-size: 0.75rem;
    }

    .social-card__feed {
        gap: 0.375rem;
    }

    .social-card__feed--messages {
        gap: 0.5rem;
    }

    .social-card__message-bubble {
        min-height: 24px;
        padding: 5px 8px;
        max-width: 80%;
    }

    .social-card__message:nth-child(1) {
        width: 60%;
    }

    .social-card__message:nth-child(2) {
        width: 75%;
    }

    .social-card__message:nth-child(3) {
        width: 50%;
    }
}

@media (max-width: 480px) {

    /* Header Small Mobile */
    .header {
        padding: 8px 0;
    }

    .header__inner {
        gap: 0.5rem;
    }

    .logo {
        width: 90px;
        height: 22px;
    }

    .header-nav {
        gap: 0.75rem;
        flex: 1;
        min-width: 0;
    }

    .header-nav__link {
        font-size: 0.75rem;
        padding: 0.3rem 0;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }


    /* Hero Small Mobile */
    .hero {
        min-height: 100vh;
        height: 100vh;
    }

    .hero-slide {
        padding: 4rem 0 2rem;
        overflow-y: auto;
    }

    .hero-content {
        padding: 0;
    }

    .hero-content__wrapper {
        padding: 0 0.5rem;
        max-width: 100%;
    }

    .hero-title {
        font-size: 34px;
        margin-bottom: 0.875rem;
        line-height: 1.25;
    }

    .hero-title__line {
        line-height: 1.3;
    }

    .hero-title__line--accent {
        font-size: 30px;
    }

    .hero-subtitle {
        font-size: clamp(0.875rem, 3.5vw, 1rem);
        margin-bottom: 1.25rem;
        padding: 0 0.5rem;
        line-height: 1.5;
    }

    .hero-buttons {
        gap: 0.875rem;
        margin-top: 1.5rem;
        padding: 0 0.5rem;
    }

    .hero-btn {
        max-width: 100%;
        padding: 0.8125rem 1.25rem;
        font-size: 0.875rem;
    }

    .hero-accents {
        gap: 1.25rem;
        margin-top: 1.5rem;
        flex-direction: column;
        align-items: center;
    }

    .hero-accent {
        gap: 0.5rem;
    }

    .hero-accent__icon {
        font-size: 1.375rem;
    }

    .hero-accent__text {
        font-size: 0.75rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-feature__divider {
        display: none;
    }

    .hero-nav {
        bottom: 1rem;
        gap: 1rem;
        padding: 0 0.75rem;
    }

    .hero-nav-btn {
        width: 36px;
        height: 36px;
    }

    .hero-nav-btn svg {
        width: 16px;
        height: 16px;
    }

    .hero-dots {
        padding: 0.25rem 0.75rem;
    }

    .hero-dot {
        width: 6px;
        height: 6px;
    }

    .hero-dot.active {
        width: 18px;
    }

    .main {
        padding: 4rem 0 6rem;
    }

    .tea-map-header {
        margin-bottom: 3rem;
    }

    .order-section {
        padding: 5rem 0;
    }

    .order-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .order-action-btn {
        width: 100%;
        min-width: auto;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer__section {
        align-items: center;
    }

    .footer__contacts {
        align-items: center;
    }

    .footer__social {
        justify-content: center;
    }

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

    .tea-card {
        padding: 1.75rem;
    }

    .filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .social-cards {
        gap: 0.875rem;
        margin-top: 1.5rem;
    }

    .social-card {
        padding: 1rem 1.25rem;
        border-radius: 16px;
        gap: 0.875rem;
    }

    .social-card__header {
        gap: 0.75rem;
    }

    .social-card__icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }


    .social-card__title {
        font-size: 0.9375rem;
    }

    .social-card__username {
        font-size: 0.6875rem;
    }

    .social-card__description {
        font-size: 0.6875rem;
    }

    .social-card__feed {
        display: none;
    }

    .social-card__feed--messages {
        gap: 0.5rem;
    }

    .social-card__message-bubble {
        min-height: 22px;
        padding: 4px 7px;
        max-width: 85%;
    }

    .social-card__message:nth-child(1) {
        width: 55%;
    }

    .social-card__message:nth-child(2) {
        width: 70%;
    }

    .social-card__message:nth-child(3) {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .tea-card {
        padding: 1.5rem;
    }

    .tea-name {
        font-size: 1.125rem;
        margin-bottom: 1.25rem;
    }

    .tea-price-section {
        padding-top: 1.25rem;
    }
}

/* Landscape orientation on mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        height: auto;
    }

    .hero-slide {
        min-height: 100vh;
        padding: 3rem 0;
    }

    .hero-title {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .hero-title__line--accent {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .hero-nav {
        bottom: 1rem;
    }

    .social-cards {
        margin-top: 1.5rem;
    }
}