@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
    --bg-main: #fcf9f5;
    --bg-header: #f4efe685;
    --bg-card: #ffffff;
    --accent: #b07d62;
    --accent-hover: #96664e;
    --text-main: #a67965;
    --text-active: #6b4331;
    --text-muted: #a08b83;
    --border-color: #e6dfd5;
    --circle-bg: #eddcd2;
}

body {
    background-color: var(--bg-main);
    font-family: "Ubuntu", sans-serif;
    font-weight: 450;

    color: var(--text-main);
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -11111;
    background: radial-gradient(circle at 20% 30%, var(--accent) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, var(--accent) 0%, transparent 40%);
    opacity: 0.6;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-top: -25px;
    margin-bottom: -25px;
    transition: opacity 0.3s ease;
}

.logo img {
    height: 100px;
    width: auto;
}

.logo:hover {
    opacity: 0.8;
}



nav {
    position: fixed;
    transform: translateX(-50%);
    height: 40px;
    top: 20px;
    left: 50%;
    width: 90%;
    padding: 26px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    background: rgba(244, 239, 230, 0.486);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 223, 213, .9);
    border-radius: 28px;
    box-shadow:
        0 10px 35px rgba(0, 0, 0, .05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    z-index: 1111;
    transition: all 0.3s ease-in-out;
}

nav:hover {
    box-shadow: 0 0 10px #e2c49af2;

}


.nav-buttons {
    display: flex;
    gap: 48px;
    align-items: center;
    justify-self: center;
}

.nav-btn,
.nav-btn-coffe,
.btn-naytinas {
    gap: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-main);
    text-decoration: none;
    border-radius: 18px;
    transition: all 0.3s;
}

.nav-btn.active {
    color: #6b4331;
    font-weight: 600;
}




.nav-btn:hover {
    background-color: #dda081e3;
    color: var(--text-muted);
}



.nav-btn img,
.nav-btn-coffe img,
.btn-naytinas img img {
    width: 30px;
    filter: brightness(0) saturate(100%) invert(51%) sepia(21%) saturate(1039%) hue-rotate(334deg) brightness(96%) contrast(93%);
}

.nav-btn-coffe img,
.btn-naytinas img img {
    transition: filter 0.3s ease;
    filter: invert(1);
}

.btn-naytinas img {
    width: 30px;
    filter: brightness(0) saturate(100%) invert(51%) sepia(21%) saturate(1039%) hue-rotate(334deg) brightness(96%) contrast(93%);
}

.nav-btn-coffe,
.btn-naytinas {
    height: 30px;
    width: 180px;
    border: 2px solid var(--accent);
    background-color: var(--accent);
    color: rgb(255, 234, 234);
    padding: 14px;
    border-radius: 4px;
    font-weight: 350;
}

.btn-naytinas {
    border: 2px solid var(--accent);
    background-color: transparent;
    color: var(--text-main);
}

.nav-btn-coffe:hover,
.btn-naytinas:hover {
    background-color: transparent;
    color: var(--text-main);

}

.btn-naytinas:hover {
    background-color: var(--accent);
    color: rgb(255, 234, 234);

}

.nav-btn-coffe:hover img,
.btn-naytinas:hover img {
    filter: brightness(0) saturate(100%) invert(51%) sepia(21%) saturate(1039%) hue-rotate(334deg) brightness(96%) contrast(93%);
}

.btn-naytinas:hover img {
    filter: invert(1);
}

.hero-content,
.why-beatbin,
.succes-content {
    max-width: 620px;
    margin-top: 150px;

}

.succes-content,
.hero-content,
.hero-buttons {
    margin: 50px;
    margin-top: 150px;
}

.why-beatbin h1 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 70px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
}





.hero-content h1,
.succes-content h1 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 100px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
}

.hero-content h2,
.succes-content h2 {
    margin-top: 26px;
    font-size: 34px;
    font-weight: 600;
    color: var(--text-active);
    line-height: 1.4;
}

