/* =====================================================
   SHOP PAGE
===================================================== */

.shop-page{ 
  padding: 26px 0 70px; 
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.shop-title{ 
  margin:0 0 18px; 
  font-size:36px; 
  font-weight:900; 
  color:#fff; 
}

.footer-newsletter,
.footer-links,
.footer-bottom{
  padding-left: max(var(--gutter), calc((100% - var(--container)) / 2));
  padding-right: max(var(--gutter), calc((100% - var(--container)) / 2));
}

/* =====================================================
   PRODUCT PAGE
===================================================== */

.product-page {
  padding: 40px 0 80px;
}

.product-tabs{
  margin-top:60px
}

/* =====================================================
   ABOUT PAGE
===================================================== */

.about-hero{
  position: relative;
  min-height: 60vh;
  display: grid;
  align-items:center;
  padding: 0; /*90px 0 70px; /* top, bottom spacing */
  color:#ffffff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: #000;
}
.about-values h2,
.about-split h2 {
  font-size: 32px;      /* adjust if your Our Story is slightly different */
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.value-card h3 {
  color:#A7FF25;      /* pure white */
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.value-card p {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.6;
}

.value-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  background: rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:20px;
  padding:28px;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

/* =====================================================
   CONTACT PAGE
===================================================== */

.contact-page {
  padding: 40px 0 80px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* =====================================================
   LEGAL PAGES
===================================================== */
.legal-page{
  background:
    radial-gradient(900px 500px at 50% 10%, rgba(183,255,42,0.10), transparent 60%),
    linear-gradient(#07080a, #0b0d10 55%, #07080a);
  padding: 40px 0 80px;
}

.hero-actions .btn{
  min-width: 160px;
  height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 28px;         /* same padding for both */
  line-height: 1;          /* avoid baseline shifts */
  margin: 0;               /* cancel any .btn-primary margin-top from later CSS */
}

/* Keep ghost border look */
.hero-actions .btn-ghost{
  border: 1px solid rgba(255,255,255,.6);
  background: transparent;
}

/* Keep primary look */
.hero-actions .btn-primary{
  border: none;            /* optional */
}

.about-hero-bg{
  position:absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit:cover;
  transform:scale(1.02); /*scale(1.02);*/
  opacity: 100%;
}
/*hero darkness*/
.about-hero-overlay{
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 60%,
      rgba(0,0,0,0.15),
      rgba(0,0,0,0.85)
    ),
    linear-gradient(
      to top,
      rgba(0,0,0,0.75),
      rgba(0,0,0,0.35)
    );
}
/*About stepr and Built for moment*/
.about-hero-content{
  position:relative;
  /*z-index: 2; */
  max-width: 720px;
  color:#ffffff;
}

.about-hero-content h1{
  margin: 0; /*0 0 14px;*/
  font-size:clamp(40px, 5vw, 64px);
  letter-spacing: -0.01em;
}

.about-hero-content p{
  margin: 0;
  font-size: 18px;
  color: rgba(199, 199, 199, 0.78);
  line-height: 1.6;
}

/* Section title */
.split-text h2{
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  color: #ffffff;
  margin-top: 0;

}

/* Paragraph text */
.split-text p{
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  margin-bottom: 14px;
  max-width: 520px;
}

/* Story text card */
.split-text{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 40px 36px;
  backdrop-filter: blur(8px);
}

.split-text p:last-child{
  margin-bottom: 0;
}
/* Fade-in animation */
.split-text,
.split-image {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.split-text.visible,
.split-image.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-centered {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 20px;
  margin: 80px auto;
}

/*gap between 4 boxes and image*/
.about-centered img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dark gradient for readability */
.about-centered::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.1)
  );
}

/* Text overlay */
.designed-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8%;
  z-index: 2;
  max-width: 640px;
}

.designed-overlay h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #ffffff;
}

.designed-overlay p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
}

.about-cta {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(
    180deg,
    rgb(228, 252, 147) 0%,
    rgb(5, 5, 5) 100%
  );
}

.about-cta .container {
  max-width: 720px;
}

/* Heading */
.about-cta h2 {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

/* Subtext */
.about-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
}

/* Button */
.about-cta .btn-primary {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 30px;
  background: #A7FF25; /* STEPR green */
  color: #000;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-cta .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(184,255,31,0.25);
}

/* ===== Contact Form (STEPR dark UI) ===== */
.stepr-form{
  margin-top: 14px;
}

