.sticker-image {
  position: relative;
  width: 100%;
  height: 250px;
  z-index: 10;
  padding: 6px;
  /*object-fit: cover;*/
}

img.Signs-Posters-image {
  position: relative;
  width: 100%;
  height: 300px;
  z-index: 10;
  padding: 6px;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
  background-color: #0C8B93;
}

.section-title-1::before,
.section-title-2::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background-image: radial-gradient(#8f0d58, #0C8B93, white);
  border-radius: 2px;
}


/* popup form css */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.popup-content {
  background-color: white;
  width: 500px;
  margin: 100px auto;
  padding: 20px;
  border-radius: 5px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 40px;
  cursor: pointer;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type="submit"] {
  background-color: #0C8B93;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #0a6d73;
}


/* tagline css */

.product-tagline {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
}

.tag-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

.tags span {
  background-color: #0C8B93;
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 13px;
}

.tags span:hover {
  background-color: #0a6f74;
  transform: scale(1.05);
}





#popupForm {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  /* Flex styles added dynamically via JS */
}

.popup-content {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

/* stamp css */
.stamp-image {
  position: relative;
  width: 100%;
  height: 250px;
  z-index: 10;
  padding: 6px;
}

.color-options {
  display: flex;
  gap: 12px;
  /* spacing between color boxes */
  margin-top: 10px;
}

.color-box {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.color-box:hover,
.color-box:focus {
  transform: scale(1.1);
  border-color: #0C8B93;
  outline: none;
}

/* Specific colors */
.color-box.red {
  background-color: #e74c3c;
}

.color-box.green {
  background-color: #27ae60;
}

.color-box.blue {
  background-color: #2980b9;
}

.color-box.black {
  background-color: #2c3e50;
}

/* Flex Container */
.product-info {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

/* Free Shipping Badge */
.free-shipping {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  background-color: #d4edda;
  color: red;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  margin-top: 6px;
  border: 1px solid #c3e6cb;
}



/* Color Swatches */
.multi-color {
  display: flex;
  gap: 5px;
  align-items: center;
}

.color-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid #ddd;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
  cursor: pointer;
}

.color-swatch:hover {
  transform: scale(1.15);
}

/* Individual Colors */
.color-swatch.black {
  background-color: #000000;
}

.color-swatch.blue {
  background-color: #007BFF;
}

.color-swatch.red {
  background-color: #DC3545;
}

.color-swatch.green {
  background-color: #28A745;
}

.color-swatch.pink {
  background-color: #E83E8C;
}








.blink {
  animation: fadeBlink 1.5s infinite;
  color: red;
}

@keyframes fadeBlink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}










/* Container for notes */
.notes {
  padding: 10px;
  background-color: #f0f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 139, 147, 0.05);
}

/* List styling */
.note-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* Individual note items */
.note-list li {
  background-color: #e6fafa;
  border: 1px solid #0c8b93;
  border-radius: 6px;
  padding: 5px 10px;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 15px;
  color: #0c8b93;
  transition: all 0.3s ease;
}

/* Hover effect */
.note-list li:hover {
  background-color: #0c8b93;
  color: #ffffff;
  cursor: pointer;
}




.howtouse {
  padding: 10px;
  background-color: #f0f9f9;
  border-radius: 8px;
}

.use {
  background-color: #e0f7f7;
  border: 1px solid #0c8b93;
  border-radius: 4px;
  padding: 5px 10px;
  margin-bottom: 8px;
  font-weight: 500;
  color: #0c8b93;
  transition: background-color 0.3s ease;
}

.use:hover {
  background-color: #0c8b93;
  color: white;
  cursor: pointer;
}






/* Section Title */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lead Paragraph */
.lead {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Custom Process Ordered List */
.custom-process {
    list-style: none;
    padding-left: 0;
    counter-reset: step-counter;
}

.custom-process li {
    counter-increment: step-counter;
    margin-bottom: 2rem;
    padding-left: 3.5rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    padding: 1.5rem 1.5rem 1.5rem 4rem;
    border-radius: 8px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    
}

.custom-process li:hover {
    background-color: #0C8B93;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    color: white;
    font-size: 1.3rem;

}

.custom-process li::before {
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background-color: #007bff;
    color: #fff;
    width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 0 0 3px #e0f0ff;
}

/* Responsive Typography */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .lead {
        font-size: 1rem;
    }
    .custom-process li {
        font-size: 1rem;
        padding-left: 3rem;
    }
}









/* Responsive adjustments for small screens */
@media (max-width: 576px) {

  .sticker-image {
    position: relative;
    width: 100%;
    height: 150px;
    z-index: 10;
    padding: 6px;
  }

  .stamp-image {
    position: relative;
    width: 100%;
    height: 150px;
    z-index: 10;
    padding: 6px;
  }

  h1.display-7 {
    font-size: 12px !important;
  }

  small.align-bottom {
    font-size: 12px !important;
    font-weight: normal;
  }

  h1.display-5.mb-3 {
    font-size: 12px !important;
  }

  small.align-top {
    font-size: 12px !important;
  }

  span {
    font-size: 12px !important;
  }


  .btn {
    font-size: 10px;
  }

  .whatsapp-button {
    position: fixed;
    bottom: 50px;
    left: 10px;
    z-index: 1000;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    font-size: 30px;
    color: #25D366;
  }

  .border-bottom.py-2.px-3.mb-4 {
    padding-bottom: 0px !important;
    /* padding-left: 10px !important; */
    margin-bottom: 5px !important;
  }

  .d-flex span {
    font-size: 0.875rem;
    white-space: normal;
  }

  .padding-10 {
    padding: 5px !important;
  }

  h4.mb-1.mt-1 {
    font-size: 14px !important;
  }

  .popup-content {
    background-color: white;
    width: 330px;
    margin: 100px auto;
    padding: 20px;
    border-radius: 5px;
    position: relative;
  }

  .close-btn {
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 40px !important;
    cursor: pointer;
  }

}



/*whatsapp button popup form*/
.popup-whatsapp {
    position: relative;
    bottom: 0px;
    left: 10px;
    display: inline;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background-color: #25D366;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 9999;
    animation: whatsapp-pulse 1.8s infinite;
}

.popup-whatsapp i {
    font-size: 22px;
}

.popup-whatsapp:hover {
    background-color: #1ebe5d;
    transform: translateY(-3px);
}

/* Pulse Effect */
@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Mobile Friendly */
@media (max-width: 480px) {
    .popup-whatsapp {
        padding: 10px 14px;
        font-size: 14px;
        bottom: 20px;
        right: 20px;
    }
}



.product-tagline .tags a {
                        font-size: 14px;
                        border-radius: 15px;
                    }

















