/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --yellow: #FC7714;
    --dark: #2d2d2d;
    --overlay: rgba(252, 119, 20, .85);
    --banner-overlay: linear-gradient(rgba(252, 119, 20, .8), rgba(252, 119, 20, 1))
}

html {
    scroll-behavior: smooth;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f3f3f3;
    color: #111
}

/* Header */
.header {
    display: flex;
    max-width: 1420px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo-section {
    background: var(--yellow);
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 220px
}

.company-name {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px
}

.company-logo {
    background: url('images/favicon.png') center/contain no-repeat;
    width: 100%;
    height: 60px;
}

.contact-bar {
    background: var(--dark);
    color: #fff;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex: 1
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px
}

.contact-icon {
    color: var(--yellow);
    font-size: 16px
}

/* Search & Cart icons */
.header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon-btn {
    appearance: none;
    background: transparent;
    border: 0;
    padding: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn svg > * {
    transition: all .3s ease;
}

.icon-btn:hover svg > * {
    stroke: var(--yellow);
}

.divider {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, .1);
}

.cart-btn {
    position: relative;
}

.badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--yellow);
    color: #1f1f1f;
    font-weight: 800;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 2px #fff;
}


/* Layout */
.container {
    max-width: 1420px;
    margin: 28px auto;
    padding: 0 24px
}

.hero-grid {
    display: grid;
    grid-template-columns:2.5fr 1fr;
    gap: 28px
}

/* Main banner */
.main-banner {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: #6a6a6a url('images/main.jpg') center/cover no-repeat;
    color: #fff
}

.main-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45)
}

.main-content {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    max-width: 70%;
    padding: 56px 64px;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.sale-tag {
    color: var(--yellow);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px
}

.main-banner h1 {
    font-size: 40px;
    line-height: 1.05;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-wrap: balance;
    text-shadow: 0 2px 2px rgba(0, 0, 0, .2)
}

.btn {
    align-self: flex-start;
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1px;
    transition: .2s;
}

.btn:hover {
    transform: translateY(-1px)
}

.btn-outline-yellow {
    border-color: var(--yellow);
    color: #fff
}

/* Side banner */
.side-banner {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background: var(--yellow) url('images/side-7.jpg') center/cover no-repeat
}

.yellow-overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay);
}

.side-banner-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 22px;
    color: #fff;
    padding: 48px
}

.side-banner h2 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 900;
    letter-spacing: .3px;
    text-transform: uppercase
}

.btn-white {
    border-color: #fff;
    color: #fff
}

.btn-white:hover {
    background: #fff;
    color: #2d2d2d
}

/* === Promo Duo === */
.promo-duo {
    margin-top: 28px;
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 28px
}

.promo-card {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    background: #fff
}

/* Left card split layout */
.promo-left {
    display: grid;
    grid-template-columns:1.15fr 1fr
}

.promo-left-text {
    background: var(--yellow);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center
}

.promo-left-text .eyebrow {
    font-weight: 800;
    letter-spacing: .08em;
    font-size: 13px;
    color: #fff;
    opacity: .95
}

.promo-left-text h3 {
    font-size: 25px;
    line-height: 1.12;
    font-weight: bold;
    color: #111;
    text-transform: uppercase;
}

.promo-left-text .sub {
    font-size: 12px;
    letter-spacing: .06em;
    color: #3b2f00;
    text-transform: uppercase;
    opacity: .8
}

.promo-left-media {
    background: url('images/side-4.jpg') center/cover no-repeat
}

.btn-outline-dark {
    border: 2px solid rgba(0, 0, 0, .6);
    color: #111;
    background: transparent;
    padding: 10px 20px;
    font-weight: 800
}

.btn-outline-dark:hover {
    background: rgba(0, 0, 0, .08)
}

/* Right card full-bleed image with dark overlay */
.promo-right {
    background: #111
}

.promo-right-media {
    position: absolute;
    inset: 0;
    background: url('images/side-9.jpg') center/cover no-repeat;
    filter: grayscale(10%)
}

.promo-right::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, .55);
}

.promo-right-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    height: 100%
}

.promo-right h3 {
    font-size: 25px;
    line-height: 1.25;
    font-weight: bold;
    text-transform: uppercase;
}

.promo-right .hl {
    color: var(--yellow)
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, .85);
    color: #fff;
    background: transparent;
    padding: 10px 20px;
    font-weight: 800;
    width: max-content
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, .12)
}

