@charset "UTF-8";
header nav a {
  padding: 5px 20px;
  text-decoration: none;
  color: black;
  font-family: "lemon", "Courier New", Courier, monospace;
}

.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.product-container article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 20px;
}
.product-container article .right {
  padding: 5px 10px 10px 20px;
}
.product-container article .image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .inner-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.hero .inner-container .image-container {
  position: relative;
  margin-top: 40px;
}
.hero .inner-container .image-container img {
  width: 100%;
  border-radius: 10px;
}

header a {
  text-wrap: nowrap;
}

body {
  margin: 5px 100px;
}
body main {
  padding: 0px 10px;
}
body main section {
  padding: 20px 0 40px 0;
}
body main h2,
body main h1 {
  font-family: "lemon", "Courier New", Courier, monospace;
}
body main p {
  margin-bottom: 14px;
  color: #333;
  font-size: 1rem;
  font-style: oblique;
}

@media (max-width: 1300px) {
  body {
    margin: 5px 5px;
  }
  main {
    padding: 0px 10px;
  }
  .product-container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 850px) {
  .hero .inner-container {
    grid-template-columns: 1fr;
  }
  .hero .inner-container .image-container {
    position: relative;
    margin-top: 0px;
  }
}
@media (max-width: 700px) {
  .product-container article {
    grid-template-columns: 1fr;
  }
  .product-container article .right {
    padding: 5px;
  }
  .product-container article .right #table-adder,
  .product-container article .right #chair-adder {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
main #produkter h2 {
  font-family: "lemon", "Courier New", Courier, monospace;
}
main #produkter .product-container article {
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04), 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}
main #produkter .product-container article .left .image-container {
  width: 100%;
  height: 200px;
  position: relative;
}
main #produkter .product-container article .left .image-container img {
  height: 100%;
}
main #produkter .product-container .prices .buy-price {
  padding-left: 5px;
  text-decoration: line-through;
}

.full-width {
  width: 100%;
}

.border-bottom {
  border-bottom: 0.5px solid #ccc;
}

.text-center {
  text-align: center;
}

.font-lemon {
  font-family: "Lemon";
}

.click-input .click-input-field {
  position: absolute;
  display: none;
  z-index: 2;
}
.click-input.editing .click-input-text {
  opacity: 0;
}
.click-input.editing .click-input-field {
  display: flex;
}

.d-none {
  display: none !important;
}

.spread {
  justify-content: space-between; /* Spread items evenly */
}

.flex-column,
.group-flex-column > div {
  display: flex;
  flex-direction: column;
}
.flex-column.flex-reverse,
.group-flex-column > div.flex-reverse {
  flex-direction: column-reverse;
}

body.mobile .only-pc {
  display: none !important;
}

body.pc .only-mobile {
  display: none !important;
}

.center-text {
  text-align: center;
}

body.mobile .m-flex-column {
  flex-direction: column;
}
body.mobile .m-flex-column.m-flex-reverse {
  flex-direction: column-reverse;
}
body.mobile .m-flex-column.m-align {
  align-items: center;
  justify-content: center;
}

body.mobile .hide-mobile {
  display: none;
}

.flex-row,
.group-flex-row > div {
  display: flex;
  flex-direction: row;
}
.flex-row.flex-reverse,
.group-flex-row > div.flex-reverse {
  flex-direction: row-reverse;
}

.clickable {
  cursor: pointer;
}

.flex-wrap {
  flex-wrap: wrap;
}

.no-wrap {
  flex-wrap: nowrap;
}

.noMargin-group > * {
  margin: 0;
}

.flex-column.align {
  align-items: center;
  justify-content: center;
}

.flex-column.align-top {
  justify-content: flex-start;
}

.flex-column.center {
  align-items: center;
}

.flex-row.align,
.align-start {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.lazy-margin * {
  margin: 10px;
}

.shift-right {
  position: absolute;
  right: 0;
}

.grid-row-50 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 10px;
}

.hideThis,
.soft-hide {
  display: none;
}


.contain-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Custom CSS for column widths */
.w-1 {
  width: 8.33%; /* (100 / 12) * 1 */
}

.w-2 {
  width: 16.67%; /* (100 / 12) * 2 */
}

.w-3 {
  width: 25%; /* (100 / 12) * 3 */
}

.w-4 {
  width: 33.33%; /* (100 / 12) * 4 */
}

.w-5 {
  width: 41.67%; /* (100 / 12) * 5 */
}

.w-6 {
  width: 50%; /* (100 / 12) * 6 */
}

.w-7 {
  width: 58.33%; /* (100 / 12) * 7 */
}

.w-8 {
  width: 66.67%; /* (100 / 12) * 8 */
}

.w-9 {
  width: 75%; /* (100 / 12) * 9 */
}

.w-10 {
  width: 83.33%; /* (100 / 12) * 10 */
}

.w-11 {
  width: 91.67%; /* (100 / 12) * 11 */
}