.field label{
  display:block;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 8px;
}

.req{
  color: var(--accent);
  font-weight: 700;
}

.field input,
.field textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.32);
  color: #fff;
  padding: 12px 12px;
  outline: none;
  transition: .2s ease;
}

.field textarea{
  resize: vertical;
  min-height: 140px;
}

.field input:focus,
.field textarea:focus{
  border-color: rgba(182,255,26,0.40);
  box-shadow: 0 0 0 3px rgba(182,255,26,0.12);
}

.field.full{
  grid-column: 1 / -1;
}

.form-actions{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap: 14px;
  margin-top: 16px;
}

.fine{
  margin: 0;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
}

.reach-item{
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  border-radius: 18px;
  padding: 14px;
}

.reach-label{
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.reach-value{
  display:inline-block;
  font-weight: 700;
  color: #fff;
}

.note-line{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.70);
  font-size: 14px;
}

.inline-link{
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.legal-nav{
  position: sticky;
  top: 100px;
}

.legal-nav-card{
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
}

.legal-nav-title{
  font-size: 13px;
  letter-spacing: 0.14em;
  opacity: .8;
  margin: 4px 0 12px;
}

.legal-nav-card a{
  display:block;
  padding: 12px 12px;
  border-radius: 14px;
  color: rgba(255,255,255,0.82);
  text-decoration:none;
  border: 1px solid transparent;
  margin-bottom: 8px;
}

.legal-nav-card a:hover{
  border-color: rgba(183,255,42,0.35);
  background: rgba(183,255,42,0.06);
  color:#fff;
}

.legal-hero h1{
  font-size: clamp(34px, 3.2vw, 44px);
  margin: 0 0 10px;
}

.shop-toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 12px 14px;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  flex-wrap: wrap;
}

.toolbar-right{
  margin-left: auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.toolbar-left{
  display:flex;
  align-items:center;
  min-height: 22px;
}

.toolbar-left{ 
  min-height: 22px; 
}
.toolbar-text{ 
  color: rgba(255,255,255,0.62); 
  font-size:14px; 
}
.vdiv{ 
  width:1px; 
  height:22px; 
  background: rgba(255,255,255,0.12); 
}

.toolbar-right{
  margin-left:auto !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-end !important;
  gap:14px !important;
  flex-wrap:wrap;
}

/* list view */
.product-grid.list-view{
  grid-template-columns: 1fr !important;
  gap: 14px !important;
}
/*.product-grid.list-view .product-card{
  display:grid;
  grid-template-columns: 220px 1fr; 
}*/

/* Force all filter bodies closed by default */
.shop-filters .filter-body{
  display: none !important;
}

/* When opened, show it */
.shop-filters .filter-head[aria-expanded="true"] + .filter-body{
  display: block !important;
}

/* Clear filters button */
.filter-actions{
  padding: 14px 0 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 8px;
}

.btn-clear{
  width: 100%;
  border-radius: 14px;
  padding: 12px 12px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.86);
  cursor: pointer;
  font-weight: 700;
}
.btn-clear:hover{
  border-color: rgba(182,255,26,0.35);
  color: #fff;
}

/* List view */
.product-grid.list-view{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.product-grid.list-view .product-card{
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: stretch;
}

.product-grid.list-view .product-media{
  height: 160px;
}

.product-grid.list-view .product-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-filters{
  background: rgba(255,255,255,0.02) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 18px !important;
  padding: 8px 16px !important;
  box-shadow: 0 18px 40px rgba(0,0,0,0.40) !important;
}

/* dropdown */
.sort-wrap{ display:flex; align-items:center; gap:10px; }
.dd-small{ width:220px; }
.dd{ position:relative; }
.dd-btn{
  width:100%;
  display:flex; align-items:center; justify-content:space-between; gap:10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.90);
  border-radius: 999px;
  padding: 10px 12px;
  cursor:pointer;
}
.dd-btn:hover{ border-color: rgba(182,255,26,0.35); }
.dd-menu{
  position:absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 100%;
  z-index: 50;
  background: rgba(12,12,13,0.92);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  padding: 8px;
  display:none;
}
.dd.open .dd-menu{ display:block; }

