.gm-marketplace-full {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.gm-marketplace-header {
    margin: 0 0 32px;
    padding: 0;
}

.gm-marketplace-header h1 {
    margin: 0 0 10px;
}

.gm-marketplace-header p {
    max-width: 920px;
    margin: 0;
}

.gm-wc-products {
    width: 100%;
    max-width: 100%;
}

.gm-products-4 ul.products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 28px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.gm-products-4 ul.products li.product {
    width: auto !important;
    max-width: 100% !important;
    float: none !important;
    clear: none !important;
    margin: 0 !important;
}

.gm-products-4 ul.products li.product img {
    width: 100%;
    height: auto;
}

.gm-pagination {
    margin-top: 40px;
    text-align: center;
}

.gm-pagination ul {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    border: 0 !important;
}

.gm-pagination ul li {
    border: 0 !important;
}

.gm-submit-box,
.gm-product-notice {
    border: 1px solid #e6d7a8;
    background: #fffaf0;
    padding: 24px;
    border-radius: 14px;
    margin: 24px 0;
}

.gm-form {
    display: grid;
    gap: 12px;
    max-width: 760px;
}

.gm-form label {
    font-weight: 700;
}

.gm-form input[type="text"],
.gm-form input[type="number"],
.gm-form input[type="file"],
.gm-form select,
.gm-form textarea {
    width: 100%;
    max-width: 100%;
    padding: 10px;
    border: 1px solid #d8c994;
    border-radius: 8px;
    background: #fff;
}

.gm-checkboxes {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid #eadcb0;
    border-radius: 10px;
    background: #fff;
}

.gm-checkboxes label {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-weight: 400;
}

.gm-checkboxes input[type="checkbox"] {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    appearance: auto !important;
    -webkit-appearance: checkbox !important;
    opacity: 1 !important;
    position: static !important;
}

.gm-notice {
    padding: 12px 14px;
    border-radius: 10px;
    background: #f4f4f4;
    margin: 12px 0;
}

.gm-success {
    background: #e8f7ee;
    border: 1px solid #a3d7b7;
}

.gm-error {
    background: #fdecec;
    border: 1px solid #f2a8a8;
}

.gm-product-notice {
    background: #fff8e6;
}

@media (max-width: 1024px) {
    .gm-products-4 ul.products {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 768px) {
    .gm-products-4 ul.products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 480px) {
    .gm-products-4 ul.products {
        grid-template-columns: 1fr !important;
    }
}