/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 4.5rem;
  

  /*========== Colors ==========*/
  --black-color: hsl(0, 0%, 100%);
  --black-color-light: hsl(0, 0%, 100%);
  --black-color-lighten: hsl(0, 0%, 100%);
  --white-color: #000000;
  --body-color: hsl(0, 0%, 100%);
  --green-color: rgb(52, 207, 52);
  --red-color: rgb(255, 0, 0);
  --blue-color: rgb(0, 195, 255);

  /*========== Font and typography ==========*/
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0px;
  margin: 0;
  padding: 0;
}

 body {
  max-width: 100%;
  overflow-x: hidden; /* stop sideways scroll */
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}


#logo {
  width:140px;
  height: auto;
  z-index: 3;
}
@media (max-width: 1115px) {
  #logo {
    width:125px;
    height: auto;
    z-index: 5;
  }
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 90%;
  margin-inline: 1.5rem;
}

/*=============== HEADER ===============*/
.header {
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--black-color);
  box-shadow: 0 2px 16px hsla(220, 30%, 8%, .2);
  z-index: var(--z-fixed);
  border-bottom: 2px solid var(--red-color);
}

@media (max-width:900px) {
  .header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--black-color);
  box-shadow: 0 2px 16px hsla(220, 30%, 8%, .1);
  z-index: var(--z-fixed);
   border-bottom: 3px solid rgb(255, 0, 0);
}
}

/*=============== NAV ===============*/
.nav {
  height: var(--header-height);
}

.nav__logo, 
.nav__burger, 
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  column-gap: .25rem;
  font-weight: var(--font-semi-bold);
}

.nav__logo i {
  font-weight: initial;
  font-size: 1.25rem;
}

.nav__toggle {
  position: relative;
  width: 45x;
  height: 45px;
  margin-right:8%;
}

.nav__burger, 
.nav__close {
  position: absolute;
  width: max-content;
  height: max-content;
  inset: 0;
  margin: auto;
  font-size: 1.55rem;
  cursor: pointer;
  transition: opacity .1s, transform .4s;
}

.nav__close {
  opacity: 0;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1050px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    pointer-events: none;
    opacity: 0;
    transition: top .4s, opacity .3s;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--black-color);
    padding-top: 1rem;
    padding-bottom:130%;

  }
}
/* Navigation Menu */
.nav__link {
  color: var(--white-color);
  background-color: var(--black-color);
  font-weight: var(--font-semi-bold);
  padding: 0.90rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
}

.nav__searchbar {
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color .3s;
  outline : none;
}



@media (max-width:1118px){
  .nav__searchbar {
    display:none;
  }
}

.searchbar__style {
  border: 1.5px solid rgb(109, 109, 109);
  border-radius:999px;
  padding: 0.5rem 2rem;
  outline : none;

}

#navSuggestions {
  position: absolute;
  top: calc(80% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  width: 260px;
  max-height: 240px;
  overflow-y: auto;
  z-index: 1001;                      /* header is z=100 */
  display: none;                      /* JS toggles this */
}

#navSuggestions ul { list-style: none; margin: 0; padding: 0; }
#navSuggestions li { padding: 8px 12px; cursor: pointer; font-size: .9rem; }
#navSuggestions li:hover { background: #f5f5f5; }

.searchbar__style p{
  margin:0;
  font-size:0.8rem;
}

.nav__link:hover {
  background-color: #ff4646;
  transition: 0.2s;
  color:white;
}

@media (max-width: 1115px) {
  #HomeMobile {
    margin-top:30px;;
  }
}

.show-menu {
  opacity: 1;
  top: 3.5rem;
  pointer-events: initial;
}

.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}
.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform .4s;
}

.dropdown__link, 
.dropdown__sublink {
  padding: 0.80rem 1.25rem 0.90rem 1.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  text-align: center;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

#dropdown__sublink__print img {
  display: block;
  width: 50px;
  height: auto;
}

#dropdown__sublink__brand img {
  display: block;
  width: auto;
  height: 25px;
}

.sublink-img-printer {
  width: auto;     
  height: 26px;    
  display: block;  
  margin: 0 auto;  
}

