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

:root {
  --header-height: 4.5rem;
  --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);
  --body-font: "Montserrat", sans-serif;
  --normal-font-size: .938rem;
  --font-regular: 400;
  --font-semi-bold: 600;
  --z-tooltip: 10;
  --z-fixed: 100;
}

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


body {
  max-width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  background-color: var(--body-color);
  color: var(--white-color);
}

ul { list-style: none; }
a { text-decoration: none;  }

.container { max-width: 90%; margin-inline: 1.5rem; }

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

.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%; box-shadow:0 2px 16px hsla(220,30%,8%,.1); border-bottom:3px solid rgb(255,0,0); }
}

#mobile-menu summary {
  list-style: none;
}

#mobile-menu summary::-webkit-details-marker {
  display: none;
}


.nav { height: var(--header-height); display:flex; align-items:center; justify-content:space-between; }
.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%; display:none; }
.nav__burger,.nav__close { position:absolute; inset:0; margin:auto; font-size:1.55rem; cursor:pointer; transition:opacity .1s, transform .4s; }
.nav__close { opacity:0; }

@media screen and (max-width: 1050px){
  .nav__toggle{ display:block; }
  .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; }
  .nav__menu::-webkit-scrollbar{ width:0; }
  .nav__list { background-color: var(--black-color); padding-top:1rem; padding-bottom:130%; display:block; }
}

.nav__link {
  color: var(--white-color);
  background-color: var(--black-color);
  font-weight: var(--font-semi-bold);
  padding: .90rem 1.25rem;
  display:flex; justify-content:space-between; align-items:center;
  transition: background-color .3s, color .3s;
}
.nav__link:hover { background-color: #ff4646; color: white; transition:.2s; }

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

.nav__searchbar { color: var(--white-color); font-weight: var(--font-semi-bold); display:flex; align-items:center; transition: background-color .3s; outline:none; flex:1; max-width:50%; }
.searchbar__style { border:1.5px solid rgb(109,109,109); border-radius:999px; padding:.5rem 2rem; outline:none; width:100%; height:3.5rem; box-sizing:border-box; }

#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; display:none;
}
#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:.8rem; }

@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); }


@media screen and (max-width: 340px){
  .container{ margin-inline:1rem; }
  .nav__link{ padding-inline:1rem; }
}

@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; align-items:center; }
  .nav__link{ height:100%; padding:0; justify-content:initial; column-gap:.25rem; background-color:transparent; }
  .nav__searchbar{ height:100%; padding:0; justify-content:initial; column-gap:.25rem; }
  .nav__link:hover{ background-color:transparent; transition:.3s; color:rgb(252,0,0); }
}

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

#textCarousel{
  text-align:center; background-color:white; border-radius:0 0 6px 6px; font-size:15px; font-weight:bold; padding:15px 0;
  box-shadow:0 2px 6px rgba(0,0,0,0.05);
}
@media screen and (max-width: 920px){ #textCarousel{ font-size:12px; font-weight:bold; } }
@media screen and (max-width: 720px){ #textCarousel{ font-size:12px; font-weight:bold; padding:15px 30px; } }

@media screen and (max-width: 920px){
  .item-2{ margin-left:0; margin-right:0; }
}
@media screen and (max-width: 720px){
  .item-2{ margin-left:0; margin-right:0; }
}
#textCarousel-2 .owl-stage-outer { overflow: hidden; }
#textCarousel-2 .owl-item { padding: 0 !important; }
#textCarousel-2 .owl-item img { display: block; width: 100%; }

/* Container size + rounded corners */
#textCarousel-2{
  position: relative;
  width: 98%;          /* change as needed (e.g., 80%) */
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background-color: #e5e7eb;
}

/* Ensure each slide matches the container height */
#textCarousel-2 .item-2{
  height: 100%;
}

/* Make image fill the slide */
#textCarousel-2 .item-2 img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;   /* use 'contain' if you don’t want cropping */
}
@media (max-width: 640px){
  #textCarousel-2{
    border-radius: 0 !important;
    width: 100%;
   }
}

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

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

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

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



#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 .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 0 1rem 5rem; }
#middle-title-1{ margin:0; text-align:center; }
#middle-title-1 p{ font-size:1.4rem; }
.title-1 a{
  display:block; text-align:right; margin:0 5rem 0 0; font-size:1rem; color:rgb(160,160,160);
  transition:1s; font-weight:bold; text-decoration:underline; text-underline-offset:.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:.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:.8rem 0 1rem; 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; }
  .title-1{ font-size:1.8rem; margin:2rem 0 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 0; text-align:center; }
  .selection-img{ width:90%; }
  .selection-box-1 p{ font-size:.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 .5rem 0; }
  .selection-img{ width:95%; }
  .selection-box-1 p{ font-size:.85rem; }
}

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

: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%); }
.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:.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; 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; } }
@media (max-width:480px){ .shop-brand{ grid-template-columns:repeat(2,1fr); grid-gap:5px; margin:2rem auto 5rem; } }

.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:.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:.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; margin-bottom:.5rem; }
.ww-mini{ font-size:.8rem; font-weight:400; margin:.1rem 0; }
.ww-number{ font-size:1.5rem; font-weight:700; }
.ww-lede{ font-size:.8rem; margin:.5rem 0; 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:.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:0 15px; border:none; font-size:1.5rem; transition:.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; }

.text-delivery{ color:rgb(0,0,0); font-size:.9rem; text-align:center; font-weight:500; margin:10px 0 40px; }
@media (max-width:720px){ .text-delivery{ font-size:.7rem; margin:10px 0 20px; } }

.nav__top{
  display:flex; justify-content:space-between; align-items:center; height:6rem;
  background-color: var(--black-color); padding:0 1rem; color: var(--white-color);
}
.nav__top-left{ display:flex; align-items:center; }
.nav__top-center{ flex:1; display:flex; justify-content:center; }
.nav__top-right{ font-weight: var(--font-semi-bold); font-size:.95rem; }
.nav__phone{ color: var(--white-color); transition:color .3s; }
.nav__phone:hover{ color: var(--red-color); }
.nav__separator{ width:100%; height:1px; background-color:#ccc; }
.nav__menu{ flex:1; }

@media (max-width:1050px){
  .nav__top,.nav__separator,.nav{ justify-content:space-between; }
}

 #loading-screen {
      position: fixed;
      width: 100%;
      height: 100%;
      background: #fff;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      opacity: 1;
      transition: opacity 0.8s ease;
    }

    /* Spinner with red accent */
    .spinner {
      width: 70px;
      height: 70px;
      border: 8px solid rgba(0,0,0,0.1);
      border-top: 8px solid var(--red-color);
      border-radius: 50%;
      animation: spin 1.2s linear infinite;
      margin-bottom: 20px;
    }

    @keyframes spin {
      0%   { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Loading text */
    .loading-text {
      font-weight: 600;
      font-size: 1.1rem;
      color: var(--red-color);
      letter-spacing: 1px;
      animation: blink 1.2s infinite;
    }

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    /* Page content hidden initially */
    #content {
      opacity: 0;
      transition: opacity 1s ease;
      padding: 40px;
      text-align: center;
    }