.dd-item{
  width:100%;
  text-align:left;
  background:transparent;
  border:0;
  color: rgba(255,255,255,0.86);
  padding: 10px 10px;
  border-radius: 12px;
  cursor:pointer;
}
.dd-item:hover{ background: rgba(182,255,26,0.10); color:#b6ff1a; }

/* view buttons */
.view-toggle{ display:flex; align-items:center; gap:10px; }
.iconbtn{
  width:36px; height:36px;
  border-radius:10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.75);
  cursor:pointer;
}
.iconbtn.active{
  border-color: rgba(182,255,26,0.35);
  color:#fff;
}

.sale-only{
  display:flex; align-items:center; gap:10px;
  color: rgba(255,255,255,0.78);
  font-size:14px; white-space:nowrap;
}
.sale-only input{ width:18px; height:18px; accent-color: var(--accent); }

/* =========================
   SHOP TOP BAR (Correct Layout)
   ========================= */

.shop-topbar{
  display: grid;
  grid-template-columns: 340px 1fr ;
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
}

.shop-topbar .shop-title{
  margin: 0;
}

/* Toolbar inside topbar */
.shop-toolbar--top{
  margin: 0;
  margin-top: 0 !important;
}

.shop-page .container {
  margin-top: 0 !important;
}

/* Empty state */
.empty-state{
  margin-top: 14px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.75);
  text-align:center;
}

.empty-title{ font-weight: 800; margin-bottom: 6px; }

/* ===== PRODUCT PAGE LUXURY LAYOUT ===== */

.thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.thumbs img{
  width: 75px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  opacity: .7;
  transition: .2s ease;
}

.thumbs img.active{opacity:1;outline:2px solid #A7FF25}

.thumbs img:hover,
.thumbs img.active {
  opacity: 1;
  border: 2px solid #9cff00;
}

/* PRODUCT PAGE */
.main-image{
  /* background:#e9ecef; */
  padding:20px;
  position: relative;
  flex: 1;
  background: #0f0f0f;
  border-radius: 20px;
  overflow: hidden;
}

.main-image img{
  width:100%;
  display: block;
  transition:.3s
}
.main-image:hover img{
  transform:scale(1.05)
}

.product-info {
  padding-top: 20px;
}

.product-info .brand {
  font-size: 13px;
  letter-spacing: 2px;
  color: #aaa;
  text-transform: uppercase;
}

.product-name {
  font-size: 34px;
  margin: 15px 0;
  font-weight: 700;
}

.product-desc {
  color: #bbb;
  margin-bottom: 20px;
}

.sizes { 
  display:flex; 
  grid-template-columns: repeat(5, 1fr);
  flex-wrap:wrap; 
  gap:10px; 
  margin-top:10px; 
}

.sizes button {
  padding: 12px;
  background: transparent;
  border: 1px solid #444;
  cursor: pointer;
  transition: .2s ease;
}

.sizes button:hover {
  border-color: #9cff00;
}

.sizes button.active {
  border: 2px solid #9cff00;
}
.sizes.error {
  border: 1px solid red;
  padding: 10px;
}

/* Product size pills */

.size-pill{
  background:#111;
  border:1px solid rgba(255,255,255,.15);
  color:#fff;
  padding: 8px 14px;
  border-radius: 6px;
  cursor:pointer;
  font-size: 14px;
  transition: 0.2s;
  /* background: transparent; */
  display: inline-block;
}
.size-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.size-pill:hover {
  background: rgba(91,124,250,0.15);
}

.size-pill.active {
  border-color:#a7ff1e;
  box-shadow:0 0 0 2px rgba(167,255,30,.25);
}

/* COLOR BLOCK */
.color-block {
  margin: 15px 0;
}

.colors {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.color-btn {
  padding: 8px 14px;
  border: 1px solid #333;
  background: transparent;
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.color-btn:hover {
  border-color: #9cff00;
}

.color-btn.active {
  border-color: #9cff00;
  background: #9cff00;
  color: #000;
}

.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;

  background: #0b0c0f;
  color: #A7FF25;
  border: 1px solid #A7FF25;

  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;

  z-index: 20; /* higher than image */
}

.product-accordion {
  margin-top: 60px;
  border-top: 1px solid #222;
}

/* ===== FORCE PRODUCT BUTTON ALIGNMENT ===== */

.product-actions .btn {
  flex: 1;
  height: 60px;              /* FORCE same height */
  padding: 0;                /* remove uneven padding */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;  
}

.product-actions .btn-dark,
.product-actions .btn-primary {
  flex: 1;
  height: 60px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  line-height: 1;
  font-size: 16px;
  font-weight: 600;
}
/* PERFECT TEXT CENTER FIX */
.product-actions .btn-dark span,
.product-actions .btn-primary span {
  display: inline-block;
  transform: translateY(1px); /* tiny optical correction */
}

/* ===== PRODUCT PAGE BUTTONS — FINAL CLEAN VERSION ===== */
.product-actions .btn-dark {
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
}

.product-actions .btn-primary {
  background: #A7FF25;
  color: #000;
}

.price-offer {
  color: #e60023;
  font-weight: 700;
  font-size: 16px;
}

.price-mrp {
  text-decoration: line-through;
  color: #888;
  font-size: 14px;
}

.tabs-header .tab {
  background: none;
  border: none;
  padding: 15px 0;
  cursor: pointer;
  color: #aaa;
  font-size: 16px;
}

.tabs-header .tab.active {
  color: #9cff00;
  border-bottom: 2px solid #9cff00;
}

.tab-content {
  display: none;
  padding: 40px 0;
}

.tab-content.active {
  display: block;
}

.top-filters{
  display:flex;
  gap:28px;
  align-items:center;
}

.filter-btn{
  background:none;
  border:none;
  color:#fff;
  font-weight:600;
  font-size:14px;
  cursor:pointer;
  padding:8px 0;
  position:relative;
}

.filter-btn::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:2px;
  background:#A7FF25;
  transition:0.3s ease;
}

.filter-btn:hover::after{
  width:100%;
}

.shop-toolbar--top{
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
/*  gap: 30px; */
  padding: 20px 60px;
  background: transparent;
  border-bottom: 1px solid #1a1a1a;
}

.shop-toolbar--top .toolbar-left {
  display: flex;
  align-items: center;
  /* gap: 30px; */
}

.shop-toolbar--top .toolbar-right {
  display: flex !important;
  align-items: center !important;
  gap: 30px;
}

.shop-toolbar--top .sort-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== FEATURED GRID FIX ===== */

#featuredGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}

/* ===== FEATURED: uniform image visual size ===== */

#featuredGrid .product-media{
  height: 220px;
  background: #f3f3f3;
  display: flex;
  align-items: center;
  justify-content: center;   /* FIX */
  overflow: hidden;
  padding: 10px;
}

