/* =========================
   RESET
========================= */

*,
*::before,
*::after{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

html{
    scroll-behavior:smooth;
}

body{
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
    overflow-x:hidden;
}

/* =========================
   ROOT VARIABLES
========================= */

:root{
    --header-shrink: 0.9;

    --site-max-width:1300px;

    --bg-color:#ffffff;
    --bg-gradient:linear-gradient(135deg,#100794,#0e001b);
    --bg-image: url('../../assets/images/desktop.webp');

    --color-text:#444444;
    --color-muted:#6e6e6e;

    --color-primary:#170da0;
    --color-secondary:#2a0061;

    --color-highlight:#18ddd3;

    --color-border:#acacac;

    --font-main: "Nunito Sans", sans-serif;

    --block-space:100px;
}

/* =========================
   BASE
========================= */



body{
    font-family:var(--font-main);
    font-size:14px;
}

/* Width container (no vertical spacing here) */
.container {
  width: 100%;
  max-width: var(--site-max-width);
  margin: 0 auto;
  padding: 0;
  max-height: 100%;
  z-index: 1;
}

.hero {
  position: relative;
  margin-top: -125px;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 25px;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  overflow: hidden;
  z-index: -999;
}

.minhero { 
      position: relative;
  margin-top: -125px;
  background-image: url('../../assets/images/daa.jpeg');
    height: 12vh;
      display: flex;
      width: 100%;
  justify-content: center;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.casaverde {
    margin-right: auto;
    margin-bottom: -100px;
    max-width: 650px;
    z-index: 5;
    padding: 20px;
    border-radius: 30px;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.frozen {
  display: flex;
  height: 100%;
  width: 100%;
    background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.25) 25%,
    rgba(0, 0, 0, 0) 40%
  );
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  z-index: 0;

  transform: scale(1);
  animation: heroZoom 10s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2); /* how much it zooms */
  }
}

.block{
    margin-bottom:var(--block-space);
}

.row{
  display:flex;
  flex-direction:row;
  max-height: 100%;
}

@media screen and (min-width: 599px) {
  .row {
    width: 100%;
  }

}



/* Mobile: < 600px */


.col{
  width: 100%;
  max-height: 100%;
  display:flex;
  flex-direction:column;
}

#consentY {
  max-width: 50px;
}

#profilingNewsletter {
   max-width: 50px;
}

.wrap {
  flex-wrap: wrap;
}

.nowrap {
  flex-wrap: nowrap!important;
}

.left{ 
  justify-content:flex-start;
}
.center{ justify-content:center; }
.right{ justify-content:flex-end; }
.between{ justify-content:space-between; }
.around{ justify-content:space-around; }

/* cross axis */

.top{ align-items:flex-start; }
.middle{ align-items:center; }
.bottom{ align-items:flex-end; }

.stickdown{ margin-top: 100%;}

.short {
  max-width: 200px!important;
}

.martop {
  margin-top: 20px!important;
}

.marbot {
  margin-bottom: 20px!important;
}

.section {
  margin-bottom: 100px;
}

.width {
  width:100%;
}

.padding { 
  padding: 20px;
}

.title{
  padding-top: 20px;
  padding-bottom: 20px;
}

.gap {
  gap:20px!important;
}

.sgap { 
  gap: 10px;
}

/* =========================
   TYPOGRAPHY
========================= */

h1{
    font-size:2.5rem;
    margin: 0;
}

h2{
    font-size:2rem;
        margin: 0;
}

h3{
    font-size:1.5rem;
        margin: 0;
}

h4{
      font-size:1.1rem;
        margin: 0;
}

p{
        margin: 0;
}

a{
    text-decoration:none;
    margin: 0;
    color:inherit;
    cursor: pointer;
    transition: transform 0.1s ease-in-out;
}

a:hover{
    opacity: 0.80;
    transform: scale(0.97);
}

a.active {
  font-weight: 800;
}

/* =========================
   ICONS EMBLEM LOGO
========================= */

