* {
    box-sizing: border-box
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: #111;
    background: #fff
}

a {
    text-decoration: none;
    color: inherit
}

.topbar {
    height: 34px;
    background: #08783e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 12px
}

.store-header {
    height: 78px;
    background: #050706;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 0 4%;
    gap: 55px;
    position: sticky;
    top: 0;
    z-index: 20
}

.logo {
    font-size: 20px;
    letter-spacing: 2px;
    color: #0fbb65
}

.logo b {
    color: #eee;
    font-weight: 500
}

.logo small {
    display: block;
    font-size: 9px;
    letter-spacing: 6px;
    color: #d2b05e;
    margin-top: 4px
}

.store-header nav {
    display: flex;
    gap: 30px;
    font-size: 13px;
    flex: 1;
    justify-content: center
}

.store-header nav a:hover {
    color: #16c46f
}

.header-actions {
    display: flex;
    gap: 20px;
    font-size: 12px
}

.flash,
.notice {
    padding: 12px 4%;
    background: #daf5e5;
    color: #075f32
}

.hero {
    min-height: 490px;
    background: radial-gradient(circle at 70% 30%, #11462f, transparent 30%), linear-gradient(90deg, #030505, #081a13);
    color: white;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    overflow: hidden
}

.hero-copy {
    padding: 60px 5%
}

.eyebrow {
    color: #0fd176;
    font-weight: 700;
    font-size: 13px
}

.hero h1 {
    font: 52px/1.02 Georgia, serif;
    margin: 14px 0 20px
}

.hero h1 em {
    color: #10aa5b;
    font-style: normal
}

.hero-copy>p:not(.eyebrow) {
    color: #d5d5d5;
    font-size: 17px;
    max-width: 520px;
    line-height: 1.6
}

.hero-buttons {
    display: flex;
    gap: 14px;
    margin: 28px 0
}

.btn {
    background: #07914d;
    border: 0;
    color: #fff;
    padding: 14px 23px;
    border-radius: 4px;
    font-weight: 700;
    display: inline-block;
    cursor: pointer
}

.btn-outline {
    background: transparent;
    border: 1px solid #aaa
}

.trust {
    margin-top: 42px
}

.hero-people {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 0;
    padding-top: 70px
}

.chef {
    width: 225px;
    height: 420px;
    background: linear-gradient(135deg, #133a2c, #06110d);
    border-radius: 100px 100px 10px 10px;
    position: relative;
    box-shadow: inset 0 0 0 1px #264
}

.chef:before {
    content: '';
    position: absolute;
    width: 105px;
    height: 105px;
    border-radius: 50%;
    background: linear-gradient(#d6a47f, #a97455);
    top: -58px;
    left: 60px
}

.chef span {
    position: absolute;
    top: 115px;
    left: 95px;
    color: #19d87a;
    font-weight: 800
}

.chef-green {
    background: linear-gradient(120deg, #143d2e, #0a2119)
}

.chef-black {
    height: 440px;
    background: linear-gradient(120deg, #161b19, #050706)
}

.benefits {
    background: #101413;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 22px 5%;
    gap: 20px
}

.benefits div {
    display: grid;
    grid-template-columns: 35px 1fr;
    align-items: center;
    border-right: 1px solid #39413e;
    font-size: 13px
}

.benefits b,
.benefits small {
    grid-column: 2
}

.benefits small {
    color: #b9bdbb;
    font-size: 11px;
    margin-top: 3px
}

.section {
    padding: 38px 4%
}

.section h2 {
    text-align: center;
    font-size: 20px
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px
}

.category-card {
    height: 205px;
    border-radius: 10px;
    background: #eee;
    overflow: hidden;
    display: flex;
    flex-direction: column
}

.category-card strong {
    background: #074b2d;
    color: white;
    padding: 16px;
    font-size: 12px
}

.product-shape {
    flex: 1;
    background: linear-gradient(145deg, #e2ddd5, #b6aa9d);
    position: relative
}

.product-shape:after {
    content: '';
    position: absolute;
    width: 90px;
    height: 120px;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    background: #111;
    border-radius: 30px 30px 10px 10px
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px
}

.product-card {
    border: 1px solid #e2e2e2;
    border-radius: 7px;
    padding: 10px;
    background: #fff
}

.product-art {
    height: 180px;
    background: linear-gradient(#f9f9f9, #ececec);
    display: flex;
    align-items: center;
    justify-content: center
}

.uniform {
    width: 100px;
    height: 140px;
    background: #0c1110;
    border-radius: 34px 34px 10px 10px;
    position: relative;
    box-shadow: inset 2px 0 #0e9c58
}

.uniform:after {
    content: 'ER';
    position: absolute;
    color: #10b865;
    left: 52px;
    top: 45px;
    font-size: 12px
}

.product-card h3 {
    font-size: 13px;
    margin: 10px 0 6px
}

.product-card strong {
    font-size: 14px
}

.stars {
    color: #07904d;
    font-size: 12px;
    margin: 6px 0
}

.stars small {
    color: #555
}

.mini-cart {
    width: 100%;
    border: 0;
    background: #078748;
    color: white;
    padding: 9px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    margin-top: 8px
}

.embroidery {
    background: linear-gradient(90deg, #061a12, #082d20);
    color: white;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 45px;
    padding: 35px 5%;
    align-items: center
}

.embroidery-art {
    height: 210px;
    background: #050706;
    display: flex;
    align-items: center;
    justify-content: center;
    font: 70px Georgia;
    color: #0cb464
}

.embroidery ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    color: #ddd
}

.newsletter {
    padding: 20px 7%;
    background: linear-gradient(90deg, #067f43, #0c9b54);
    display: flex;
    color: white;
    justify-content: space-between;
    align-items: center
}

.newsletter div {
    display: flex;
    flex-direction: column
}

.newsletter form {
    display: flex;
    width: 42%
}

.newsletter input {
    flex: 1;
    padding: 13px;
    border: 0
}

.newsletter button {
    width: 130px;
    background: #031b10;
    color: white;
    border: 0
}

.shop-hero {
    background: #07110d;
    color: white;
    padding: 35px 4%;
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 15px;
    align-items: center
}

.video-box {
    height: 120px;
    border: 1px solid #52615b;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #182820, #050806);
    color: #fff
}

.catalog {
    padding: 28px 4%;
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 25px
}

.catalog aside {
    border: 1px solid #ddd;
    padding: 18px;
    height: max-content
}

.catalog aside a {
    display: block;
    padding: 8px 0;
    font-size: 13px
}

.catalog .product-grid {
    grid-template-columns: repeat(4, 1fr)
}

.searchbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 18px
}

.searchbar input {
    padding: 10px;
    width: 280px;
    border: 1px solid #ccc
}

.searchbar button {
    background: #073f28;
    color: white;
    border: 0;
    padding: 0 18px
}

.swatches {
    display: flex;
    gap: 8px
}

.swatches i {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0c8a4b;
    border: 1px solid #ccc
}

.swatches i:nth-child(2) {
    background: #111
}

.swatches i:nth-child(3) {
    background: #fff
}

.swatches i:nth-child(4) {
    background: #173a66
}

.swatches i:nth-child(5) {
    background: #a61e2b
}

.tiny i {
    width: 12px;
    height: 12px
}

.product-page {
    padding: 38px 4%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px
}

.main-photo {
    height: 560px;
    background: linear-gradient(135deg, #25352d, #070a08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.uniform.large {
    transform: scale(2.4)
}

.rotate {
    position: absolute;
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    width: 95px;
    height: 95px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800
}

.rotate small {
    font-size: 8px;
    margin-top: 10px
}

.thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
    margin-top: 8px
}

.thumbs span {
    background: #111;
    color: #fff;
    padding: 25px 5px;
    text-align: center;
    font-size: 11px
}

.product-info h1 {
    font: 38px Georgia;
    margin: 14px 0
}

.product-info h2 {
    color: #078448;
    font-size: 30px
}

.badge {
    background: #087f46;
    color: white;
    padding: 6px 9px;
    font-size: 11px
}

.product-info label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin: 18px 0 8px
}

.product-info select,
.qty {
    padding: 11px;
    border: 1px solid #bbb
}

.note {
    font-size: 11px
}

.size-row {
    display: flex;
    gap: 7px
}

.size-row input {
    display: none
}

.size-row span {
    border: 1px solid #bbb;
    padding: 10px 14px;
    display: block
}

.size-row input:checked+span {
    border-color: #078448;
    background: #e5f7ed
}

.wide {
    width: 100%;
    margin-top: 15px
}

.quality-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 25px;
    font-size: 11px;
    text-align: center
}

.media-row {
    padding: 0 4% 35px;
    display: grid;
    grid-template-columns: 1.1fr .8fr 1fr;
    gap: 15px
}

.media-row>div {
    border: 1px solid #ddd;
    padding: 16px
}

.rotate-stage {
    height: 250px;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: relative
}

.uniform.back {
    transform: rotateY(180deg)
}

.rotate-stage b {
    position: absolute;
    bottom: 20px;
    font-size: 28px
}

.camera-box {
    height: 250px;
    background: #e6ece9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px
}

.camera-box button {
    background: #078448;
    color: white;
    border: 0;
    padding: 12px
}

.video-box.tall {
    height: 250px
}

.customer-view {
    padding: 35px 4%;
    background: #fafafa
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px
}

.review-grid article {
    background: white;
    border: 1px solid #ddd;
    padding: 15px
}

.avatar {
    height: 120px;
    background: linear-gradient(135deg, #c8d9d0, #4f6b5d);
    border-radius: 4px
}

.narrow {
    max-width: 850px;
    margin: auto
}

.cart-row {
    display: grid;
    grid-template-columns: 1fr 130px 80px;
    gap: 20px;
    padding: 18px 0;
    border-bottom: 1px solid #ddd;
    align-items: center
}

.cart-row small {
    display: block;
    color: #777
}

.cart-total {
    text-align: right;
    font-size: 22px;
    padding: 20px
}

.form-card,
.auth-card {
    background: white;
    border: 1px solid #ddd;
    padding: 28px;
    display: grid;
    gap: 14px
}

.form-card label,
.auth-card label {
    display: grid;
    gap: 6px;
    font-size: 12px;
    font-weight: 700
}

.form-card input,
.form-card textarea,
.auth-card input {
    padding: 12px;
    border: 1px solid #ccc
}

.inline {
    display: flex !important;
    grid-template-columns: auto 1fr !important
}

.auth-wrap {
    min-height: 650px;
    display: grid;
    grid-template-columns: 1fr 1fr
}

.auth-photo {
    background: linear-gradient(135deg, #061a12, #020303);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

.auth-card {
    align-self: center;
    width: 430px;
    margin: auto
}

.error {
    color: #b22
}

.footer-grid {
    background: #06100c;
    color: #d4dbd7;
    padding: 38px 6%;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px
}

.footer-grid a {
    display: block;
    font-size: 12px;
    margin: 7px 0
}

.footer-grid p {
    font-size: 12px
}

.footer-bottom {
    background: #020504;
    color: #8e9893;
    padding: 13px 6%;
    display: flex;
    justify-content: space-between;
    font-size: 11px
}

@media(max-width:900px) {
    .store-header nav {
        display: none
    }

    .hero {
        grid-template-columns: 1fr
    }

    .hero-people {
        display: none
    }

    .benefits,
    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .catalog,
    .product-page,
    .media-row {
        grid-template-columns: 1fr
    }

    .catalog .product-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .newsletter,
    .footer-grid {
        display: block
    }

    .newsletter form {
        width: 100%;
        margin-top: 15px
    }

    .auth-wrap {
        grid-template-columns: 1fr
    }

    .auth-photo {
        display: none
    }

    .auth-card {
        width: 90%
    }
}