@charset "UTF-8";
@keyframes clipboard {
  0% {opacity: 0;}
  5% {opacity: 1;}
  75% {opacity: 1;}
  100% {opacity: 0;}
}
@keyframes error-display {
  0% {opacity: 0;}
  33% {opacity: 1;}
  66% {opacity: 0;}
  100% {opacity: 1;}
}

:root {
  --dap-cyan: #1eb4b9;
  --dap-gray: #7a7a7a;
  --dap-lightgray: #cccccc;
  --dap-smoke: #e6e6e6;
  --dap-orange: #ff6a19;

  --grid-gap: 1em;
  --doc-width: min(1440px, 80vw);
  --doc-padding: calc(calc(100vw - var(--doc-width)) / 2);
}
::selection {
  color: white;
  background-color: var(--dap-orange);
}

* {
  scroll-behavior: smooth;
}
html, body {
  min-height: 100%;
  width: 100%;
  padding: 0px;
  margin: 0px;
}

a, button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  text-decoration: none;
  background: none;
  border: 0px;
  outline: 0px;
  cursor: pointer;
  transition: opacity 0.2s;
}
a[disabled], button[disabled] {
  opacity: 0.7;
  pointer-events: none;
}
a:hover, button:hover {
  opacity: 0.7;
}
body {
  font-family: rooney-sans, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--dap-gray);
  overflow-x: hidden;
}
*[drop-down] {
  cursor: pointer;
}
fieldset {
  --cols: 1;
  display: grid;
  grid-template-columns: repeat(var(--cols), 1fr);
  grid-gap: var(--grid-gap);
  padding: 0px;
  margin: 0px;
  border: 0px;
}
footer {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2,auto);
  justify-content: space-between;
  background-color: var(--dap-smoke);
  padding: 2em var(--doc-padding);
}
footer .tiny {
  grid-column-end: span 2;
  justify-self: flex-end;
}
iframe {
  outline: 0px;
}
input[type="checkbox"] {
  appearance: none;
  position: relative;
  display: block;
  width: 2em;
  height: 1em;
  border: 0px;
  background-color: #0002;
  cursor: pointer;
}
  input[type="checkbox"]::after {
    content: "";
    position: absolute;
    display: block;
    top: 1px;
    left: 0px;
    height: 1em;
    width: 1em;
    border-radius: 50%;
    background-color: white;
    box-shadow: 0 0 0.3em #0003;
    transition: transform 0.3s ease-out, background-color 0.3s;
  }
  input[type="checkbox"]:checked:after {
    background-color: var(--dap-cyan);
    transform: translateX(100%);
  }
input[type="radio"] {
  appearance: none;
  width: 1em;
  height: 1em;
  padding: 0.5em;
  background-color: var(--dap-cyan);
  box-shadow: 0 0 0 0.5em white inset;
  border: solid 2px var(--dap-lightgray);
  transition: box-shadow 0.15s ease-out, border-color 0.3s;
  cursor: pointer;
}
  input[type="radio"]:checked {
    box-shadow: 0 0 0 0.2em white inset;
    border-color: var(--dap-cyan);
  }
input:disabled,
textarea:disabled {
  background-color: var(--dap-smoke);
  opacity: 0.6;
}
h2 {
  --outline-color: white;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  margin: 0.2em 0;
  font-family: lobster, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4em;
  color: var(--dap-gray);
}
  h2 > span {
    grid-column: 1;
    grid-row: 1;
  }
  h2::before {
    -webkit-text-stroke: 0.2em var(--outline-color);
  }
  h2::before, h2::after {
    content: attr(data-content);
    grid-column: 1;
    grid-row: 1;
    pointer-events: none;
  }
  h2::after {
    color: var(--dap-gray);
  }
h3 {
  margin: 1em 0;
  font-size: 2.1em;
}
h4, .big {
  margin: 1em 0;
  font-size: 1.4em;
}
h5 {
  margin: 1em 0;
  font-size: 1em;
}
header {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: var(--grid-gap);
  box-sizing: border-box;
  align-items: center;
  z-index: 100;
}
i, .italic {
  font-style: italic;
}
input, select, textarea {
  padding: 0.6em 1em;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
  background: none;
  resize: none;
  outline: 0px;
  border: solid 2px var(--dap-smoke);
  color: inherit;
  border-radius: 1.3em;
  transition: border-color 0.4s;
}
  input::placeholder, textarea::placeholder {
    font-style: italic;
  }
  input:focus, textarea:focus {
    border-color: var(--dap-cyan);
  }