.dropdown__link__sub {
  padding: 0.90rem 1.25rem 0.90rem 2.5rem;
  color: var(--white-color);
  background-color: var(--black-color-light);
  display: flex;
  align-items: center;
  column-gap: .5rem;
  font-weight: var(--font-semi-bold);
  transition: background-color .3s;
}

.dropdown__sublink
.dropdown__link__sub {
    font-size: 1.25rem;
    font-weight:bold;
    
}

.dropdown__link__sub {
  padding-inline: 1rem 1rem;
  width: 100%;
  white-space: nowrap;
}

.dropdown__link__sub i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link__sub:hover {
  background-color: #F8F9FA;
  transition: 0.2s;
  color:#ff2a2a;
}

.dropdown__link i, 
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover, 
.dropdown__sublink:hover {
  background-color: #fff8f8;
  transition: 0.2s;
  color:#ff2a2a;
}

  .dropdown__link, 
  .dropdown__sublink {
    padding-inline: 1rem 1rem;
    width: 100%;
    white-space: nowrap;
  }

  .dropdown__subitem .dropdown__link {
    padding-inline: 1rem;
  }

.dropdown__menu, 
.dropdown__submenu,
.dropdown__submenu__alt {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease-out;
  box-shadow: 0px 6px 12px hsla(220, 10%, 8%, .1);
  background-color: white;
  z-index: 2;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu, 
.dropdown__subitem:hover > .dropdown__submenu,
.dropdown__subitem:hover > .dropdown__submenu__alt {
  max-height: 1000px;
  transition: max-height .4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

/*=============== DROPDOWN SUBMENU ===============*/
.dropdown__add {
  margin-left: auto;
}

.dropdown__sublink {
  background-color: var(--black-color-lighten);
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container {
    margin-inline: 1rem;
  }

  .nav__link {
    padding-inline: 1rem;
  }
}

/* For large devices */
@media screen and (min-width: 1118px) {
  .container {
    margin-inline: auto;
  }

  .nav {
    height: calc(var(--header-height) + 2rem);
    display: flex;
    justify-content: space-between;
    
  }
  .nav__toggle {
    display: none;
  }
  .nav__list {
    height: 100%;
    display: flex;
    column-gap: 3rem;
  }
  .nav__link {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }
  .nav__searchbar {
    height: 100%;
    padding: 0;
    justify-content: initial;
    column-gap: .25rem;
  }

  .nav__link:hover {
    background-color: transparent;
    transition:0.3s;
    color:rgb(252, 0, 0);
  }

  .dropdown__item, 
  .dropdown__subitem {
    position: relative;
  }

  .dropdown__menu, 
  .dropdown__submenu__alt {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;

    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(8, auto); 
    grid-auto-columns: max-content;
    gap: .25rem 0;
    padding: .5rem 0;
  }

  .dropdown__submenu {
    max-height: initial;
    overflow: initial;
    position: absolute;
    left: 0;
    top: 6rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s, top .3s;

    /* === MULTI-COLUMN DROPDOWN === */
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(7, auto); 
    grid-auto-columns: max-content;
    gap: .25rem 0;
    padding: .5rem 0;
  }

  .dropdown__submenu {
    position: absolute;
    left: 100%;
    top: 0.5rem;
  }

  .dropdown__submenu__alt {
    position: absolute;
    left: 100%;
  }

  .dropdown__item:hover .dropdown__menu {
    opacity: 1;
    top: 5.5rem;
    pointer-events: initial;
    transition: top .3s;
  }

  .dropdown__subitem:hover > .dropdown__submenu,
  .dropdown__subitem:hover > .dropdown__submenu__alt {
    opacity: 1;
    top: 0;
    pointer-events: initial;
    transition: top .3s;
  }
}

@media screen and (max-width: 1118px) {
  .dropdown__menu,
  .dropdown__submenu,
  .dropdown__submenu__alt {
    display: block;
  }
}

    #textCarousel {
      text-align: center;
      background-color:white;
      border-radius:0px 0px 10px 10px;
      font-size: 20px;
      font-weight: bold;
      padding: 20px 0px 20px 0px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    @media screen and (max-width: 920px) {
    #textCarousel {
      font-size: 15px;
      font-weight: bold;
    }
}

    @media screen and (max-width: 720px) {
    #textCarousel {
      font-size: 15px;
      font-weight: bold;
      padding: 15px 30px 15px 30px;
    }
}

    @media screen and (max-width: 920px) {
    #textCarousel-2 {
      margin-top:75px;
    }
    .item-2 {
      margin-left: 0px;
      margin-right:0px;
    }
}

    @media screen and (max-width: 720px) {
    #textCarousel-2 {
      margin-top:75px;
    }
    .item-2 {
      margin-left: 0px;
      margin-right:0px;
    }
}

