.artemis__clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;

  overflow: hidden;
  text-overflow: ellipsis;

  overflow-wrap: anywhere;

  line-height: 1.2;
  max-height: calc(1em * 1.2 * 2);
}

.artemis__hide-member {
  .entry:nth-child(n + 4) {
    display: none;
  }

  &.is-expanded {
    .entry {
      display: flex;
    }
  }
}

.artemis__team-show-more {
  justify-content: center;
}

@media (min-width: 1200px) {
  .why-choose .entry .title {
    position: relative;
    top: 50%;
    translate: 0 -50%;
  }

  .why-choose .entry:hover .title {
    translate: 0 0;
    top: 0;
  }
}

@media (min-width: 992px) {
  .about-intro .main-video {
    height: max(600px, 50vh);
  }
}

@media (min-width: 1400px) {
  .about-intro .main-video {
    height: max(600px, 80vh);
  }
}

.about-vision {
    background-color: #fff;
}

.about-vision-inner {
    max-width: 1080px;
    margin: 0 auto;
    text-align: left;
}

.about-vision-inner .badge {
    margin-bottom: 12px;
}

.about-vision-inner .display-2 {
    margin-bottom: 20px;
}

.about-vision-inner .neutral-4.body-large {
    max-width: 720px;
}

.about-vision-media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
}

.goCheckLocation {
 align-self: flex-start;
    width: auto;
}

.rb-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.rb-popup.show {
    opacity: 1;
    visibility: visible;
}
.rb-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}
.rb-popup__box {
    position: relative;
    max-width: 460px;
    width: 90%;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    padding: 32px 28px 24px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.16);
    text-align: center;
}
.rb-popup__close {
    position: absolute;
    top: 8px;
    right: 12px;
    border: 0;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}
.rb-popup__text {
    margin-bottom: 20px;
}
.rb-popup__download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding-inline: 18px;

}

.main-contact-form .input-group select {
    font-size: 16px;
    display: block;
    width: 100%;
    padding: 12px;
    min-height: 56px;
    position: relative;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0);
    outline: none;
    border: none;
}

.main-contact-form .input-group.error {
  border-color: red !important;
}

.main-contact-form .input-group.has-border select {
    border: none;
}

.hidden-contact-form {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    z-index: 9999;
}

.hidden-contact-form .inner {
    max-height: 100vh;
    overflow-y: auto;
}

.home-hero .hero-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.home-hero .hero-video-wrapper iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250%;
    height: 250%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.home-hero {
    touch-action: pan-y;
}

.home-hero .swiper-wrapper {
    pointer-events: none;
}

@media (min-width: 1200px) {
    .home-hero .hero-video-wrapper iframe {
        width: 120%;
        height: 120%;
    }
}

.input-group-select .label {
    display: none;
}

.select-dropdown {
   position: relative;
   width: 100%;
}

.select-dropdown .dropdown {
    display: block;
    width: 100%;
    padding: 12px;
    min-height: 56px;
    position: relative;
    z-index: 4;
    background-color: #fff;
    outline: none;
    border: none;
}

.select-dropdown .dropdown-label {

   display: inline-flex;
   align-items: center;
   column-gap: 0.5rem;
   width: 100%;
   color: #4F4B41;
   user-select: none;
   justify-content: space-between;
}

.select-dropdown .dropdown-text {
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: nowrap;
}

.select-dropdown .dropdown-menu {
   position: absolute;
   top: calc(100% + 0.3rem);
   left: 0;
   z-index: 4;
   width: 100%;
   max-height: 260px;
   overflow-y: auto;
   text-align: start;
   transform: scaleY(0);
   transform-origin: top;
   border-radius: 0.25rem;
   background-color: #fff;
   border: 1px solid #29abe2;
   transition: all 0.18s ease;
}

.select-dropdown .dropdown-item {
   padding-block: 0.5rem;
   padding-inline: 1rem;
   cursor: pointer;
   transition: all 0.15s ease;
}
.select-dropdown .dropdown.is-active + .dropdown-menu,
.select-dropdown .dropdown.is-active .dropdown-menu {
   transform: scaleY(1);
}

.find-a-dealer-form .input-group-select {
    position: relative;
    overflow: visible;
    z-index: 10;
}

.find-a-dealer-form .select-dropdown.simple-dropdown .dropdown-menu {
    position: absolute;
    top: calc(100% + 0.3rem);
    left: 0;
    width: 100%;
    max-height: 260px;
    overflow-y: auto;
    text-align: start;
    border-radius: 0.25rem;
    background-color: #fff;
    border: 1px solid #29abe2;

    z-index: 5;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;

    transform: none !important;
}

.find-a-dealer-form .select-dropdown.simple-dropdown.is-open .dropdown-menu {
    display: block;
}

.label-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%
}