.w-12 {
  width: 100%; /* (100 / 12) * 12 */
}

body.mobile .mw-1 {
  width: 8.33%; /* (100 / 12) * 1 */
}
body.mobile .mw-2 {
  width: 16.67%; /* (100 / 12) * 2 */
}
body.mobile .mw-3 {
  width: 25%; /* (100 / 12) * 3 */
}
body.mobile .mw-4 {
  width: 33.33%; /* (100 / 12) * 4 */
}
body.mobile .mw-5 {
  width: 41.67%; /* (100 / 12) * 5 */
}
body.mobile .mw-6 {
  width: 50%; /* (100 / 12) * 6 */
}
body.mobile .mw-7 {
  width: 58.33%; /* (100 / 12) * 7 */
}
body.mobile .mw-8 {
  width: 66.67%; /* (100 / 12) * 8 */
}
body.mobile .mw-9 {
  width: 75%; /* (100 / 12) * 9 */
}
body.mobile .mw-10 {
  width: 83.33%; /* (100 / 12) * 10 */
}
body.mobile .mw-11 {
  width: 91.67%; /* (100 / 12) * 11 */
}
body.mobile .mw-12 {
  width: 100%; /* (100 / 12) * 12 */
}

/* Custom Bootstrap Margin Utilities */
/* Margin on all sides */
.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

/* Margin on top */
.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

/* Margin on top */
.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

/* Margin on start (left in LTR, right in RTL) */
.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

/* Margin on end (right in LTR, left in RTL) */
.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

/* Custom Bootstrap Padding Utilities */
/* Padding on all sides */
.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

/* Padding on top */
.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

/* Padding on start (left in LTR, right in RTL) */
.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

/* Padding on end (right in LTR, left in RTL) */
.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.custom-adder {
  display: flex;
  align-items: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.custom-adder input {
  width: 70px;
  border: 0;
  background: transparent;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  -webkit-appearance: textfield;
     -moz-appearance: textfield;
          appearance: textfield;
}
.custom-adder input::-webkit-outer-spin-button, .custom-adder input::-webkit-inner-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}
.custom-adder button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #f4f4f5;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.custom-adder button i {
  font-size: 18px;
}
.custom-adder button:hover {
  background: #ebebee;
  transform: translateY(-1px);
}
.custom-adder button:active {
  transform: scale(0.96);
}

@media (max-width: 869px) {
  .top-container .formDiv {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .bottom-container .formDiv {
    width: 80%;
  }
  .bottom-container .formDiv span {
    width: 100%;
  }
  .bottom-container .formDiv input {
    width: 100%;
  }
  .formDiv {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    gap: 8px;
  }
  .formDiv span {
    font-weight: 600;
    font-size: 15px;
  }
  .formDiv input,
  .formDiv textarea {
    width: 100%;
    min-height: 52px;
    padding: 0 16px;
    border-radius: 16px;
    border: 1px solid #d8d8d8;
    background: #fff;
    font-size: 16px;
  }
  .formDiv textarea {
    padding: 16px;
  }
}
@media (max-width: 500px) {
  .top-container .formDiv {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width: 870px) {
  .top-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .top-container .formDiv {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .bottom-container .formDiv {
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    width: 30%;
    position: relative;
  }
  .bottom-container .formDiv span {
    position: absolute;
    left: 10px;
    width: 60px;
    text-wrap: nowrap;
    transition: transform 0.5s ease, left 0.5s ease, text-align 0.5s ease;
    text-align: start;
    top: 10px;
  }
  .bottom-container .formDiv:focus-within span, .bottom-container .formDiv.has-value span {
    transform: translateX(-100%);
    left: -10px;
    text-align: end;
  }
}
#bestilling {
  margin-top: 50px;
}
#bestilling label input,
#bestilling label textarea {
  width: 100%;
  box-sizing: border-box;
}
#bestilling label span {
  font-size: 13px;
  font-weight: 600;
  color: #666;
}
#bestilling .top-container {
  display: grid;
}
#bestilling .top-container .order-display {
  display: flex;
  flex-direction: column;
}
#bestilling .top-container .order-display .line {
  position: relative;
  padding: 5px;
  justify-content: space-between;
}
#bestilling .top-container .order-display .line .description {
  text-wrap: nowrap;
  padding-right: 100px;
  font-size: 13px;
  font-weight: 600;
  color: #666;
}
#bestilling .top-container .order-display .line .total {
  text-wrap: nowrap;
}
#bestilling .top-container .order-display .line .total-buy {
  text-decoration: line-through;
}
#bestilling .top-container .order-display .line.total-line {
  border-top: 0.5px grey solid;
  padding-top: 10px;
}
#bestilling .top-container .order-details .formDiv {
  margin-bottom: 10px;
}
#bestilling .top-container .order-details {
  position: relative;
}
#bestilling .bottom-container {
  padding-top: 30px;
}
#bestilling {
  padding: 20px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04), 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