.hero-content h2 span,
.succes-content h2 span {
    color: var(--accent);
    font-weight: 600;
}

.hero-content p,
.succes-content p {
    margin-top: 30px;
    width: 560px;
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 400;
}

.hero-buttons {
    max-width: 620px;
    margin-top: 30px;

    display: flex;
    gap: 15px;

}

.hero-image {
    flex: 1;

    display: flex;
    justify-content: flex-end;
    align-items: center;

    position: relative;
}

.why-beatbin {
    width: 100%;
    max-width: 1400px;
    margin: 150px auto 0;
    padding: 0 40px;
    text-align: center;
}

.why-beatbin h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 64px;
    color: var(--text-active);
    margin-bottom: 70px;
}

.why-blocks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.why-block {
    width: 320px;
    padding: 35px 30px;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(176, 125, 98, .08);
    transition: 0.3s;
}

.why-block:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(176, 125, 98, 0.18);
}

.why-block img {
    width: 64px;
    height: 64px;
    margin-bottom: 25px;
}

.why-block h3 {
    font-size: 28px;
    color: var(--text-active);
    margin-bottom: 15px;
}

.why-block p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-muted);
}

.product_selecter_btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    width: 700px;
}

.product_selecter {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product_selecter_h1 {
    margin: 0 0 20px 0;
    font-size: 40px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 2px;
    text-align: center;
}

.navigator-products {
    border-radius: 10px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    width: 320px;
    padding: 30px;
    background: rgba(252, 249, 245, .95);
    backdrop-filter: blur(18px);
    border-right: 1px solid var(--border-color);
    box-shadow: 10px 0 35px rgba(176, 125, 98, .08);
}

.navigator-products h2 {
    margin: 0;
    font-size: 42px;
    font-family: "Cormorant Garamond", serif;
    color: var(--text-active);
}

.navigator-products p {
    margin: 8px 0 30px;
    color: var(--text-muted);
}

.navigator-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.navigator-links a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    text-decoration: none;
    color: var(--text-main);
    border-radius: 16px;
    transition: all 0.3s;
    font-size: 17px;
    font-weight: 500;
}

.navigator-links a img {
    width: 28px;
    height: 28px;
    transition: 0.3s;
}

.navigator-links a:hover {
    background: var(--accent);
    color: white;
    transform: translateX(8px);
}

.navigator-links a:hover img {
    filter: invert(1);
}

.navigator-links a.active {
    background: var(--accent);
    color: white;
    box-shadow: 0 10px 25px rgba(176, 125, 98, .25);
}


.navigator-products::-webkit-scrollbar {
    width: 8px;
}



.navigator-products::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 999px;
}

.navigator-products::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}



/* прдукти бокcи */
.products-bbox {
    margin-left: 360px;
    padding: 40px;
    margin-top: 100px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    display: flex;
    justify-content: center;
    align-content: center;
}

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.product-box {
    width: 270px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding: 22px;
    text-align: center;
    position: relative;
    transition: 0.3s ease-out;
    box-shadow: 0 12px 30px rgba(176, 125, 98, 0.3);
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.product-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(176, 125, 98, .18);
}

.product-box img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
    margin-top: 12px;

}


.price {
    display: block;
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through;
}

.procent,
.novinka {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 6px 10px;
    background: #ff6b6b;
    color: white;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.novinka {
    position: absolute;
    top: 18px;
    right: 80%;
    background: #64d486;
}

.price-out {
    display: block;
    margin-top: 8px;
    font-size: 30px;
    font-weight: 700;
    color: var(--accent);
}

.product-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.product-box a img {
    width: 30px;
    height: 30px;
    margin-bottom: 0;

}




.popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    transition: 0.3s;
}

.popup a {
    text-align: center;
    margin: 0 auto;
}

.popup:target {
    opacity: 1;
    pointer-events: auto;
}