/* Form Success Popup - Global Component */
.form-success-popup {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    pointer-events: none;
}

.form-success-popup.is-open {
    pointer-events: auto;
}

.form-success-popup.is-open {
    opacity: 1;
    visibility: visible;
}

.form-success-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.form-success-popup__container {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 480px;
    margin: 0 auto;
}

.form-success-popup__content {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    padding: 48px 32px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-success-popup.is-open .form-success-popup__content {
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-success-popup__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #454545;
    font-size: 28px;
    line-height: 1;
    padding: 0;
    transition: color 0.2s ease;
}

.form-success-popup__close:hover {
    color: #29ABE2;
}

.form-success-popup__close:focus {
    outline: 2px solid #29ABE2;
    outline-offset: 2px;
    border-radius: 4px;
}

.form-success-popup__icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    animation: popIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.form-success-popup__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: #0a0a0a;
    margin: 0 0 16px 0;
    padding: 0;
}

.form-success-popup__message {
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    padding: 0;
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .form-success-popup__content {
        padding: 40px 24px 24px;
        border-radius: 10px;
    }

    .form-success-popup__title {
        font-size: 20px;
    }

    .form-success-popup__message {
        font-size: 15px;
    }

    .form-success-popup__close {
        width: 28px;
        height: 28px;
        font-size: 24px;
        top: 8px;
        right: 8px;
    }
}

.ourcat-hero{
  margin-top: 40px;
}

.ourcat-hero__row{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0;
  width: 100%;
}

.ourcat-hero__left{
  flex: 1 1 auto;
  min-width: 0;
}
.ourcat-hero__right{
  flex: 0 0 auto;
  margin-left: 0;
}

.ourcat-hero__right .mega-button{
  width: auto !important;
  display: inline-flex !important;
  white-space: nowrap;
}

/* Mobile: xếp dọc */
@media (max-width: 1023px){
  .ourcat-hero__row{
    flex-direction: column;
    align-items: flex-start;
  }
}

.ourcat-list{
  padding-top: 100px;
}

.ourcat-container{
  margin: 100px 0px;
}

.ourcat-layout{
 display: flex;
align-items: flex-start;
gap: 48px;
align-self: stretch;
}

.blog-categories{
    display: flex;
padding-bottom: 24px;
flex-direction: column;
align-items: flex-start;
gap: 24px;
align-self: stretch;
}

.filter-categories{
    display: flex;
width: 322px;
flex-direction: column;
align-items: flex-start;
}
/* filter */
.ourcat-filter__title{
    display: flex;
justify-content: space-between;
align-items: flex-end;
align-self: stretch;
flex: 1 0 0;
color: var(--neutral-8, #454545);
font-family: var(--font-family-primary, "SF Pro");
font-size: var(--font-size-h-2, 42px);
font-style: normal;
font-weight: var(--font-weight-regular, 400);
line-height: var(--font-line-height-h-2, 50px);
letter-spacing: var(--font-tracking-h-2, -0.8px);}


.ourcat-filter{
    display: flex;
width: 322px;
flex-direction: column;
align-items: flex-start;
}
.ourcat-filter__block{
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(0,0,0,.08);
}
.ourcat-filter__head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.ourcat-filter__clear{
  border: 0;
  background: transparent;
  padding: 0;
}
.ourcat-filter__options{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.ourcat-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-list{
    display: flex;
flex-direction: column;
align-items: flex-start;
gap: 24px;
flex: 1 0 0;
}



.product-list__top{
 display: flex;
height: 100px;
flex-direction: column;
justify-content: flex-end;
align-items: flex-start;
gap: 8px;
align-self: stretch;
}

.product-list__results{
    display: flex;
justify-content: space-between;
align-items: center;
align-self: stretch;
}

.product-list__tags{
display: flex;
align-items: flex-start;
align-content: flex-start;
gap: 8px;
align-self: stretch;
flex-wrap: wrap;
}
.product-list__resultsmeta{
display: flex;
padding: 4px 0;
justify-content: center;
align-items: center;
gap: 4px;
}

.product-card{
    display: flex;
align-items: center;
align-content: center;
gap: 24px;
align-self: stretch;
flex-wrap: wrap;
}

.ourcat-card{
    display: flex;
min-width: 460px;
flex-direction: column;
align-items: center;
gap: 12px;
flex: 1 0 0;
border-radius: 12px;
border: 1px solid var(--neutral-alpha-2, rgba(10, 10, 10, 0.20));
}

.ourcat-card__img{
    display: flex;
height: 378px;
align-items: flex-start;
gap: 8px;
align-self: stretch;
overflow: hidden;
border-radius: 12px 12px 0 0;

}

.ourcat-card__thumb{
    width: 483px;
align-self: stretch;
   border-radius: 12px 12px 0 0;
background: rgba(0, 0, 0, 0.10);
}

.ourcat-card__body{
    display: flex;
padding: 0 24px 24px 24px;
flex-direction: column;
align-items: flex-start;
gap: 24px;
align-self: stretch;
}

.ourcat-card__infor{
    display: flex;
flex-direction: column;
align-items: flex-start;
gap: 8px;
align-self: stretch;
min-height: 152px;
}

.ourcat-card__row{
    display: flex;
justify-content: space-between;
align-items: center;
align-self: stretch;
}

.ourcat-card-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.ourcat-card-gallery .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E9E9E9;
}
.ourcat-card-gallery .ourcat-card__thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    display: block;
}
.ourcat-gallery-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 8px;
    pointer-events: none;
    z-index: 10;
}
.ourcat-gallery-prev,
.ourcat-gallery-next {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: background 0.2s, opacity 0.2s;
    opacity: 0;
}
.ourcat-card-gallery:hover .ourcat-gallery-prev,
.ourcat-card-gallery:hover .ourcat-gallery-next {
    opacity: 1;
}
.ourcat-gallery-prev:hover,
.ourcat-gallery-next:hover {
    background: #fff;
}
.ourcat-gallery-prev.swiper-button-disabled,
.ourcat-gallery-next.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
.ourcat-gallery-pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 10;
}
.ourcat-gallery-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}
.ourcat-gallery-pagination .swiper-pagination-bullet-active {
    background: #454545;
}
.product-card .ourcat-card {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
    min-width: 0;
}

