*,
*::before,
*::after { box-sizing:border-box; }

body {
  margin:0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:#ffffff;
  color:#000000;
}

.sh-container {
  width:90%;
  max-width:1200px;
  margin:0 auto;
}

/* TOP BAR */
.sh-topbar {
  font-size:12px;
  letter-spacing:0.08em;
  text-transform:uppercase;
  overflow:hidden;
}
.sh-topbar-inner {
  padding:6px 0;
}
.sh-topbar-marquee {
  display:inline-flex;
  gap:40px;
  white-space:nowrap;
  animation: sh-topbar-marquee linear infinite;
}
@keyframes sh-topbar-marquee{
  0%{ transform:translateX(100%); }
  100%{ transform:translateX(-100%); }
}

/* HEADER */
.sh-header {
  background:#000000;
  color:#ffffff;
}
.sh-header-inner {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
}
.sh-logo a {
  color:#ffffff;
  font-size:26px;
  font-weight:800;
  text-decoration:none;
}
.sh-main-nav {
  flex:1;
  text-align:center;
}
.sh-main-menu {
  display:flex;
  justify-content:center;
  gap:32px;
  list-style:none;
  margin:0;
  padding:0;
}
.sh-main-menu a {
  color:#ffffff;
  text-decoration:none;
  text-transform:uppercase;
  font-size:14px;
  letter-spacing:0.08em;
}
.sh-header-right {
  display:flex;
  align-items:center;
  gap:10px;
}
.sh-icon-btn {
  background:none;
  border:none;
  cursor:pointer;
  color:#ffffff;
  font-size:16px;
}

/* Burger / mobile nav */
.sh-burger {
  display:none;
  background:none;
  border:none;
  color:#ffffff;
  font-size:24px;
  cursor:pointer;
}
.sh-mobile-nav {
  position:fixed;
  inset:0;
  background:#000000;
  color:#ffffff;
  transform:translateX(-100%);
  transition:transform 0.3s ease;
  z-index:60;
}
.sh-mobile-nav.open {
  transform:translateX(0);
}
.sh-mobile-nav-inner {
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:20px;
}
.sh-mobile-nav-top {
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.sh-mobile-close {
  background:none;
  border:none;
  color:#ffffff;
  font-size:26px;
  cursor:pointer;
}
.sh-mobile-menu {
  list-style:none;
  margin:40px 0;
  padding:0;
}
.sh-mobile-menu a {
  display:block;
  padding:10px 0;
  color:#ffffff;
  text-decoration:none;
  text-transform:uppercase;
  letter-spacing:0.08em;
}
.sh-mobile-nav-bottom {
  display:flex;
  gap:16px;
}

/* SEARCH OVERLAY */
.sh-search-overlay {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.85);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:70;
}
.sh-search-overlay.open {
  display:flex;
}
.sh-search-inner {
  background:#ffffff;
  padding:20px;
  border-radius:10px;
}
.sh-search-close {
  margin-top:10px;
}

/* HERO */
.sh-hero {
  position:relative;
  overflow:hidden;
}
.sh-hero-slider {
  position:relative;
}
.sh-hero-slide {
  position:relative;
  min-height:85vh;
  display:none;
}
.sh-hero-slide.active {
  display:block;
}
.sh-hero-bg {
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
}
.sh-hero-content {
  position:relative;
  z-index:1;
  padding:80px 0;
  color:#ffffff;
}
.sh-hero-content h1 {
  font-size:40px;
  text-transform:uppercase;
}
.sh-hero-content p {
  max-width:420px;
  font-size:16px;
  margin-bottom:20px;
}
.sh-hero-btn {
  display:inline-block;
  padding:12px 26px;
  background:#c4ff00;
  color:#000;
  text-decoration:none;
  text-transform:uppercase;
  font-weight:700;
  letter-spacing:0.1em;
}

