:root {
    --bg: #fff7eb;
    --panel: #fff1dd;
    --text: #3a2418;
    --muted: #7d6356;
    --brand: #d8472b;
    --accent: #ff9f1c;
    --accent-dark: #e36b12;
    --fresh: #3aa76d;
    --berry: #f15a7d;
    --white: #ffffff;
    --shadow: 0 18px 42px rgba(116, 58, 28, 0.14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 10% 12%, rgba(255, 207, 101, 0.28), transparent 28%),
        radial-gradient(circle at 88% 6%, rgba(241, 90, 125, 0.16), transparent 26%),
        linear-gradient(180deg, #fffaf1 0%, #f3ffe9 48%, #fff7eb 100%),
        var(--bg);
    color: var(--text);
    font-family: Lexend, "Lexend Fallback", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(100% - 32px, 1560px);
    margin-inline: auto;
}

.site-header {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    color: var(--white);
    animation: headerDrop 0.7s ease both;
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr;
    padding-block: 24px;
}

.header-top {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) 330px;
    align-items: center;
    gap: 24px;
}

.logo,
.footer-logo {
    display: inline-flex;
    align-items: center;
    width: 180px;
}

.logo img,
.footer-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: clamp(16px, 2vw, 36px);
    font-size: 15px;
    font-weight: 700;
}

.main-nav a {
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.main-nav a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--berry));
    content: "";
    opacity: 0;
    transform: scaleX(0.45);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.search-form input {
    width: 100%;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff9f1c, #d8472b);
    color: var(--white);
    outline: 0;
    padding: 0 18px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.search-form input:focus {
    box-shadow: 0 0 0 3px rgba(222, 127, 27, 0.35), 0 14px 28px rgba(0, 0, 0, 0.24);
    transform: translateY(-1px);
}

.search-form input::placeholder {
    color: rgba(255, 255, 255, 0.72);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: var(--radius);
    background: rgba(0, 0, 0, 0.35);
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
}

.hero {
    position: relative;
    height: min(54vw, 760px);
    min-height: 420px;
    overflow: hidden;
    background: #33190f;
}

.hero::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(51, 25, 15, 0.82) 0%, rgba(51, 25, 15, 0.46) 42%, rgba(51, 25, 15, 0.08) 72%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 44%, rgba(255, 247, 235, 0.08));
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.hero-content {
    position: absolute;
    z-index: 2;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
}

.hero-kicker {
    width: fit-content;
    margin: 0 0 20px;
    padding: 0 0 8px;
    border-bottom: 3px solid var(--accent);
    color: #ffcf65;
    letter-spacing: 0.08em;
    font-weight: 900;
    text-transform: uppercase;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.26);
}

.hero-content h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(42px, 6vw, 70px);
    font-weight: 900;
    line-height: 0.98;
    text-transform: uppercase;
}

.hero-copy {
    max-width: 560px;
    margin: 20px 0 0;
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
}

.hero-btn.primary {
    background: linear-gradient(135deg, #ffb02e, #e8492b);
    color: var(--white);
}

.hero-btn.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand);
}

.feature-strip {
    position: relative;
    z-index: 3;
    margin-top: -42px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature-grid article {
    min-height: 112px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow);
}

.feature-grid strong,
.feature-grid span {
    display: block;
}

.feature-grid strong {
    color: var(--brand);
    font-size: 20px;
    font-weight: 900;
}

.feature-grid span {
    margin-top: 7px;
    color: var(--muted);
    font-weight: 600;
}

.section {
    padding: 64px 0 46px;
    animation: sectionRise 0.7s ease both;
}

.product-section + .product-section,
.news-section,
.contact-section,
.recruitment-section {
    padding-top: 58px;
}

.product-section .container {
    position: relative;
    overflow-x: hidden;
}

.section-heading {
    text-align: center;
}

.section-heading h1,
.section-heading h2 {
    margin: 0;
    color: var(--brand);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    text-shadow: 0 5px 0 rgba(255, 219, 156, 0.52);
}

