
    /* Layout Principal */
.shopify-container {
    padding: 30px;
    background-color: #1f2326;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-family: 'Inter', sans-serif;
}

.shopify-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.shopify-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #333333;
}

.shopify-header .back-link {
    text-decoration: none;
    color: #525B65;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s;
}

.shopify-header .back-link:hover {
    color: #525B65;
}

.grid-container {
    display: flex;
    gap: 25px;
}

.main-column {
    flex: 2;
}

.side-column {
    flex: 1;
}

.form-section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #1F2326 !important;
    border-radius: 5px;
    background-color: rgba(224, 224, 224, 0.1) !important;
}

.form-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #E0E0E0 !important;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 20px;
    margin-top: 20px;
}

label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #E0E0E0 ;
    margin-bottom: 8px;
}


h2 {
    color: #E0E0E0 !important;
}

input[type="text"], 
input[type="number"], 
input[type="url"], 
textarea, 
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #374151;
    background-color: #1f2326;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s, box-shadow 0.3s;
}

textarea {
    resize: vertical;
    height: 120px;
}

input:focus, 
textarea:focus, 
select:focus {
    border-color: #5c9eff;
    box-shadow: 0 0 0 2px rgba(92, 158, 255, 0.2);
    outline: none;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #5c9eff;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.btn:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.remove-btn {
    background-color: #f87171;
    color: #ffffff;
}

.remove-btn:hover {
    background-color: #e53e3e;
}

/* Estilo de Mídia */
.preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

}

.preview-item img, 
.preview-item video {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.preview-item .remove-media {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #f87171;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.preview-item .remove-media:hover {
    background-color: #e53e3e;
}



/* Integrações */
#lojas {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #374151;
    background-color: #1f2326;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#lojas:focus {
    border-color: #5c9eff;
    box-shadow: 0 0 0 2px rgba(92, 158, 255, 0.2);
}

/* Configuração de Checkout */
#checkout-config {
    margin-top: 15px;
    padding: 15px;
    
    background-color: rgba(224, 224, 224, 0.1) !important;
    border-radius: 8px;
}

#pix-options {
    margin-top: 10px;
    padding: 15px;
    background-color: #1f2326;
    background-color: rgba(224, 224, 224, 0.1) !important;
    border-radius: 6px;
}

#pix-options .form-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .grid-container {
        flex-direction: column;
    }

    .main-column, .side-column {
        flex: none;
    }
}

/* Mídia Inspirada na Shopify */
.media-uploader {
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 20px;
    text-align: center;

    transition: border-color 0.3s ease;
    cursor: pointer;
}

.media-uploader:hover {
    border-color: #5c9eff;
}

.media-placeholder {
    color: #6b7280;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.media-placeholder i {
    font-size: 2rem;
    color: #9ca3af;
    transition: color 0.3s ease;
}

.media-uploader:hover .media-placeholder i {
    color: #5c9eff;
}

.media-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.preview-item {
    position: relative;
    width: 120px;
    height: 120px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
    background-color: #1f2326;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease;
}

.preview-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.preview-item img,
.preview-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preview-item .remove-media {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #f87171;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.preview-item .remove-media:hover {
    background-color: #e53e3e;
}


/* Estilo para o container de etiquetas */
.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px;
    border: 1px solid #d1d5db;
    border-radius: 5px;

    margin-top: 5px;
}

.tag-container input {
    border: none;
    outline: none;
    flex: 1;
    min-width: 150px;
    font-size: 14px;
    padding: 5px;
    background-color: transparent;
}

.tag {
    display: flex;
    align-items: center;
    background-color: #e5e7eb;
    color: #374151;
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 14px;
}

.tag .remove-tag {
    margin-left: 8px;
    background-color: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
}

.tag .remove-tag:hover {
    background-color: #dc2626;
}


/* Configurações de Peso e Tipo */
.inline-options label {
    display: inline-block;
    margin-right: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #E0E0E0 !important;
}

input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 14px;
    color: #333;
    background-color: #1f2326;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}

input[type="number"]:focus {
    border-color: #5c9eff;
    box-shadow: 0 0 5px rgba(92, 158, 255, 0.2);
    outline: none;
}

small {
    font-size: 12px;
    color: #6b7280;
    margin-top: 5px;
    display: block;
}

#peso-container {
    display: block; /* Inicialmente visível */
}


/* Configuração de Variantes */
#variantes-container {
    margin-top: 20px;
    padding: 20px;

    background-color: rgba(224, 224, 224, 0.1) !important;
    border-radius: 8px;
}

.variant-group {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #1f2326;
    box-shadow:
    0 1px 2px rgba(224, 224, 224, 0.04),
    0 3px 6px rgba(224, 224, 224, 0.06),
    0 5px 12px rgba(224, 224, 224, 0.08);
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    position: relative;
}

.variant-group h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #525B65;
    margin-bottom: 15px;
}

.option-values-container {
    margin-top: 15px;
    padding-left: 20px;
}

.option-value-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px;
   
    border: 1px solid #d1d5db;
    border-radius: 6px;
    align-items: center;
}

.option-value-item input {
    flex: 1;
    min-width: 100px;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #374151;
    background-color: #1f2326;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.option-value-item input:focus {
    border-color: #5c9eff;
    box-shadow: 0 0 0 2px rgba(92, 158, 255, 0.2);
    outline: none;
}

.option-value-item label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-right: 10px;
    flex-shrink: 0;
}

.option-value-item .remove-option-value {
    background-color: #f87171;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.option-value-item .remove-option-value:hover {
    background-color: #e53e3e;
}

