.shopg-tab-content .image-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columns */
  gap: 15px; /* Space between the image boxes */
  width: 100%;
  padding: 5px;
}

.shopg-tab-content .image-box {
  position: relative;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background-color: #f8f8f8; /* Light background color */
}

.shopg-tab-content .image {
  background-size: cover;
  background-position: center;
  height: 200px;
  border-radius: 8px;
}

.shopg-tab-content .shortcode-preview {
  margin-top: 10px;
  margin-bottom: 5px;
  display: flex;
  justify-content: space-between; /* Space between buttons */
  align-items: center;
  padding: 0 10px;
}

shopglut__shortcode-container {
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
    position: relative;
}

.shopglut__shortcode-input {
    width: 100%;
    padding: 12px 15px;
    font-family: 'SF Mono', 'Consolas', 'Monaco', monospace;
    font-size: 0.95rem;
    color: #2d3748;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    background: #ffffff;
    padding-right: 100px;
    cursor: text;
    transition: all 0.3s ease;
}

.shopglut__shortcode-input:focus {
    outline: none;
    border-color: #cbd5e0;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.1);
}

.copy-shortcode-btn {
    position: absolute;
    right: 1.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: #f8fafc;
    color: #4a5568;
    border: 1px solid #e2e8f0;
    padding: 6px 12px;
    border-radius: 3px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.copy-shortcode-btn:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
    color: #2d3748;
}

.copy-shortcode-btn:active {
    background: #e2e8f0;
}

/* Optional: Add copy feedback */
.copy-shortcode-btn.copied {
    background: #48bb78;
    color: white;
    border-color: #48bb78;
}


.shopg-tab-content .shopglut_lcopy-text {
  margin-right: 0px;
}

.shopg-tab-content .agl--icon {
  margin-left: 5px;
  cursor: pointer;
}

.shopg-tab-content .view-demo-btn {
  padding: 8px 16px;
  font-size: 14px;
  background-color: #28a745;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.shopg-tab-content .view-demo-btn:hover {
  background-color: #218838;
}

.shopg-tab-content .details-demo-btn {
    padding: 8px 16px;
    font-size: 14px;
    background-color: #b1008b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
}

.shopg-tab-content .details-demo-btn:hover {
  background-color: #8b006d;
}

/* Responsiveness */
@media (max-width: 768px) {
  .shopg-tab-content .image-container {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on smaller screens */
  }
}

@media (max-width: 480px) {
  .shopg-tab-content .image-container {
    grid-template-columns: 1fr; /* 1 column on very small screens */
  }
}

input.shopglut__shortcode-input {
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
}

.shopglut__shortcode-input {
    /* Existing styles */
    border: 1px solid #e2e8f0 !important;
    outline: none !important;
    box-shadow: none !important;
}

.shopglut__shortcode-input:focus {
    border-color: #e2e8f0 !important;
    outline: none !important;
    box-shadow: none !important;
}
