.wrapper {
    width: 100%;
    max-width: 100%;
}

.header {
    width: 100%;
    background: #cc6728; /* темно-оранжевий */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 2vw;
    box-sizing: border-box;
}
.header__container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    box-sizing: border-box;
    position: relative;
}
.header__logo {
    flex: 0 0 auto;
}
.header__menu {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}
.header__menu ul {
    display: flex;
    gap: 2vw;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.header__menu a {
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s, background 0.2s;
}
.header__menu a:hover {
    color: #cc6728 !important;
    background: #fff;
    border-radius: 4px;
}

.main__content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.banner__center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 2;
}
.banner__center h1 {
    color: #fff;
    font-size: 1.85rem;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.banner__bottom {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}
.banner__text {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 18px;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    padding: 10px;
}
.banner__order-btn {
    background: #cc6728;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 14px 38px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    transition: background 0.2s;
}
.banner__order-btn:hover {
    background: #d35400;
}
.main__container-banner {
    position: relative;
    width: 100vw;
    height: 45vh;
    min-height: 300px;
    background:  linear-gradient(rgba(14, 37, 14,.8), rgba(14, 37, 14,.8)), url('/view/images/background.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    right: 0;
    left: 0;
}

.footer__container {
    min-height: 100px;
    background: #b85c22; /* трохи темніший за хедер */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Sticky header styles */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

/* Відступ для основного контенту, щоб не перекривалося меню */
body.has-sticky-header .wrapper {
    padding-top: 64px; /* висота header, підлаштуйте за потреби */
}


@media (max-width: 768px) {
    .header__container {
        max-width: 100vw;
        padding: 0 10px;
    }
    .header__menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #cc6728;
        z-index: 1001;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateY(-100%);
        transition: transform 0.3s;
    }
    .header__menu.active {
        transform: translateY(0);
    }
    .header__menu ul {
        flex-direction: column;
        gap: 32px;
    }
    .header__menu a {
        font-size: 1.5rem;
    }
    .burger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 36px;
        height: 36px;
        cursor: pointer;
        z-index: 1002;
        margin-left: 16px;
    }
    .burger span {
        display: block;
        height: 4px;
        width: 100%;
        background: #fff;
        margin: 5px 0;
        border-radius: 2px;
        transition: 0.3s;
    }
}

.stromectol-img {
    float:left;
    padding:5px 20px;
    }

.no-prescription {
    text-align:center; 
    color:#B35160; 
    font-family:Verdana, Geneva, sans-serif; 
    font-size:22px;}
    
    table {
        border-collapse: collapse;
        width: 100%;
      }
    
      th, td {
        border: 1px solid #ccc;
        padding: 8px;
        text-align: left;
      }
    
      th {
        background-color: #f2f2f2;
      }