input[type="checkbox"]:not(), input[type="radio"]:not() {
  cursor: pointer;
}
label {
  font-weight: 700;
  cursor: pointer;
}
main {
  display: grid;
  grid-auto-flow: row;
  grid-auto-rows: auto;
  min-height: 100vh;
}
  main > section {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin: 4em 0;
  }
    main > section > article {
      width: var(--doc-width);
    }
  main > section:first-child {
    margin-top: 9em;
  }  
  main > section:last-child {
    margin-bottom: 0px;
    padding-bottom: 200px;
    background-image: url('../src/footer-dots-pattern.png');
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
  }
  main > section:only-of-type {
    height: 100%;
  }
section {
  position: relative;
}
strong, .bold {
  font-weight: 700;
}
tr[disabled] td {
  opacity: 0.6;
  background-color: var(--dap-smoke);
}

.comparison-big {
  font-size: 1.6em;
  color: var(--dap-lightgray);
  text-decoration: line-through;
  margin: 0px;
}
.comparison-small {
  color: var(--dap-lightgray);
  text-decoration: line-through;
}
.discount-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.1em 0.55em;
  margin-left: 0.35em;
  border-radius: 999px;
  background-color: color-mix(in lab, var(--dap-cyan) 18%, transparent 82%);
  color: var(--dap-cyan);
  font-size: 0.78em;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}
.discount-note {
  color: var(--dap-gray);
  font-style: italic;
  font-size: 0.95em;
}
.big-icon {
  font-size: 2.1em;
  padding: 1.5rem;
}
.big-price {
  font-size: 2.1em;
  margin-top: 0px;
}
.cart-product-name {
  margin-left: 2em;
  font-weight: 700;
}
.centered {
  text-align: center;
  justify-content: center !important;
}
.content {
  font-size: 1.2em;
  font-weight: 500;
}
.cyan {
  color: var(--dap-cyan) !important;
}
.cyan-btn {
  display: inline-flex;
  gap: 0.5em;
  padding: 0.5em 2em;
  background-color: var(--dap-cyan);
  font-size: 1.3em;
  font-weight: 600;
  color: white;
  border-radius: 0.5em;
}
.cyan-btn.bordered {
  background-color: transparent;
  color: var(--dap-cyan);
  border: solid 2px currentColor;
}
.delivery-option,
.payment-option {
  border: solid 2px var(--dap-smoke);
  padding: 1em;
  box-sizing: border-box;
  border-radius: 1em;
  width: 100%;
  margin-bottom: 0.5em;
  text-align: left;
  transition: border-color 0.2s;
}
  .delivery-option .flex-row,
  .payment-option .flex-row {
    justify-content: left !important;
  }
.double-gap {
  grid-column-gap: calc(2.5 * var(--grid-gap)) !important;
}
.flex-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.flex-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
  .flex-row > .def-icon:first-child,
  .flex-row > .material-symbols-rounded:first-child {
    margin-right: 0.5em;
  }
.full-width {
  width: 100%;
}
.gray-btn {
  padding: 0.5em 2em;
  background-color: var(--dap-gray);
  font-size: 1.3em;
  font-weight: 600;
  color: white;
  border-radius: 0.5em;
}
.gray-card {
  padding: 1em;
  box-sizing: border-box;
  background-color: var(--dap-smoke);
  border-radius: 1.3em;
}
.grid-1-col,
.grid-2-cols,
.grid-3-cols,
.grid-4-cols,
.grid-5-cols {
  display: grid;
  grid-template-columns: repeat(var(--cols), 1fr);
  grid-auto-rows: auto;
  grid-gap: var(--grid-gap);
}
  .grid-1-col {
    --cols: 1;
    justify-content: left;
    justify-items: left;
  }
  .grid-2-cols {--cols: 2;}
  .grid-3-cols {--cols: 3;}
  .grid-4-cols {--cols: 4;}
  .grid-5-cols {--cols: 5;}
.grid-1-2-cols {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-auto-rows: auto;
  grid-gap: var(--grid-gap);
}
  
