
:root {
    --green-dark: #072a20;
    --green: #087b59;
    --green-light: #eaf7f2;
    --text: #172b25;
    --muted: #65756f;
    --border: #dce5e1;
    --white: #ffffff;
    --red: #d6243c;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
    line-height: 24px;
    color: #666666;
}



a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font-family: inherit;
}

/* ==================================================
   Header
================================================== */

.site-header {
    position: relative;
    z-index: 1000;
    background: var(--white);
}

.top-bar {
    min-height: 34px;
    padding: 0 24px;
    background: var(--green-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    font-size: 12px;
}

.top-bar a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cart-count {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--red);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.main-header {
    min-height: 88px;
    padding: 0 28px;
    border-bottom: 1px solid var(--border);
    background: var(--white);
    display: grid;
    grid-template-columns: 245px auto 50px 245px ;
    align-items: center;
    gap: 25px;
}

.logo img {
    display: block;
    width: 245px;
    height: auto;
}

/* ==================================================
   Desktop navigation
================================================== */

.main-nav {
    min-height: 88px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: stretch;
}

.nav-link {
    min-height: 88px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--green);
}

.offer-link {
    color: var(--red);
}

.offer-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ee4052;
    box-shadow: 0 0 0 5px rgba(238, 64, 82, 0.13);
}

/* Products dropdown */

.products-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 400px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 0 0 16px 16px;
    background: var(--white);
    box-shadow: 0 25px 55px rgba(7, 42, 32, 0.17);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 10px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.nav-item:hover > .products-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.dropdown-heading {
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

.dropdown-heading small {
    display: block;
    margin-bottom: 7px;
    color: var(--green);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.dropdown-heading strong {
    font-size: 22px;
}

.category-list {
    padding-top: 18px;
}

.category-item {
    position: relative;
    border-bottom: 1px solid var(--border);
}

.category-item:last-child {
    border-bottom: 0;
}

.category-button {
    width: 100%;
    min-height: 52px;
    padding: 10px 14px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--text);
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    cursor: default;
}

.category-item:hover > .category-button {
    background: var(--green-light);
    color: var(--green);
}
.category-item:nth-child(1) .child-menu {
    top: 0;
}

.category-item:nth-child(2) .child-menu {
    top: -52px;
}

.category-item:nth-child(3) .child-menu {
    top: -14px;
}

.category-item:nth-child(4) .child-menu {
    top: -236px;
}

.category-item:nth-child(5) .child-menu {
    top: -28px;
}

.category-item:nth-child(6) .child-menu {
    top: -18px;
}

.category-item:nth-child(7) .child-menu {
    top: -92px;
}
.child-menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 320px;


    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: var(--white);
    box-shadow: 0 22px 45px rgba(7, 42, 32, 0.16);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(10px);

    transition:
        opacity 0.18s ease,
        visibility 0.18s ease,
        transform 0.18s ease;
}

.category-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 25px;
    height: 100%;
}

.category-item:hover > .child-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.child-title {
    margin-bottom: 10px;
    padding: 0 7px 12px;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
}

.child-menu a {
    min-height: 40px;
    padding: 9px 11px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    color: var(--muted);
    font-size: 13px;
}

.child-menu a:hover {
    padding-left: 16px;
    background: var(--green-light);
    color: var(--green);
}

/* About dropdown */

