.product-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.product-left {
    flex: 0 0 30%;
	/*width:30%;*/
}

.product-right {
    /*flex: 0 0 70%;*/
	width:100%;
}
.product-description-content {    
    transition: max-height 0.3s ease;
}

.product-description-content.expanded {
    max-height: 2000px;
}
/* ======================= KONTAKT FORMT =========================-*/
/* Wrapper */
.product-inquiry-form-wrapper form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Input & textarea */
.product-inquiry-form-wrapper input:not([type="hidden"]),
.product-inquiry-form-wrapper textarea {
    width: 80%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: #fafafa;
    transition: all 0.3s ease;
}

/* Fokus efekat */
.product-inquiry-form-wrapper input:focus,
.product-inquiry-form-wrapper textarea:focus {
    outline: none;
    border-color: #000;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

/* Placeholder */
.product-inquiry-form-wrapper input::placeholder,
.product-inquiry-form-wrapper textarea::placeholder {
    color: #999;
    font-size: 14px;
}

/* Textarea */
.product-inquiry-form-wrapper textarea {
    min-height: 120px;
    resize: vertical;
}

/* Submit dugme */
.product-inquiry-form-wrapper button[type="submit"] {
    padding: 14px;
    border: none;
    border-radius: 10px;
    background: #000;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover */
.product-inquiry-form-wrapper button[type="submit"]:hover {
    background: #333;
    transform: translateY(-1px);
}

.wpcf7-submit {
    background: #000 !important;
    color:#fff;
}

@media (max-width: 768px) {
    .product-layout {
        flex-direction: column;
    }

    .product-right {
        max-width: 100%;
    }
    .product-inquiry-form-wrapper input:not([type="hidden"]),
    .product-inquiry-form-wrapper textarea {
        width: 90%;
    }
}