/* Hero dots */
.sh-hero-dots {
  position:absolute;
  bottom:18px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
}
.sh-hero-dots button {
  width:10px;
  height:10px;
  border-radius:50%;
  border:none;
  background:#ffffff;
  opacity:0.4;
  cursor:pointer;
}
.sh-hero-dots button.active {
  opacity:1;
  background:#c4ff00;
}

/* MARQUEE */
.sh-marquee {
  padding:12px 0;
  margin:32px auto;
}
.sh-marquee-track {
  display:inline-flex;
  gap:40px;
  white-space:nowrap;
  animation: sh-marquee linear infinite;
}
.sh-marquee-item {
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:14px;
}
.sh-marquee-item img {
  height:26px;
  width:auto;
  object-fit:contain;
}
@keyframes sh-marquee{
  0%{ transform:translateX(100%); }
  100%{ transform:translateX(-100%); }
}

/* TILES GRID */
.sh-tiles-section {
  padding:40px 0;
}
.sh-tiles-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-template-rows:repeat(2,220px);
  gap:16px;
}
.sh-tile {
  position:relative;
  overflow:hidden;
  border-radius:18px;
  text-decoration:none;
  color:#ffffff;
}
.sh-tile-bg {
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
}
.sh-tile-inner {
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}
.sh-tile-label {
  font-size:20px;
  font-weight:800;
  letter-spacing:0.12em;
}

/* desktop specific tile layout */
.sh-tile-men { grid-column:1; grid-row:1; }
.sh-tile-women { grid-column:1; grid-row:2; }
.sh-tile-brands { grid-column:2/4; grid-row:1/3; }
.sh-tile-special { grid-column:4; grid-row:1; }
.sh-tile-white { grid-column:4; grid-row:2; }

/* COLLECTIONS */
.sh-section-title {
  text-transform:uppercase;
  letter-spacing:0.1em;
  margin-bottom:24px;
}
.sh-collection-section {
  padding:40px 0 60px;
}
.sh-collection-banner img {
  width:100%;
  height:auto;
  border-radius:14px;
  margin-bottom:20px;
  display:block;
}
.sh-products-grid ul.products {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  list-style:none;
  margin:0;
  padding:0;
}
ul.products li.product.sh-card {
  margin:0 !important;
  text-align:left;
}
.sh-card-img-wrap img {
  width:100%;
  height:auto;
  display:block;
}
.sh-card-title {
  font-size:16px;
  line-height:1.3;
  margin:10px 0 6px;
}
.sh-card-price {
  display:block;
  margin-bottom:10px;
  font-size:15px;
}
.sh-card-btn .button {
  width:100%;
  text-align:center;
}
.sh-collection-more {
  margin-top:24px;
  text-align:center;
}

/* FOOTER */
.sh-footer {
  position:relative;
  background:#000000;
  color:#ffffff;
  padding-top:60px;
}
.sh-footer-shape {
  position:absolute;
  top:-40px;
  left:0;
  right:0;
  height:80px;
  background:#000000;
  border-radius:50% 50% 0 0;
}
.sh-footer-inner {
  position:relative;
  text-align:center;
  padding:40px 0 30px;
}
.sh-footer-logo {
  font-size:28px;
  font-weight:800;
  margin-bottom:10px;
}
.sh-footer-text {
  max-width:600px;
  margin:0 auto 20px;
}
.sh-footer-social {
  display:flex;
  justify-content:center;
  gap:10px;
  margin-bottom:16px;
}
.sh-footer-social a,
.sh-footer-whatsapp {
  width:32px;
  height:32px;
  border-radius:50%;
  background:#333;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ffffff;
  text-decoration:none;
  font-size:12px;
}
.sh-footer-whatsapp {
  width:auto;
  padding:0 14px;
  border-radius:16px;
  background:#25D366;
}
.sh-footer-copy {
  font-size:12px;
  opacity:0.7;
}

/* DARK MODE */
body.sh-dark {
  background:#000000;
  color:#ffffff;
}
body.sh-dark .sh-header,
body.sh-dark .sh-mobile-nav {
  background:#000000;
}
body.sh-dark .sh-footer {
  background:#000000;
}