/* Bootstrap-style select dropdown */
.bootstrap-select {
  display: block;
  width: 100%;
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* Hover and focus effects */
.bootstrap-select:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Disabled style */
.bootstrap-select:disabled {
  background-color: #e9ecef;
  opacity: 1;
}

/* Arrow icon for select */
.bootstrap-select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zM2 5l2-2H0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 8px 10px;
  text-align: center !important;
}

/* Base button style */
.bootstrap-btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.375rem;
  transition: all 0.15s ease-in-out;
  border: 1px solid transparent;
  text-decoration: none;
}

/* Primary Button */
.bootstrap-btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.bootstrap-btn-primary:hover {
  background-color: #0056b3;
  border-color: #004085;
}

/* Danger Button */
.bootstrap-btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.bootstrap-btn-danger:hover {
  background-color: #c82333;
  border-color: #bd2130;
}

/* Success Button */
.bootstrap-btn-success {
  color: #fff;
  background-color: #28a745;
  border-color: #28a745;
}

.bootstrap-btn-success:hover {
  background-color: #218838;
  border-color: #1e7e34;
}

/* Secondary Button */
.bootstrap-btn-secondary {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.bootstrap-btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}

/* Outline Buttons */
.bootstrap-btn-outline-primary {
  color: #007bff;
  background-color: transparent;
  border: 1px solid #007bff;
}

.bootstrap-btn-outline-primary:hover {
  background-color: #007bff;
  color: white;
}

/* Disabled Button */
.bootstrap-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Base checkbox container */
.bootstrap-checkbox {
  display: flex;
  align-items: center;
  gap: 8px; /* Space between checkbox and label */
  font-size: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Hide default checkbox */
.bootstrap-checkbox input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #ced4da;
  border-radius: 0.25rem;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

/* Checked state */
.bootstrap-checkbox input[type=checkbox]:checked {
  background-color: #007bff;
  border-color: #007bff;
}

/* Checkmark (✔) */
.bootstrap-checkbox input[type=checkbox]::before {
  content: "✓"; /* Unicode checkmark */
  font-size: 1rem;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

/* Show checkmark when checked */
.bootstrap-checkbox input[type=checkbox]:checked::before {
  opacity: 1;
}

/* Focus effect */
.bootstrap-checkbox input[type=checkbox]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Disabled state */
.bootstrap-checkbox input[type=checkbox]:disabled {
  background-color: #e9ecef;
  border-color: #ced4da;
  cursor: not-allowed;
}

/* Disabled checkmark */
.bootstrap-checkbox input[type=checkbox]:disabled:checked::before {
  color: #adb5bd;
}

/* Base input style */
.bootstrap-input {
  display: block;
  padding: 0.375rem 0.65rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  box-sizing: border-box;
}

.bootstrap-input[type=date] {
  min-height: 48px;
  width: 100%;
}

/* Focus effect */
.bootstrap-input:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Placeholder text */
.bootstrap-input::-moz-placeholder {
  color: #6c757d;
  opacity: 1; /* Make sure it's visible */
}
.bootstrap-input::placeholder {
  color: #6c757d;
  opacity: 1; /* Make sure it's visible */
}

/* Disabled input */
.bootstrap-input:disabled {
  background-color: #e9ecef;
  opacity: 1;
  cursor: not-allowed;
}

/* Readonly input */
.bootstrap-input:-moz-read-only {
  background-color: #f8f9fa;
  opacity: 1;
}
.bootstrap-input:read-only {
  background-color: #f8f9fa;
  opacity: 1;
}

/* Base number input style */
.bootstrap-input-number {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; /* Removes default number input styling */
}

/* Remove up/down number arrows in WebKit browsers */
.bootstrap-input-number::-webkit-inner-spin-button,
.bootstrap-input-number::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
  margin: 0;
}

/* Chrome, Safari, Edge, Opera */
/* Firefox */
/* Focus effect */
.bootstrap-input-number:focus {
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Placeholder text */
.bootstrap-input-number::-moz-placeholder {
  color: #6c757d;
  opacity: 1; /* Ensure visibility */
}
.bootstrap-input-number::placeholder {
  color: #6c757d;
  opacity: 1; /* Ensure visibility */
}

/* Disabled input */
.bootstrap-input-number:disabled {
  background-color: #e9ecef;
  opacity: 1;
  cursor: not-allowed;
}

/* Read-only input */
.bootstrap-input-number:-moz-read-only {
  background-color: #f8f9fa;
  opacity: 1;
}
.bootstrap-input-number:read-only {
  background-color: #f8f9fa;
  opacity: 1;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.form-check-input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #adb5bd;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  transition: all 0.15s ease-in-out;
}
.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.form-check-input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.5rem !important;
  height: 0.5rem;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}
.form-check-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-check-label {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}/*# sourceMappingURL=styles.css.map */