#productFileSetup.has-border-linear-gradient {
    border: 3px solid #7fc242; /* use your preferred green */
    border-radius: 50px !important;
    box-sizing: border-box;
    padding: 2rem;
    background: #f4f4f4;
}

/* Target the specific File Setup section columns */
.file-setup-col1 {
    flex: 2 1 0% !important;   /* Makes left column take up 2/3 width */
    max-width: 40% !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-setup-col2 {
    flex: 1 1 0% !important;   /* Makes right column take up 1/3 width */
    max-width: 60% !important;
    margin-left: 2vw;
    display: block;	
}

@media (max-width: 900px) {
    .file-setup-col1, .file-setup-col2 {
        max-width: 100% !important;
        flex: 1 1 100% !important;
        margin-left: 0 !important;
        justify-content: center;
        text-align: center;
    }
}

.file-setup-info {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.file-setup-info > div {
  min-width: 120px;
  text-align: left;
  font-size: 1rem;
  line-height: 1.5;
}

/* 1. Center and contain the section, with minimal vertical padding */
#productFileSetup {
    max-width: 1200px;
    margin: 40px auto;
    width: 90%;
    box-sizing: border-box;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    min-height: unset !important;
    height: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 2. Remove extra space from columns */
#productFileSetup .columns,
#productFileSetup .column,
#productFileSetup .file-setup-col1,
#productFileSetup .file-setup-col2 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* 3. Tighten up the right column's text spacing (for tables) */
#productFileSetup .file-setup-info td, 
#productFileSetup .file-setup-info th {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
    line-height: 1.1 !important;
}

/* 4. Tighten up the right column's text spacing (for divs/spans/br) */
#productFileSetup .file-setup-col2, 
#productFileSetup .file-setup-col2 * {
    line-height: 1.2 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

/* 5. Optionally, shrink font in right column for even less height */
#productFileSetup .file-setup-col2 {
    font-size: 0.97rem !important;
}

/* ######################################### */

.attributeHeader {
    display: inline-flex !important; /* makes the header inline */
    align-items: center !important;
    width: 160px !important;
    margin-right: 10px !important; /* space between label and dropdown */
}

.attribute-item {
    display: inline-flex !important; /* places options inline next to header */
    align-items: center !important;
    width: auto !important;
}

/* Ensure parent container supports inline elements */
#optionsContainer {
    display: flex !important; /* optional: better vertical alignment */
    align-items: center !important; /* vertically aligns items neatly */
}

.attribute-item.columns.is-multiline {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
}

.attribute-item.columns.is-multiline > .attribute-value-item.column {
  flex: none !important;
  width: auto !important;
}

.attribute-value-item,
select[id^="product_attribute_"],
button {
  border-radius: 0 !important;
  width: 300px !important;
}

.add-to-cart-wrapper {
  border: 2px solid #228B22; /* green border */
  padding: 24px;
  margin-top: 24px;
  border-radius: 0; /* makes corners square */
  background-color: #f1f9f1; /* optional: ensures consistent background */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.add-to-cart-wrapper .price {
  text-align: center;
}

.add-to-cart-wrapper .price div {
  display: inline-block; /* prevents full-width stretching */
  font-weight: bold;
  font-size: 1.25em;
}

.add-to-cart-wrapper input[type="submit"].catfish-button {
  display: block;
  flex-shrink: 1;
  padding: .75rem;
  flex-basis: 0;
  flex-grow: 1;
}

.add-to-cart-wrapper .quantity-wrapper {
  display: none;
}