/* RESPONSIVE */
@media (max-width:1024px) {
  .sh-tiles-grid {
    grid-template-columns:repeat(2,1fr);
    grid-auto-rows:200px;
  }
  .sh-tile-men { grid-column:1; grid-row:1; }
  .sh-tile-women { grid-column:2; grid-row:1; }
  .sh-tile-brands { grid-column:1/3; grid-row:2; }
  .sh-tile-special { grid-column:1; grid-row:3; }
  .sh-tile-white { grid-column:2; grid-row:3; }

  .sh-products-grid ul.products {
    grid-template-columns:repeat(3,1fr);
  }
}

@media (max-width:768px) {
  .sh-header-inner {
    padding:10px 0;
  }
  .sh-main-nav {
    display:none;
  }
  .sh-burger {
    display:block;
  }
  .sh-hero-content {
    padding:60px 0;
  }
  .sh-hero-content h1 {
    font-size:30px;
  }
  .sh-products-grid ul.products {
    grid-template-columns:repeat(2,1fr);
    gap:18px;
  }
}

/* === SHIRO PRODUCT CARD PRO STYLE === */
ul.products {
  list-style:none;
  margin:0;
  padding:0;
}

.sh-products-grid ul.products {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

ul.products li.product.sh-card-pro {
  margin:0 !important;
  background:#f5f5f5;
  border-radius:12px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.sh-card-img-wrap {
  position:relative;
  display:block;
  padding:24px 24px 8px;
  text-align:center;
  background:linear-gradient(to bottom, rgba(0,0,0,0.06), transparent);
}

.sh-card-img-wrap img {
  width:100%;
  height:230px;
  object-fit:contain;
  display:block;
}

.sh-card-badge {
  position:absolute;
  top:14px;
  left:14px;
  background:#111111;
  color:#ffffff;
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:0.08em;
  padding:4px 10px;
  border-radius:20px;
}

.sh-card-body {
  padding:0 24px 20px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.sh-card-title {
  font-size:15px;
  line-height:1.4;
  margin:10px 0 8px;
  min-height:3.2em;
}

.sh-card-price {
  display:block;
  margin-bottom:14px;
  font-size:14px;
}

.sh-card-price del {
  opacity:0.5;
  margin-right:6px;
}

.sh-card-price ins {
  font-weight:700;
}

.sh-card-btn {
  margin-top:auto;
}

.sh-card-btn .button {
  width:100%;
  text-align:center;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:0.1em;
  padding:10px 0;
  background:#111111;
  color:#ffffff;
  border-radius:0 0 12px 12px;
}

/* responsive product grid */
@media (max-width:1024px){
  .sh-products-grid ul.products {
    grid-template-columns:repeat(3,1fr);
  }
}
@media (max-width:768px){
  .sh-products-grid ul.products {
    grid-template-columns:repeat(2,1fr);
    gap:18px;
  }
}


/* === GLOBAL PRODUCT GRID + COLLECTION BANNER FIX === */
ul.products {
  list-style:none;
  margin:0;
  padding:0;
  display:grid !important;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

@media (max-width:1024px){
  ul.products {
    grid-template-columns:repeat(3,1fr);
    gap:22px;
  }
}

@media (max-width:768px){
  ul.products {
    grid-template-columns:repeat(2,1fr);
    gap:18px;
  }
}

/* collection banner full width inside container */
.sh-collection-banner {
  width:100%;
  margin-bottom:24px;
}
.sh-collection-banner img {
  width:100% !important;
  height:auto !important;
  display:block;
  object-fit:cover;
  border-radius:12px;
}


/* === FRONT/HOME PRODUCT CARD LIKE SHOP === */
ul.products li.product.sh-card-pro {
  background:#ffffff;
  border-radius:0;
  box-shadow:none;
  display:flex;
  flex-direction:column;
}

.sh-card-img-wrap {
  padding:0 0 10px;
  background:none;
}

.sh-card-img-wrap img {
  width:100%;
  height:auto;
  max-height:280px;
  object-fit:contain;
}

.sh-card-body {
  padding:0 0 12px;
}

.sh-card-title {
  font-size:15px;
  line-height:1.4;
  margin:6px 0 4px;
}

.sh-card-price {
  margin-bottom:12px;
}

.sh-card-btn .button {
  width:100%;
  background:#ebe7eb;
  color:#000000;
  border-radius:0;
  padding:12px 0;
  font-weight:600;
}


/* === FRONT PAGE COLLECTION CARDS == make them flatter like shop === */
.sh-collection-grid ul.products li.product.sh-card-pro {
  background:#ffffff;
  box-shadow:none;
  border-radius:0;
}

.sh-collection-grid .sh-card-img-wrap {
  padding:0;
  background:none;
}

.sh-collection-grid .sh-card-img-wrap img {
  width:100%;
  height:auto;
  object-fit:contain;
}

.sh-collection-grid .sh-card-body {
  padding:10px 0 14px;
}

.sh-collection-grid .sh-card-title {
  font-size:14px;
  margin:6px 0 4px;
  min-height:auto;
}

.sh-collection-grid .sh-card-btn .button {
  border-radius:0;
  background:#ebe7eb;
  color:#000;
  font-weight:600;
}

.shiro-social-icons img.shiro-icon{width:28px;height:auto;margin:0 6px;}
/* === SHIRO GLOBAL PRODUCT CARD STYLE (SHOP + HOME) === */
ul.products {
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:26px;
}
@media(max-width:1024px){
  ul.products{grid-template-columns:repeat(3,1fr);}
}
@media(max-width:768px){
  ul.products{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:520px){
  ul.products{grid-template-columns:repeat(1,1fr);}
}

ul.products li.product.sh-card.sh-card-pro {
  margin:0;
  background:#f7f7f7;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 16px 30px rgba(0,0,0,0.06);
  display:flex;
  flex-direction:column;
}

.sh-card-img-wrap {
  position:relative;
  padding:22px 22px 10px;
  background:#ffffff;
  text-align:center;
}
.sh-card-img-wrap img {
  width:100%;
  height:220px;
  object-fit:contain;
}
.sh-card-badge {
  position:absolute;
  top:14px;
  left:14px;
  background:#111;
  color:#fff;
  padding:4px 12px;
  font-size:11px;
  font-weight:600;
}

.sh-card-body {
  padding:14px 22px 18px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.sh-card-title {
  font-size:15px;
  line-height:1.4;
  margin:0 0 4px;
}
.sh-card-price {
  margin:0 0 14px;
  font-size:14px;
}
.sh-card-price del {
  opacity:.5;
  margin-right:6px;
}
.sh-card-price ins {
  font-weight:700;
}
.sh-card-btn {
  margin-top:auto;
}
.sh-card-btn .button {
  width:100%;
  background:#111;
  color:#d5ff55;
  border-radius:0 0 16px 16px;
  padding:12px 0;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:11px;
}
.sh-card-btn .button:hover {
  transform:translateY(-1px);
  box-shadow:0 6px 18px rgba(0,0,0,0.25);
}


/* === COLLECTION CAROUSEL LAYOUT === */
.sh-carousel-view {
  overflow:hidden;
  width:100%;
}
.sh-carousel-track ul.products {
  display:flex;
  flex-wrap:nowrap;
  margin:0;
  padding:0;
  list-style:none;
}
.sh-carousel-track ul.products li.product {
  flex:0 0 50%;
  max-width:50%;
}
@media (min-width:768px){
  .sh-carousel-track ul.products li.product {
    flex:0 0 25%;
    max-width:25%;
  }
}

/* Hero slider safety */
.sh-hero, .sh-hero-slider, .sh-hero-slide { display:block; visibility:visible; opacity:1; }
.sh-hero-bg{ background-size:cover; background-position:center; min-height:60vh; }