/* Responsive */
@media (max-width: 1100px) {
    .header {
        flex-direction: column;
    }

    .hero-grid {
        grid-template-columns:1fr;
        gap: 20px
    }

    .logo-section, .contact-bar {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .main-content {
        max-width: 70%;
        padding: 44px
    }

    .main-banner, .side-banner {
        min-height: 460px
    }

    .main-banner h1 {
        font-size: 35px
    }

    .promo-duo {
        grid-template-columns:1fr
    }

    .promo-left {
        grid-template-columns:1fr
    }

    .promo-left-media {
        min-height: 160px
    }
}

@media (max-width: 800px) {
    .header {
        flex-direction: column;
        padding: 0 16px;
    }

    .promo-duo {
        margin-top: 16px;
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .contact-bar {
        flex-direction: column;
        gap: 8px;
        padding: 16px
    }

    .logo-section {
        padding: 24px
    }

    .header-actions {
        margin: 20px 0 0 0;
        gap: 0;
    }

    .container {
        margin: 20px auto;
        padding: 0 16px
    }

    .main-content {
        max-width: 100%;
        padding: 28px
    }

    .main-banner {
        min-height: 420px
    }

    .side-banner {
        min-height: 320px;
    }

    .main-banner h1 {
        font-size: 34px
    }

    .promo-right h3 {
        font-size: 20px;
    }

    .tabs {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        font-size: 14px;
        flex-direction: column;
        text-align: center;
        gap: 2px;
    }
}

@media (max-width: 400px) {
    .tabs {
        grid-template-columns: repeat(1, 1fr);
    }
}


/* Improved primary shop button */
.main-banner .btn-outline-yellow {
    border-width: 2px;
    border-color: var(--yellow);
    color: #fff;
    padding: 14px 34px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .05), 0 2px 6px rgba(0, 0, 0, .12);
}

.main-banner .btn-outline-yellow:hover {
    background: rgba(253, 185, 19, .12);
    color: #fff;
    transform: translateY(-1px);
}

/* === Products Tabs === */
.products {
    margin-top: 28px;
    padding: 40px 0;
    background-color: #fff;
}

.tabs {
    display: flex;
    gap: 5px;
    justify-content: center;
    margin-bottom: 18px
}

.tab {
    padding: 10px 18px;
    border: 0;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: default
}

.tab-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tab:not(.active) {
    background: #1e1e1e;
    color: #fff;
    opacity: .95;
    cursor: pointer;
    transition: all .4s
}

.tab.active, .tab:hover {
    background: var(--yellow);
    color: #fff
}

/* панели (по умолчанию скрыты) */
.panels .panel {
    display: none;
}

/* --- активный таб + показ нужной панели через :has() --- */
.products:has(#p-tab1:checked) .tabs label[for="p-tab1"],
.products:has(#p-tab2:checked) .tabs label[for="p-tab2"],
.products:has(#p-tab3:checked) .tabs label[for="p-tab3"],
.products:has(#p-tab4:checked) .tabs label[for="p-tab4"] {
    background: var(--yellow);
    color: #fff;
    opacity: 1;
}

/* показать соответствующую сетку */
.products:has(#p-tab1:checked) #panel1,
.products:has(#p-tab2:checked) #panel2,
.products:has(#p-tab3:checked) #panel3,
.products:has(#p-tab4:checked) #panel4 {
    display: grid;
}

.product-grid {
    display: grid;
    grid-template-columns:repeat(6, 1fr);
    gap: 5px;
}

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns:repeat(4, 1fr);
    }
}

@media (max-width: 800px) {
    .product-grid {
        grid-template-columns:repeat(2, 1fr);
    }

    .products {
        padding: 10px 0;
    }
}

.product-grid {
    display: grid;
    grid-template-columns:repeat(6, 1fr);
    gap: 5px
}

.product-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px;
    transition: all .4s;
}

.product-card:hover {
    border-color: var(--yellow);
}

.p-media {
    width: 100%;
    aspect-ratio: 1/1;
}

.p-media.p1 { background: url('images/products/product-1.webp') center/contain no-repeat }
.p-media.p2 { background: url('images/products/product-2.webp') center/contain no-repeat }
.p-media.p3 { background: url('images/products/product-3.webp') center/contain no-repeat }
.p-media.p4 { background: url('images/products/product-4.webp') center/contain no-repeat }
.p-media.p5 { background: url('images/products/product-5.webp') center/contain no-repeat }
.p-media.p6 { background: url('images/products/product-6.webp') center/contain no-repeat }

.p-media.p7 { background: url('images/products/product-7.webp') center/contain no-repeat }
.p-media.p8 { background: url('images/products/product-8.webp') center/contain no-repeat }
.p-media.p9 { background: url('images/products/product-9.webp') center/contain no-repeat }
.p-media.p10 { background: url('images/products/product-10.webp') center/contain no-repeat }
.p-media.p11 { background: url('images/products/product-11.webp') center/contain no-repeat }
.p-media.p12 { background: url('images/products/product-12.webp') center/contain no-repeat }

.p-media.p13 { background: url('images/products/product-13.webp') center/contain no-repeat }
.p-media.p14 { background: url('images/products/product-14.png') center/contain no-repeat }
.p-media.p15 { background: url('images/products/product-15.webp') center/contain no-repeat }
.p-media.p16 { background: url('images/products/product-16.webp') center/contain no-repeat }
.p-media.p17 { background: url('images/products/product-17.webp') center/contain no-repeat }
.p-media.p18 { background: url('images/products/product-18.webp') center/contain no-repeat }

.p-media.p19 { background: url('images/products/product-19.webp') center/contain no-repeat }
.p-media.p20 { background: url('images/products/product-20.webp') center/contain no-repeat }
.p-media.p21 { background: url('images/products/product-21.webp') center/contain no-repeat }
.p-media.p22 { background: url('images/products/product-22.webp') center/contain no-repeat }
.p-media.p23 { background: url('images/products/product-23.webp') center/contain no-repeat }
.p-media.p24 { background: url('images/products/product-24.webp') center/contain no-repeat }

.p-title {
    font-size: 14px;
    font-weight: 700;
    color: #555;
    margin-top: 10px
}

.p-rating {
    font-size: 14px;
    color: var(--yellow);
    margin: 4px 0 6px
}

.p-price {
    display: flex;
    gap: 8px;
    align-items: baseline;
}

.p-old {
    color: #999;
    text-decoration: line-through;
}

.p-new {
    color: #111;
    font-weight: bold
}

.btn-order {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
    color: #fff;
    font-weight: bold;
    min-width: 113px;
    max-height: 35px;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    transition: all .4s ease;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.btn-order .order-icon {
    display: none;
}

.btn-order.in-cart span {
    display: none;
}


.btn-order.in-cart .order-icon {
    display: block;
}

.btn-order:hover {
    background: #111;
    transform: translateY(-2px);
}

.btn-order.in-cart {
    background: #111;
    padding-top: 7px;
    padding-bottom: 7px;
}


/* Responsive */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns:repeat(4, 1fr)
    }
}

@media (max-width: 800px) {
    .product-grid {
        grid-template-columns:repeat(2, 1fr)
    }
}

@media (max-width: 400px) {
    .product-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .products {
        padding: 10px 0;
    }
}

/* === Recent Products grid === */
.section-title {
    font-size: 30px;
    letter-spacing: .08em;
    font-weight: 900;
    text-align: center;
    margin: 8px 0 18px
}

.recent-products {
    margin-top: 28px;
    padding: 40px 0;
}

.recent-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    gap: 20px
}

.recent-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .08);
    overflow: hidden;
    padding: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow .2s ease, transform .2s ease
}