#textCarousel-2 {
  position: relative;
}

#textCarousel-2 .owl-dots {
  position: absolute;
  bottom: 15px; 
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
  
}

#textCarousel-2 .owl-dot {
  width: 8px;
  height: 8px;
  background-color: rgba(255,255,255,0.6);
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
  transform: scale(1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);

}

#textCarousel-2 .owl-dot.active {
  background-color: var(--red-color); 
  transform: scale(1.5);   
}


#textCarousel-2 .owl-dot:hover {
  transform: scale(1.3);
  background-color: var(--red-color);
  box-shadow: 0 3px 10px rgba(0,0,0,0.4);

}

.title-1 {
  font-size: 1.8rem;
  font-weight: bolder;
  margin: 2rem 0rem 1rem 5rem;
}

#middle-title-1 {
  margin:0rem;
  text-align: center;
}

#middle-title-1 p{
  font-size:1.4rem;
}

.title-1 a {
  display: block;
  font-size: 1rem;
  font-weight: normal;
  text-align:right;
  margin: 0rem 5rem 0rem 0rem;
  font-size:1rem;
  color:rgb(160, 160, 160);
  transition: 1s;
  font-weight:bold;
  text-decoration:underline;
  text-underline-offset:0.2rem;
}

.title-1 a:hover {
  color:#ff2a2a;
}

#textcarousel {
  width:90%;
  gap:20px;
}

.selection-box-1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.5s;
  text-align: center;
  margin-top:40px;
}

.selection-img {
  background-color: white;
  border-radius: 50%;  
  overflow: hidden;
  width: 90%;
  aspect-ratio: 1 / 1; 
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 7px 8px rgba(0,0,0,0.03);
}

.selection-img img {
  width:60% !important;
}

.selection-box-1 p {
  font-weight: bolder;
  margin: 0.8rem 0 1rem 0;
  color: black;
}

.selection-box-1:hover {
  transform: scale(1.1);
  cursor: pointer;
}

.break {
  display: none;
}

@media (max-width: 720px) {
  .break {
    display: inline;
  }
  #hide-dot {
  display:none;
}
}

@media (max-width: 480px) {
  .break {
    display: inline;
  }
  .title-secondary {
    font-size: 1.1rem;
  }
  #hide-dot {
  display:none;

}
}


@media (max-width: 1050px) {
  .selection-1 {
    grid-template-columns: repeat(4, 1fr); 
    grid-gap: 30px;
    margin: 2rem auto 4rem auto;
  }
  .title-1 {
    font-size: 1.8rem;
    margin: 2rem 0rem 2rem 5rem; 
  }
}

@media (max-width: 768px) {
  .selection-1 {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
  }

  .title-1 {
    font-size: 1.5rem;
    margin: 2rem auto 0rem auto;
    text-align: center;
  }
  .selection-img {
    width: 90%;
  }

  .selection-box-1 p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .selection-1 {
    grid-template-columns: repeat(2, 1fr); 
    grid-gap: 20px;
  }

  .title-1 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
  .title-1 a{
    margin: 1rem 2rem 0.5rem 0rem;
  }

  .selection-img {
    width: 95%;
  }

  .selection-box-1 p {
    font-size: 0.85rem;
  }
}

.carousel-wrapper {
  width: 90%;
  margin: 0 auto;
  position: relative
}

.item-3 {
  background: #fff;
  padding: 10px;
  height: 560px;
  margin-bottom:10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-top:1rem;
  border-radius:10px;
}

.item-3-2 {
  background: #fff;
  padding: 10px;
  height: 560px;
  margin-bottom:10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-top:1rem;
  border-radius:10px;
  width:301.575px;
}

.item-image {
  height: 150px;            
  width: 100%;
  margin: 0 auto;   
  display: flex;
  justify-content: center;  
  align-items: center;   
  overflow: hidden;    
}