.popup-box {
    position: relative;
    width: 500px;
    max-width: 90%;
    margin: 30px auto;
    padding: 25px;
    margin-top: 150px;
    background: var(--bg-card);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.popup-box img {
    display: block;
    width: 140px;
    margin: 0 auto 20px;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 50%;
    background: #f3ece6;
    color: var(--text-active);
    font-size: 22px;
    transition: 0.2s;
}

.close:hover {
    background: var(--accent);
    color: #fff;
}

.reviews {
    margin-top: 35px;
}

.review {
    display: flex;
    gap: 18px;
    background: #faf7f3;
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 18px;
    margin-top: 20px;
}



.review-content {
    width: 100%;
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    margin-top: 30px;
}

.review-top strong {
    font-size: 18px;
    color: var(--text-active);
}

.stars {
    color: #ffc107;
    font-size: 18px;
    letter-spacing: 2px;
}

.review-content p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-main);
}

.reply {
    margin-top: 15px;
    background: #f2ece6;
    border-left: 4px solid var(--accent);
    border-radius: 12px;
    padding: 14px 16px;
}

.reply strong {
    display: block;
    color: var(--accent);
    margin-bottom: 6px;
}



.payment-box {
    width: 420px;
    margin: 60px auto;
    position: relative;
    padding: 35px;
    background: var(--bg-card);
    border-radius: 22px;
    border: 1px solid var(--border-color);
    margin-top: 200px;
    box-shadow: 0 20px 40px rgba(176, 125, 98, .12);
}

.payment-box h2 {
    margin-bottom: 25px;
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    color: var(--text-active);
}

.payment-box input {
    width: 100%;
    padding: 16px 18px;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    font-size: 16px;
    background: #fff;
    box-sizing: border-box;
    transition: .25s;
}

.payment-box input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(176, 125, 98, .15);
}

.card-row {
    display: flex;
    gap: 15px;
}

.card-row input {
    flex: 1;
}

.purch {
    display: block;
    width: 250px;
    margin: 10px auto 0;
    padding: 16px;
    text-align: center;
    text-decoration: none;
    border-radius: 14px;
    background: var(--accent);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    transition: 0.25s;
}

.purch:hover {
    background: var(--accent-hover);
}

.payment-close {
    position: absolute;

    top: 15px;
    right: 15px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    background: #f6f2ee;
    border: 1px solid var(--border-color);

    color: var(--text-main);
    font-size: 20px;
    font-weight: bold;

    z-index: 1000;
    transition: .25s;
}

.payment-close:hover {
    background: var(--accent);
    color: #fff;
}


.success {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    overflow-y: auto;
    transition: 0.3s;
    margin: 20px;
}


.dosagnenya {
    margin: 120px auto;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(217, 204, 204, 0.815);
    border-radius: 35px;
    padding: 15px 15px 30px 15px;
}

.dosagnenya h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 65px;
    color: var(--text-active);
    margin-bottom: 50px;
}

.dosagnenya-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.dos-box {
    width: 250px;
    padding: 35px 25px;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(176, 125, 98, .08);
    transition: all 0.3s;
}

.dos-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(176, 125, 98, 0.601);
}

.dos-box span {
    font-size: 50px;
}

.dos-box h2 {
    margin: 18px 0 10px;
    font-size: 38px;
    color: var(--accent);
}

.dos-box p {
    margin: 0;
    font-size: 18px;
    color: var(--text-muted);
}


form {
    width: 700px;
    margin: 50px auto;
    padding: 35px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(10px);
    max-width: 90%;
    border: 1px solid var(--border-color);
    border-radius: 24px;
}

form input {
    width: 100%;
    padding: 16px 18px;
    box-sizing: border-box;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    background: #fff;
    color: var(--text-active);
    font-size: 16px;
    margin-top: 5px;
    transition: 0.3s;
}

form input::placeholder {
    color: var(--text-muted);
}

form input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(176, 125, 98, .15);
}

form button {
    margin-top: 15px;
    padding: 16px;
    border: none;
    border-radius: 14px;
    background: var(--accent);
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.4s ease;
}

form button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

form a {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
}


