body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

body {
    background: #fff;
    color: #333;
    font-family: 'Poppins', Arial, sans-serif;
}

.container {
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
}

.header {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    font-size: 2rem;
    font-weight: bold;
    letter-spacing: 2px;
}

.header img {
   width: 150px;
}

.main {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    text-align: center;
}

.product-image {
    flex: 1;
    position: relative;
}

.product-image img {
    max-width: 100%;
    height: auto;
    margin-top: 15px;
}

.product-badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
}

.product-horizontal-image {
    margin-top: 10px;
}

.product-horizontal-image img {
    width: 100%;
    max-width: 350px;
}

.block-content {
    flex: 1;
    display: flex;     
    background: #f5f5f5;
    flex-direction: column; 
}

.content {
    flex: 1;
    display: flex;          
    flex-direction: column;  
    justify-content: center; 
    align-items: center; 
    padding: 20px 30px;
    color: #b07a00;
    font-weight: bold;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 1000;
}

.content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.content p {
    font-size: 1rem;
    opacity: 0.6;
    font-weight: normal;
}

.cta-order {
    display: inline-block;
    background: #ffd400;
    color: #000;
    padding: 20px 60px;
    font-size: 1.9rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    box-shadow: 3px 7px #878787;
    margin-bottom: 15px;
}

.cta-order:hover {
    opacity: 0.9;
}

.discount {
    font-size: 1.3rem;
    margin-top: 5px;
}

.subtitle-section {
    max-width: 900px;
    margin: 25px auto 25px;
    padding: 10px 30px;
    text-align: center;
    line-height: 1.2;
    font-weight: 600;
    text-shadow: 1px 1px 1px #878787;
}

.subtitle {
    font-size: 1.6rem;
    font-weight: bold;
    color: #b07a00;
}

.country {
    padding: 40px 20px;
    background: #f5f5f5;
    text-align: center;
}

.country h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.flags {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.flags img {
    width: 260px;
    cursor: pointer;
    transition: transform 0.2s;
}

.flags img:hover {
    transform: scale(1.05);
}

.authority {
    padding: 40px 20px;
    text-align: center;
}

.authority-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 100px
}

.authority-logos img {
    width: 150px;
}

.faq-section {
    padding: 20px 70px;
    background: #fff;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.faq-item {
    background: #f5f5f5;
    padding: 0 15px;
    margin-bottom: 3px;
    border-bottom: 4px solid #ddd;
    border-radius: 20px;
    overflow: hidden;
}

.faq-item summary {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 0;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker { 
    display: none; 
}

.faq-item summary::after {
    content: "+";
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, opacity 0.3s ease;
}

.faq-content p {
    margin-bottom: 15px;
}

.faq-item.is-open .faq-content {
    max-height: 300px; 
    opacity: 1;
}

.footer {
    background: #000;
    padding: 30px 20px;
    text-align: center;
}

.footer-info {
    color: #aaa;
    font-size: 0.9rem;
}

.footer-info a {
    color: #aaa;
    text-decoration: none;
    margin: 0 5px;
}

.footer-info a:hover {
    text-decoration: underline;
}

.cookie {
    position: fixed;
    bottom: 20px;   
    right: 20px;    
    z-index: 9999;  
    pointer-events: auto; 
    width: auto;
}

.cookie-box {
    max-width: 400px;   
    padding: 20px;
    color: #000;
    background: #ccc;
    border-radius: 10px;
    box-shadow: 2px 4px 2px #878787;
    opacity: 0;
    animation: slideInBox 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
}

.cookie-box a {
    pointer-events: all;   
    cursor: pointer;
}

.cookie-box h3 {
    font-size: 1.7rem;
    font-weight: 700;
}

.cookie-box p {
    font-size: 1rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.policy-lnk {
    display: inline-block;
    text-decoration: underline;
}

.cta-cookie {
    padding: 8px 25px;
    font-size: 1rem;
    border-radius: 2rem;
}

.cookie-btn {
    display: flex;
    justify-content: flex-end;
}

.accept-cookie {
    background: #000;
    color: #fff;
}

.essential-cookie {
    background: transparent;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    padding: 5px;
    color: #000;
}

@keyframes slideInBox {
    from { 
        transform: translateY(50%); 
        opacity: 0; 
    }
    to { 
        opacity: 1; 
    }
}

@keyframes slideOutBox {
    from { 
        opacity: 1; 
    }
    to { 
        transform: translateY(50%); 
        opacity: 0; 
    }
}

@media (max-width: 320px) {
    .cta-order {
        padding: 20px 40px;
    }
}

@media (max-width: 768px) {
    .container {
        width: 100%;
    }
    
    .header {
        padding: 10px 0;
        font-size: 1.5rem;
    }
    
    .header img {
        width: 130px;
    }
    
    .main {
        flex-direction: column;
    }
    
    .product-image {
        margin-bottom: 10px;
    }
    
    .content h1 {
        font-size: 2.8rem;
    }
    
    .cta-order {
        font-size: 1.5rem;
    }
    
    .product-badge {
        width: 80px;
        right: 10px;
    }
    
    .product-horizontal-image img {
        max-width: 250px;
    }
    
    .subtitle-section {
        max-width: 390px;
        padding: 10px 15px;
    }
    
    .authority-logos {
        gap: 30px
    }
    
    .authority-logos img {
        width: 120px;
    }
    
    .faq-section {
        padding: 20px 20px;
    }
    
    .cookie {
       right: 1rem;
       left: 1rem;
    }
    
    .cookie-box {
        padding: 15px;
    }
    
    .cookie-box h3 {
        font-size: 1.4rem;
    }
    
    .cookie-box p {
        font-size: 0.9rem;
    }
    
    .cookie-btn {
        margin-top: 1rem;
    }
    
    .cta-cookies {
        font-size: 0.9rem;
    }
    
}

@media (max-width: 1024px) {
    .container {
        width: 100%;
    }
}