       /* PRODUCT CARD */
.product-style1 {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 18px;
    /* height: 100%; */
    transition: all 0.35s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.product-style1:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

/* PRODUCT IMAGE */
.product-img {
    text-align: center;
    margin-bottom: 15px;
}

.product-img img {
    max-width: 100%;
    height: auto;
    transition: transform 0.35s ease;
}

.product-style1:hover .product-img img {
    transform: scale(1.05);
}

/* PRODUCT CONTENT */
.product-about {
    text-align: center;
}

/* STOCK LABEL */
.product-about .text {
    font-size: 13px;
    font-weight: 600;
    color: #0bb35b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

/* PRODUCT TITLE */
.product-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.product-title a {
    color: #111;
    text-decoration: none;
}

.product-title a:hover {
    color: #c70039; /* premium accent */
}

/* CATEGORY / TYPE */
.price {
    display: block;
    font-size: 14px;
    color: #666;
    margin-bottom: 14px;
}

/* ENQUIRY BUTTON */
.product-about button {
    background: linear-gradient(135deg, #c70039, #8a0026);
    color: #fff;
    border: none;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-about button:hover {
    background: linear-gradient(135deg, #8a0026, #c70039);
    transform: translateY(-2px);
}





        /* ===============================
   Verify Product Button – Header
================================ */

.main-menu ul {
    /* display: flex; */
    align-items: center;
    gap: 58px;
}

.verify-btn-wrap {
    margin-left: 35px;
}

.verify-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #b5122b, #7c0f1f);
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    border-radius: 30px;
    box-shadow: 0 6px 18px rgba(181, 18, 43, 0.35);
    transition: all 0.3s ease;
}

.verify-btn i {
    font-size: 14px;
}

.verify-btn:hover {
    background: linear-gradient(135deg, #7c0f1f, #b5122b);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(181, 18, 43, 0.45);
}

/* Prevent hover underline */
.main-menu a.verify-btn::before {
    display: none;
}

/* ===============================
   Responsive Handling
================================ */

@media (max-width: 991px) {
    .verify-btn-wrap {
        display: none;
    }
}

.banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider {
  position: relative;
  height: 520px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

/* Navigation dots */
.slider-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.slider-nav .dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
}

.slider-nav .dot.active {
  background: #ffffff;
}

/* Mobile */
@media (max-width: 767px) {
  .slider {
    height: 280px;
  }
}


/* Mobile view only */
@media (max-width: 991px) {

  /* Move verify button inside mobile menu */
  .pverify-btn-wrap {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    padding: 0 16px;
    z-index: 9999;
  }

  .verify-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    border-radius: 30px;
    font-weight: 600;
  }

  /* Ensure mobile menu has space for button */
  .dv-menu-area {
    padding-bottom: 80px;
  }
}

/* Mobile only */
@media (max-width: 991px) {

  .verify-mobile {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid #eee;
  }

  .verify-btn-mobile {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 16px;
    background: linear-gradient(135deg, #b11226, #e63946);
    color: #fff !important;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(177, 18, 38, 0.35);
    transition: all 0.3s ease;
  }

  .verify-btn-mobile:hover,
  .verify-btn-mobile:focus {
    background: linear-gradient(135deg, #8e0e1d, #c92a38);
    transform: translateY(-2px);
  }
}



/* verify product page */
.verify-product-section {
  max-width: 800px;
  margin: 80px auto;
  padding: 40px 30px;
  text-align: center;
  background: #111;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.verify-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.verify-subtitle {
  font-size: 15px;
  color: #b5b5b5;
  margin-bottom: 30px;
  line-height: 1.6;
}

.verify-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.verify-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: #fff;
  outline: none;
}

.verify-form input::placeholder {
  color: #777;
}

.verify-form input:focus {
  border-color: #e63946;
}

.verify-form button {
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  background: #e63946;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.verify-form button:hover {
  background: #ff4d5a;
}

#result {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 500;
}

/* Result States */
#result.success {
  color: #2ecc71;
}

#result.invalid,
#result.error {
  color: #e74c3c;
}

#result.used {
  color: #f39c12;
}

/* Mobile Optimization */
@media (max-width: 480px) {
  .verify-form {
    flex-direction: column;
  }

  .verify-form button {
    width: 100%;
  }
}



/* Fixed Verify Button - Mobile Only */
.verify-btn-fixed {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 420px;
  background: #e63946;
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* Hide on Desktop */
@media (min-width: 768px) {
  .verify-btn-fixed {
    display: none;
  }
}
@media (max-width: 767px) {
  body {
    padding-bottom: 20px;
  }
}