.about-us {
    width: 1100px;
    max-width: 90%;
    margin: 120px auto;
    padding: 50px;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    box-shadow: 0 20px 45px rgba(176, 125, 98, 0.10);
    transition: 0.3s;
}

.about-us:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(176, 125, 98, 0.18);
}

.about-us h1 {
    margin: 25px;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 70px;
    font-weight: 700;
    color: var(--text-active);
    letter-spacing: 2px;
}

.about-us p {
    margin: 22px 0;
    font-size: 20px;
    line-height: 1.9;
    color: var(--text-muted);
    text-align: justify;
}

.about-us span {
    color: var(--accent);
}

.location {
    width: 1200px;
    max-width: 90%;
    margin: 120px auto;
    text-align: center;
}

.location h1 {
    margin-bottom: 20px;

    font-family: "Cormorant Garamond", serif;
    font-size: 70px;
    color: var(--text-active);
}

.location p {
    max-width: 700px;
    margin: 0 auto 60px;
    font-size: 20px;
    color: var(--text-muted);
}

.location-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 45px;
}

.location-box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 250px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.751);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    box-shadow: 0 15px 35px rgba(176, 125, 98, 0.08);
    transition: 0.3s;
}

.location-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(176, 125, 98, 0.181);
}

.location-box h3 {
    margin: 0 0 18px;
    font-size: 28px;
    color: var(--text-active);
}

.location-box p {
    margin: 8px 0;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-muted);
}

.location-box a {
    margin-left: 15px;
}

.tovar {
    text-align: center;
}

.location .nav-btn-coffe {
    width: 270px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 14px;

    font-size: 18px;

    box-shadow: 0 12px 25px rgba(176, 125, 98, .18);
}

.location .nav-btn-coffe:hover {
    transform: translateY(-3px);
}


footer {
    margin-top: 300px;
    padding: 70px 8% 30px;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    border-radius: 2px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    width: 100%;
}

.footer-box {
    width: 250px;
}

.footer-box h2 {
    margin: 0 0 15px;
    font-family: "Cormorant Garamond", serif;
    font-size: 42px;
    color: var(--accent);
}

.footer-box h3 {
    margin-bottom: 18px;
    font-size: 24px;
    color: var(--text-active);
}

.footer-box p {
    margin: 10px 0;
    line-height: 1.8;
    color: var(--text-muted);
}

.footer-box a {
    display: block;
    margin: 12px 0;
    text-decoration: none;
    color: var(--text-muted);
    transition: 0.3s;
}

.footer-box a:hover {
    color: var(--accent);
    transform: translateX(6px);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
}

.events {
    width: 1200px;
    max-width: 90%;
    margin: 140px auto;
    text-align: center;
}

.events h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: 70px;
    color: var(--text-active);
    margin-bottom: 60px;
}

.events-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.event-card {
    margin-top: 150px;
    width: 380px;
    padding: 35px;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(176, 125, 98, 0.08);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 420px;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(176, 125, 98, .18);
}

.event-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.event-card h3 {
    margin: 0;
    font-size: 34px;
    color: var(--text-active);
    font-family: "Cormorant Garamond", serif;
}

.event-card p {
    margin: 20px 0;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-muted);
}

.event-time {
    margin-top: auto;
    display: inline-block;
    padding: 12px 22px;
    background: var(--accent);
    color: white;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(176, 125, 98, .25);
}

.event-card span {
    font-weight: bold;
}

.event-cards {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}



/* @media адаптування під телефоен */