.minicons {
    height: 20px;
    margin-left: 15px;
    margin-bottom: -5px;
    transition: opacity .2s ease, transform .15s ease;
    cursor: pointer;
}

.icons {
    height: 25px;
    margin-left: 10px;
    margin-right: 10px;
    transition: opacity .2s ease, transform .15s ease;
        cursor: pointer;
}

.bigicons {
    height: 30px;
    margin-right: 10px;
    transition: opacity .2s ease, transform .15s ease;
        cursor: pointer;
}

#logo { 
    height: 35px;

}

.navlink { 
    margin-right: 30px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 1px;
}

.white {
  color: #fff;
}

.black {
  color: #000;
}

/* =========================
   FORMS
========================= */

input,
select,
textarea{
    font-family:inherit;
    font-size:14px;
    padding:10px;
    border: none;
    border-bottom: 1px solid var(--color-border);
    border-radius: 5px;
    height: 40px;
    width:100%;
    outline: none;
    background-color: transparent;
}

input::placeholder {
  color: #b1b1b1;
}

input[type=checkbox] {
   height: 15px;
}

input:focus,
textarea:focus{
    outline:none;
    border-color:#cccccc; /* neutral, not opinionated */
}

.search {
  color: #fff;
    padding-right: 15px;
    padding-left: 40px;
    border: none;
    border-bottom: 1px solid var(--color-border);
    border-radius: 0;
    background-color: transparent;
    max-width: 300px;
}

.divider {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

/* =========================
   HEADER
========================= */

.header{
  position: sticky;
  top: 0;
  z-index: 999;
}

.header.header--scrolled{
/* From https://css.glass */
box-shadow: inset rgba(0, 0, 0, 0.5) 0px 50px 25px;
background: rgba(0, 0, 0, 0.3);
backdrop-filter: blur(17.3px);
-webkit-backdrop-filter: blur(17.3px);
}

.header.header--scrolled .navbar{
  height: calc(70px * var(--header-shrink));
}

.header.header--scrolled #logo{
  height: calc(25px * var(--header-shrink));
}

.header.header--scrolled #emblem{
  height: calc(80px * var(--header-shrink));
}

.header.header--scrolled .icons{ height: 23px; }
.header.header--scrolled .minicons{ height: 18px; }

.topbar { 
    display: flex;
    align-items: center;
    background-color: #000;
    color: #e5e5e5;
    height: 30px;
    font-size: 14px;
}

.navbar {
    display: flex;
    align-items: center;
    background-color: #ffffff00;
    height: 80px; 
}


/* =========================
   Megamenu
========================= */

.megamenu {
  display: none;
  width: 100%;
  padding-top: 20px;
  background-color: #ffffff;
  height: 500px;
    border-bottom: 1px solid var(--color-border);
}

.megamenu .col {
  gap: 0px;
}

.megamenu.active {
  display: flex;
  justify-content: center;
  position: fixed;

}

.header.megamenu-open {
  background-color: #ffffff;
}


/* =========================
   Footer
========================= */

.footer {
  border-top: 1px solid #555;
    padding-top: 50px;
    height: 100%;
    overflow: hidden;
    color: var(--color-text);
}

.footer .col{
    height: 350px;
    gap: 10px;
    width: 25%;
}

@media screen and (max-width: 599px) {
  .footer .col{
    width: 50%;
  }
}



.copyright { 
    display: flex;
    align-items: center;
    background-color: #000;
    color: #e5e5e5;
    height: 30px;
    font-size: 14px;
}

.copyright .container { 
  padding: 0px;
}

.canvas {
    max-height: 100%;
    max-width: 100%;
}

#secure { 
  height: 60px;
  margin-top: 20px;
}

#apple {
  height: 40px;
    margin-top: 20px;
}

#android { 
    height: 40px;
}

/* =========================
   Modals
========================= */