.tabs {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
    margin-top: 22px;
    padding-bottom: 13px;
    border-bottom: 0;
}

.tab {
    border: 1px solid rgba(216, 71, 43, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    color: var(--text);
    cursor: pointer;
    font-weight: 700;
    padding: 8px 15px;
    box-shadow: 0 8px 18px rgba(116, 58, 28, 0.08);
    transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.tab.active {
    background: linear-gradient(135deg, #ffb02e, #e8492b);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(216, 71, 43, 0.22);
}

.tab:hover,
.tab:focus-visible {
    color: var(--brand);
    transform: translateY(-2px);
}

.tab.active:hover,
.tab.active:focus-visible {
    color: var(--white);
}

.section-action {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin: 22px 80px 26px 0;
}

.section-action.product-actions {
    position: absolute;
    z-index: 4;
    top: 56%;
    right: -6px;
    left: -6px;
    justify-content: space-between;
    margin: 0;
    pointer-events: none;
    transform: translateY(-50%);
}

.product-page-btn {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 74px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #b95a56;
    cursor: pointer;
    font-size: 62px;
    font-weight: 300;
    line-height: 1;
    pointer-events: auto;
    transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease, background 0.22s ease;
}

.product-page-btn:hover {
    transform: translateY(-3px) scale(1.06);
}

.product-page-btn:disabled {
    cursor: not-allowed;
    opacity: 0.42;
    transform: none;
    box-shadow: none;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 54px 70px;
    margin-top: 36px;
    padding-inline: 52px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: grid;
}

.tab-panel.is-changing .product-card:not(.is-product-hidden) {
    animation: productPageIn 0.42s cubic-bezier(0.2, 0.9, 0.25, 1) both;
}

.tab-panel.is-changing .product-card:not(.is-product-hidden):nth-child(2),
.tab-panel.is-changing .product-card:not(.is-product-hidden):nth-child(6) {
    animation-delay: 0.04s;
}

.tab-panel.is-changing .product-card:not(.is-product-hidden):nth-child(3),
.tab-panel.is-changing .product-card:not(.is-product-hidden):nth-child(7) {
    animation-delay: 0.08s;
}

.tab-panel.is-changing .product-card:not(.is-product-hidden):nth-child(4),
.tab-panel.is-changing .product-card:not(.is-product-hidden):nth-child(8) {
    animation-delay: 0.12s;
}

.product-card {
    position: relative;
    overflow: hidden;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #fff9f0 64%, #fff1df);
    box-shadow: 0 16px 38px rgba(116, 58, 28, 0.13);
    text-align: center;
    transform: translateY(0);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 56px rgba(116, 58, 28, 0.22);
}

.product-card img {
    width: 100%;
    aspect-ratio: 1.14;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.45s ease, filter 0.45s ease;
}

.product-card:hover img {
    filter: saturate(1.08) contrast(1.03);
    transform: scale(1.05);
}

.product-card h3 {
    margin: 14px 12px 10px;
    color: #2d1d15;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.25;
}

.btn-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    min-height: 30px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffb02e, #e8492b);
    color: var(--white);
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 7px 14px rgba(196, 101, 16, 0.22);
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.btn-order:hover {
    background: linear-gradient(135deg, #e8492b, #a82418);
    color: var(--white);
    transform: translateY(-2px);
}

.product-tooltip {
    position: absolute;
    right: 10px;
    bottom: 48px;
    left: 10px;
    z-index: 3;
    padding: 12px;
    border-radius: 10px;
    background: rgba(58, 36, 24, 0.94);
    color: var(--white);
    text-align: left;
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity 0.24s ease, transform 0.24s ease;
}

.product-card:hover .product-tooltip {
    opacity: 1;
    transform: translateY(0);
}

.product-tooltip strong {
    display: block;
    margin-bottom: 6px;
    color: #ffcf65;
    font-size: 13px;
}

.product-tooltip p {
    margin: 0 0 8px;
    font-size: 12px;
    line-height: 1.35;
}

.product-tooltip ul {
    margin: 0;
    padding-left: 16px;
    font-size: 12px;
    line-height: 1.45;
}

.product-card.is-product-hidden {
    display: none;
}

.slider-wrap {
    position: relative;
    max-width: 100%;
    overflow-x: hidden;
}

.article-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 44px;
    padding: 32px 52px 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.article-row::-webkit-scrollbar {
    display: none;
}

.article-card {
    overflow: hidden;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #fff9f0);
    box-shadow: var(--shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(42, 36, 30, 0.2);
}

.article-card img {
    width: 100%;
    aspect-ratio: 1.35;
    object-fit: cover;
    object-position: center top;
}

.article-body {
    padding: 18px 20px 24px;
    text-align: center;
}

.article-body h3 {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.35;
    text-transform: uppercase;
}

.article-body p {
    margin: 0;
    color: #393532;
    font-size: 13px;
    line-height: 1.45;
}

.slider-btn {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 42px;
    height: 72px;
    transform: translateY(-35%);
    border: 0;
    background: transparent;
    color: #b95a56;
    cursor: pointer;
    font-size: 86px;
    font-weight: 300;
    line-height: 0.6;
}

.slider-btn.prev {
    left: -6px;
}

.slider-btn.next {
    right: -6px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 76px;
    align-items: stretch;
    padding: 32px 36px 0;
}

.order-form,
.contact-media {
    min-height: 430px;
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 239, 214, 0.82));
    box-shadow: 0 26px 56px rgba(116, 58, 28, 0.14);
}

.order-form {
    padding: 22px 32px 28px;
}

.order-form h3 {
    margin: 0;
    color: var(--brand);
    font-size: 25px;
    font-weight: 900;
    line-height: 1.1;
    text-align: center;
    text-transform: uppercase;
}

.order-form p {
    margin: 0 0 20px;
    color: var(--fresh);
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.order-form label {
    display: block;
    margin: 13px 0 5px;
    font-size: 14px;
}

.order-form input,
.order-form textarea {
    width: 100%;
    border: 0;
    border-radius: 999px;
    background: var(--white);
    outline: 0;
    padding: 10px 14px;
    box-shadow: inset 0 2px 6px rgba(55, 44, 39, 0.08), 0 8px 18px rgba(116, 58, 28, 0.06);
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.order-form input:focus,
.order-form textarea:focus {
    box-shadow: 0 0 0 3px rgba(222, 127, 27, 0.22), inset 0 2px 6px rgba(55, 44, 39, 0.08);
    transform: translateY(-1px);
}

.order-form textarea {
    min-height: 104px;
    resize: vertical;
    border-radius: 12px;
}

.btn-confirm {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    line-height: 44px;
    margin-top: 18px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffb02e, #e8492b);
    color: var(--white);
    cursor: pointer;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 16px 30px rgba(216, 71, 43, 0.26);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(216, 71, 43, 0.34);
}

.contact-media {
    display: grid;
    place-items: center;
    align-content: start;
    gap: 30px;
    padding: 64px 44px 44px;
    text-align: center;
}

.contact-info-box {
    width: min(100%, 430px);
    color: var(--brand);
    text-align: left;
    font-size: 16px;
    line-height: 1.45;
}

.contact-info-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.contact-info-box li {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 10px 22px rgba(116, 58, 28, 0.08);
}

.contact-info-box li + li {
    margin-top: 10px;
}

.contact-icon {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffcf65, #e8492b);
    color: var(--white);
    font-size: 16px;
    box-shadow: 0 10px 20px rgba(216, 71, 43, 0.2);
}

.contact-media span {
    color: #2d1d15;
    font-size: clamp(32px, 4.2vw, 48px);
    font-weight: 900;
    line-height: 1.08;
    text-transform: uppercase;
}

.contact-info-box span {
    font-size: clamp(14px, 4.2vw, 18px);
}

.site-footer {
    margin-top: 72px;
    background: linear-gradient(135deg, #3a2418, #6f2c1f);
    padding: 58px 0;
    color: var(--white);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 42px;
    align-items: start;
}

.site-footer p {
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.76);
}

.footer-col {
    display: grid;
    gap: 10px;
}

.footer-col h3 {
    margin: 0 0 8px;
    color: #ffcf65;
    font-size: 20px;
    text-transform: uppercase;
}

.footer-col a,
.footer-col p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.floating-social {
    position: fixed;
    right: 22px;
    bottom: 92px;
    z-index: 30;
    display: grid;
    gap: 18px;
}

.floating-social-btn {
    position: relative;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(44, 31, 23, 0.18);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.floating-social-btn::before {
    position: absolute;
    inset: -8px;
    z-index: -1;
    border-radius: 50%;
    background: var(--halo-color, rgba(197, 239, 255, 0.75));
    content: "";
    animation: haloPulse 2.1s ease-in-out infinite;
}

.floating-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(44, 31, 23, 0.24);
}

.floating-social-btn img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: iconShake 1.35s ease-in-out infinite;
}

.floating-social-btn.messenger {
    --halo-color: rgba(190, 239, 250, 0.86);
    background: transparent;
}

.floating-social-btn.zalo {
    --halo-color: rgba(199, 238, 255, 0.86);
    background: transparent;
}

.floating-social-btn.zalo::before {
    animation-delay: 0.18s;
}

.floating-social-btn.zalo img {
    animation-delay: 0.18s;
}

.floating-social-btn.instagram {
    --halo-color: rgba(245, 206, 238, 0.86);
    background: transparent;
    font-size: 26px;
}

.floating-social-btn.instagram::before {
    animation-delay: 0.36s;
}

.floating-social-btn.instagram img {
    animation-delay: 0.36s;
}

.floating-social-btn.back-to-top {
    --halo-color: rgba(255, 207, 101, 0.68);
    background: linear-gradient(135deg, #ffb02e, #e8492b);
    font-size: 28px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.floating-social-btn.back-to-top::before {
    animation: none;
}

.floating-social-btn.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.floating-social-btn.back-to-top.is-visible::before {
    animation: haloPulse 2.1s ease-in-out infinite;
    animation-delay: 0.54s;
}

.floating-social-btn.back-to-top span {
    display: inline-block;
    animation: iconShake 1.35s ease-in-out infinite;
    animation-delay: 0.54s;
}

@media (max-width: 1100px) {
    .header-top {
        grid-template-columns: 150px minmax(0, 1fr) 260px;
        gap: 18px;
    }

    .logo,
    .footer-logo {
        width: 150px;
    }

    .main-nav {
        gap: 14px;
        font-size: 13px;
    }

    .product-grid {
        gap: 36px;
        padding-inline: 20px;
    }
}

@media (max-width: 820px) {
    .site-header {
        position: fixed;
        background: rgba(29, 28, 27, 0.9);
        backdrop-filter: blur(12px);
    }

    .header-inner {
        grid-template-columns: 1fr 42px;
        gap: 14px;
        padding-block: 12px;
    }

    .header-top {
        display: contents;
    }

    .logo,
    .footer-logo {
        width: 160px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav,
    .search-form {
        grid-column: 1 / -1;
        width: 100%;
    }

    .main-nav,
    .search-form {
        display: none;
    }

    .site-header.is-open .main-nav,
    .site-header.is-open .search-form {
        display: flex;
    }

    .site-header.is-open .search-form {
        display: block;
    }

    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        padding-top: 8px;
    }

    .hero {
        height: 560px;
        min-height: 560px;
        margin-top: 0;
    }

    .hero-content {
        top: 56%;
    }

    .hero-content h1 {
        max-width: 620px;
    }

    .feature-strip {
        margin-top: -28px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
        padding-inline: 44px;
    }

    .section-action.product-actions {
        right: 0;
        left: 0;
        top: 58%;
    }

    .article-row {
        display: flex;
        gap: 18px;
        width: 100%;
        padding-inline: 12px;
        scroll-snap-type: x mandatory;
    }

    .article-card {
        flex: 0 0 calc(100% - 24px);
        max-width: 340px;
        scroll-snap-align: center;
    }

    .contact-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .contact-section .container {
        width: 100%;
        padding-inline: 12px;
    }

    .contact-grid {
        gap: 28px;
        justify-items: stretch;
        padding-inline: 0;
    }

    .order-form,
    .contact-media {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .order-form {
        padding: 22px 22px 26px;
    }

    .contact-media {
        padding-top: 34px;
    }

    .contact-info-box {
        justify-self: center;
        margin-right: 0;
    }
}

@media (max-width: 560px) {
    body {
        padding-bottom: 72px;
    }

    .container {
        width: min(100% - 24px, 1080px);
    }

    .contact-section .container {
        width: 100%;
        padding-inline: 10px;
    }

    .hero {
        height: 590px;
        min-height: 590px;
    }

    .hero::after {
        background: linear-gradient(180deg, rgba(51, 25, 15, 0.76), rgba(51, 25, 15, 0.46) 48%, rgba(51, 25, 15, 0.2));
    }

    .hero-content {
        top: 55%;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-actions {
        gap: 10px;
    }

    .hero-btn {
        width: 100%;
    }

    .feature-grid article {
        min-height: 0;
        padding: 18px;
    }

    .section {
        padding-block: 38px;
    }

    .tabs {
        gap: 16px;
    }

    .section-action {
        justify-content: center;
        margin: 18px 0 22px;
    }

    .section-action.product-actions {
        top: 59%;
        right: 0;
        left: 0;
    }

    .product-page-btn {
        width: 34px;
        height: 58px;
        font-size: 46px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        padding-inline: 36px;
    }

    .slider-btn {
        display: none;
    }

    .order-form,
    .contact-media {
        min-height: 0;
        max-width: calc(100vw - 20px);
    }

    .order-form {
        padding: 20px 12px 22px;
    }

    .order-form input,
    .order-form textarea,
    .btn-confirm {
        max-width: 100%;
        min-width: 0;
    }

    .order-form h3 {
        font-size: 22px;
    }

    .order-form p {
        margin-bottom: 16px;
    }

    .order-form label {
        margin-top: 11px;
    }

    .order-form textarea {
        min-height: 92px;
    }

    .btn-confirm {
        margin-top: 16px;
    }

    .contact-media {
        min-height: 260px;
        padding-inline: 16px;
    }

    .contact-info-box {
        font-size: 15px;
    }

    .contact-media span {
        font-size: 30px;
    }

    .contact-info-box span {
        font-size: 16px;
    }

    .floating-social {
        right: 12px;
        bottom: 72px;
        grid-auto-flow: row;
        gap: 12px;
        padding: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        transform: none;
    }

    .floating-social-btn {
        width: 42px;
        height: 42px;
        font-size: 13px;
    }

    .floating-social-btn.instagram {
        font-size: 22px;
    }
}

@keyframes headerDrop {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sectionRise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes productPageIn {
    from {
        opacity: 0;
        transform: translateX(18px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes haloPulse {
    0%,
    100% {
        opacity: 0.72;
        transform: scale(0.88);
    }
    50% {
        opacity: 0.28;
        transform: scale(1.22);
    }
}

@keyframes iconShake {
    0%,
    100% {
        transform: rotate(0deg) translateX(0);
    }
    10% {
        transform: rotate(-8deg) translateX(-1px);
    }
    20% {
        transform: rotate(8deg) translateX(1px);
    }
    30% {
        transform: rotate(-6deg) translateX(-1px);
    }
    40% {
        transform: rotate(6deg) translateX(1px);
    }
    50% {
        transform: rotate(0deg) translateX(0);
    }
}