/* 1 column on tablet/mobile */
@media (max-width: 991px) {
    .product-card .ourcat-card {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.ourcat-card .swiper-wrapper {
    width: 100%;
}

.ourcat-card .swiper-slide {
    width: 100% !important;
}

.ourcat-card-gallery,
.ourcat-card-gallery .swiper-wrapper,
.ourcat-card-gallery .swiper-slide{
  width: 100%;
  height: 100%;
}

.ourcat-card__actions{
display: flex;
align-items: center;
gap: 8px;
align-self: stretch;
}

.ourcat-card__actions .mega-button{
  flex: 1 1 auto;
  min-width: 0;
  height: 48px;
  padding: 12px 24px;
  border-radius: 99px;
  justify-content: space-between;
  gap: 12px;
    color: #fff !important;
    font-weight:  500;

}

.ourcat-card__actions .mega-button > span:first-child{
  white-space: nowrap;
}

.ourcat-card__actions .mega-button .icon{
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  border-radius: 999px;
      display: inline-flex;
  align-items: center ;
  justify-content: center;
  line-height: 0;
  position: relative;
  top: 0 ;
}

.ourcat-card__actions .mega-button .icon svg{
  width: 24px;
  height: 24px;
    color: #fff !important;
    position: relative;
    transform: translateX(15px);
}

.ourcat-card__actions .ourcat-btn--ghost{
   height: 48px;
  padding: 12px 24px;
  border-radius: 99px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  background: #fff;
  border: 1px solid rgba(10,10,10,.20);
  color: #454545;
  text-decoration: none;
  white-space: nowrap;
  flex: 0 0 auto;
}

.ourcat-card__actions .mega-button .icon svg path{
  fill: #fff !important;
  stroke: #fff !important;
}

.ourcat-card__actions .mega-button .icon svg *{
  fill: #fff !important;
  stroke: #fff !important;
}
.ourcat-card__actions .ourcat-btn--ghost:hover{
  background: rgba(10,10,10,.04);
}

.ourcat-card__actions .ourcat-btn--ghost:focus-visible{
  outline: 2px solid #29ABE2;
  outline-offset: 2px;
}

.ourcat-card__label{
    color: #959595;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 24px;
letter-spacing: 0;
}

.ourcat-card__value{
    color: #454545;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px;
letter-spacing: 0;
}

.product-list__tags{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.ourcat-chip{


  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;

  padding: 4px 16px 4px 8px;
  height: 24px;

  border-radius: 99px;
  border: 1px solid rgba(41, 171, 226, 0.25);
  background: rgba(41, 171, 226, 0.10);

  font-size: 18px;
  line-height: 24px;
  font-weight: 400;

  color: #29ABE2;
  text-decoration: none;
  white-space: nowrap;
}

.ourcat-chip:hover{
  background: rgba(41, 171, 226, 0.16);
  border-color: rgba(41, 171, 226, 0.35);
}

.ourcat-chip__x{
display: flex;
width: 24px;
height: 24px;
justify-content: center;
align-items: center;
aspect-ratio: 1/1;
  color: #29ABE2;
}

.ourcat-chip__prefix{
    color: rgba(4, 155, 222, 0.39);
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px;
letter-spacing: 0;
}

.ourcat-chip__value {
  color: #29ABE2;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}


.ourcat-chip__close-icon{
  width: 16px;
  height: 16px;
  display: block;
}

#ourcat-filter-form .ourcat-check{
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  cursor: pointer;
  user-select: none;
  margin: 0;
}

#ourcat-filter-form .ourcat-check input[type="checkbox"]{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

#ourcat-filter-form .ourcat-check input[type="checkbox"] + .ourcat-check__icon{
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 2px solid #454545;
  border-radius: 4px;
  transition: 0.2s;
  box-sizing: border-box;
}

#ourcat-filter-form .ourcat-check input[type="checkbox"]:checked + .ourcat-check__icon{
  width: 18px;
  height: 10px;
  border-top: 0;
  border-right: 0;
border-left: 2px solid #29ABE2;
border-bottom: 2px solid #29ABE2;
  border-radius: 0;
  transform: rotate(-45deg);
}

#ourcat-filter-form .ourcat-check__text{
  position: relative;
  margin-left: 12px;
  color: #454545;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: 0;
  transition: 0.5s;
}
#ourcat-filter-form .ourcat-check input[type="checkbox"]:checked ~ .ourcat-check__text{
  color: #959595;
}