.about-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 290px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 0 0 14px 14px;
    background: var(--white);
    box-shadow: 0 22px 45px rgba(7, 42, 32, 0.16);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.nav-item:hover > .about-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.about-dropdown a {
    padding: 13px;
    border-radius: 9px;
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.about-dropdown a:hover {
    background: var(--green-light);
    color: var(--green);
}

/* ==================================================
   Search
================================================== */

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-control {
    display: none;
}

.search-button {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.search-button:hover {
    border-color: var(--green);
    color: var(--green);
}

.search-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 22px;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 35px rgba(7, 42, 32, 0.12);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.search-control:checked ~ .search-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-inner {
    position: relative;
    width: min(700px, 100%);
    margin: auto;
}

.search-inner > i {
    position: absolute;
    top: 18px;
    left: 18px;
    color: var(--muted);
}

.search-input {
    width: 100%;
    height: 52px;
    padding: 0 52px;
    border: 1px solid var(--border);
    border-radius: 28px;
    outline: none;
    font-size: 15px;
}

.search-input:focus {
    border-color: var(--green);
}

.search-close {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    font-size: 24px;
    cursor: pointer;
}

.search-results {
    width: min(700px, 100%);
    max-height: 300px;
    margin: 10px auto 0;
    padding: 8px;
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: var(--white);
    display: none;
}

.search-results a {
    padding: 11px 13px;
    border-radius: 8px;
    display: block;
    font-size: 14px;
}

.search-results a:hover {
    background: var(--green-light);
    color: var(--green);
}

.no-result {
    padding: 13px;
    color: var(--muted);
    font-size: 14px;
}
.phosho{
    display:none;
}
/* ==================================================
   Mobile menu checkbox
================================================== */

.mobile-menu-control,
.products-control,
.about-control,
.category-control {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.mobile-menu-button {
    display: none;
}

.mobile-heading {
    display: none;
}

.mobile-overlay {
    display: none;
}

/* ==================================================
   Demo page
================================================== */

.hero {
    min-height: 640px;
    padding: 90px 30px;
    background:
        linear-gradient(
        120deg,
        rgba(7, 42, 32, 0.96),
        rgba(8, 123, 89, 0.8)
        );
    color: var(--white);
    text-align: center;
}

.hero h1 {
    margin: 0 auto 20px;
    max-width: 800px;
    font-size: clamp(38px, 7vw, 80px);
    font-weight: 400;
}

.hero p {
    max-width: 650px;
    margin: auto;
    font-size: 18px;
    line-height: 1.7;
}

.setpad{
    padding-top: 200px;
}

/* ==================================================
   Mobile
================================================== */

@media (max-width: 900px) {
    .setpad{
        padding-top: 100px;
    }
    .top-bar {
        min-height: 38px;
        padding: 0 14px;
        gap: 12px;
    }
    .nav-item:hover > .products-dropdown {
        transform: translate(-0%, 0);
    }


    .main-header {
        min-height: 76px;
        padding: 0 16px;
      grid-template-columns: auto auto auto auto;
        gap: 0;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        margin-left:-8px;
        width: 122px;
    }

    .mobile-menu-button {
        width: 44px;
        height: 44px;
        border: 1px solid var(--border);
        border-radius: 9px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        cursor: pointer;
    }

    .mobile-menu-button span {
        width: 22px;
        height: 2px;
        background: var(--text);
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: min(390px, 88vw);
        height: 100vh;
        padding: 0 18px 30px;
        overflow-y: auto;
        background: var(--white);
        display: block;
        transform: translateX(-105%);
        transition: transform 0.3s ease;
        z-index: 10002;
    }

    .mobile-menu-control:checked ~ .main-header .main-nav {
        transform: translateX(0);
    }

    .mobile-heading {
        min-height: 76px;
        border-bottom: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 18px;
        font-weight: 800;
    }

    .mobile-close {
        font-size: 28px;
        cursor: pointer;
    }

    .nav-item {
        display: block;
        border-bottom: 1px solid var(--border);
    }

    .nav-link {
        min-height: 57px;
        padding: 0 5px;
        justify-content: space-between;
    }

    .products-dropdown,
    .about-dropdown {
        position: static;
        width: 100%;
        padding: 0 0 14px;
        border: 0;
        border-radius: 0;
        box-shadow: none;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;

        display: none;
    }

    .products-control:checked
    + .products-mobile-label
    + .products-dropdown {
        display: block;
    }

    .about-control:checked
    + .about-mobile-label
    + .about-dropdown {
        display: block;
    }

    .products-control:checked
    + .products-mobile-label i,
    .about-control:checked
    + .about-mobile-label i {
        transform: rotate(180deg);
    }

    .dropdown-heading {
        padding: 15px 7px;
    }

    .category-list {
        padding-top: 0;
    }

    .category-item {
        overflow: hidden;
    }

    .category-button {
        cursor: pointer;
    }

    .child-menu {
        position: static;
        width: 100%;
        max-height: none;
        padding: 0 6px 12px 20px;
        border: 0;
        border-radius: 0;
        box-shadow: none;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;

        display: none;
    }

    .category-control:checked
    + .category-button
    + .child-menu {
        display: block;
    }

    .category-control:checked
    + .category-button i {
        transform: rotate(90deg);
    }

    .category-item::after {
        display: none;
    }

    .child-title {
        display: none;
    }

    .category-button i,
    .products-mobile-label i,
    .about-mobile-label i {
        transition: transform 0.2s ease;
    }

    .mobile-overlay {
        position: fixed;
        inset: 0;
        z-index: 10001;
        background: rgba(4, 24, 18, 0.65);
        display: block;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transition:
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    .mobile-menu-control:checked ~ .mobile-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .search-panel {
        position: fixed;
        top: 38px;
        z-index: 10005;
    }
    .lapweb {
        display:none;
    }
    .phosho{
        display:block;
        width: 100px;
        max-width: 10%;
        margin-right:50px;
    }
}

@media (max-width: 480px) {
    .setpad{
        padding-top: 100px;
    }
    .top-bar {
        font-size: 11px;
    }

    .top-bar .login-text,
    .top-bar .register-text,
    .top-bar .cart-text {
        display: none;
    }

    .main-header {
        padding: 0 12px;
    }

    .hero {
        padding-top: 70px;
    }
    .lapweb {
        display:none;
    }
} 