.item-image img {
  max-height: auto;  
  max-width: 60%; 
  width: auto;
  height: auto;
  display: block;
}

.item-name {
  font-weight: bolder;
  font-size: 1rem;
  text-align: center;
}

.item-desc {
  font-size: 0.80rem;
  text-align: center;
  font-weight:normal;
  margin-top:5px;
  margin-bottom: 20px;
  color: #7c7c7c;
}

.item-texts p {
  margin: 6px 0;
  padding: 6px 10px;
  font-size:0.90rem;
  background-color: #e2f5fe;
  position: relative;
  text-align: left;
  display: flex;
  align-items: center;
  border-left: 4px solid #06c1f5; 
}


.item-texts .checkbar {
  width: 6px;
  height: 100%;
  margin-right: 8px;
  position: relative;
  flex-shrink: 0;
}

.item-texts .checkbar::after {
  content: "✔";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #06c1f5;
  font-size: 0.8rem;
}

.item-price {
  margin-top: 20px;
  text-align: left;
}

.price-ex {
  color: #d9090b;
  font-size: 2rem;
  margin-left:1rem;
  font-weight:bolder;
  font-family:sans-serif;
}
.item-button {
  position: absolute;
  bottom: 5%;        
  left: 50%;           
  transform: translateX(-50%); 
  text-align: center;
  margin-top: 0; 
}

.item-button a {
  display: inline-block;
  padding: 8px 18px;
  background-color: white;
  color: black;
  text-decoration: none;
  border: 2px solid black;
  border-radius: 99px;
  font-weight: bold;
  transition: 0.3s;
  font-size:0.8rem;
}

.item-button a:hover {
  background-color: black;
  color: white;
}

@media (max-width:720px) {
  .carousel-wrapper {
  width: 90%;
  margin: 0 auto;
  position: relative;
}


.item-3 {
  background: #fff;
  padding: 10px;
  height: 550px;
  margin-bottom:10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-top:1rem;
  border-radius:10px;
}

.item-image {
  height: 100px;            
  width: 100%;
  margin: 0 auto;   
  display: flex;
  justify-content: center;  
  align-items: center;   
  overflow: hidden;    
}

.item-image img {
  max-height: auto;  
  max-width: 50%; 
  width: auto;
  height: auto;
  display: block;
}

.item-name {
  font-weight: bolder;
  font-size: 0.90rem;
  text-align: center;
}

.item-desc {
  font-size: 0.80rem;
  text-align: center;
  font-weight:normal;
  margin-top:2px;
  margin-bottom: 15px;
  color: #7c7c7c;
}

.item-texts p {
  margin: 6px 0;
  padding: 5px 10px;
  font-size:0.80rem;
  background-color: #e2f5fe;
  position: relative;
  text-align: left;
  display: flex;
  align-items: center;
  border-left: 4px solid #06c1f5; 
}


.item-texts .checkbar {
  width: 6px;
  height: 100%;
  margin-right: 8px;
  position: relative;
  flex-shrink: 0;
}

.item-texts .checkbar::after {
  content: "✔";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: #06c1f5;
  font-size: 0.8rem;
}

.item-price {
  margin-top: 20px;
  text-align: left;
}

.price-ex {
  color: #d9090b;
  font-size: 1.4rem;
  margin-left:1rem;
  font-weight:bolder;
  font-family:sans-serif;
}

.price-inc {
  color: #080509;
  font-size: 1.4rem;
  margin-left:1rem;
  font-weight:bolder;
  font-family:sans-serif;
}

.item-button {
  position: absolute;
  bottom: 5%;        
  left: 50%;           
  transform: translateX(-50%); 
  text-align: center;
  margin-top: 0; 
}


.item-button a {
  display: inline-block;
  padding: 10px 10px;
  background-color: white;
  color: black;
  text-decoration: none;
  border: 2px solid black;
  border-radius: 999px;
  font-weight: bold;
  transition: 0.3s;
  font-size:0.8rem;
}

.item-button a:hover {
  background-color: black;
  color: white;
}

}

.circle-grid {
  display: grid;
  grid-template-columns: repeat(2, 7px);
  grid-template-rows: repeat(2, 7px);
  gap: 10px;
  margin-left:1rem;
  margin-top:10px;
}

.circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border: 0.5px solid rgb(165, 165, 165);
}

