/*import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
*/

@font-face {
    font-family:VarsityTeamBold;
    src: url("../fonts/VarsityTeam-Bold.otf") format("opentype");
}

@font-face {
    font-family: FranklinGothicHeavy;
    src: url("../fonts/Franklin Gothic Heavy Regular.ttf") format("truetype");
}


* {margin: 0;padding: 0;outline: 0;box-sizing: border-box;box-shadow: none;font-family: 'Lato', sans-serif;}
*:focus {outline: none;}
::selection {background: #224573;color: #fff;}
html {scroll-behavior: smooth;font-family: 'Lato', sans-serif;-webkit-font-smoothing: auto !important;}
body{margin: 0 !important; font-family: 'Lato', sans-serif;-webkit-font-smoothing: auto !important;}

/* Global button style - no rounded corners */
button, .btn, input[type="button"], input[type="submit"] {
  border-radius: 0 !important;
}


:root { --gray-bg: #121212; --breadcrumb-font-color: #E91A21;}

.darkgraybg {background: var(--gray-bg);}
.darkgraybg{background: #224573;}

.breadcrumb {margin:20px 0}
.breadcrumb li a{color:var(--breadcrumb-font-color);font-size:16px;line-height:22px;}
.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #6c757d;
    content: var(--bs-breadcrumb-divider, "//");
}


/*===================  Clean Size Header Styles =======================================================*/
.size-header-clean {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.size-title {
  color: #224573;
  font-size: 14px;
  font-weight: 600;
}

.chart-link {
  color: #6c757d;
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}

.chart-link:hover {
  color: #224573;
}

/*===================  Size Selection Cards Styles =======================================================*/
.size-selection-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

/* Individual Size Card */
.size-card {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 16px;
  transition: all 0.15s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.size-card:hover {
  border-color: #9CCA3F;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transform: translateY(-1px);
}

/* Card Header: Size Name & Price */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f8f9fa;
}

.size-info .size-name {
  font-weight: 600;
  color: #224573;
  font-size: 13px;
}

.price-info .price-value {
  font-weight: 700;
  color: #E91A21;
  font-size: 13px;
}

/* Card Controls: Bottom Section */
.card-controls {
  display: flex;
  gap: 8x;
  align-items: flex-end;
  justify-content: space-around;
  flex-wrap: nowrap;
  overflow-x: visible;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex-shrink: 0;
}

.field-label {
  font-size: 11px;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* Number Input */
.number-input {
  width: 55px;
  height: 28px;
  text-align: center;
  border: 1px solid #dee2e6;
  border-radius: 0;
  font-size: 13px;
  transition: border-color 0.15s ease;
}

.number-input:focus {
  border-color: #9CCA3F;
  outline: none;
  box-shadow: 0 0 0 2px rgba(156, 202, 63, 0.1);
}

/* Color Picker */
.color-picker-container {
  position: relative;
  display: flex;
  align-items: center;
}

/* Jersey Customization Scoped Styles */
.jersey-customization {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  width: 100%;
}

.jersey-customization .field-group.quantity-group {
  flex: 1;
  min-width: 0;
}

.jersey-customization .field-group.color-group {
  flex: 0 0 auto;
  width: auto;
}

.jersey-customization .field-group.range-group {
  flex: 1;
  min-width: 0;
}

.jersey-customization .field-group .color-picker {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.jersey-customization .field-group .color-picker li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jersey-customization .field-group .color-picker .color-heading {
  display: none;
}

.jersey-customization .field-group .color-picker .select-btn > div[data-type="btn"] {
  width: 30px;
  height: 28px;
}

.size-color-picker {
  width: 40px;
  height: 28px;
  border: 1px solid #dee2e6;
  border-radius: 0;
  cursor: pointer;
  background: transparent;
  padding: 0;
  transition: border-color 0.15s ease;
}

.size-color-picker::-webkit-color-swatch-wrapper {
  padding: 0;
  border-radius: 3px;
}

.size-color-picker::-webkit-color-swatch {
  border: none;
  border-radius: 3px;
}

.size-color-picker::-moz-color-swatch {
  border: none;
  border-radius: 3px;
}

.size-color-picker:focus {
  border-color: #9CCA3F;
  outline: none;
  box-shadow: 0 0 0 2px rgba(156, 202, 63, 0.1);
}

/* Quantity Group */
.quantity-group {
  /* Removed margin-left: auto to allow space-around distribution */
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 0px;
}

.quantity-btn {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.15s ease;
}

.quantity-btn:hover {
  background: #e9ecef;
  border-color: #9CCA3F;
}

.quantity-btn img {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.quantity-input {
  width: 50px;
  height: 28px;
  text-align: center;
  border: 1px solid #dee2e6;
  border-radius: 0;
  font-weight: 500;
  font-size: 13px;
  margin: 0 2px;
}

/* Jersey Number Design Section - Matching Page Style */
.jersey-number-section {
  margin-bottom: 10px;
}

.jersey-number-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  padding: 12px;
  border-radius: 0;
}

.jersey-field-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.jersey-field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.jersey-field-full {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.jersey-label {
  font-size: 12px;
  font-weight: 600;
  color: #224573;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.jersey-input {
  width: 100%;
  height: 36px;
  text-align: center;
  border: 1px solid #dee2e6;
  border-radius: 0;
  font-size: 24px;
  font-weight: 700;
  color: #224573;
  transition: all 0.15s ease;
  background: #f8f9fa;
}

.jersey-input:focus {
  border-color: #224573;
  outline: none;
  background: #ffffff;
}

.jersey-field .color-picker {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.jersey-field .color-picker li {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.jersey-field .color-picker .color-heading {
  display: none;
}

.jersey-field .color-picker .select-btn {
  position: relative;
}

.jersey-field .color-picker .select-btn > div[data-type="btn"] {
  width: 100%;
  min-width: 80px;
  height: 36px;
  border-radius: 0;
  border: 1px solid #dee2e6;
  background-color: #ffffff;
  cursor: pointer;
  box-sizing: border-box;
  transition: border-color 0.15s ease;
}

.jersey-field .color-picker .select-btn > div[data-type="btn"]:hover {
  border-color: #224573;
}

.jersey-field .color-picker .select-btn > div[data-type="btn"] > div[data-type="arrow"] {
  background: url(../images/down-arrow.svg) 95% 50% no-repeat;
  background-size: 10px;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.jersey-field .color-picker .palette {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  background: white;
  border: 1px solid #dee2e6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  min-width: 131px;
  width: 131px;
}

.jersey-field .color-picker .palette > div {
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.15s ease;
  font-size: 13px;
}

.jersey-field .color-picker .palette > div:hover {
  background-color: #f5f5f5;
}
.jersey-field .color-picker li:last-child {
  height: auto;
}

.jersey-field .color-picker .palette > div span {
  color: #333;
  font-weight: 500;
}

.jersey-slider {
  width: 100%;
  height: 4px;
  border-radius: 0;
  background: #dee2e6;
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.jersey-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 0;
  background: #224573;
  cursor: pointer;
  transition: all 0.15s ease;
}

.jersey-slider::-webkit-slider-thumb:hover {
  background: #1a3659;
  transform: scale(1.1);
}

.jersey-slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 0;
  background: #224573;
  cursor: pointer;
  border: none;
  transition: all 0.15s ease;
}

.jersey-slider::-moz-range-thumb:hover {
  background: #1a3659;
  transform: scale(1.1);
}

/* Jersey Customization - Number Range Inputs */
.jersey-customization .number-range-inputs {
  display: flex;
  align-items: center;
  gap: 4px;
}

.jersey-customization .number-input-range {
  width: 45px;
  height: 28px;
  text-align: center;
  border: 1px solid #dee2e6;
  border-radius: 0;
  font-weight: 500;
  font-size: 13px;
  transition: all 0.2s ease;
  padding: 2px;
}

.jersey-customization .number-input-range:focus {
  border-color: #224573;
  box-shadow: 0 0 0 2px rgba(34, 69, 115, 0.1);
  outline: none;
}

.jersey-customization .number-input-range::placeholder {
  color: #999;
  font-size: 11px;
}

.jersey-customization .range-separator {
  color: #666;
  font-weight: 500;
  font-size: 14px;
  user-select: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .jersey-field-row {
    flex-direction: row;
    gap: 10px;
  }

  .jersey-field {
    flex: 1;
  }

  .jersey-input {
    font-size: 20px;
    height: 34px;
  }

  .jersey-label {
    font-size: 11px;
  }

  .jersey-field .color-picker .select-btn > div[data-type="btn"] {
    min-width: 70px;
    height: 34px;
  }

  .size-header-clean {
    margin-bottom: 10px;
  }
  
  .size-title {
    font-size: 13px;
  }
  
  .chart-link {
    font-size: 11px;
  }
  
  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .price-info {
    align-self: flex-end;
  }
  
  .card-controls {
    gap: 8px;
    justify-content: space-around;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  
  .card-controls::-webkit-scrollbar {
    height: 4px;
  }
  
  .card-controls::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
  }
  
  .card-controls::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 2px;
  }
  
  .field-group {
    min-width: fit-content;
  }
}

@media (max-width: 480px) {
  .card-controls {
    gap: 8px;
    justify-content: space-around;
  }
  
  .number-input {
    width: 50px;
    height: 26px;
  }
  
  .size-color-picker {
    width: 35px;
    height: 26px;
  }
  
  .quantity-controls {
    gap: 2px;
  }
  
  .quantity-btn {
    width: 26px;
    height: 26px;
  }
  
  .quantity-input {
    width: 45px;
    height: 26px;
  }
  
  .jersey-customization {
    gap: 6px;
    flex-wrap: nowrap;
  }
  
  .jersey-customization .field-group.quantity-group {
    flex: 1;
    min-width: 0;
  }
  
  .jersey-customization .field-group.color-group {
    flex: 0 0 auto;
    width: auto;
  }
  
  .jersey-customization .field-group.range-group {
    flex: 1;
    min-width: 0;
  }
  
  .jersey-customization .number-input-range {
    width: 35px;
    height: 26px;
    font-size: 12px;
  }
  
  .jersey-customization .number-range-inputs {
    gap: 2px;
  }
  
  .jersey-customization .field-group .color-picker .select-btn > div[data-type="btn"] {
    width: 26px;
    height: 26px;
  }
}

/* Note for Our Designers Button Styling */
.note-text {
  background: linear-gradient(135deg, #224573 0%, #1a3659 100%);
  color: white;
  padding: 12px 16px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  border: none;
  position: relative;
  overflow: hidden;
}

.note-text:hover {
  background: linear-gradient(135deg, #1a3659 0%, #0f2744 100%);
  color: #fff;
}

.note-text::before {
  content: '✏️';
  margin-right: 8px;
  font-size: 16px;
}

/* Minimal Note Modal Styling */
.note-modal-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.note-modal-backdrop {
  background-color: rgba(0, 0, 0, 0.5);
}

.note-modal-content {
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  max-width: 480px;
  width: 90vw;
  background: white;
}

/* Minimal Header */
.note-modal-header-minimal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #e9ecef;
}

.modal-title-minimal {
  color: #224573;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.close-button-minimal {
  background: none;
  border: none;
  font-size: 24px;
  color: #6c757d;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.close-button-minimal:hover {
  color: #495057;
}

/* Minimal Body */
.note-modal-body-minimal {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.instructions-minimal {
  color: #6c757d;
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}

.note-textarea-minimal {
  width: 100%;
  min-height: 100px;
  padding: 12px;
  border: 1px solid #dee2e6;
  border-radius: 0;
  font-size: 14px;
  line-height: 1.5;
  resize: vertical;
  transition: border-color 0.2s ease;
  font-family: inherit;
}

.note-textarea-minimal:focus {
  outline: none;
  border-color: #224573;
}

.note-textarea-minimal::placeholder {
  color: #adb5bd;
}

/* Minimal Checkbox */
.checkbox-minimal {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #495057;
  cursor: pointer;
  user-select: none;
}

.checkbox-minimal input[type="checkbox"] {
  display: none;
}

.checkmark-minimal {
  width: 16px;
  height: 16px;
  border: 1px solid #dee2e6;
  border-radius: 0;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.checkbox-minimal input[type="checkbox"]:checked + .checkmark-minimal {
  background: #224573;
  border-color: #224573;
}

.checkbox-minimal input[type="checkbox"]:checked + .checkmark-minimal::after {
  content: '✓';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 10px;
  font-weight: bold;
}

/* Minimal Actions */
.modal-actions-minimal {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  margin-top: 8px;
}

.btn-cancel-minimal {
  background: white;
  border: 1px solid #dee2e6;
  color: #6c757d;
  padding: 8px 16px;
  border-radius: 0;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-cancel-minimal:hover {
  background: #f8f9fa;
  border-color: #adb5bd;
}

.btn-save-minimal {
  background: #224573;
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-save-minimal:hover {
  background: #1a3659;
}

.btn-save-minimal.disabled {
  background: #e9ecef;
  color: #adb5bd;
  cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
  .note-modal-content {
    margin: 20px;
    width: calc(100vw - 40px);
  }
  
  .note-modal-header-minimal,
  .note-modal-body-minimal {
    padding: 16px;
  }
  
  .modal-title-minimal {
    font-size: 16px;
  }
  
  .note-textarea-minimal {
    min-height: 80px;
    padding: 10px;
  }
  
  .modal-actions-minimal {
    flex-direction: column-reverse;
    gap: 8px;
  }
  
  .btn-cancel-minimal,
  .btn-save-minimal {
    width: 100%;
    text-align: center;
  }
}

/* Redesigned Action Buttons */
.design-actions-row {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

.action-button-modern {
  flex: 1;
  background: white;
  border: 1px solid #e9ecef;
  color: #495057;
  padding: 16px 8px;
  border-radius: 0;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  min-height: 80px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.action-button-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  transition: all 0.15s ease;
}

.action-button-modern:hover {
  background: #f8f9fa;
  border-color: #dee2e6;
  color: #224573;
}

.button-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
  opacity: 0.8;
}

.button-text {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}

.save-button::before {
  background: #9CCA3F;
}

.save-button:hover {
  background: #9CCA3F;
  border-color: #9CCA3F;
  color: #224573;
}

.save-button:hover .button-icon {
  opacity: 1;
}

.email-button::before {
  background: #224573;
}

.email-button:hover {
  background: #224573;
  border-color: #224573;
  color: white;
}

.email-button:hover .button-icon {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .design-actions-row {
    gap: 6px;
    margin-top: 16px;
  }
  
  .action-button-modern {
    padding: 12px 6px;
    min-height: 65px;
    gap: 6px;
  }
  
  .button-icon {
    width: 20px;
    height: 20px;
  }
  
  .button-text {
    font-size: 10px;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 480px) {
  .design-actions-row {
    gap: 4px;
  }
  
  .action-button-modern {
    padding: 10px 4px;
    min-height: 60px;
  }
  
  .button-icon {
    width: 18px;
    height: 18px;
  }
  
  .button-text {
    font-size: 9px;
  }
}

/* Email Modal - Uses Note Modal Styling */
.email-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.email-input-style {
  min-height: 40px !important;
  resize: none;
}

.email-error-minimal {
  color: #E91A21;
  font-size: 12px;
  margin-top: 4px;
}

/* Upload Modal - Additional Styling */
.upload-requirements {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  padding: 16px;
  border-radius: 0;
}

.requirements-title {
  color: #224573;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.requirements-list li {
  color: #495057;
  font-size: 13px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 8px;
}

.copyright-summary {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  padding: 12px;
  border-radius: 0;
}

.copyright-summary .instructions-minimal {
  color: #856404;
  font-size: 13px;
  text-align: left;
}

/* Modern Upload Button Styling */
.upload-section-clean {
  width: 100%;
}

.upload-button-modern {
  width: 100%;
  background: white;
  border: 2px dashed #dee2e6;
  color: #495057;
  padding: 20px 16px;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  min-height: 80px;
}

.upload-button-modern:hover {
  border-color: #9CCA3F;
  background: #f8f9fa;
  color: #224573;
}

.upload-icon-container {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  padding: 12px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.upload-button-modern:hover .upload-icon-container {
  background: #9CCA3F;
  border-color: #9CCA3F;
}

.upload-icon-clean {
  width: 20px;
  height: 20px;
  fill: #6c757d;
  transition: fill 0.2s ease;
}

.upload-button-modern:hover .upload-icon-clean {
  fill: white;
}

.upload-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.upload-title {
  font-size: 14px;
  font-weight: 600;
  color: #224573;
  line-height: 1;
}

.upload-subtitle {
  font-size: 12px;
  color: #6c757d;
  line-height: 1;
}

.upload-info-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  color: #adb5bd;
  transition: color 0.2s ease;
}

.upload-button-modern:hover .upload-info-icon {
  color: #6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
  .upload-button-modern {
    padding: 16px 12px;
    min-height: 70px;
    gap: 10px;
  }
  
  .upload-icon-container {
    padding: 10px;
  }
  
  .upload-icon-clean {
    width: 18px;
    height: 18px;
  }
  
  .upload-title {
    font-size: 13px;
  }
  
  .upload-subtitle {
    font-size: 11px;
  }
  
  .upload-info-icon svg {
    width: 12px;
    height: 12px;
  }
}

/* Save Modal - Additional Styling */
.save-modal-size {
  max-width: 600px !important;
}

.preview-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  padding: 20px;
  border-radius: 0;
  min-height: 300px;
}

.preview-image {
  max-width: 100%;
  max-height: 400px;
  height: auto;
  border: 1px solid #dee2e6;
  background: white;
}

.download-btn {
  background: #224573 !important;
  color: white !important;
}

.download-btn:hover {
  background: #1a3659 !important;
}

/* Responsive Design for Save Modal */
@media (max-width: 768px) {
  .save-modal-size {
    max-width: calc(100vw - 40px) !important;
  }
  
  .preview-container {
    padding: 16px;
    min-height: 250px;
  }
  
  .preview-image {
    max-height: 300px;
  }
}

/* Logo/Text Toggle Styling */
.logo-text-toggle {
  margin-bottom: 20px;
}

.toggle-header {
  margin-bottom: 8px;
}

.toggle-title {
  color: #224573;
  font-size: 14px;
  font-weight: 600;
}

.toggle-buttons {
  display: flex;
  gap: 0;
  border: 1px solid #dee2e6;
  border-radius: 0;
  overflow: hidden;
}

.toggle-btn {
  flex: 1;
  background: white;
  border: none;
  color: #6c757d;
  padding: 12px 16px;
  border-radius: 0;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-right: 1px solid #dee2e6;
}

.toggle-btn:last-child {
  border-right: none;
}

.toggle-btn:hover {
  background: #f8f9fa;
  color: #224573;
}

.toggle-btn.active {
  background: #224573;
  color: white;
  font-weight: 600;
}

.toggle-btn.active:hover {
  background: #1a3659;
}

.toggle-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Responsive Design */
@media (max-width: 768px) {
  .toggle-btn {
    padding: 10px 12px;
    font-size: 12px;
    gap: 4px;
  }
  
  .toggle-icon {
    width: 14px;
    height: 14px;
  }
}

/* Modern Place Order Button */
.place-order-modern {
  margin-bottom: 20px;
}

.place-order-btn-modern {
  width: 100%;
  background: #E91A21;
  border: none;
  color: white;
  padding: 16px 20px;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-height: 56px;
}

.place-order-btn-modern:hover {
  background: #c8151c;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(233, 26, 33, 0.3);
}

.cart-icon-modern {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.order-text {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .place-order-btn-modern {
    padding: 14px 16px;
    font-size: 15px;
    gap: 8px;
    min-height: 50px;
  }
  
  .cart-icon-modern {
    width: 18px;
    height: 18px;
  }
  
  .order-text {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .place-order-btn-modern {
    padding: 12px 14px;
    font-size: 14px;
    gap: 6px;
    min-height: 48px;
  }
  
  .cart-icon-modern {
    width: 16px;
    height: 16px;
  }
  
  .order-text {
    font-size: 14px;
  }
}

/* Minimal Help Links */
.help-links-minimal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #f0f0f0;
  margin-top: 16px;
}

.help-link {
  color: #6c757d;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
  text-decoration: none;
}

.help-link:hover {
  color: #224573;
  text-decoration: underline;
}

.link-separator {
  color: #dee2e6;
  font-size: 14px;
  user-select: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .help-links-minimal {
    gap: 10px;
    padding: 10px 0;
  }
  
  .help-link {
    font-size: 12px;
  }
  
  .link-separator {
    font-size: 12px;
  }
}

/* FAQ Modal - Clean & Minimal */
.faq-modal-size {
  max-width: 600px !important;
}

.faq-list-minimal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 350px;
  overflow-y: auto;
}

.faq-item-minimal {
  border: 1px solid #e9ecef;
}

.faq-question-minimal {
  padding: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa;
  font-size: 13px;
  font-weight: 500;
  color: #224573;
  list-style: none;
}

.faq-question-minimal:hover {
  background: #e9ecef;
}

.toggle-icon-faq {
  font-size: 14px;
  color: #6c757d;
}

.faq-item-minimal[open] .toggle-icon-faq {
  transform: rotate(45deg);
}

.faq-answer-minimal {
  padding: 12px;
  background: white;
  border-top: 1px solid #e9ecef;
}

.faq-answer-minimal p {
  margin: 0;
  color: #495057;
  font-size: 12px;
  line-height: 1.4;
}

/* Contact Info - Clean */
.contact-info-minimal {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 12px 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}

.contact-label {
  font-size: 12px;
  color: #6c757d;
  min-width: 70px;
}

.contact-link {
  color: #224573;
  text-decoration: none;
  font-size: 12px;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-text {
  color: #495057;
  font-size: 12px;
}

/* Social Links - Clean */
.social-section-minimal {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e9ecef;
}

.social-links-minimal {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 8px;
}

.social-link {
  color: #6c757d;
  text-decoration: none;
  font-size: 11px;
  padding: 6px 8px;
  border: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 4px;
}

.social-link:hover {
  color: #224573;
  border-color: #224573;
}

.social-icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.full-width-btn {
  width: 100% !important;
  text-align: center;
}

/* Responsive - Mobile Only */
@media (max-width: 768px) {
  .faq-list-minimal {
    max-height: 250px;
  }
  
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }
  
  .social-links-minimal {
    flex-direction: column;
    gap: 4px;
  }
}

/* Size Chart Modal - Clean & Minimal */
.sizechart-modal-size {
  max-width: 700px !important;
}

.size-chart-container {
  border: 1px solid #e9ecef;
  max-height: 400px;
  overflow-y: auto;
}

.size-chart-table-minimal {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.chart-header {
  background: #f8f9fa;
  color: #224573;
  padding: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
  border-bottom: 1px solid #e9ecef;
}

.chart-cell {
  padding: 8px;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  color: #495057;
}

.size-chart-table-minimal tbody tr:hover {
  background: #f8f9fa;
}

/*===================  common select option drop down start =======================================================*/
.select-box{/*max-width: 350px;*/margin-bottom: 20px; margin-top: 20px;}
/*.select-box .heading{color: #6E6E6E;}*/
.select-box .heading{color: #224573;}
.select-box select{display: none;}
.select-box .select{position: relative;}
.select-box .select input{height: 50px;width: 100%;border: 2px dotted #224573;padding: 0 13px;}
.select-box .select input:hover{border: 2px dotted #9CCA3F;}

.btn-select{margin-top: 5px;width: 100%;height: 50px; background: #efefef url('../images/down-arrow.svg') 95%  50%  no-repeat;border:1px solid #efefef;}
.btn-select:focus, .btn-select:hover{ background: #FFFFFF url('../images/down-arrow.svg') 95%  50%  no-repeat; border:1px solid #9CCA3F;}
.btn-select li{padding-left:13px;font-size:14px; line-height:22px; list-style: none;float: left;padding-bottom: 0px; color: #000000;}
.btn-select li img{width: 20px;margin:0 13px 0 0;}

.btn-select li span{margin-left: 5px;}
.btn-select:hover{}
.btn-select:focus{outline:none;}


.select-items{display: none;position: absolute; z-index: 999;background:#efefef;width: 100%;box-shadow: 0 6px 12px rgba(0,0,0,.175);}

.select-items ul{padding-left: 0px;}
.select-items ul{margin-bottom:0}
.select-items ul li{padding-left:13px;list-style: none;height: 50px;line-height: 50px;cursor:pointer;}
.select-items ul li:hover{background-color: #FFFFFF;}
.select-items ul li img{width: 20px;margin:0 13px 0 0;}
.select-items ul li span{margin-left: 5px;}

.select-items.open{display: block !important;}

/*=================== End select option drop down End =======================================================*/



/*=================== Start Horizontal image slider Box (Pattern Slider) =======================================================*/
.horizontal-images{
    background: #efefef;
    padding: 5px;	
}
.scroll{ overflow-x: scroll;}
.scroll::-webkit-scrollbar:horizontal {
  height: 8px;
  background-color: #9CCA3F;
  border-radius: 2px;
}

.scroll::-webkit-scrollbar:vertical {
  width: 4px;
  background-color: #9CCA3F;
  border-radius: 2px;
}

.scroll::-webkit-scrollbar-thumb {
   border-radius: 2px;
  border:0;
  /* should match background, can't be transparent */
  background-color: #413939;
}

.scroll::-webkit-scrollbar {
  -webkit-appearance: none;
}

.horizontal-images ul{	
	 white-space: nowrap;
     list-style: none;
     padding: 0;
     margin: 0;
	 opacity:1;
}

.horizontal-images ul li{
	margin: 0 3px;
	display: inline-block;
	cursor:pointer;
}




.horizontal-images li:first-child{ margin-left: 0; }
.horizontal-images li:last-child{ margin-right: 0; }


.horizontal-images .pattern-sec{position:relative;}

.horizontal-images .active-check {
    background: url(../images/active-check.svg) top center no-repeat;
    position: absolute;
    z-index: 99;
    /* width: 19px; */
    /* height: 17px; */
    /* text-align: center; */
    top: 30%;
    left: 0;
    right: 0;
    bottom: 0;
    display:none;
}


.horizontal-images ul li img{
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 0;
}

.horizontal-images .pattern-name {
    position: absolute;
    bottom: 2px;
    text-align: center;
    left: 0;
    right: 0;
    display:none;
}
.horizontal-images .pattern-name span{background: #000;  font-size: 10px;padding: 2px 5px; color: #FFF;}
.horizontal-images li:hover .pattern-name, .horizontal-images li.active .pattern-name{display:block;}
.horizontal-images li.active .active-check{display:block;}

/*=================== End Horizontal image slider Box =======================================================*/




/*=================== Start Color Picker Box =======================================================*/


.color-picker{list-style: none; padding-left: 0;display:flex;}
.color-picker li{
	position: relative;
    display: inline-block;
    background-color: #efefef;
    padding: 5px 20px 0 5px;
    flex: 1 1 auto;
    margin: 0 5px 5px 0;
    height: 50px;
    cursor: pointer;
    border: 1px solid #efefef;
    width: 75px;
    max-width: 75px;
}
.color-picker li:hover{background: #fff;border: 1px solid #9CCA3F;}
.color-picker li:first-child{margin-left:0;}
.color-picker li:last-child{margin-right:0;}
.color-heading{
	color: #000;
    text-transform: uppercase;
    position: absolute;
    font-size: 6px;
    line-height: 22px;
}
header img {
    max-width: 200px;
    height: auto !important;
}
.color-picker li .select-btn{position: relative;}

.color-picker li .select-btn [data-type="btn"]{
	width: 100%;
    height: 26px;
    background-color: #ffffff;
    cursor: pointer;
    border: 1px solid #efefef;
    box-sizing: border-box;
}

.color-picker li .select-btn [data-type="btn"]>[data-type="arrow"] {
  content: "";
  background: url(../images/down-arrow.svg) 95% 50% no-repeat;
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 10px;
  right: -15px;
  width: 12px;
  height: 12px;
  border-top-color: rgb(1, 1, 1);
}

.color-picker .palette{
	display:flex;
	width: 135px;
	position:absolute;
	/*top:50px;*/
	border:2px solid #efefef;
	flex-wrap: wrap;
	z-index:999;
	margin:0;
	padding:0;
	margin-left: -5px;
	box-shadow: 0 6px 12px rgb(0 0 0 / 18%);
	background: #fff;
}

.color-picker .palette.open{display:flex;}

.color-picker .palette div{position: relative;flex: 0 0 54px; height:20px;background:#efefef;border:1px solid #efefef;margin:5px;border: 1px solid #efefef;}
.color-picker .palette div:hover{border: 1px solid #9cca3f;}
.color-picker .palette div span{display:none;}
.color-picker .palette div:hover span{
    
    display: block;
    color: #000;
    position: absolute;
    z-index: 1;
    top: 20px;
    left: 0px;
    padding: 2px 5px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    box-shadow: 0px 0px 2px #ccc;
    font-size: 12px;
}

.font-color-box{display:flex;}
.font-color-box .item{flex: 1 1 auto;}
.font-color-box .item:first-child{width:60%;margin-right:10px;}
.font-color-box .item:last-child{margin-top:5px;}
/*=================== End Color Picker Box =======================================================*/



/*=================== Start Logo and Text Box =======================================================*/

.option-click{
    list-style: none;
    margin: 0;
    padding: 0;
    border-radius: 10px;
    display: inline-flex;
    height: 42px;
    border: 1px solid #cccccc;
    background: #224573;
}
ul.option-click:hover {
    border: 1px solid #9CCA3F;
}
.option-click li{ margin: 0; background-color: #EDEFEE;border-radius: 8px;width:95px;height:40px;text-align:center;    cursor: pointer;}
.option-click li span{color: #000000; text-decoration: none; ursor: pointer;
    font-weight: 600;
    font-size: 14px;
    line-height: 40px;cursor: pointer;}
.option-click li.active {  background-color: #224573; color: #ffffff; }
.option-click li.active span { color: #ffffff;}

.option-logo{display:block;}
.option-text{display:block;}


.upload-btn-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    cursor: pointer;

}
  
.upload-btn-wrapper .btn {
   border: 2px dotted #224573;
   color: #000;
   background-color: white;
   padding: 8px 20px;
   font-size:16px;
   line-height: 22px;
   width: 100%;
   height:50px;
   cursor: pointer;
   border-radius: 0;
}
 
.upload-btn-wrapper:hover .btn{border:2px dotted #9CCA3F;}
 
.upload-btn-wrapper input[type=file] {
   font-size: 100px;
   position: absolute;
   left: 0;
   top: 0;
   opacity: 0;
   right:35px;
   height:50px;
   cursor: pointer;
 }
::-webkit-file-upload-button {
   	cursor:pointer;
}

/* IE11 (if it doesn't work, try maybe also on the parent/wrapper) */
input[type=file] {
    cursor:pointer;
}


.upload-icon{
 	position: absolute;
 	left: 10px;
 	top: 13px;
 }
 .upload-icon{
    fill:#000;
} 
.upload-btn-wrapper:hover .upload-icon{fill:#9CCA3F;}


.upload-btn-wrapper .information{
   position: absolute;
   right: 10px;
   top: 18px;
   width: 14px;
 }

.upload-btn-wrapper .upload-text{position: absolute; top:15px; left:40px;font-size:16px;line-height:22px;font-weight: bold;}
.update-design button{
     border:none;
     text-transform: uppercase;
     background: #000000;
     color: #FFFFFF;
     text-align: center;
     width: 100%;
     height:50px;
     margin:15px 0 15px 0;
     font-size:16px;line-height:22px;
}
.update-design button:hover{background:rgba(0,0,0,0.8);}


/*=================== End Logo and Text Box =======================================================*/



/*=================== Start Email Send and Save Builder =======================================================*/
.control-data{margin:10px 0 50px 0;position:relative;}
.control-data ul{list-style: none;margin:0;padding:0; display:flex;width:100%;height:auto;flex-wrap: wrap;}

.control-data li{margin: 2px;flex: 1 1 auto;border: 1px solid #224573;height: 40px;vertical-align: middle;text-align: center;cursor:pointer;}
.control-data li:hover{border: 1px solid #9CCA3F;}
.control-data li span {text-decoration: none;font-size: 12px;line-height: 40px; color:#000; font-weight: bold;}
.control-data li:hover span {color:#000;}
.control-data li:hover span svg{fill: #000;}
.control-data li a{color: var(--bs-body-color);text-decoration: none;}
/*=================== End Email Send and Save Builder =======================================================*/



/*=================== Start Production Builder Image Middle Box =======================================================*/ 

#resizable { width: 150px; height: 150px; padding: 0.5em; }
#resizable h3 { text-align: center; margin: 0; }

.builder-svg,.builder-svg-top{width:70%}


.main-container{position:relative;margin-top: 30px;}
.zoom-container-outer{
	
}
.main-container h3{color: rgb(34 69 115) !important;}
.zoom-container-outer section{position:relative;}
.zoom-container-outer.is-mobile{
	position:absolute;
	top:0;
	left: 0;
	height:auto;
	z-index: 99;
}
.zoom-container-outer.is-sticky{
	position:fixed !important;
	background: #ffffff;
}
.zoom-container-outer.is-sticky .zoom-container{margin-top:10px;}


.zoom-container{
	height:auto;
	overflow-x:auto; 
	border:4px dotted #9CCA3F;
	margin-bottom:20px;
	
	display: flex;
    justify-content: center;
    align-items: center;
    background:#fff;
}

.zoom-container .undo-redo-action{position: absolute;top: 0; left: 0;z-index: 1;}
.zoom-container .undo-redo-action ul{list-style: none;padding: 0;margin:10px; display: inline-flex; }
.zoom-container .undo-redo-action ul li{text-align: center; margin:2px;text-decoration: none;background:#EFEFEF;padding:0px 10px;cursor:pointer;}
.zoom-container .undo-redo-action ul li svg{width:20px;}
.zoom-container .undo-redo-action ul li span{font-size: 6px;color:#000000;margin:0 0 5px 0;padding:0;display: block;}
.zoom-container .undo-redo-action ul li:hover{text-decoration: none;background:#b7b4b4;padding:0px 10px;}

.zoom-container .undo-redo-action ul li.disabled{opacity:0.5;}
.zoom-container .undo-redo-action ul li.disabled:hover{opacity:0.5;background:#EFEFEF;}

.magnify{position: absolute;bottom: 0;}
.magnify ul{list-style: none;text-align: center;padding: 0;}
.magnify ul li{width: 30px; height: 30px; display: inline-flex;cursor:pointer;margin: 2px;}
.zoom-container-outer .magnify ul li img{height: auto;}
.zoom-container-outer .magnify ul li:hover{opacity:0.8;}

.mobile{display: none;}

/* Compact Product Details Styling */
.product-info-compact {
  margin-top: 16px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.compact-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e9ecef;
}

.product-title-section {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.product-name-compact {
  color: #224573;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.pattern-badge {
  background: #224573;
  color: white;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.details-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
}

.detail-item {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-size: 12px;
  font-weight: 600;
  color: #224573;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.detail-text {
  font-size: 13px;
  color: #495057;
  line-height: 1.4;
  background: white;
  padding: 6px 8px;
  border-radius: 4px;
  border: 1px solid #e9ecef;
}

.colors-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.color-chip {
  background: white;
  border: 1px solid #e9ecef;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 11px;
  color: #495057;
  font-weight: 500;
  white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .details-row {
    flex-direction: column;
    gap: 12px;
  }
  
  .detail-item {
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .product-info-compact {
    margin-top: 12px;
    padding: 12px;
  }
  
  .product-name-compact {
    font-size: 16px;
  }
  
  .pattern-badge {
    font-size: 11px;
    padding: 3px 8px;
  }
  
  .product-title-section {
    gap: 8px;
  }
  
  .details-row {
    gap: 8px;
  }
  
  .detail-label {
    font-size: 11px;
  }
  
  .detail-text {
    font-size: 12px;
    padding: 4px 6px;
  }
  
  .color-chip {
    font-size: 10px;
    padding: 3px 6px;
  }
}

/*=================== End Production Builder Image Middle Box =======================================================*/ 




/*=================== Start Production Information Rightside =======================================================*/

/* Size Selection Cards - Scrollable Container */
.size-selection-cards {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 4px;
}

.size-selection-cards::-webkit-scrollbar {
  width: 6px;
}

.size-selection-cards::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.size-selection-cards::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.size-selection-cards::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

.sox-information {
  padding: 16px 8px;
}

/* Responsive adjustments for size selection cards */
@media (max-width: 1200px) {
  .size-selection-cards {
    max-height: 350px;
  }
}

@media (max-width: 768px) {
  .size-selection-cards {
    max-height: 300px;
  }
  
  .sox-information {
    padding: 12px 4px;
  }
}

@media (max-width: 480px) {
  .size-selection-cards {
    max-height: 250px;
    padding-right: 2px;
  }
  
  .size-selection-cards::-webkit-scrollbar {
    width: 4px;
  }
}

.sox-informationtext{ border-bottom: 1px solid #f4f4f4; width: 100%; padding-bottom: 5px;margin-bottom: 10px;}
.sox-informationtext h1{font-size: 22px; line-height: 20px;color:#224573;}
.sox-informationtext h2{font-size: 18px; line-height: 20px;color:#000000;}

.heading{font-size: 14px; line-height: 20px; color: #224573; font-weight: bold; margin-bottom: 3px;}
.sub-heading{font-size: 14px; /*font-weight: bold;*/ line-height: 20px; color: #000;}

.unit-price{}
.unit-price span{color:#E91A21;}
.unit-price span.heading{font-size: 14px; line-height: 20px; color: #6E6E6E;}

.sizeinput{
  background: #EFEFEF;
    width: 73px;
    display: inline-block;
    margin-right: 5px;
}
.sizeinput img{
  width: 24px;
    height: 24px;
    display: inline-block;
    cursor: pointer;
}
.sizeinput input{
  width: 24px;
    height: 24px;
    display: inline-block;
    border-radius: 0;
    background: #EFEFEF;
    border: 0;
    text-align: center;
}

.mb10{margin-bottom:10px;}

.details ul {list-style: none;margin-top: 10px;padding: 0 0 0 20px;}
.details ul li{color:#6E6E6E; text-decoration:none;}

/*.note-text{color:#E91A21; font-size: 12px; line-height:20px;cursor:pointer;text-decoration: underline;}*/
.note-text {
    color: #224573;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    padding: 15px;
    background: #EDEFEE;
    margin-bottom: 25px;
}
.size-chart{display:flex;}
.size-chart span{flex:1 1 auto;}
.size-chart span:last-child{text-align:right;}
.size-chart div{color:#224573; text-decoration: none;cursor:pointer;display:inline;font-weight: bold;font-size: 14px;}
.size-chart div:hover{color:#224573; text-decoration: none;}
.size-chart div:hover svg{color:#224573; text-decoration: none; fill: #224573;}

#size-chart-modal .modal-body{margin: 1rem;padding: 0;overflow-x:auto;}

.custom-list{margin-top:20px}
.custom-list ul{margin:0; padding:0; list-style: none;}
.custom-list ul li{margin-bottom: 20px; font-weight: bold;}
.custom-list ul li .cltext {font-size: 14px;font-weight: 500;line-height: 22px;display: inline-flex;width: calc(100% - 126px);vertical-align: middle;}

.custom-list ul li span{vertical-align: middle;font-size: 13px;}

.custom-list ul li select{
	margin:0 10px 0 10px;
	padding: 3px 4px;
	background-color: #f1f1f1;
	color:#000000;
	border: 0;
	margin: 0 10px 0 10px;
	padding: 3px 4px;
	background-color: #f1f1f1;
	border: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-webkit-padding-end: 20px;
	-moz-padding-end: 20px;
	-webkit-padding-start: 10px;
	-moz-padding-start: 2px;
	border-radius: 0;
	background: #f2f1f1 url(../images/down-arrow.svg) 90% 50% no-repeat;
} 


.calculative-price {
  background-color: #224573;
  position: relative;
  min-height: 60px;
  padding: 15px;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.calculative-price:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.calculative-price .total {
  font-size: 16px; 
  font-weight: bold; 
  display: flex;
  align-items: center;
  margin: 0;
}

.calculative-price .amount-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  align-self: flex-end;
  margin-top: -8px;
}

.calculative-price .amount-text h6 {
  font-size: 10px; 
  line-height: 1.2; 
  margin: 0; 
  padding: 0;
  text-transform: uppercase;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

.calculative-price .amount-text h5 {
  font-size: 24px; 
  line-height: 1.2; 
  margin: 0; 
  padding: 0; 
  color: #fff; 
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for calculative-price */
@media (max-width: 768px) {
  .calculative-price {
    padding: 12px;
    min-height: 70px;
    gap: 8px;
  }
  
  .calculative-price .amount-text {
    margin-top: -4px;
  }
  
  .calculative-price .amount-text h5 {
    font-size: 20px;
  }
  
  .calculative-price .total {
    font-size: 14px;
  }
  
  .setup-fee-breakdown {
    margin-top: 4px;
    padding: 10px 12px;
  }
}


.production-time{margin-top:20px ; position: relative; }
.production-time img{float: right;z-index:2;position: relative;width: 14px;}
.production-time .custom-tooltip{cursor:pointer;}
.production-time .tooltip-info {display: none;}
.production-time .custom-tooltip:hover + .tooltip-info {
  display: block;
  color: #000;
  position: absolute;
  z-index: 1;
  top:-5px;
  right: -5px;
  padding: 5px;
  border: 1px solid #ccc;
  background-color: #ffffff;
  box-shadow: 0px 0px 2px #ccc;
  font-size: 12px;
  max-width: 200px;
}


.faq-touch {overflow: hidden;}
.faq-touch .faq{float:left}
.faq-touch .touch{float:right}
.faq-touch span{color: #000000; font-size: 14px; font-weight: bold;cursor:pointer;}
.faq-touch span:hover{color: #000;}

.place-order button{
    border: none;
    text-transform: uppercase;
    background: #224573;
    color: #FFFFFF;
    text-align: center;
    width: 100%;
    height: 50px;
    margin: 15px 0 15px 0;
    font-size: 16px;
    line-height: 22px;
}

.place-order button:hover{background: #9CCA3F;color: #000;}




/*=================== Start Checkbox =======================================================*/
.checkbox{}
.checkbox label{
	display: block;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 12px;
    font-style: italic;
}
/* Hide the default checkbox */
.checkbox input[type=checkbox] {
    visibility: hidden;
}

.checkbox .checked {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border:1px solid #000000;
}
.checkbox:hover input ~ .checked, .checkbox input:active ~ .checked,.checkbox input:checked ~ .checked   {
    background-color: #9CCA3F;
}

.checked:after {
    content: "";
    position: absolute;
    display: none;
}
  
.checkbox input:checked ~ .checked:after {
    display: block;
}
  
.checkbox .checked:after {
    left: 6px;
    bottom: 5px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}  
/*=================== End Checkbox =======================================================*/  
 






/*=================== Start Modal - All =======================================================*/  

.modal-content{border: 0; border-radius:0;}
.modal-content.custom-modal .modal-header{border-bottom: none;}
.modal-content .table-chart-size thead {
    vertical-align: bottom;
    background: #dddddd;
    border-bottom: none;
}

.action-button{margin-top:20px;}
.action-button button.btn-ok{background-color:#224573; color: #FFFFFF; border-radius:0; margin-right: 15px;}
.action-button button.btn-cancel{background-color:#000000; color: #FFFFFF;border-radius:0;}
.action-button button:hover{opacity:0.8;}

.designerstyle textarea{ width:100%; height:200px; padding:10px; background-color:#EFEFEF;  -moz-appearance:none;
  outline:0px none transparent;resize: none;margin-bottom: 10px; border: 0;}

.modal-content .checkbox label{font-style: normal;}


#faq_accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
  transform: scale(.7) !important;
}
#faq_accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}

#faq_accordion .accordion-item:not(:first-of-type) {
  border: 1px solid rgba(0,0,0,.125);
}
#faq_accordion .accordion-item {
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.125);
  margin-bottom: 10px;
}

#faq_accordion .accordion-button:not(.collapsed) {
  color: #000000;
  font-weight: bold;
  background-color: #EFEFEF ;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}
#faq_accordion .accordion-button{ background: #EFEFEF ;padding:10px; font-weight: bold;}
#faq_accordion .accordion-item .ask-question img{margin-right: 5px;}

/*=================== End Modal - All =======================================================*/  



.hidedeskright{display:none;}
#saveImg{text-align:center;}
#savemodal .action-button{text-align:center;}



.addToCart{
	display: inline-block;
    background: #f1f1f1;
    width: 25px;
    margin-right: 5px;
    color: #E91A21;
    height: 30px;
    text-align: center;
    cursor:pointer;
}



.loader-box{
	position: fixed;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: #ccccccf7;
    z-index: 999999;
}
.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #E91A21; /* Blue */
  border-bottom: 16px solid #E91A21; /* Blue */
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
  position: absolute;
  left: 0;
  right: 0;  
  top: 30%;
  margin: auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}





.text-draggable-container, .image-draggable-container{
	position:absolute;
	width:100%;
	height:100%;
	border:0px solid;
	overflow:scroll;
	display:none;
}
.text-draggable, .image-draggable{
	position:relative;
	height:auto;
	border:2px solid rgba(156, 202, 63, 0.6);
	z-index: 1;
	top: 60%;
	left: 20%;
}
.text-draggable{width:auto;height:auto;display:inline-block;}
.text-draggable:hover, .image-draggable:hover{border:3px solid #9CCA3F;}

.text-draggable .btn-actions, .image-draggable .btn-actions{
	position: absolute;
    right: -22px;
    top: -14px;
    color: #fff;
    border-radius: 0%;
    z-index: 2;
    opacity: 1;
    width: 32px;
    height: 20px;
    padding: 0;
    display: none;
    border: 0;
    background: none;

}
.text-draggable:hover .btn-actions, .image-draggable:hover .btn-actions{display:block}
.text-draggable .btn-actions:hover, .image-draggable .btn-actions:hover{opacity:1;}
.text-draggable .btn-actions span, .image-draggable .btn-actions span{
	display: block;
    line-height: 18px;
    width: 20px;
    float: left;
    background: #EFEFEF;
    color: #000;
    font-size: 18px;
    margin: 2px;
    border-radius: 50%;
    height: 20px;
}
.text-draggable .btn-actions span:hover, .image-draggable .btn-actions span:hover{background: #b7b4b4;}

.text-draggable .ui-resizable-handle, .image-draggable .ui-resizable-handle{
	display:none !important;
}
.text-draggable:hover .ui-resizable-handle, .image-draggable:hover .ui-resizable-handle{
	display:block !important;
}

.textDragHandler,.imageDragHandler{
	cursor: all-scroll;
	/*max-width: 100%;
    width:300px;
    max-height: 100%;*/
    height:auto;
    padding: 5px;
    
}


#preview_image{max-width:100%;}
.dragImage{max-width: 100%;/*max-width:100%;max-height:100%;*/}

#dragText, textarea{font-size: 30px;text-align: center;text-transform: uppercase;}

/*.ui-icon, .ui-widget-content .ui-icon {
	background-image:none;
	background:#ea1a21;
	width: 12px;
	height: 12px;
}*/


.ui-rotatable-handle {
    height: 16px;
    width: 16px;
    cursor: pointer;
    background-image: url(../images/rotate.png);
    background-size: 100%;
    left: -5px;
    top: -5px;
    position: absolute;
    display:none;
}
.text-draggable:hover .ui-rotatable-handle,.image-draggable:hover .ui-rotatable-handle  {display:block;}

/* Multi-logo support for jersey customization - React RND */
.multi-logo-rnd {
	cursor: move;
	z-index: 100;
	border: 2px solid rgba(156, 202, 63, 0.6);
	box-sizing: border-box;
}

.multi-logo-rnd:hover {
	border: 3px solid #9CCA3F;
	box-shadow: 0 0 10px rgba(156, 202, 63, 0.3);
}

/* Show close button only on hover */
.multi-logo-rnd:hover .multi-logo-close {
	display: flex !important;
}

.multi-logo-close:hover {
	background: #dc3545 !important;
	color: white !important;
	transform: scale(1.1);
}

/* Hide rotation buttons for jersey customization - rotation not allowed */
.multi-logo-rotate-left,
.multi-logo-rotate-right {
	display: none !important;
}


.getintouch{
	color: #212529;
    font-size: 13px;
    padding-bottom: 45px;
}

.getintouch p{margin: 5px auto;}
.getintouch p strong{
	font-weight: 500;
}
.getintouch p a {
	color: #212529;
    text-decoration: none;
}

.getintouch .modal-body{padding: 0 30px;}
.getintouch h4{font-size:18px;line-height: 22px;font-weight: 600;}

.getintouch ul.info{list-style:none;padding: 0;margin: 0;margin-top: 20px;}
.getintouch ul.info li{
  list-style: none;
    background: #F6F6F6;
    font-size: 14px;
    line-height: 20px;
    padding: 8px;
    margin-bottom: 10px;
    width: 49%;
    display: inline-block;
    margin-right: 1%;
}
.getintouch ul.info li.width100{width:100%;margin-right:0;}
.getintouch ul.info li img{margin-right: 5px;width:16px;height:16px;}
.getintouch ul.info li a{text-decoration:none;color: #212529;}

.getintouch p.social-title{margin-top: 10px;text-align: center;}
.getintouch ul.social{list-style:none;padding: 0;margin: 0;margin-top: 10px;text-align: center;}
.getintouch ul.social li{
  list-style: none;
  background: #F6F6F6;
  display: inline-block;
  margin-right: 10px;
  text-align: center;
  width: 38px;
  height: 38px;
  vertical-align: middle;
  line-height: 38px;
}
.getintouch ul.social li img{width: 25px;height: 25px;}
.getintouch ul.social li a{text-decoration:none;color: #212529;}



.getintouch .email-form{}
.getintouch .email-form .form-group{font-size:12px;line-height:22px;font-weight:600;margin: 10px 0px;color:#6e6e6e;}
.getintouch .email-form .form-group label{display: block;width:100%;}
.getintouch .email-form .form-group input{
  background: #efefef;
  display: inline-block;
  width: calc(100% - 26px);
  border: 0;
  line-height: 32px;
  padding-left: 5px;
}
.getintouch .email-form .form-group .input{    
  background: #efefef;
  padding: 4px 8px;
}

.getintouch .email-form .form-group button{
  border: none;
  text-transform: uppercase;
  background: #E91A21;
  color: #FFFFFF;
  text-align: center;
  width: 100%;
  height: 30px;
  margin: 0;
  padding:0;
  font-size: 14px;
  line-height: 22px;
}

.getintouch .email-form .form-group button.submit{
  background: #224573;
  width:118px;
  margin-right: 10px;
}

.getintouch .email-form .form-group button.cancel{
  background: #080000;
  width:88px;
}
span.error{color:#E91A21;}

/*
.getintouch .right-form{background:#F6F6F6;}

.getintouch .right-form .form-group{font-size:12px;line-height:22px;font-weight:600;margin: 10px 0px;color:#6e6e6e;}
.getintouch .right-form .form-group label{display: block;width:100%;}
.getintouch .right-form .form-group input{
  background: #ffffff;
  display: inline-block;
  width: calc(100% - 26px);
  border: 0;
  line-height: 32px;
}
.getintouch .right-form .form-group .input{    
  background: #ffffff;
  padding: 4px 8px;
}
.getintouch .right-form .form-group textarea{background:#ffffff;margin-bottom: 0;height: 100px;font-size:12px;line-height:22px;}

.getintouch .right-form .form-group button{
    border: none;
    text-transform: uppercase;
    background: #E91A21;
    color: #FFFFFF;
    text-align: center;
    width: 100%;
    height: 30px;
    margin: 0;
    padding:0;
    font-size: 14px;
    line-height: 22px;
}


.getintouch ul.right-form li{list-style:none;background:#F6F6F6;font-size: 14px;line-height:20px;padding: 8px;margin-bottom: 10px;}
.getintouch ul.right-form li img{margin-right: 5px;width:16px;height:16px;}
.getintouch ul.right-form li label{display: block;width:100%}
.getintouch .right-form li input{background:#ffffff;display: block;width:100%}

*/
#select9 .control-data li:hover span svg {
    fill: #9CCA3F !important;
}

.jersey-customization .field-group .color-picker {
  width: 30px;
  height: 30px;
}

.jersey-customization .color-picker li .select-btn [data-type="btn"]>[data-type="arrow"] {
  display: none;
}

/* =================== Multiple Texts UI Styles (Pattern-Specific - Original Style) ======================================================= */

/* Add Text Button - matches existing UI style */
.add-text-button-original {
  width: 100%;
  background: #9CCA3F;
  color: white;
  border: none;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.add-text-button-original:hover {
  background: #8ab535;
}

/* Multiple Text Group Container */
.multiple-text-group {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f0f0f0;
}

.multiple-text-group:last-child {
  border-bottom: none;
}

/* Text Group Header */
.text-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding: 8px 12px;
  background: #f8f9fa;
  border-left: 3px solid #9CCA3F;
}

.text-number {
  color: #224573;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.remove-text-x {
  background: #dc3545;
  color: white;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: bold;
}

.remove-text-x:hover {
  background: #c82333;
  transform: scale(1.1);
}

/* No texts message */
.no-texts-message-original {
  text-align: center;
  padding: 24px;
  color: #6c757d;
  font-size: 14px;
  background: #f8f9fa;
  border: 1px dashed #dee2e6;
  margin-top: 8px;
}

.no-texts-message-original p {
  margin: 0;
}

/* Multiple Text Drag Containers (react-rnd) */
.multi-text-rnd {
  z-index: 100 !important;
  box-sizing: border-box;
  border: 3px solid rgba(156, 202, 63, 0.9);
}

.multi-text-rnd:hover {
  border: 4px solid #9CCA3F !important;
  box-shadow: 0 2px 8px rgba(156, 202, 63, 0.5);
}

/* Show close button only on hover */
.multi-text-rnd:hover .multi-text-close {
  display: flex !important;
}

.multi-text-close:hover {
  background: #dc3545 !important;
  color: white !important;
  transform: scale(1.1);
}

/* Jersey Number Drag Containers (react-rnd) */
.jersey-number-rnd {
  z-index: 100 !important;
  box-sizing: border-box;
}

.jersey-number-rnd:hover {
  border: 4px solid #9CCA3F !important;
}

/* Show close button only on hover */
.jersey-number-rnd:hover .jersey-number-close {
  display: flex !important;
}

.jersey-number-close:hover {
  background: #dc3545 !important;
  color: white !important;
  transform: scale(1.1);
}

/* Setup Fee Minimal Styles */
.setup-fee-minimal {
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  transition: all 0.2s ease;
  backdrop-filter: blur(10px);
}

.setup-fee-minimal:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.fee-icon {
  font-size: 14px;
  opacity: 0.8;
}

.fee-text {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  flex: 1;
}

.fee-price {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .setup-fee-minimal {
    padding: 6px 10px;
    font-size: 12px;
    gap: 6px;
  }
  
  .fee-price {
    font-size: 13px;
    padding: 2px 5px;
  }
}

.jersey-customization .field-group .color-picker li {height: 30px;border-color: #000;}

/* Customization Costs Styles - Clean Minimal Design */
.customization-costs {
  margin-top: 12px;
  padding: 0;
}

.customization-costs-header {
  margin-bottom: 8px;
  padding-bottom: 6px;
}

.customization-costs-title {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cost-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
}

.cost-item-content {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 8px;
}

.cost-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  opacity: 0.8;
}

.cost-text {
  font-size: 13px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.3;
}

.cost-price {
  font-weight: 600;
  font-size: 13px;
  color: #ffffff;
  min-width: 50px;
  text-align: right;
}

.cost-item.logo-cost .cost-icon::before {
  content: '🖼️';
}

.cost-item.number-cost .cost-icon::before {
  content: '🔢';
}

.cost-item.setup-cost .cost-icon::before {
  content: '⚙️';
}

/* Responsive Design */
@media (max-width: 768px) {
  .customization-costs {
    margin-top: 10px;
  }
  
  .cost-item {
    padding: 5px 0;
  }
  
  .cost-icon {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }
  
  .cost-text {
    font-size: 12px;
    color: #ffffff;
  }
  
  .cost-price {
    font-size: 12px;
    min-width: 45px;
    color: #ffffff;
  }
  
  .customization-costs-title {
    font-size: 12px;
    color: #ffffff;
  }
}