.modal{
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100vh;

    background: white;
    z-index: 999;

    transition: right 0.35s ease;
    box-shadow: -10px 0 25px rgba(0,0,0,0.15);

    padding: 30px;
    overflow-y: auto;
}


.modal{
    position: fixed;
    top: 0;
    right: -420px;

    width: 420px;
    height: 100vh;

    background: #fff;
    z-index: 9998;

    transition: right .35s ease;

    box-shadow: -10px 0 25px rgba(0,0,0,.15);

    overflow-y: auto;
    padding: 30px;
}

.modal.active{
    right: 0;
}

/* overlay with frozen glass */
.modal-overlay{
    position: fixed;
    inset: 0;
    z-index: 9997;

    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(17.3px);
    -webkit-backdrop-filter: blur(17.3px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* lock scroll when modal open */
body.modal-open{
    overflow: hidden;
}

.modal-trigger{
    cursor: pointer;
    display: flex;
    align-items: center;
}

.modal-trigger img{
    transition: opacity .2s ease;
}

.modal-trigger:hover img{
    opacity: 0.70;
    transform: scale(0.95);
}

@media (max-width: 599px) {
  .row {
    flex-wrap: wrap;
  }
  img {
    border-radius: 0%!important;
  }
  .container {
    padding: 20px;
  }
  h1 {
    line-height: 60px;
  }
  :root{
    --bg-image: url('../../assets/images/mobile.webp');
  }
  .modal.active { 
    width: 100%;
  }  

  
}

.onavi { 
  color: #ff5e00;
}

.onavi a {
  font-weight: 999;
  font-size: 25px;
}

.button4 {
  z-index: 999;
    min-width: 100px;
    width: 100%;
    height: 40px;
    position: relative;
    font-family: inherit;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.05em;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    background: linear-gradient(to right, #8e2de2, #4a00e0);
    color: #ffffff;
    overflow: hidden;
        transition: transform 0.1s ease-in-out;
}

.button4 .minicons { 
  margin-bottom: 2px;
  margin-right: 10px;
}

.button4 span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
    display: inline-flex;
    align-items: center;
    padding: 5px;
}
.button4::before,
.button4::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.button4::before {
    content: "";
    background: #000;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
.button4:hover::before {
    transform: translate3d(100%, 0, 0);
               
}
 .button4:hover{
    transform: scale(0.95);
 }
.button4:active {
    transform: scale(0.95);
}

#quantity {
  border: none;
}

.button5 {
  text-align: center;
  vertical-align: middle;
    width: 100%;
    height: 40px;
    position: relative;
    font-family: inherit;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.05em;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    background: linear-gradient(to right, #8e2de2, #4a00e0);
    color: #ffffff;
    overflow: hidden;
        transition: transform 0.1s ease-in-out;
}

.button5 .minicons { 
  margin-bottom: 2px;
  margin-right: 10px;
}

.button5 span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
    display: inline-flex;
    align-items: center;
    padding: 5px;
}
.button5::before,
.button5::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.button5::before {
    content: "";
    background: #8a8a8a;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
}
.button5:hover::before {
    transform: translate3d(100%, 0, 0);
               
}
 .button5:hover{
    transform: scale(0.95);
 }
.button5:active {
    transform: scale(0.95);
}


.tabs { 
  font-weight: 600;
  color: #541081;
}

.mobile { 
    display: none;
}

/* Mobile: < 600px */
@media (max-width: 1310px){

  .desktop{
    display: none;
  }
  .mobile{
    display: block;
  }

  #logo { 
    height: 25px;

}

}

.g_id_signin {
  width: 100%;
}

.form-error {
  display: block;
  color: #e53935;
  font-size: 0.85rem;
  margin-top: 6px;
  min-height: 18px;
}

.password-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.password-wrap input {
  width: 100%;
  padding-right: 40px;
}

.toggle-password {
  position: absolute;
  right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  opacity: 0.7;
}

.toggle-password:hover {
  opacity: 1;
}

.close-modal {
  transition: transform 0.3s ease;
}

.close-modal:hover {
  transform: rotate(90deg);
}

.remove-modal {
  transition: transform 0.6s ease;
}

.remove-modal:hover {
  transform: rotate(360deg);
}
/* =========================
   Shop Page
========================= */

.shop {
  border-top: 1px solid var(--color-border);
  height: 100%;
  padding-top: 50px;
  margin-bottom: 100px;
}

.filters {
    cursor: pointer;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    padding: 5px;
    margin: 10px;
    width: 160px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    justify-content: center;
}

.filters.active {
    font-weight: 700;
    background: #00020a;
    background: linear-gradient(to right, #8e2de2, #4a00e0);
    color: #fff;
}

.filters2 {
    cursor: pointer;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    padding: 0px;
    margin: 5px;
    width: 120px;
    font-size: 12px;
    font-weight: 400;
    display: flex;
    justify-content: center;
}

.filters2.active {
    font-weight: 700;
    background: #00020a;
    background: linear-gradient(to right, #8e2de2, #4a00e0);
    color: #fff;
}

.products {
  display: flex;
}

.product-grid,
.products.product-grid {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 10px;
}

@media (min-width: 1100px) {

  .product-grid,
  .products.product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

.product-card {
    padding: 10px;
    display: flex;
    color: inherit;
    text-decoration: none;
    border-radius: 20px;
    flex-direction: column;
    justify-content: space-between;
}

.product-card .meta {
  padding: 10px 12px 14px;
}

.product-card:hover {
box-shadow: inset rgba(0, 0, 0, 0.08) 0px 4px 12px;
}

.product-card:hover .badge{
  display: block;
} 

.products a:hover{
    opacity: 0.90;
    transform: scale(1);
}

.product-card .brand {
font-weight: 700;
  font-size: 16px;
  text-transform: capitalize;
}

.gthumb {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
}

.product-card .thumb {
  aspect-ratio: 4/5;
  background: #f7f7f7;
  overflow: hidden;
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.name {
  font-weight: 400;
  font-size: 14px;
  text-transform: capitalize;
}

.product-card .price {
  font-weight: 800;
  font-size: 15px;
}

.pg {
  width: 100%;
  user-select: none;
}

.pg-viewport {
  position: relative;
  width: 100%;
  max-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  overflow: hidden;
  touch-action: pan-y;
}

.pg-viewport img {
  position: relative;
  z-index: 1;
  max-height: 50vh;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: opacity 180ms ease, transform 200ms ease;
  pointer-events: none;
}

.pg-viewport:hover img {
  transform: scale(1.005);
}

.pg-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 40px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0);
  color: #000000;
  font-size: 22px;
  line-height: 40px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background .15s, transform .1s, opacity .15s;
}

.pg-prev {
  left: 10px;
}

.pg-next {
  right: 10px;
}

.pg-nav:hover {
  background: rgba(17, 17, 17, 0.068);
}

.pg-nav:active {
  transform: translateY(-50%) scale(.97);
}

.pg-nav[disabled] {
  opacity: .35;
  cursor: not-allowed;
}

.pg--single .pg-nav,
.pg--single .pg-progress {
  display: none;
}

.pg-progress {
  margin-top: 14px;
  position: relative;
  width: 100%;
  height: 14px;
}

.pg-progress-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: #e5e5e5;
  transform: translateY(-50%);
  border-radius: 9999px;
}

.pg-progress-thumb {
  position: absolute;
  top: 50%;
  height: 2px;
  background: #111;
  transform: translateY(-50%);
  border-radius: 9999px;
  transition: left 200ms ease, width 200ms ease;
}

.related {
  margin-top: 50px;
  margin-bottom: 100px;
  width: 100%;
}

.rel-title {
  margin: 10px;
  font-weight: 600;
  font-size: 20px;
}

.rel-wrap {
  position: relative;
}

.rel-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2px 2px 8px;
  -webkit-overflow-scrolling: touch;
}

.rel-card {
  flex: 0 0 180px;
  scroll-snap-align: start;
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.rel-thumb {
  position: relative;
  aspect-ratio: 4/5;
  background: #f7f7f7;
}

.rel-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rel-thumb img.hover {
  opacity: 0;
  transition: opacity .25s;
}

.rel-card:hover .rel-thumb img.hover {
  opacity: 1;
}

.rel-meta {
  padding: 10px 12px 12px;
}

.brand {
  font-weight: 700;
  font-size: 15px;
}

.rel-name {
  font-size: 13px;
  margin-top: 2px;
}

.rel-price {
  font-weight: 800;
  margin-top: 6px;
}

.rel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 34px;
  width: 34px;
  border: none;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0);
  color: #000000;
  font-size: 18px;
  line-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.rel-prev {
  left: -6px;
}

.rel-next {
  right: -6px;
}

.pagination {
  margin: 24px 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination a,
.pagination span {
  padding: 6px 10px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
}

.pagination .current {
  background: #111;
  color: #fff;
  border-color: #111;
}


        .product-grid .product-card { position: relative; }

        .product-grid .fav-heart {
          position: absolute; top: 8px; right: 8px;
          width: 28px; height: 28px; cursor: pointer;
          display: flex; align-items: center; justify-content: center;
          z-index: 3; user-select: none;
        }
        .product-grid .fav-heart img { width: 24px; height: 24px; pointer-events: none; }

        /* Badges */
        .product-grid .badges{
          position: absolute;
          top: 5px; left: 5px;
          display: flex;
          flex-direction: column;
          gap: 6px;
          z-index: 2;
          pointer-events: none;
        }
        .product-grid .badge{
          display: none;
          font-size: 10px;
          font-weight: 600;
          line-height: 1;
          padding: 6px 8px;
          border-radius: 5px;
          background: rgba(0,0,0,.78);
          color: #fff;
          letter-spacing: .2px;
          width: fit-content;
          max-width: 140px;
          overflow: hidden;
          text-overflow: ellipsis;
          white-space: nowrap;
        }
        .product-grid .badge.sale{ background: #cccccc; }
        .product-grid .badge.new{ background: #cccccc; }
        .product-grid .badge.trending{ background: #cccccc; }

        /* Price row */
        .price-row{
          display: flex;
          align-items: baseline;
          gap: 5px;
          flex-wrap: wrap;
        }
        .price-old{
          font-size: 12px;
          color: #b33636;
          text-decoration: line-through;

        }
  .price-now{
  font-weight: 700;
  font-size: 15px;
        }

        .prodpod {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  width: 100%;
  margin: 10px;
  text-decoration: none;
  color: inherit;
  transition: transform .22s ease, box-shadow .22s ease;
  will-change: transform;
  position: relative;
}

.podthumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;       
  overflow: hidden;
  background: #fff;
  border-radius: 12px;
}

.podthumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;         
  display: block;
  transition: opacity .25s ease;
}

.podthumb img.hover { opacity: 0; }

@media (hover:hover) and (pointer:fine) {
  .prodpod:hover { transform: scale(1.05); z-index: 2; }
  .prodpod:hover .podthumb img.base { opacity: 0; }
  .prodpod:hover .podthumb img.hover { opacity: 1; }
}

@media (max-width: 1000px) {
  .prodpod { max-width: 180px; }
    .shop {
    padding-top: 0px;
  }
}

.product-card .thumb {
  position: relative;
}

.product-card .thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card .thumb img.base {
  opacity: 1;
}

.product-card .thumb img.hover {
  opacity: 0;
  transition: opacity .25s ease;
}

.product-card:hover .thumb img.base {
  opacity: 0;
}

.product-card:hover .thumb img.hover {
  opacity: 1;
}

#deliveryView p{
  margin-bottom: 10px;
}

.swatch { 
    display: inline-block;
    position: relative;
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    background-size: cover;
    border: 1px solid var(--color-border);
}

.accordion {
  font-weight: 400;
  cursor: pointer;
  transition: 0.4s;
}

.accordion:hover {
    opacity: 0.80;
    transform: scale(0.97);
}

#deliveryEdit {
  margin-top: 50px;
}

.panel {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 10px;
  margin-top: 0;
  margin-bottom: 0;
  transition:
    max-height 0.3s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.25s ease,
    padding 0.25s ease,
    margin 0.25s ease;
}

.panel.open {
  max-height: 80vh;
  opacity: 1;
  padding: 10px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.accordion::after {
  content: "";
  width: 14px;
  height: 14px;
  float: right;
  background: url("../icons/down.png") no-repeat center;
  background-size: contain;
  transition: transform 0.5s ease;
}

.accordion.active::after {
 transform: rotate(180deg);
}

.modcard {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}

.favorites-list {
  display: flex;
  flex-direction: column;
}

.favorite-item .favorite-thumb {
  width: 100px;
  flex: 0 0 100px;
}

.favorite-item .favorite-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.favorite-item .favorite-info {
  flex: 1;
}


.cart-list {
  display: flex;
  flex-direction: column;
}

.cart-item .favorite-thumb {
  width: 100px;
  flex: 0 0 100px;
}

.cart-item .favorite-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.cart-item .favorite-info {
  flex: 1;
}



.remove-favorite-btn {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}

.fav-icon-wrap {
  position: relative;
}

.fav-count {
  display: flex;
  justify-content: center;
  vertical-align: middle;
  top: 12px;
  left: 21px;
  width: 18px;
  height: 18px;
  position: absolute;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  background-color: #000;
  border-radius: 50%;
}

.fav-count a{
  margin-top: -1px;
}

.cart-icon-wrap {
  position: relative;
}

.cart-count {
  display: flex;
  justify-content: center;
  vertical-align: middle;
  top: 12px;
  left: 21px;
  width: 18px;
  height: 18px;
  position: absolute;
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  background-color: #000;
  border-radius: 50%;
}

.cart-count a{
  margin-top: -1px;
}

.grey { 
  background-color: #eeee;
  border-radius: 20px;
}

.gallery {
  display: flex;
  flex-wrap: nowrap;
}

.product-gallery {
  width: 100%;
}

.main-gallery {
  position: relative;
  width: 100%;
}

.main-image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.main-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}

.main-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

.gallery-arrow,
.thumb-arrow {
  border: 0;
  cursor: pointer;
  z-index: 5;
    font-size: 16px;
  background-color: transparent;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  background-color: transparent;
}

.gallery-arrow.prev {
  left: 10px;
}

.gallery-arrow.next {
  right: 10px;
}

.thumbs-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.thumbs-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  flex: 1;
}

.thumbs-track::-webkit-scrollbar {
  display: none;
}

.gthumb {
  flex: 0 0 auto;
  cursor: pointer;
  opacity: .7;
  transition: opacity .25s ease;
}

.gthumb.active,
.gthumb:hover {
  opacity: 1;
}

.remove-cart-btn {
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.remove-cart-btn img {
  display: block;
}

.remove-cart-btn:focus,
.remove-cart-btn:active {
  outline: none;
  box-shadow: none;
}

.size-error {
  color: #c62828;
  font-size: 14px;
  margin-top: 6px;
}

.select-error {
  border: 1px solid #c62828 !important;
  box-shadow: 0 0 0 1px #c62828 inset;
}

/* PRODUCT PAGE MOBILE FIX */
@media (max-width: 768px) {
  .product-gallery,
  .main-gallery,
  .main-image-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .main-slide,
  .main-slide.active {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .product-gallery .canvas {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .thumbs-wrap {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }

  .thumbs-track {
    min-width: 0;
    max-width: 100%;
  }

  .gthumb {
    width: 70px;
    max-width: 70px;
    height: auto;
  }

  .container > .row.gap {
    flex-direction: column;
  }

  .container > .row.gap > .row {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .container > .row.gap .col {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
}