#ourcat-filter-form .ourcat-check input[type="checkbox"]:checked ~ .ourcat-check__text::before{
  transform: scaleX(1);
  transform-origin: left;
}

#ourcat-filter-form.ourcat-filter__options{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ourcat-filter__label{
font-size: 24px;
font-style: normal;
font-weight: 400;
line-height: 32px;
letter-spacing: -0.2px;
}

.ourcat-results__number{
  color: #29ABE2;
  text-align: right;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0;
}

@media (max-width: 991px){
  .ourcat-list{ padding-top: 40px; }
  .ourcat-container{ margin: 40px 0; }

  .ourcat-layout{
    flex-direction: column;
    gap: 24px;
  }

  .filter-categories,
  .product-list{
    width: 100%;
    max-width: 100%;
  }

  .filter-categories{ order: 0; }
  .product-list{ order: 1; }

  .filter-categories{
    padding: 18px 18px 16px;
    border: 1px solid rgba(10,10,10,.12);
    border-radius: 12px;
    background: #fff;
    align-items: stretch;
  }

  .blog-categories{
    padding-bottom: 14px;
    gap: 12px;
    align-items: stretch;
  }

  .ourcat-filter__title{
    margin: 0;
    width: 100%;
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -0.4px;
  }

  .ourcat-filter__block{
    margin-top: 16px;
    padding-top: 16px;
    width: 100%;
  }

  .ourcat-filter__head{ width: 100%; }

  #ourcat-filter-form.ourcat-filter__options{
    width: 100%;
    flex-direction: column;
    gap: 14px;
  }

  #ourcat-filter-form .ourcat-check{
    width: 100%;
    padding: 10px 0;
  }

  #ourcat-filter-form .ourcat-check__text{
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
  }

  .ourcat-hero__row h1{
    margin-bottom: 16px !important;
  }

  .ourcat-hero__right{ margin-top: 6px; }

  .ourcat-hero__right .mega-button{ margin-top: 8px; }

  .product-card{ gap: 16px; }

  .ourcat-card__img{ height: 240px; }

  .ourcat-card__label,
  .ourcat-card__value{
    font-size: 16px;
    line-height: 24px;
  }
}
.product-card {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch !important;
}


.product-card > .ourcat-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card > .ourcat-card > .ourcat-card__img {
    flex: 0 0 378px;
    height: 378px;
    min-height: 378px;
}
.product-card > .ourcat-card > .ourcat-card__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.product-card > .ourcat-card .ourcat-card__infor {
    flex: 1 1 auto;
}
.product-card > .ourcat-card .ourcat-card__actions {
    margin-top: auto;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .product-card {
        align-items: flex-start;
    }

    .product-card .ourcat-card {
        height: auto;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .product-card .ourcat-card__img {
        flex: 0 0 240px;
        height: 240px;
        min-height: 240px;
    }

    .product-card .ourcat-card__body {
        flex: 0 0 auto;
    }

    .product-card .ourcat-card__infor {
        flex: 0 0 auto;
        min-height: 0;
    }

    .product-card .ourcat-card__actions {
        margin-top: 0;
    }

    .ourcat-card__actions .mega-button .icon {
        position: static;
        margin-left: auto;
        overflow: visible;
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        min-width: 24px;
        min-height: 24px;
    }

    .ourcat-card__actions .mega-button .icon svg {
        width: 24px;
        height: 24px;
        display: block;
        overflow: visible;
    }

    .ourcat-card__actions .mega-button .icon svg.n1 {
    display: none;
}

.ourcat-card__actions .mega-button .icon svg.n2{
    display: block;
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}
}

@media (max-width: 419px) {
    .ourcat-card__actions .mega-button .icon {
        display: none;
    }
}
