.product-metalika-hero{
    background-image: url('../images/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 95vh;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
}
.product-metalika-solvent-hero {
  background-image: url('../images/Metalika-solvent.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 95vh;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

.product-metalika-solvent-hero .text-metalika-solvent-hero h1 {
  max-width: 600px;
  position: absolute;
  top: 40%;
  left: 30%;
  transform: translateX(-50%);
  color: #CF9844;
  font-size: 5rem;
  font-weight: 300;
  text-align: left;
  line-height: 1.1;
}

.product-metalika-solvent-hero .banner-hero-image {
  position: absolute;
  top: 45%;
  left: 35%; 
  transform: translate(-50%, -50%);
  width: clamp(150px, 25vw, 350px); 
  height: auto;
  max-width: 100%;
  display: block;
}


@media (max-width: 1024px) {
  .product-metalika-solvent-hero .banner-hero-image {
    position: static; 
    transform: none;
    width: clamp(120px, 30vw, 250px); 
    margin: 0 auto 20px;
    display: block;
  }
}


@media (max-width: 768px) {
  .product-metalika-solvent-hero .banner-hero-image {
    width: clamp(120px, 40vw, 250px);
    margin-bottom: 20px;
    top: auto;
    left: auto;
    transform: none;
    position: static;
  }
}

@media (max-width: 480px) {
  .product-metalika-solvent-hero .banner-hero-image {
    width: clamp(100px, 50vw, 200px);
    margin-bottom: 15px;
  }
}


.product-metalika-solvent-hero .hero-image {
  max-width: 500px;
  bottom: 15%;
  left: 60%;
  transform: translate(0px, 0px);
  position: absolute;
  transition: transform 0.2s ease;
  will-change: transform;
  pointer-events: none;
}

/* ====================
   Responsive Styles
==================== */

/* Tablets */
@media (max-width: 1024px) {
  .product-metalika-solvent-hero {
    height: auto;
    padding: 80px 20px 100px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  

  .product-metalika-solvent-hero .text-metalika-solvent-hero h1 {
    position: static;
    transform: none;
    font-size: 3rem;
    max-width: 100%;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.3;
    white-space: normal; 
    word-break: break-word;
  }

  .product-metalika-solvent-hero .hero-image {
    position: static;
    transform: none;
    max-width: 250px;
    height: auto;
    margin: 0 auto;
  }
}


/* Mobile */
@media (max-width: 768px) {
  .product-metalika-solvent-hero {
    height: auto;
    padding: 120px 20px 80px;
    flex-direction: column;
    justify-content: center;
  }

  .product-metalika-solvent-hero .text-metalika-solvent-hero h1 {
    position: static;
    transform: none;
    font-size: 3rem;
    text-align: center;
    margin: 0 auto 20px;
  }

  .product-metalika-solvent-hero .hero-image {
    position: static;
    transform: none;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .product-metalika-solvent-hero .text-metalika-solvent-hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .product-metalika-solvent-hero .hero-image {
    max-width: 250px;
  }
}


.product-flourescent-hero {
  background-image: url('../images/product-flourescent-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 95vh;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.product-flourescent-hero .product-flourescent-hero-text {
  max-width: 600px;
  position: absolute;
  top: 40%;
  left: 40%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #fff;
}

.product-flourescent-hero .hero-image {
  max-width: 400px;
  bottom: 15%;
  left: 60%;
  transform: translateX(-50%);
  position: absolute;
  transition: transform 0.2s ease;
  will-change: transform;
  pointer-events: none;
}

/* Text styling */
.product-flourescent-hero-text h2 {
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 400;
  letter-spacing: 5px;
}

.product-flourescent-hero-text p {
  font-size: clamp(1.5rem, 4.5vw, 3rem);
  font-weight: 400;
  letter-spacing: 7px;
}

.product-flourescent-hero-text .dot-container {
  margin-top: 15px;
  display: flex;
  gap: 1rem;
}

.product-flourescent-hero-text .dot-container .dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.product-flourescent-hero-text .dot.dot-1 { background-color: #63e283; }
.product-flourescent-hero-text .dot.dot-2 { background-color: #f53e93; }
.product-flourescent-hero-text .dot.dot-3 { background-color: #91e5c2; }

/* Tablets (<= 1024px) */
@media (max-width: 1024px) {
  .product-flourescent-hero {
    flex-direction: column;
    padding: 60px 20px;
  }

  .product-flourescent-hero .product-flourescent-hero-text {
    position: static;
    transform: none;
    max-width: 90%;
    margin: 0 auto 30px;
    top: auto;
    left: auto;
  }

  .product-flourescent-hero .hero-image {
    position: static;
    transform: none;
    max-width: 300px;
    height: auto;
    margin: 0 auto;
  }
}

/* Mobile (<= 768px) */
@media (max-width: 768px) {
  .product-flourescent-hero-text h2 {
    font-size: 2.5rem;
    letter-spacing: 3px;
  }

  .product-flourescent-hero-text p {
    font-size: 1.8rem;
    letter-spacing: 4px;
  }

  .product-flourescent-hero .hero-image {
    max-width: 220px;
  }

  .product-flourescent-hero-text .dot-container .dot {
    width: 20px;
    height: 20px;
  }
}

/* Small Mobile (<= 480px) */
@media (max-width: 480px) {
  .product-flourescent-hero-text h2 {
    font-size: 2rem;
  }

  .product-flourescent-hero-text p {
    font-size: 1.4rem;
    letter-spacing: 2px;
  }

  .product-flourescent-hero .hero-image {
    max-width: 180px;
  }

  .product-flourescent-hero-text .dot-container .dot {
    width: 16px;
    height: 16px;
  }
}

.hero-image-text {
    max-width: 600px;
    position: absolute;
    top: 15%;
    left: 50%;
    transform: translateX(-50%);

}
.hero-image {
    max-width: 400px;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    transform: translate(0px, 0px);
    transition: transform 0.2s ease;
    will-change: transform;
    pointer-events: none;
}
/* Product features card styles */
.reasons-section{
    background-color: #1A1A1A;
    padding: 3rem 1rem;
}
.reasons-container{
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    max-width: var(--max-width);
}
.section-title {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    color: #CF9844;
}

.reason-flex-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: auto;
    gap: 10px;
}

.reason-flex-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 7px;
    transition: transform 0.5s ease;
}

.reason-flex-container img:hover {
    transform: translateY(-5px);
}

.item1 {
    grid-column: span 3;
}

.item2 {
    grid-column: span 4;
}

.item3 {
    grid-column: span 2;
    grid-row: span 2;
}

.item4 {
    grid-column: span 2;
    grid-row: span 2;
}

.item5 {
    grid-column: span 3;
}

.item6 {
    grid-column: span 3;
}

/* feature section */
section {
     width: 100%;
   }
.features-stack {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #111;
}
.stack-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-sizing: border-box;
  text-align: center;
}

.slide:nth-child(1) { background: linear-gradient(to right, #757f9a, #d7dde8); z-index: 6; }
.slide:nth-child(2) { background: #111; z-index: 5; }
.slide:nth-child(3) { background: #333; z-index: 4; }
.slide:nth-child(4) { background: #555; z-index: 3; }
.slide:nth-child(5) { background: #777; z-index: 2; }
.slide:nth-child(6) { background: #999; z-index: 1; }
.pagination {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
  user-select: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.pagination.visible {
  opacity: 1;
  pointer-events: auto;
}
.pagination-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
}
.pagination-dot.active {
  background: white;
  border-color: #e2e6eaff;
  box-shadow: 0 0 8px #f2e18cff;
}

 .feature-slide-content{
   display: flex;
   height: 100%;
   width: 100%;
   flex-wrap: wrap;
   align-items: flex-end;
   justify-content: space-between;
   box-sizing: border-box;
   position: relative;

 }
 .feature-slide-content::after{
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: url('../images/bottom-line.svg') no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
 }
 .flourescent::after{
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: url('../images/flourescent-bottom-line.svg') no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
 }

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    width: 100%;
}

.product-desc-section {
    color: white;
    max-width: 500px;
    padding-bottom: 3rem;
    padding-left: 4rem;
}
.other{
    padding-bottom: 100px;
}
.product-desc-title {
    color: #d4af37;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-align: left;
}

.brand-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-direction: column;
}

.brand-logo-container {
    position: relative;
}
.brand-logo-container img{
  width: 10rem!important;
  
}


.water-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    /* margin-top: 10px; */
}

.water-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(84%) sepia(58%) saturate(346%) hue-rotate(7deg) brightness(106%) contrast(106%);
}

.water-text {
    font-size: 14px;
    color: white;
    line-height: 1.2;
    font-weight: 300;
    text-align: left;
}

.product-desc-text {
    font-size: 16px;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 30px;
    font-weight: 300;
    text-align: justify;
    padding-right: 1rem;
    
}
.feature-ptext-highlight{
  color: #b8941f;
  font-weight: 600;
}


.product-available-in {
    font-size: 18px;
    color: white;
    margin-bottom: 20px;
    font-weight: 400;
    text-align: left;
}

.product-volumes {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.product-volume-circle {
    width: 60px;
    height: 60px;
    border: 2px solid #d4af37;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.product-volume-circle:hover {
    background-color: #d4af37;
    color: #2c2c2c;
    transform: scale(1.05);
}

.product-volume-circle span {
    font-size: 10px;
    font-weight: 400;
    margin-top: 2px;
}

.product-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    
}

.product-feature-image {
    max-width: 100%;
    height: auto;
}
.description-hero-image{
    max-width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center right;
}
.page-massage-section{
    width: 100%;
    height: auto;
    background-color: #242424;
    color: #808080;
    text-align: center;
    border-bottom: 1px solid #fff;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Responsive Design */


@media (max-width: 768px) {
  .description-hero-image{
    max-width: 100%;
    height: auto;
}
  .product-volumes {
    /* align-items: center; */
    justify-content: center;
}
.product-available-in{
  text-align: center;
}
  .product-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .product-desc-section {
    padding-bottom: 2rem;
    text-align: center;
    padding-left: 0;
    padding: 1rem;
    max-width: 100%;
  }
.product-desc-title{
    text-align: center;
}
  .brand-header {
    align-items: center;
  }

  .product-image-container {
    width: 100%;
  }
}
@media (max-width: 480px) {

  .product-desc-title {
    font-size: 14px;
  }

  .product-desc-text {
    font-size: 12px;
    text-align: justify;
    padding: 0 2rem;
  }
  .brand-logo-container img{
    width: 5rem;
  }
  .product-volume-circle {
    width: 38px;
    height: 38px;
    font-size: 10px;
  }

  .product-volume-circle span {
    font-size: 9px;
  }
}
@media (max-width: 360px) {

  .product-volume-circle {
    width: 35px;
    height: 35px;
    font-size: 9px;
  }
}
/* Headings */
.section-subtitle {
  color: #d4af37;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  font-size: 16px;
}

.main-heading {
  color: #ff7b42;
  font-weight: 400;
  line-height: 0.85;
  font-size: 3rem;
}
.num{
  font-size: 8rem;
  display: inline-block;
}
.heading-line.brilliance-text {
  display: block;
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(
    135deg,
    #ff7b42 0%,
    #ff9966 15%,
    #ffb380 30%,
    #d4af37 45%,
    #f4d03f 60%,
    #d4af37 80%,
    #b8941f 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* Description: single <p>, exact line breaks via <br> */
.product-desc-section.other {
  max-width: 600px;
  text-align: left;
}

.product-desc-text.single {
  color: #e0e0e0;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  max-width: 850px;
  text-align: justify;
}

/* ----------- Responsive Styles ----------- */

/* Medium screens (tablets) */
@media (max-width: 991px) {

  .heading-line.brilliance-text {
    font-size: 3rem;
  }

  .product-desc-text.single {
    font-size: 14px;
  }
}

/* Small screens (phones) */
@media (max-width: 768px) {
  .section-subtitle {
    text-align: center;
  }

  .main-heading {
    font-size: 2rem;
    text-align: center;
  }

  .heading-line.brilliance-text {
    font-size: 2.5rem;
    text-align: center;
  }

  .product-desc-section.other,
  .product-desc-text.single {
    max-width: 100%;
    font-size: 12px;
    text-align: justify;
    padding: 0 2rem;
  }
  .num{
  font-size: 5rem;
}
}

/* ---------------------------------------------------
   HERO SECTION
--------------------------------------------------- */
.other-product-hero {
  background-image: url('../images/other-product-hero-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 95vh;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
}

.text-other-product-hero h1 {
  max-width: 600px;
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translateX(-50%);
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 300;
  text-align: left;
  line-height: 1.1;
}

.other-product-highlight-text {
  color: #ffffff;
  font-weight: 300;
  font-family: 'Italiana', sans-serif;
  font-size: 5rem;
}

/* ---------------------------------------------------
   BASE PRODUCT SECTION
--------------------------------------------------- */
section.product-fancy,
section.product-vero,
section.product-floor,
section.product-primer,
section.product-enamel {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 4rem 8%;
  overflow: hidden;
}

/* Background Colors */
section.product-fancy  { background: #F3F3E7; }
section.product-vero   { background: #E7EEE7; }
section.product-floor  { background: #F3F3E7; }
section.product-primer { background: #FBEDBE; }
section.product-enamel { background: #E7EEE7; }

/* Bottom Edge Decoration */
section.product-fancy::after,
section.product-vero::after,
section.product-floor::after,
section.product-primer::after,
section.product-enamel::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 15px;
  pointer-events: none;
  mask-image: url('../images/bottom-line.svg');
  mask-repeat: no-repeat;
  mask-position: center bottom;
  mask-size: 100% 100%;
  -webkit-mask-image: url('../images/bottom-line.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center bottom;
  -webkit-mask-size: 100% 100%;
}

section.product-fancy::after  { background-color: #DB1F29; }
section.product-vero::after   { background-color: #538439; }
section.product-floor::after  { background-color: #AE5D5E; }
section.product-primer::after { background-color: #D9B121; }
section.product-enamel::after { background-color: #B1D8D9; }

/* Product Image */
.product-image-fancy,
.product-image-vero,
.product-image-floor,
.product-image-primer,
.product-image-enamel {
  flex: 1 1 40%;
  text-align: center;
  z-index: 2;
  position: relative;
}
.product-image-fancy img,
.product-image-vero img,
.product-image-floor img,
.product-image-primer img,
.product-image-enamel img {
  max-width: 550px;
  width: 100%;
  height: auto;
  z-index: 2;
}

/* Product Info */
.product-info-fancy,
.product-info-vero,
.product-info-floor,
.product-info-primer {
  flex: 1 1 40%;
  z-index: 2;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
.product-info-enamel{
  flex: 1 1 40%;
  z-index: 2;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.product-info-fancy h3,
.product-info-vero h3,
.product-info-floor h3,
.product-info-primer h3,
.product-info-enamel h3 {
  font-size: 2.6rem;
  font-weight: 800;
}
.product-info-fancy span,
.product-info-vero span,
.product-info-floor span,
.product-info-primer span,
.product-info-enamel span {
  color: #c62828;
}
.product-info-vero p,
.product-info-floor p,
.product-info-primer p,
.product-info-enamel p {
  font-size: 18px;
  line-height: 1.5;
  color: #333;
}

/* Features */
.features {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
  gap: 15px;
  flex-wrap: wrap;
}
.features img {
  width: 60px;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.features img:hover { transform: scale(1.1); }

/* Fancy */
.product-info-fancy-logo {
  font-size: 72px;
  font-weight: 900;
  color: #e42224;
  letter-spacing: 2px;
}
.product-info-fancy-logo sup {
  font-size: 22px;
  vertical-align: super;
}
.subtext {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.smooth {
  font-family: "Brush Script MT", cursive;
  font-size: 32px;
  line-height: 1.2;
}
.divider{
  width: 2px;
  height: 90px;
  background-color: #0a0101;
  align-self: center;
}
.textblock {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.3;
}
.product-info-vero h3 .vertical {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 1.6rem;
  font-weight: 800;
  color: #000;
  letter-spacing: 2px;
}

.product-info-vero h3 .vertical sup {
  transform: rotate(90deg);
  display: inline-block;
  font-size:1.5rem;
  font-weight: 300;
  vertical-align: baseline;
}

/* Highlight acrylic emulsion */
.product-info-vero h3 .Vhighlight {
  color: #c62828;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  font-size: 3.5rem;
  line-height: 1;
  display: inline-block;
  text-align: left;
  
}

.product-info-vero h3 .Vhighlight .small {
  font-size: 1.8rem;
  font-weight: 400;
  display: block;
}
/* ---------------------------------------------------
   BRUSH STROKES
--------------------------------------------------- */
.brush-fancy, .brush-floor, .brush-enamel {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 100%;
  max-width: 700px;
  z-index: 1;
  transform: translateY(-50%);
}
.brush-vero, .brush-primer {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 100%;
  max-width: 700px;
  z-index: 1;
  transform: translateY(-50%);
}
.brush-fancy img, .brush-floor img, .brush-enamel img,
.brush-vero img, .brush-primer img {
  width: 100%;
  height: auto;
}

/* ---------------------------------------------------
   RESPONSIVE
--------------------------------------------------- */

@media (max-width: 1024px) {
  section.product-fancy,
  section.product-vero,
  section.product-floor,
  section.product-primer,
  section.product-enamel {
    flex-direction: column;
    padding: 3rem 5%;
  }

  /* Always stack Info first, Image second */
  .product-info-fancy,
  .product-info-vero,
  .product-info-floor,
  .product-info-primer,
  .product-info-enamel {
    order: 1;
    width: 100%;
    text-align: center;
  }
  .product-image-fancy,
  .product-image-vero,
  .product-image-floor,
  .product-image-primer,
  .product-image-enamel {
    order: 2;
    width: 100%;
    margin-top: 2rem;
    text-align: center;
  }

  .subtext { justify-content: center; }
  .features { justify-content: center; }
  .product-info-fancy-logo { font-size: 52px; }
  .features img { width: 55px; }

  .brush-fancy, .brush-floor, .brush-enamel,
  .brush-vero, .brush-primer {
    width: 110%;
    max-width: none;
    top: 65%;
    left: 0;
  }
}

@media (max-width: 922px) {
  .text-other-product-hero h1 {
    font-size: clamp(1.3rem, 4vw, 2rem);
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .other-product-highlight-text {
    font-size: clamp(2rem, 7vw, 3.5rem);
  }
  .brush-fancy, .brush-floor, .brush-enamel,
  .brush-vero, .brush-primer {
    top: 70%;
  }
}

@media (max-width: 768px) {
  .text-other-product-hero h1 {
    text-align: center;
    font-size: 2rem;
  }
  .other-product-highlight-text {
    font-size: 3rem;
    display: block;
  }
  .brush-fancy, .brush-floor, .brush-enamel,
  .brush-vero, .brush-primer {
    width: 120%;
    max-width: none;
    top: 70%;
    left: -5%;
  }
  .product-image-fancy img,
  .product-image-vero img,
  .product-image-floor img,
  .product-image-primer img,
  .product-image-enamel img {
    max-width: 350px;
  }
}