.black { background-color: black; }
.yellow { background-color: #fffb00; }
.magenta { background-color: #FF00FF; }
.cyan { background-color: #00BFFF; }
.lightcyan { background-color: #99FFFF; }
.lightmagenta { background-color: #FF99FF; }

#carousel-nav-3 {
  display: flex;
  gap: 10px;      
  margin-top: 0.6rem;
  justify-content: center;
  margin-bottom:5rem;
}

#carousel-nav-3 .owl-prev,
#carousel-nav-3 .owl-next {
  background-color: #ffffff; 
  color: var(--red-color);         
  padding: 0px 15px;
  border: none;
  font-size: 1.5rem;        
  transition: 0.3s;
  border-radius:99px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#carousel-nav-3 .owl-prev:hover,
#carousel-nav-3 .owl-next:hover {
  background-color: #ff9999; 
  color: darkred;
  cursor: pointer;
}

#carousel-nav-3 .owl-prev:focus,
#carousel-nav-3 .owl-next:focus {
  outline: none;
}

:root {
    --pp-gap: 3rem;
    --pp-radius: 5px;
    --pp-shadow: 0 6px 24px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.08);
    --pp-btn-bg: #0b0e14;
    --pp-btn-fg: #fff;
  }

  .pp-container { 
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue";
    color:#0b0e14;
    line-height:1.5;
    max-width: 85%;
    margin: 28px auto 64px;
    padding: 0 16px;
  }

.pp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(280px, 320px));
  gap: var(--pp-gap);
  justify-content: center; 
}