.def-icon {
  --size: 1.3em;
  position: relative;
  height: var(--size);
  max-width: var(--size);
  color: inherit;
}
.hidden {
  display: none !important;
  opacity: 0;
  pointer-events: none;
}
.highlighted {
  border: solid 2px var(--dap-cyan);
}
.lightgray-btn {
  padding: 0.5em 2em;
  background-color: var(--dap-smoke);
  font-size: 1.3em;
  font-weight: 600;
  color: var(--dap-gray);
  border-radius: 0.5em;
}
.material-symbols-rounded {
  font-display: initial !important;
}
.medium {
  font-weight: 500;
}
.menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
  .menu a {
    margin-bottom: 0.5em;
  }
.no-margin {
  margin: 0px;
}
.no-margin-bottom {
  margin-bottom: 0px;
}
.no-margin-top {
  margin-top: 0px;
}
.note {
  padding: 1em;
  box-sizing: border-box;
  background-color: var(--dap-smoke);
  font-style: italic;
  border-radius: 1.3em;
}
.notification-bar {
  display: flex;
  justify-content: space-between;
  align-content: center;
  width: 100%;
  margin-bottom: calc(2.5 * var(--grid-gap));
  padding: 0.6em 0.8em;
  box-sizing: border-box;
  border-radius: 1em;
  background: #1eb4b922;
  color: var(--dap-cyan);
  transition: height 0.4s ease, margin-bottom 0.4s ease, padding 0.4s ease;
  overflow: hidden;
}
.notification-bar.disabled {
  height: 0px;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
}
  .notification-bar a {
    text-decoration: underline;
  }
  .notification-bar button,
  .notification-bar p {
    margin: 0px;
    padding: 0px;
  }
  .notification-bar button {
    margin-left: 1.5em;
  }
.orange {
  color: var(--dap-orange);
}
.orange-btn {
  display: inline-flex;
  gap: 0.5em;
  padding: 0.5em 2em;
  background-color: var(--dap-orange);
  font-size: 1.3em;
  font-weight: 600;
  color: white;
  border-radius: 0.5em;
}
.orange-btn.bordered {
  background-color: transparent;
  color: var(--dap-orange);
  border: solid 2px currentColor;
}
.pop-error {
  margin: 0px;
  color: crimson;
  animation: none;
}
.pop-error.animate {
  animation: error-display 0.5s forwards;
}
.popup-form {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  text-align: center;
}
  .popup-form :where(input, select, textarea) {
    margin-bottom: 0.8em;
    text-align: center;
  }
  .popup-form label {
    margin: 0.3em 0;
  }
.product-card {
  width: 100%;
  height: 100%;
  padding: 0.5em;
  box-sizing: border-box;
  border: solid 2px var(--dap-lightgray);
  border-radius: 1.3em;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.product-card-comparison {
  text-decoration: line-through;
  color: var(--dap-lightgray);
  margin: 0px;
}
.product-card-img {
  width: 100%;
  height: 0px;
  padding-bottom: 100%;
  margin: 0 0 1em 0;
  border-radius: 0.7em;
  margin-bottom: 1em;
  background-image:
    var(--bkg),
    url('../src/no-image.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.product-card-name {
  display: flex;
  align-items: center;
  height: 100%;
  margin: 0.5em 0;
  text-align: center;
  line-height: 1em;
}
.product-card-price {
  margin: 0px;
}
.product-card-provider {
  width: 100%;
  margin: 0px;
  padding: 0.3em;
  box-sizing: border-box;
  background-color: var(--dap-smoke);
  text-align: center;
  border-radius: 0.7rem;
  font-size: 0.8em;
}
.quantity-zero {
  opacity: 0.5;
  background-color: #e6e6e66b;
}
.red {
  color: crimson;
}
.search-button {
  grid-column: 2;
  grid-row: 1;
  width: 2em;
  height: 2em;
  background-color: var(--dap-orange);
  color: white;
  border-radius: 50%;
  margin-right: 0.4em;
}
.search-input {
  grid-column: 1 / span 2;
  grid-row: 1;
  width: 200px;
  background-color: white;
  transition: width 0.4s ease, border-color 0.4s;
  will-change: width;
}
.small {
  font-size: 0.9em;
}
.stretched-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.tiny {
  font-size: 0.7em;
}
.url-hidden-input {
  position: absolute;
  height: 0px;
  width: 0px;
  opacity: 0;
}
.warning-p {
  margin: 2em 0;
  text-align: center;
  color: var(--dap-lightgray);
  font-size: 2.1rem;
}
  .warning-p .material-symbols-rounded {
    font-size: 2.1rem;
  }

#brands-carousel items {
  --cols: 4;
  --gap: var(var(--grid-gap));
}
  #brands-carousel item img {
    max-width: 250px;
  }
