* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: #30251f;
    background: #fffdf9;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* Header */

.site-header {
    background: #f9efe4;
}

.header-inner {
    min-height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.site-header img {
    width: 280px;
    height: auto;
}


/* Product hero */

.product-hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 590px;
    background: #f9efe4;
}

.product-image {
    min-height: 590px;
    overflow: hidden;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 70px clamp(40px, 7vw, 110px);
}

.eyebrow {
    margin: 0 0 12px;
    color: #9a767d;
    font-size: 12px;
    letter-spacing: 4px;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

h1 {
    margin: 0;
    font-size: clamp(48px, 5vw, 72px);
    line-height: 1.05;
    color: #545454;
}

h2 {
    color: #545454
}

.product-subtitle {
    margin: 18px 0;
    color: #9a767d;
    font-family: Georgia, serif;
    font-size: 20px;
    font-style: italic;
}

.product-description {
    max-width: 520px;
    margin: 0 0 14px;
    color: #545454;
    font-size: 16px;
}

.product-description:last-of-type {
    margin-bottom: 22px;
}

.price {
    margin: 0 0 14px;
    font-family: Georgia, serif;
    font-size: 42px;
}

.order-button {
    display: inline-flex;
    width: min(420px, 100%);
    min-height: 54px;

    align-items: center;
    justify-content: center;

    border-radius: 30px;

   background-color: #bc979e;
    color: #fff;

    font-size: 17px;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.order-button:hover {
    background: #9a767d;
    transform: translateY(-1px);
}

.shipping-section {
    width: min(420px, 100%);
    margin: 12px 0 22px;
}

.shipping-label {
    display: block;
    margin-bottom: 8px;

    color: #4f4038;
    font-size: 14px;
    font-weight: 600;
}

.select-wrapper {
    position: relative;
}

.shipping-select {
    width: 100%;
    min-height: 52px;
    padding: 0 42px 0 16px;

    border: 1px solid #d9cbc1;
    border-radius: 10px;

    background: #fffdf9;
    color: #3d3029;

    font-family: inherit;
    font-size: 15px;

    cursor: pointer;
}

.shipping-select:focus {
    outline: 2px solid #c8708c;
    outline-offset: 2px;
}

.shipping-note {
    margin: 8px 0 0;

    color: #74665d;
    font-size: 13px;
}

.price-summary {
    width: min(420px, 100%);
    margin-bottom: 22px;
    padding: 18px;

    border: 1px solid #e7ddd5;
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.5);
}

.price-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;

    padding: 5px 0;

    color: #5d4e46;
    font-size: 14px;
}

.total-row {
    margin-top: 10px;
    padding-top: 13px;

    border-top: 1px solid #ddd1c8;

    color: #30251f;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
}

.secure-payment {
    margin: 10px 0 0;
    color: #74665d;
    font-size: 13px;
    width: min(420px, 100%);
    text-align: center;
}


/* Features */

.product-features {
    padding: 58px 0;
    background: #f9efe4;
}

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

.feature {
    text-align: center;
}

.feature-icon {
    margin-bottom: 15px;
    font-size: 34px;
}

.feature h2 {
    margin: 0 0 10px;
    font-size: 19px;
    color: #9a767d;
}

.feature p {
    max-width: 220px;
    margin: 0 auto;
    color: #545454;
    font-size: 14px;
}


/* About */

.about-product {
    padding: 70px 0 90px;
    background: #f9efe4;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: 70px;
}

.about-image {
    overflow: hidden;
    border-radius: 50px;
}

.about-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.about-content h2 {
    margin: 0 0 24px;
    font-size: clamp(35px, 4vw, 50px);
    line-height: 1.1;
    color:#9a767d;
}

.about-content p {
    max-width: 500px;
    color: #545454;
}


/* Footer */

.site-footer {
    padding: 55px 20px;
    text-align: center;
    background: #f9efe4;
}

.footer-message {
    margin: 0;
    color: #9a767d;

    font-family: Georgia, serif;
    font-size: 22px;
    font-style: italic;
}

.copyright {
    margin-top: 18px;
    color: #92867e;
    font-size: 12px;
}


/* Tablet */

@media (max-width: 900px) {

    .header-inner {
        min-height: 120px;
    }

    .site-header img {
        width: 180px;
    }

    .product-hero {
        grid-template-columns: 1fr;
    }

    .product-image {
        min-height: auto;
        border-radius: 50px;
    }

    .product-image img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }

    .shipping-section, .price-summary, .order-button, .secure-payment {
        width: min(900px, 100%);
    }

    .product-info {
        padding: 55px 40px 65px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}


/* Mobile */

@media (max-width: 600px) {

    .container {
        width: min(100% - 30px, 1180px);
    }

    .header-inner {
        min-height: 120px;
    }

    .site-header img {
        width: 150px;
    }

    .product-image {
        border-radius: 50px;
    }

    .product-image img {
        aspect-ratio: 1 / 1;
    }

    .product-info {
        padding: 42px 24px 52px;
    }

    h1 {
        font-size: 44px;
    }

    .product-subtitle {
        font-size: 18px;
    }

    .price {
        font-size: 36px;
    }

    .order-button {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-product {
        padding: 55px 0 70px;
    }

    .about-image img {
        height: auto;
        aspect-ratio: 1 / 1;
    }
}