.pp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  border-radius:6px;
  box-shadow: var(--pp-shadow);
  padding: 22px;
  overflow: hidden;
  isolation: isolate;

}

  .pp-card::before{
    content:"";
    position:absolute; inset:0 0 auto 0; height:100%;
    z-index:-1;
  }
  .pp-card.pp-blue::before { 
  background: linear-gradient(0deg, #ffffff 20%, #0ea5e9 70%); 
  }

  .pp-card.pp-pink::before { 
  background: linear-gradient(0deg, #ffffff 20%, #f472b6 70%); 
  }

  .pp-card.pp-sun::before  { 
  background: linear-gradient(0deg, #ffffff 20%, #fde047 70%); 
  }

  .pp-card.pp-black::before  { 
  background: linear-gradient(0deg, #ffffff 20%, #000000 70%); 
  }


  .pp-eyebrow{
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    opacity:.9;
    margin:0 0 6px;
    font-weight:700;
  }
  .pp-title{
    margin:0 0 8px;
    font-weight: 900;
    font-size: 1.5rem;
  }
  .pp-lede { 
    margin:0 0 14px; 
    font-size:1.1rem;
    margin-bottom:17rem;
    font-weight:600;
   }

  .pp-img{
    margin-top:auto;
    display:flex;justify-content:center;
    height:35%;
    width:97%;
    position: absolute;
    bottom: 5rem; 
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
  }

  .blue-pp, .pink-pp, .black-pp {
    color:white;
  }

  .pp-img img{ max-width:100%; max-height:100%; width:auto;  }

  .pp-cta{
    margin-top: 18px;
    align-self: start;
    border:0;
    background: var(--pp-btn-bg);
    color: var(--pp-btn-fg);
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    cursor:pointer;
    position: absolute;
    bottom: 15px; 
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    font-size:0.7rem;
    justify-content: center;
  }

  .pp-cta:focus-visible{ outline: 2px solid #2563eb; outline-offset:2px; }
  
  @media (max-width: 700px){
    .pp-grid{ grid-template-columns: 1fr; }
    .pp-container{ padding: 0 14px; }
    .pp-card{ min-height: 420px; }
  }

.shop-brand {
  display: grid;
  grid-template-columns: repeat(8, 2fr); 
  grid-gap:5px;
  align-content:start;
  margin: 2rem auto 5rem auto;
  grid-auto-rows: minmax(50px, 20px);
  width:90%;
}

@media (max-width: 1050px) {
  .shop-brand {
    grid-template-columns: repeat(4, 1fr); 
    grid-gap:5px;
    margin: 2rem auto 5rem auto;
  }
}

@media (max-width: 480px) {
  .shop-brand {
    grid-template-columns: repeat(2, 1fr); 
    grid-gap:5px;
    margin: 2rem auto 5rem auto;
  }

}

.brand-item {
  background-color: white;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 7px 8px rgba(0,0,0,0.03);
  border-radius:2px;
  cursor:pointer;
  transition:0.5s;
}

.brand-item:hover {
  background-color:rgb(247, 247, 247);
  transform:scale(1.1);
  z-index:2;

}

.brand-item img {
  max-height:40%;
  max-width: 80%;
}

#brand-item img {
  max-height:70%;
}

.mobile-footer {
display:none;
}

@media (max-width:500px){
  .desk-footer {
    display:none;
  }
}

@media (max-width:500px){
  .mobile-footer {
    display:inline;
  }
}

.hover-contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-button-hover a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  background: none;
  position: relative;
  color: black;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.contact-button-hover a::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 22px;
  border-radius: 9999px;
  background: conic-gradient(red, yellow, lime, aqua, blue, magenta, red);
  -webkit-mask: 
  linear-gradient(#fff 0 0) content-box, 
  linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rotate 4s linear infinite;
  
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.contact-button-hover a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.contact-button-hover img {
  width:95%;
  height:95%;
  object-fit: contain;
  z-index: 2;
}

@media (max-width:720px) {
  .contact-button-hover a {
  width: 45px;
  height: 45px;
}
.contact-button-hover a::before {
  padding: 5px;

}
.hover-contact {
  bottom: 15px;
  right: 10px;
  gap: 8px;
}

  
}

:root {
    --ww-gap: 2rem;
    --ww-radius: 5px;
    --ww-shadow: 0 6px 24px rgba(0,0,0,.06), 0 2px 8px rgba(0,0,0,.02);
    --ww-btn-bg: #0b0e14;
    --ww-btn-fg: #fff;
  }

  .ww-container { 
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue";
    color:#0b0e14;
    line-height:1.5;
    max-width: 85%;
    margin: 28px auto 64px;
    padding: 0 16px;
  }

.ww-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: var(--ww-gap);
  justify-content: center; 
}


.ww-card {
  border-radius:7rem;
  box-shadow: var(--ww-shadow);
  padding: 40px;
  background-color:white;
  text-align: center;
}

#ww-mini-card {
  max-height:320px;
}

  .ww-eyebrow{
    font-size: 5rem;
    text-transform: uppercase;
    font-weight:700;
    margin:0;

  }

  #ww-eyebrow-mini {
    font-size:3.5rem;
  }

  .ww-title{  
    font-weight: 700;
    font-size: 1rem;
  }
  .ww-mini {
    font-size:0.8rem;
    font-weight:400;
    margin: 0.5rem 0rem;
  }
  .ww-number {
    font-size:1.5rem;
    font-weight:700;
  }
  .ww-lede {  
    font-size:0.8rem;
    margin: 0.5rem 0rem;
    font-weight:500;
   }
  
  @media (max-width: 700px){
    .ww-grid{ grid-template-columns: 1fr;}
    .ww-container{ padding: 0 14px; max-width:75%; }
    #ww-mini-card {
      min-height:400px;
    }
    .ww-card {
      min-height:460px;
    }
  }

.suggestions {
  position: absolute; 
  top: 100%; left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
  width: 250px; 
  max-height: 200px;
  overflow-y: auto;
  z-index: 9999;
  display: none;
}

.suggestions p {
  margin: 0;
  padding: 8px 12px;
  cursor: pointer;
  font-size: .9rem;
}

.suggestions p:hover {
  background: #f5f5f5;
}
#carousel-nav-4 {
  display: flex;
  gap: 10px;      
  margin-top: 0.6rem;
  justify-content: center;
  margin-bottom: 5rem;
}

#carousel-nav-4 .owl-prev,
#carousel-nav-4 .owl-next {
  background-color: #ffffff; 
  color: var(--red-color);         
  padding: 0px 15px;
  border: none;
  font-size: 1.5rem;        
  transition: 0.3s;
  border-radius: 99px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#carousel-nav-4 .owl-prev:hover,
#carousel-nav-4 .owl-next:hover {
  background-color: #ff9999; 
  color: darkred;
  cursor: pointer;
}

#carousel-nav-4 .owl-prev:focus,
#carousel-nav-4 .owl-next:focus {
  outline: none;
}