@media (max-width:768px) {

    body {
        margin: 0;
    }

    nav {
        width: 360px;
        max-width: 95%;

        padding: 15px;
        height: auto;

        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;

        transform: translateX(-55%);
    }

    .logo img {
        width: 150px;
    }

    .nav-buttons {
        width: 100%;

        display: flex;
        flex-wrap: wrap;

        justify-content: center;
        gap: 10px;
    }

    .nav-btn,
    .nav-btn-coffe {

        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;

        height: 42px;

        padding: 0 14px;

        border-radius: 12px;

        font-size: 13px;

        white-space: nowrap;
    }

    .nav-btn img,
    .nav-btn-coffe img {
        width: 16px;
        height: 16px;
    }


    .btn-naytinas img {
        width: 20px;
    }

    .nav-btn-coffe,
    .btn-naytinas {
        height: 20px;
        width: 100px;
        padding: 10px;
    }

    .hero-content,
    .why-beatbin {
        max-width: 300px;
        margin: 300px auto 15px;
        max-width: 300px;
        margin-top: 300px;

    }

    .hero-buttons {
        max-width: 300px;
        margin: 1px auto 15px;
    }


    .hero-content h1 {
        font-size: 50px;
        letter-spacing: 1.2px;
    }

    .hero-content h2 {
        margin-top: 20px;
        font-size: 24px;
        line-height: 1.2;
    }

    .hero-content p {
        margin-top: 25px;
        width: 300px;
        font-size: 18px;
        line-height: 1.4;
    }



    .why-beatbin h1 {
        font-size: 40px;
    }

    .why-beatbin {
        width: 360px;
        max-width: 360px;
        padding: 0 30px;
    }

    .why-blocks {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }

    .why-block {
        width: 160px;
        min-height: 210px;

        padding: 15px;
        box-sizing: border-box;
    }

    .why-block h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .why-block p {
        font-size: 12px;
        line-height: 1.4;
    }

    .why-block img {
        width: 42px;
        height: 42px;
    }

    /* меню для виборіу продуктів */
    .navigator-products {
        width: 150px;
        top: 0;
        padding: 18px 12px;
    }

    .navigator-products h2 {
        font-size: 28px;
    }

    .navigator-products p {
        font-size: 13px;
        margin: 6px 0 18px;
    }

    .navigator-links {
        gap: 8px;
    }

    .navigator-links a {
        padding: 10px 12px;
        gap: 10px;
        font-size: 13px;
        border-radius: 10px;
    }

    .navigator-links a img {
        width: 18px;
        height: 18px;
    }

    .navigator-links a:hover {
        transform: translateX(4px);
    }

    .product_selecter {
        padding-left: 190px;
    }

    .product_selecter_h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    /* продукти боксіки */


    .products-bbox {
        margin-left: 180px;
        padding: 10px;
        margin-top: 2px;
        padding: 5px;

    }

    .products {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 100%;
    }

    .product-box {
        padding: 5px;
        width: 150px;
        height: 270px;
        padding: 12px;
        min-height: 299px;
        border-radius: 14px;

    }

    .product-box>* {
        position: relative;
        top: 13px;
    }

    .product-box img {
        width: 85px;
        height: 85px;
        margin: 8px 0;
        margin-top: 10px;
        object-fit: contain;
    }

    .product-box span:first-child {
        font-size: 13px;
        font-weight: 600;
    }

    .price {
        font-size: 11px;
        margin-top: 8px;
    }

    .price-out {
        font-size: 18px;
        margin-top: 4px;
    }

    .procent,
    .novinka {
        position: absolute;
        top: 8px;

        padding: 4px 8px;
        border-radius: 999px;

        font-size: 10px;
        font-weight: 600;
        line-height: 1;
    }

    .procent {
        right: 8px;
        left: auto;
        background: #ff6b6b;
    }

    .novinka {
        left: 8px;
        top: 2%;
        right: auto;
        background: #64d486;
    }

    .product-box a {
        margin-top: 8px;
        font-size: 12px;
        gap: 5px;
    }

    .product-box a img {
        width: 18px;
        height: 18px;
    }

    .popup-box {
        width: 95%;
        margin-top: 100px;
        padding: 20px;
    }

    .payment-box {
        width: 95%;
        margin-top: 100px;
        padding: 20px;
    }

    .payment-box h2 {
        font-size: 28px;
    }

    .card-row {
        flex-direction: column;
        gap: 0;
    }

    .purch {
        width: 100%;
    }

    /* досягнення */
    .dosagnenya {
        width: 95%;
        margin: 70px auto;
        padding: 20px 15px;
        margin-top: 100px;

    }

    .dosagnenya h1 {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .dosagnenya-content {
        justify-content: center;
        gap: 12px;
    }


    .dos-box {
        width: 145px;
        padding: 18px 12px;
        border-radius: 16px;
    }

    .dos-box span {
        font-size: 34px;
    }

    .dos-box h2 {
        margin: 10px 0 6px;
        font-size: 24px;
    }

    .dos-box p {
        font-size: 13px;
        line-height: 1.4;
    }

    .dos-box:hover {
        transform: translateY(-4px);
    }

    /* анкета(форма) */
    form {
        width: 95%;
        margin: 120px auto 50px;
        padding: 20px;
        border-radius: 18px;
        box-sizing: border-box;
    }

    form h1,
    form h2 {
        font-size: 30px;
        text-align: center;
        margin-bottom: 15px;
    }

    form label {
        font-size: 14px;
    }

    form input {
        padding: 13px 15px;
        font-size: 14px;
        border-radius: 10px;
    }

    form button {
        width: 100%;
        padding: 14px;
        font-size: 15px;
        border-radius: 10px;
    }

    form a {
        width: 100%;
        display: block;
    }

    /* about */
    .about-us {
        width: 95%;
        margin: 70px auto;
        padding: 20px;

        border-radius: 18px;
        box-sizing: border-box;
    }

    .about-us h1 {
        margin: 0 0 15px;
        font-size: 38px;
        letter-spacing: 1px;
    }

    .about-us p {
        margin: 15px 0;
        font-size: 15px;
        line-height: 1.7;
        text-align: left;
    }

    .about-us:hover {
        transform: none;
    }

    /* location */
    .location {
        width: 95%;
        margin: 70px auto;

    }

    .location h1 {
        font-size: 38px;
        margin-bottom: 15px;
    }

    .location p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .location-info {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        justify-items: center;
    }

    .location-box {
        width: 145px;
        padding: 16px 12px;
        border-radius: 16px;
    }

    .location-box h3 {
        margin-bottom: 10px;
        font-size: 18px;
    }

    .location-box p {
        margin: 4px 0;
        font-size: 13px;
        line-height: 1.5;
    }

    .location .nav-btn-coffe {
        width: 220px;
        padding: 12px;
        font-size: 15px;
        border-radius: 10px;
    }

    .location .nav-btn-coffe img {
        width: 20px;
        height: 20px;
    }

    .location-box:hover,
    .location .nav-btn-coffe:hover {
        transform: none;
    }

    /* футер */
    footer {
        width: 100%;
        box-sizing: border-box;
        margin-top: 80px;
        padding: 35px 20px 20px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        justify-items: center;
    }

    .footer-box {
        width: 100%;
        text-align: center;
    }

    .footer-box h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .footer-box h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .footer-box p,
    .footer-box a {
        font-size: 13px;
        line-height: 1.6;
        margin: 6px 0;
    }

    .footer-box a:hover {
        transform: none;
    }

    .footer-bottom {
        margin-top: 25px;
        padding-top: 15px;
        font-size: 12px;
    }

    /* events */

    .events-container {
        margin-top: 140px;
        gap: 12px;
        max-width: 300px;
        margin: 155px auto 15px;
    }

    .event-card {
        width: 100%;
        max-width: 300px;
        padding: 20px;
        border-radius: 16px;
        height: auto;
        min-height: auto;
        margin-top: 0;
    }

    .event-icon {
        font-size: 26px;
        margin-bottom: 6px;
    }

    .event-card h3 {
        font-size: 14px;
        line-height: 1.2;
        margin-bottom: 5px;
    }

    .event-card p {
        font-size: 10px;
        line-height: 1.3;
        margin: 6px 0;
    }

    .event-time {
        display: block;
        font-size: 9px;
        padding: 6px 8px;
        border-radius: 999px;
    }





}