.add-option-value {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #5c9eff;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.add-option-value:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.remove-variant-group {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #f87171;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.remove-variant-group:hover {
    background-color: #e53e3e;
}

.add-variant-group {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 20px;
    background-color: #34d399;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.add-variant-group:hover {
    background-color: #059669;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.variant-group .form-group {
    margin-bottom: 15px;
}

.variant-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #E0E0E0;
    margin-bottom: 8px;
}

.variant-group input[type="text"],
.variant-group input[type="number"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 0.95rem;
    color: #374151;
    background-color: #1f2326;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.variant-group input[type="text"]:focus,
.variant-group input[type="number"]:focus {
    border-color: #5c9eff;
    box-shadow: 0 0 0 2px rgba(92, 158, 255, 0.2);
    outline: none;
}

/* Tipo de Produto */
.inline-options label {
    display: inline-block;
    margin-right: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

/* Peso do Produto */
#peso-container {
    display: none;
    margin-top: 20px;
    padding: 15px;
    
    background-color: rgba(224, 224, 224, 0.1) !important;
    border-radius: 8px;
}

/* Fornecedor */
#fornecedor {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #374151;
    background-color: #1f2326;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#fornecedor:focus {
    border-color: #5c9eff;
    box-shadow: 0 0 0 2px rgba(92, 158, 255, 0.2);
}

/* Etiquetas */
.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 8px;
    border: 1px solid #d1d5db;
    border-radius: 5px;

    margin-top: 5px;
}

.tag-container input {
    border: none;
    outline: none;
    flex: 1;
    min-width: 150px;
    font-size: 14px;
    padding: 5px;
    background-color: transparent;
}

.tag {
    display: flex;
    align-items: center;
    background-color: #e5e7eb;
    color: #374151;
    border-radius: 15px;
    padding: 5px 10px;
    font-size: 14px;
}

.tag .remove-tag {
    margin-left: 8px;
    background-color: #ef4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
}

.tag .remove-tag:hover {
    background-color: #dc2626;
}
#solicitar-login-container {
    margin-top: 15px;
}

.inline-options {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.inline-options label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #374151;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.inline-options input {
    margin-right: 10px;
}

textarea#descricao {
    width: 100%;
    height: 200px;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #374151;
    background-color: #1f2326;
    font-family: monospace, 'Inter', sans-serif;
    resize: vertical;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

textarea#descricao:focus {
    border-color: #5c9eff;
    box-shadow: 0 0 0 2px rgba(92, 158, 255, 0.2);
    outline: none;
}

textarea {
    width: 100%;
    height: 200px;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.95rem;
    color: #374151;
    background-color: #1f2326;
    font-family: monospace, 'Inter', sans-serif;
    resize: vertical;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

textarea:focus {
    border-color: #5c9eff;
    box-shadow: 0 0 0 2px rgba(92, 158, 255, 0.2);
    outline: none;
}

.custom-code-container {
    margin-top: 20px;
    padding: 20px;

    border: 1px solid #e1e3e6;
    border-radius: 8px;
}

.custom-code-container textarea {
    height: 300px; /* Altura específica para o campo de código personalizado */
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #5c9eff;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.btn:hover {
    background-color: #0056b3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



.preview-item {
    border: 2px dashed #ddd;
    margin: 5px;
    padding: 10px;
    cursor: grab;
}

.preview-item.dragging {
    opacity: 0.5;
    border-color: #000;
}

.preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 5px;
    padding: 10px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    transition: transform 0.2s ease-in-out;
}

.preview-item.dragging {
    opacity: 0.5;
    transform: scale(1.05);
    border-color: #007bff;
}

.preview-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.media-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
/* Estilo para o contêiner de pré-visualização */
.media-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    padding: 5px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
   
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    transition: transform 0.2s ease-in-out;
}

.preview-item.dragging {
    opacity: 0.5;
    transform: scale(1.05);
    border-color: #007bff;
}

.preview-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.preview-item .remove-media {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #f87171;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.preview-item .remove-media:hover {
    background-color: #e53e3e;
}
.media-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
}

.preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    border: 1px solid #d1d5db;
    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    transition: box-shadow 0.2s ease-in-out, border 0.2s;
}

.preview-item.dragging {
    opacity: 0.5;
    cursor: grabbing;
    border: 2px dashed #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.preview-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.preview-item .remove-media {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #f87171;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
}

.preview-item .remove-media:hover {
    background-color: #e53e3e;
}
.media-preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
}

.preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
  
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    transition: box-shadow 0.2s ease-in-out, border 0.2s;
}

.preview-item.dragging {
    opacity: 0.5;
    cursor: grabbing;
    border: 2px dashed #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.preview-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.preview-item .remove-media {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #f87171;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
}

.preview-item .remove-media:hover {
    background-color: #e53e3e;
}
.preview-item {
    position: relative;
    width: 100px;
    height: 100px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
 
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: grab;
    transition: box-shadow 0.2s ease-in-out, border 0.2s;
}

.preview-item.dragging {
    opacity: 0.5;
    cursor: grabbing;
    border: 2px dashed #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.preview-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.preview-item .remove-media {
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: #f87171;
    color: white;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
}

.preview-item .remove-media:hover {
    background-color: #e53e3e;
}


/* uptdate for images */

.add-by-url {
    margin-top: 15px;
}

.url-input-container {
    display: flex;
    gap: 10px;
}

.url-input-container input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

.url-input-container button {
    padding: 10px 15px;
    background-color: #2BC4C3;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

.url-input-container button:hover {
    background-color: #2BC4C3;
}

h3 {
    color: #E0E0E0;
}


input[type="radio"] {
    accent-color: #2BC4C3;
  }
  