#featuredGrid .product-media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ===== SHOP TOOLBAR FULL ===== */

.shop-toolbar--top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:16px 40px;
  background:#0c0f12;
  border-bottom:1px solid rgba(255,255,255,.08);
  flex-wrap:wrap;
}

.toolbar-left,
.toolbar-right{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

/* dropdowns */
.toolbar-dd{
  position:relative;
}

.toolbar-dd summary{
  cursor:pointer;
  list-style:none;
  padding:8px 14px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
}

.toolbar-dd summary::-webkit-details-marker{
  display:none;
}

.toolbar-dd .dd-menu{
  position:absolute;
  top:120%;
  left:0;
  min-width:200px;
  background:#0f1418;
  border:1px solid rgba(255,255,255,.08);
  border-radius:12px;
  padding:10px;
  display:flex;
  flex-direction:column;
  gap:8px;
  z-index:1000;
}

.toolbar-dd label{
  display:flex;
  gap:8px;
  align-items:center;
  padding:6px 8px;
  border-radius:8px;
  cursor:pointer;
}

.toolbar-dd label:hover{
  background:rgba(255,255,255,.06);
}



/* shop filter bar */
.shop-toolbar{
  padding: 10px 18px;   /* reduce vertical padding */
}

.shop-toolbar .filters-row{
  margin-bottom: 6px;
}

.shop-toolbar .sort-row{
  margin-top: 6px;
}

.shop-filters{
  padding: 12px 18px;
}

/* space between filter bar and first product row */
.product-grid{
  margin-top: 20px;
}

/* ABOUT PAGE VALUES */
.values-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
  margin-top:40px;
}

.value-card{
  background:#0e1118;
  padding:28px;
  border-radius:12px;
  text-align:center;
}

.shop-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:28px;
}


/* =========================
   PRODUCT PAGE - SIMILAR PRODUCTS
========================= */

#similarProducts{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:20px;
}

#similarProducts .product-card{
  width:100%;
}

#similarProducts .product-media{
  height:180px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f3f3f3;
}

#similarProducts .product-media img{
  width:100%;
  height:100%;
  object-fit:contain;
}