.recent-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    transform: translateY(-2px)
}

.badge-wrap {
    position: relative;
    width: 100%
}

.sale-badge {
    position: absolute;
    left: 8px;
    top: 8px;
    background: var(--yellow);
    color: #fff;
    font-weight: 900;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px
}

.r-media {
    width: 100%;
    aspect-ratio: 1/1;
    margin-top: 14px
}

.r-media.r1 { background: url('images/products/product-25.webp') center/contain no-repeat }
.r-media.r2 { background: url('images/products/product-26.webp') center/contain no-repeat }
.r-media.r3 { background: url('images/products/product-27.webp') center/contain no-repeat }
.r-media.r4 { background: url('images/products/product-28.webp') center/contain no-repeat }
.r-media.r5 { background: url('images/products/product-29.webp') center/contain no-repeat }
.r-media.r6 { background: url('images/products/product-31.webp') center/contain no-repeat }
.r-media.r7 { background: url('images/products/product-30.webp') center/contain no-repeat }
.r-media.r8 { background: url('images/products/product-32.webp') center/contain no-repeat }

.r-title {
    font-size: 13px;
    color: #666;
    margin-top: 8px
}

.r-rating {
    color: var(--yellow);
    font-size: 14px;
    margin: 6px 0
}

.r-price {
    display: flex;
    gap: 8px;
    align-items: baseline;
    margin-top: 4px
}

.r-old {
    color: #999;
    text-decoration: line-through
}

.r-new {
    color: #111;
    font-weight: 900
}

@media (max-width: 1100px) {
    .recent-grid {
        grid-template-columns:repeat(3, 1fr)
    }
}

@media (max-width: 800px) {
    .recent-grid {
        grid-template-columns:repeat(2, 1fr);
        gap: 5px;
    }
}

@media (max-width: 400px) {
    .recent-grid {
        grid-template-columns:repeat(1, 1fr)
    }
}

