/* Layout */
.product-page {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    color: #33342F;
}

.product-image {
    flex: 1 1 40%;
    text-align: center;
}

.product-image img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Text content */
.product-details {
    flex: 1 1 55%;
    font-size: 16px;
    line-height: 1.6;
}

.product-details h1 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #33342F;
}

.product-details h2 {
    font-weight: 600;
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #33342F;
    border-left: 4px solid #33342F;
    padding-left: 8px;
}

.product-details p {
    margin-bottom: 10px;
}

.product-details ul {
    list-style: disc;
    margin-left: 20px;
}

/* DOWNLOAD BUTTON */
.download-section {
    width: 100%;
    margin: 40px 0;
    text-align: center;
}

.download-btn {
    display: inline-block;
    background-color: #33342F;
    color: #FFC800;
    font-weight: 600;
    font-size: 18px;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;

    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.download-btn:hover {
    background-color: #FFC800;
    color: #33342F;
    box-shadow: 0 5px 14px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px);
}

.contacts {
    margin-top: 25px;
    padding: 20px;
    background: #c8cac0;
    border-radius: 12px;
    border-left: 4px solid #FFC800;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    font-size: 15px;
}

.contacts p {
    margin: 10px 0;
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.contacts p:hover {
    border-color: #FFC800;
    box-shadow: 0 2px 8px rgba(255, 200, 0, 0.15);
    transform: translateY(-1px);
}

.contacts p::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #FFC800;
    border-radius: 50%;
    margin-right: 12px;
}

.contacts a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    margin-left: auto;
    padding: 4px 8px;
    border-radius: 4px;
    background: #f8f9fa;
    transition: all 0.2s ease;
}

.contacts a:hover {
    color: #FFC800;
    background: white;
    text-decoration: none;
    box-shadow: 0 1px 4px rgba(255, 200, 0, 0.2);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .contacts {
        padding: 15px;
        margin: 20px 0;
    }

    .contacts p {
        padding: 10px;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .contacts a {
        margin-left: 0;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .product-page {
        flex-direction: column;
        align-items: center;
    }

    .product-image,
    .product-details {
        width: 100%;
    }

    .product-details h1 {
        text-align: center;
    }
}