* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    outline: none;
    text-decoration: none;
}

.productDetails {
    min-height: 100vh;
    background-color: var(--background-light);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    margin-top: 100px !important;
}

.productDetailsOuter {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.productDetailsInner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.productDetailsInnerLeft {
    width: 40%;
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px var(--shadow-light);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.searchForm {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.formInnerDiv {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.formbold-form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark-alt);
}

.formbold-form-input {
    width: 100%;
    padding: 1rem;
    min-height: 56px;
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.formbold-form-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--shadow-color);
    outline: none;
}

.UploadPageError {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.formbold-btn {
    width: 100%;
    max-width: 300px;
    padding: 1rem;
    min-height: 56px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: 2px solid var(--primary-color);
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.formbold-btn:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.productDetailsInnerRight {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.featured-image {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px var(--shadow-light);
}

.additional-images {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 0.5rem;
    padding: 0.5rem;
    background-color: var(--background-light);
    border-radius: 0.5rem;
}

.additional-images img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.productDetailsInnerBottom {
    width: 100%;
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px var(--shadow-light);
    text-align: left;
    margin-bottom: 2rem;
}

.productDetailsInnerBottom h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark-alt);
    margin-bottom: 1rem;
}

.productDetailsInnerBottom .product-details {
    font-size: 1rem;
    color: var(--text-dark-alt);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .productDetailsOuter {
        max-width: 90%;
    }

    .productDetailsInner {
        flex-direction: column;
        align-items: center;
    }

    .productDetailsInnerLeft,
    .productDetailsInnerRight {
        width: 100%;
    }

    .featured-image {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .productDetailsInnerBottom h2 {
        font-size: 1.75rem;
    }

    .formbold-form-input,
    .formbold-btn {
        min-height: 48px;
        padding: 0.75rem;
    }

    .additional-images img {
        width: 80px;
        height: 80px;
    }

    .productDetailsInnerBottom .product-details {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .productDetails {
        padding: 1rem;
    }

    .productDetailsInnerBottom h2 {
        font-size: 1.5rem;
    }

    .formbold-btn {
        max-width: 100%;
    }

    .featured-image {
        max-height: 300px;
    }
}