@media (max-width: 400px) {
    .section-title {
        font-size: 26px;
    }

    .recent-products {
        padding: 10px 0;
    }

    .recent-grid {
        gap: 5px;
    }
}

/* === Wide Banner === */
.wide-banner {
    position: relative;
    margin: 70px 0 28px;
    height: 220px;
    overflow: hidden;
    background: var(--yellow) url('images/banner.jpg') center/cover no-repeat;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: var(--banner-overlay);
}

.banner-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #222;
    padding: 0 20px;
}

.banner-content .eyebrow {
    font-weight: 900;
    letter-spacing: .08em;
    font-size: 13px;
    color: #fff;
    opacity: .95;
    margin-bottom: 6px
}

.banner-title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: .02em;
    color: #2a2519;
    text-transform: uppercase
}

@media (max-width: 640px) {
    .wide-banner {
        height: 180px
    }

    .banner-title {
        font-size: 22px
    }
}

@media (max-width: 400px) {
    .banner-title {
        font-size: 17px
    }
}

/* === Footer === */
.site-footer {
    background: #111;
    color: #eee;
    padding: 50px 0 20px;
    font-size: 15px;
    margin-top: 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-col h4 {
    color: var(--yellow);
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.footer-col a {
    color: var(--yellow);
    transition: color .3s ease;
}

.footer-col a:hover {
    color: #fff;
}

.footer-col p {
    line-height: 1.6;
    color: #ccc;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
    color: #bbb;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px;
    color: #888;
    font-size: 14px;
}

@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (max-width: 400px) {
    .site-footer {
        margin-top: 10px;
    }
}

/* === Cart Modal === */
.cart-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.cart-modal.active {
    display: flex;
}

.cart-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.cart-box {
    position: relative;
    background: #fff;
    padding: 20px 24px;
    width: 50%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 10;
}

.cart-box header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 25px 0 10px;
    margin-bottom: 10px;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.cart-item h4 {
    font-size: 15px;
    font-weight: 400;
}

.cart-item button {
    border: none;
    background: transparent;
    color: #c00;
    cursor: pointer;
    font-weight: 700;
}

.cart-total {
    font-weight: 800;
    margin-bottom: 10px;
    text-align: right;
}

.cart-close {
    background: transparent;
    border: none;
    color: #444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: all 0.2s ease;
}

.cart-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000;
    transform: rotate(90deg);
}


.btn-checkout {
    background: var(--yellow);
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 14px 34px;
    cursor: pointer;
    text-transform: uppercase;
}

@media (max-width: 800px) {
    .cart-box {
        width: 90%;
    }

    .cart-box footer {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* === Checkout Modal === */
.checkout-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000
}

.checkout-modal.active {
    display: flex
}

.checkout-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .6)
}

.checkout-box {
    position: relative;
    background: #fff;
    width: min(720px, 92vw);
    max-height: 88vh;
    overflow: auto;
    padding: 20px 22px;
    z-index: 1
}

.checkout-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px
}

.checkout-close {
    line-height: 0;
    background: transparent;
    border: 0;
    color: #444;
    padding: 6px;
    cursor: pointer;
    transition: .2s
}

.checkout-close:hover {
    background: rgba(0, 0, 0, .06);
    color: #000;
    transform: rotate(90deg)
}

.form-grid {
    display: grid;
    grid-template-columns:1fr 1fr;
    gap: 14px
}

.form-grid label {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 700;
    color: #333
}

.form-grid input, .form-grid select, .form-grid textarea {
    margin-top: 6px;
    border: 1px solid #e2e2e2;
    padding: 10px 12px;
    font-size: 14px;
    outline: none
}

.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus {
    border-color: var(--yellow, #FDB913);
    box-shadow: 0 0 0 3px rgba(253, 185, 19, .15)
}

.form-grid .full {
    grid-column: 1 / -1
}

.err {
    color: #c00;
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
    min-height: 16px
}

.checkout-summary {
    display: flex;
    justify-content: flex-end;
    gap: 24px;
    margin: 16px 0 30px;
    font-size: 15px
}

.checkout-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px
}

.btn-primary {
    background: var(--yellow, #FDB913);
    color: #fff;
    border: 0;
    padding: 10px 16px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase
}

.btn-primary:hover {
    background: #dcae15
}

.btn-secondary {
    background: #111;
    color: #fff;
    border: 0;
    padding: 10px 16px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase
}

.btn-secondary:hover {
    opacity: .9
}

/* success */
.checkout-success {
    text-align: center;
    padding: 24px
}

.checkout-success h4 {
    font-size: 20px;
    margin-bottom: 8px
}

@media (max-width: 800px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}