#bullet-links {
  justify-items: center;
}
  #bullet-links a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
  }
  #bullet-links a:hover {
    opacity: 1;
  }
  #bullet-links a img {
    border: solid 3px var(--dap-orange);
    border-radius: 50%;
    max-width: 100%;
    overflow: hidden;
    transition: filter 0.3s ease;
  }
  #bullet-links:hover a:not(:hover) img {
    filter: grayscale(0.5) blur(0.1em) brightness(1.1);
  }
#cart-article {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#cart-btn.filled::after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 0.5em;
  height: 0.5em;
  background-color: var(--dap-orange);
  border-radius: 50%;
}
#cart-table {
  width: 100%;
}
  #cart-table img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 1em;
    overflow: hidden;
  }
  #cart-table th {
    padding-bottom: 1em;
  }
  #cart-table tr:not(:last-child) td {
    border-bottom: dotted 2px var(--dap-smoke);
  }
#contact-form {
  margin: 2.5em 0 1em 0;
}
#desk-nav {
  display: grid;
  grid-auto-flow: column;
  grid-gap: var(--grid-gap);
}
#discount-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1em;
  margin-bottom: 1em;
}
#empty-search {
  display: flex;
  flex-direction: column;
  grid-column-end: span 4;
  align-items: center;
  text-align: center;
  margin: 3em;
  font-size: 1.8em;
  opacity: 0.5;
}
#filters-drop-down {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#highlights-grid {
  --cols: 4;
  --gap: var(var(--grid-gap));
}
  #highlights-grid:hover > item > a {
    opacity: 0.7;
  }  
  #highlights-grid:hover > item > a:hover {
    opacity: 1;
  }
#icon-defs {
  display: none;
  height: 0px;
  width: 0px;
}
#main-logo {
  height: 80px;
}
#main-menu {
  position: absolute;
  grid-row-gap: 0px;
  top: 110%;
  right: 0px;
  max-height: 0px;
  border-radius: 2em;
  border: solid 2px var(--dap-lightgray);
  padding: 1em 2em 1.5em 2em;
  background-color: white;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: opacity .2s, max-height 0.8s ease;
}
  #main-menu.active {
    opacity: 1;
    max-height: 100vh;
    pointer-events: all;
  }
#meet-us {
  background-image:
    linear-gradient(
      to bottom,
      transparent 10%,
      var(--dap-cyan) 10%,
      var(--dap-cyan) 90%,
      transparent 90%
    );
    color: white;
}
  #meet-us > article,
  #our-variety > article {
    align-items: center;
  }
#mobile-search {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  margin-bottom: -1.5em;
  z-index: 2;
}
#nav-bar {
  position: relative;
  display: inline-grid;
  grid-auto-flow: column;
  grid-gap: 2em;
  background-color: white;
  padding: 0.5em;
  border-radius: 2em;
}
  #nav-bar > nav {
    display: flex;
    align-items: center;
  }
    #nav-bar > nav > a {
      position: relative;
      display: flex;
      align-items: center;
      font-weight: 600;
      padding: 0.6em;
      border-radius: 1.3em;
      transition: color 0.2s, background-color 0.2s, opacity 0.2s;
    }
    #nav-bar > nav > a.active {
      background-color: var(--dap-orange);
      color: white;
    }
#order-history-table tr td {
  border-bottom: solid 1px var(--dap-smoke);
}
#order-history-table .cancelled {
  color: var(--dap-lightgray);
  text-decoration: line-through;
}
#pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5em 1em;
  color: var(--dap-cyan);
}
  #pagination p {
    margin: 0 1.5em;
  }
