body {
    margin: 0;
    background: #fff8f5;
    color: #4b3a3a;
    font-family: Georgia, serif;
    text-align: center;
}

header {
    background: #f3d8dc;
    padding: 60px 20px;
}

.logo {
    position: fixed;
    top: 10px;
    left: 10px;
    width: 80px !important;
    height: auto !important;
    margin: 0 !important;
    z-index: 9999;
}

h1 {
    font-size: 52px;
    color: #7b4050;
    margin: 0 0 20px;
    line-height: 1.15;
}

header p {
    font-size: 22px;
    line-height: 1.5;
    margin: 10px 0;
}

.order-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 20px;
}

.order-button {
    display: inline-block;
    background: #9d5367;
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 30px;
    margin: 5px;
    font-family: Arial, sans-serif;
    font-size: 16px;
}

.order-button:hover {
    background: #713747;
}

.choice-section {
    padding: 45px 20px 70px;
}

.choice-section h2 {
    font-size: 38px;
    color: #7b4050;
    margin-bottom: 30px;
}

.choice-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.choice-card {
    width: 85%;
    max-width: 500px;
    background: white;
    padding: 28px 20px;
    border-radius: 20px;
    text-decoration: none;
    color: #4b3a3a;
    box-shadow: 0 5px 20px rgba(100, 50, 60, 0.12);
    transition: transform 0.2s;
    box-sizing: border-box;
}

.choice-card:hover {
    transform: translateY(-5px);
}

.choice-card h3 {
    font-size: 28px;
    color: #9d5367;
    margin: 0 0 10px;
}

.choice-card p {
    font-size: 18px;
    line-height: 1.5;
    margin: 0;
}

.page {
    padding: 60px 20px;
}

.page h1 {
    margin-bottom: 40px;
}

.bouquet {
    background: white;
    width: 90%;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(100, 50, 60, 0.12);
    box-sizing: border-box;
}

.bouquet img {
    width: 45%;
    max-width: 280px;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
    margin: 8px;
}

.bouquet h2 {
    color: #9d5367;
    font-size: 30px;
}

.bouquet p {
    font-size: 19px;
    line-height: 1.5;
}

.price {
    font-size: 24px;
    font-weight: bold;
}

.back {
    display: inline-block;
    margin-top: 20px;
    color: #9d5367;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 17px;
}

.language-selector {
    position: absolute;
    top: 20px;
    right: 25px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.language-selector a {
    text-decoration: none;
    color: #333;
    background: white;
    padding: 9px 13px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 15px;
}

.language-selector a:hover {
    opacity: 0.7;
}


/* Flower choices */

.flower-options {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.flower-option {
    text-align: center;
}

.flower-option img {
    cursor: pointer;
    transition: transform 0.2s;
}

.flower-option img:hover {
    transform: scale(1.03);
}

.flower-order {
    margin-top: 10px;
}

/* Phone / mobile */

@media (max-width: 600px) {

    .page {
        padding: 70px 10px 40px;
    }

    .page h1 {
        font-size: 42px;
        line-height: 1.2;
        margin-bottom: 30px;
    }

    .bouquet {
        width: 96%;
        padding: 20px 12px;
        margin: 0 auto 30px;
    }

    .bouquet > div:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .bouquet img {
        width: 90%;
        max-width: 330px;
        height: auto;
        margin: 0;
    }

    .bouquet h2 {
        font-size: 30px;
        margin-top: 25px;
    }

    .bouquet p {
        font-size: 20px;
        line-height: 1.6;
    }

    .price {
        font-size: 27px;
    }

    .bouquet .order-button {
        display: block;
        width: 85%;
        max-width: 300px;
        box-sizing: border-box;
        margin: 10px auto;
        padding: 15px 18px;
        font-size: 17px;
    }

    .back {
        font-size: 18px;
        margin-top: 10px;
    }

    .language-selector {
        top: 12px;
        right: 10px;
        gap: 5px;
    }

    .language-selector a {
        padding: 8px 9px;
        font-size: 13px;
    }
}
