.hero {
    padding: 30px 20px;
    background-color: #444;
    color: #fff;
    border-bottom: 5px solid #f4a261;
}

.hero h1 {
    font-size: 2.5em;
    margin: 0;
}

.hero p {
    font-size: 1.2em;
}

.purchase-info,
.terms {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.purchase-info h2,
.terms h2 {
    font-size: 2em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.purchase-info h2 .emoji,
.terms h2 .emoji {
    font-size: 1.5em;
    margin-right: 10px;
}

.purchase-info p,
.terms p {
    margin-top: 10px;
    font-size: 1.1em;
    line-height: 1.4;
}

.contact-info,
.business-hours,
.social {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-info h2,
.business-hours h2,
.social h2 {
    font-size: 2em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.contact-info h2 .emoji,
.business-hours h2 .emoji,
.social h2 .emoji {
    font-size: 1.5em;
    margin-right: 10px;
}

.contact-info p,
.business-hours p,
.social p {
    margin-top: 10px;
    font-size: 1.1em;
    line-height: 1.4;
}

.social ul {
    list-style: none;
    padding-left: 0;
}

.social ul li {
    margin-bottom: 10px;
}

.social a {
    color: #007bff;
    text-decoration: none;
}

.social a:hover {
    text-decoration: underline;
}

.contact-form {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 2em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.contact-form h2 .emoji {
    font-size: 1.5em;
    margin-right: 10px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 1.1em;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    font-size: 1em;
}

.contact-form button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0056b3;
}

.reviews {
    margin-top: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.reviews h2 {
    font-size: 2em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.review {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.review.visible {
    opacity: 1;
    transform: translateY(0);
}

.review p {
    font-size: 1.2em;
    line-height: 1.5;
    margin: 0;
}

.social-media {
    background-color: #fff;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-media h2 {
    margin-bottom: 10px; /* Prostor pod nadpisem */
}

.social-media ul {
    list-style: none; /* Zrušení standardního seznamu */
    padding-left: 0;
    display: flex; /* Horizontální rozložení */
    justify-content: center; /* Zarovnání na střed */
}

.social-media li {
    margin: 0 10px; /* Prostor mezi položkami */
    border-bottom: none; /* Zrušení spodní hranice */
}

.social-media a {
    text-decoration: none; /* Bez podtržení */
    color: #007bff; /* Barva textu */
    font-size: 1.2em; /* Velikost textu */
    transition: color 0.3s; /* Efekt při hover */
}

.social-media a:hover {
    color: #0056b3; /* Barva při hover */
}

#coupon-code {
    padding: 10px;
    font-size: 16px;
    width: calc(100% - 130px);
    max-width: 300px;
    margin-right: 10px;
    border: 2px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s;
}

#coupon-code:focus {
    border-color: #f4a261;
    outline: none;
}

.verify-btn {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #f4a261;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.verify-btn:hover {
    background-color: #e76f51;
}

.verify-btn:active {
    background-color: #e76f51;
}

.coupon,
.terms {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.coupon h2,
.terms h2 {
    font-size: 2em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.coupon h2 .emoji,
.terms h2 .emoji {
    font-size: 1.5em;
    margin-right: 10px;
}

.coupon p,
.terms p {
    margin-top: 10px;
    font-size: 1.1em;
    line-height: 1.4;
}