#products-filters {
  padding: 1em;
  box-sizing: border-box;
  background-color: var(--dap-smoke);
  border-radius: 1.3em;
}
#products-filters[disabled] #filters-drop-down {
  opacity: 0.6;
}
#products-grid:hover > a {
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s ease;
}
#products-grid:hover > a:hover {
  opacity: 1;
  transform: scale(1.05);
}
#product-imgs {
  height: auto;
  margin-bottom: 1.3em;
  border-radius: 1.3em;
  overflow: hidden;
  background-color: #f3f3f3;
}
  #product-imgs slide {
    background-size: cover;
    width: 100%;
    height: 0px;
    padding-bottom: 100%;
  }
    #product-imgs slide img,
    #product-imgs slide iframe {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0px;
      left: 0px;
      object-fit: cover;
    }
  #product-imgs button {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    top: 0px;
    padding: 0.3em;
    font-size: 1.6em;
    opacity: 0.3;
    transition: background-color 0.2s, opacity 0.2s;
  }
  #product-imgs button:hover {
    background-color: #FFF3;
    opacity: 1;
  }
  #product-imgs button[type="prev"] { left: 0px; }
  #product-imgs button[type="next"] { right: 0px; }
  #product-imgs thumbnails {
    --size: 0.6em;
    position: absolute;
    display: grid;
    grid-auto-flow: column;
    grid-gap: var(--size);
    bottom: 1em;
    left: 50%;
    transform: translateX(-50%);
  }
  #product-imgs thumb {
    display: block;
    height: var(--size);
    width: var(--size);
    background-color: var(--dap-cyan);
    border-radius: calc(var(--size) / 2);
    transition: width 0.2s ease, background-color 0.2s;
    cursor: pointer;
  }
  #product-imgs thumb[active] {
    width: calc(var(--size) * 2.5);
    background-color: var(--dap-orange);
  }
#product-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#reset-pass {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(500px, 100%);
  margin: 2em auto;
  text-align: center;
}
  #reset-pass input {
    width: 100%;
    margin: 0.5em 0 1em 0;
    text-align: center;
  }
  #reset-pass button {
    margin-top: 1em;
  }
#search-bar,
#mobile-search {
  display: grid;
}
  #mobile-search .search-input {
    width: var(--doc-width)
  }
  #search-bar .search-input:focus {
    width: 250px;
  }
#showroom-grid {
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-template-rows: 1fr;
  grid-gap: var(--grid-gap);
  align-items: flex-start;
}
#splash {
  height: 550px;
  width: 100%;
  margin-top: 0px;
  background-color: var(--dap-lightgray);
}
  #splash::after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 104px;
    background: url('../src/bg-dots-pattern.png') repeat-x;
    background-size: auto 100%;
  }
  #splash button[type="prev"],
  #splash button[type="next"] {
    --pos: calc(90vw + 3rem);
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    height: 2em;
    width: 2em;
    color: white;
    background-color: var(--dap-orange);
    border-radius: 50%;
  }
  #splash button[type="prev"] { right: var(--pos); }
  #splash button[type="next"] { left: var(--pos); }
#total-display-grid {
  justify-items: center;
  text-align: center;
}
#total-grid {
  gap: 3em;
  margin-top: 3em;
  align-items: center;
}
  #total-grid * {
    margin-top: 0px;
  }
  #total-grid div {
    justify-self: flex-end;
  }
#user-menu {
  position: absolute;
  grid-row-gap: 0px;
  top: 110%;
  right: 0px;
  max-height: 0px;
  border-radius: 2em;
  border: solid 2px var(--dap-lightgray);
  padding: 1em 2em 1.5em 2em;
  background-color: white;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: opacity .2s, max-height 0.8s ease;
}
  #user-menu.active {
    opacity: 1;
    max-height: 100vh;
    pointer-events: all;
  }
#whatsapp-bubble {
  position: sticky;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 0px;
  width: 100%;
  bottom: 0em;
  filter: drop-shadow(0 0 0.6em #0003);
}
  #whatsapp-bubble a {
    display: block;
    opacity: 0.5;
    transition: opacity 0.2s;
    margin: var(--grid-gap);
  }
  #whatsapp-bubble a:hover {
    opacity: 0.9;
  }
  #whatsapp-bubble img {
    height: 4.5em;
  }

carousel item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
loader {
  color: var(--dap-lightgray);
}
slide[data-href] {
  cursor: pointer;
}
.__og-context-menu {
  padding: 0.5em 1em;
  background-color: var(--dap-gray);
  font-size: 0.9em;
  font-weight: 600;
  color: white;
  border-radius: 0.5em;
  animation: clipboard 2s forwards 1;
}
.__og-dialog {
  background-color: white;
  border-radius: 2em;
}
.__og-dialog-btns > button {
  padding: 0.5em 2em;
  background-color: var(--dap-cyan);
  font-size: 1.3em;
  font-weight: 600;
  color: white;
  border-radius: 0.5em;
}
.__og-dialog-btns > button:first-child {
  background-color: var(--dap-orange);
}
.__og-dialog-content {
  display: flex;
  flex-direction: column;
}
