    @import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@400;500;600;700&family=SolaimanLipi&display=swap");

/* Bangla Language Support */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
label,
input,
button,
td,
th {
  font-family: "Noto Sans Bengali", "SolaimanLipi", Arial, sans-serif;
  line-height: 1.6;
}

/* Better text rendering for Bangla */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  background: #fff;
  color: #000;
  overflow-x: hidden;
  overflow-y: visible;
  width: 100%;
  max-width: 100vw;
}

/* Bangla number formatting */
.bangla-number {
  direction: ltr;
  unicode-bidi: bidi-override;
}

/* Input placeholder styling for Bangla */
input::placeholder,
textarea::placeholder {
  font-family: "Noto Sans Bengali", "SolaimanLipi", Arial, sans-serif;
  opacity: 0.7;
}

/* Attractive Button Animations */
.button {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #ff6b35, #f7931e, #ff6b35);
  background-size: 200% 200%;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  transition: all 0.4s ease;
  overflow: hidden;
  z-index: 1;
  transform: translateY(0);
  animation: pulse 2s infinite;
}

.button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.7s ease;
  z-index: -1;
}

.button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
  background-position: 100% 0;
  animation: none;
}

.button:hover::before {
  left: 100%;
}

.button:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

/* Pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  }
  50% {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5),
      0 0 0 10px rgba(255, 107, 53, 0.1);
  }
  100% {
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  }
}

/* Ripple effect on click */
.button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.button:active::after {
  width: 300px;
  height: 300px;
}

/* Floating animation for buttons */
.button {
  animation: float 3s ease-in-out infinite, pulse 2s infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Special glow effect */
.button:hover {
  animation: glow 1.5s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }
  to {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
      0 0 30px rgba(255, 255, 255, 0.8);
  }
}

/* General responsive image styles */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Product section container */
.product-section {
  text-align: center;
  padding: 40px 20px;
  background-color: #007a00;
  color: #ffffff;
  margin: 30px auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 122, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.product-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ffff00, #ffd700, #ffff00);
  border-radius: 15px 15px 0 0;
}

.product-section > div:nth-child(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 20px 0;
}

.product-section img {
  max-width: 300px;
  transition: all 0.3s ease;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.product-section img:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Image error handling and loading states */
img {
  background-color: #f0f0f0;
  background-image: linear-gradient(45deg, #e0e0e0 25%, transparent 25%),
    linear-gradient(-45deg, #e0e0e0 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #e0e0e0 75%),
    linear-gradient(-45deg, transparent 75%, #e0e0e0 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Loading state for images */
img:not([src]) {
  opacity: 0.5;
}

img[src] {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Fallback for broken images */
img::before {
  content: "📷 ছবি লোড হচ্ছে...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 10px;
  border-radius: 5px;
  font-family: "Noto Sans Bengali", Arial, sans-serif;
  color: #666;
  z-index: 1;
}

img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #007a00, #00a000);
  opacity: 0.1;
  z-index: 0;
}

/* Enhanced Attractive List Items */
ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

li {
  position: relative;
  background: linear-gradient(135deg, #ffffff, #f8f9fa);
  margin: 15px 0;
  padding: 20px 25px;
  border-radius: 15px;
  border-left: 5px solid #007a00;
  box-shadow: 0 8px 25px rgba(0, 122, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  font-size: 16px;
  line-height: 1.6;
  cursor: pointer;
  transform: translateX(0);
}

/* Hover effects */
li:hover {
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 122, 0, 0.2);
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border-left-color: #ff6b35;
}

/* Shimmer effect on hover */
li::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.7s ease;
}

li:hover::after {
  left: 100%;
}

/* Entrance animation */
li {
  animation: slideInLeft 0.8s ease-out forwards;
  opacity: 0;
  transform: translateX(-30px);
}

li:nth-child(1) {
  animation-delay: 0.1s;
}
li:nth-child(2) {
  animation-delay: 0.2s;
}
li:nth-child(3) {
  animation-delay: 0.3s;
}
li:nth-child(4) {
  animation-delay: 0.4s;
}
li:nth-child(5) {
  animation-delay: 0.5s;
}
li:nth-child(6) {
  animation-delay: 0.6s;
}

/* Key Animations */
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Special highlighting for important text */
li .highlight-text {
  background: linear-gradient(120deg, #ff6b35, #f7931e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* Focus effects for accessibility */
li:focus,
li.focused {
  outline: 3px solid #007a00;
  outline-offset: 2px;
  transform: translateX(15px) scale(1.03);
  background: linear-gradient(135deg, #e8f5e9, #f1f8e9);
  border-left-color: #ff6b35;
}

/* Add attention-grabbing effects */
li {
  position: relative;
  overflow: visible;
}

/* Pulsing effect for important items */
li:nth-child(odd) {
  animation: slideInLeft 0.8s ease-out forwards, subtlePulse 4s infinite 2s;
}

@keyframes subtlePulse {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(0, 122, 0, 0.1);
  }
  50% {
    box-shadow: 0 8px 25px rgba(0, 122, 0, 0.2), 0 0 0 1px rgba(0, 122, 0, 0.1);
  }
}

/* Enhanced Price Section Styling */
.price-section {
  background: linear-gradient(135deg, #2d5016, #4a7c23, #2d5016);
  background-size: 300% 300%;
  animation: gradientMove 4s ease infinite;
  padding: 60px 20px 50px 20px;
  margin: 80px auto 40px auto;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(45, 80, 22, 0.4);
  position: relative;
  overflow: visible;
  z-index: 1;
  height: auto;
  border: 4px solid #ffff00;
  width: calc(100% - 40px);
  max-width: 900px;
  box-sizing: border-box;
}

.price-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  animation: shine 3s infinite;
  pointer-events: none;
  z-index: -1;
}

.price-section::after {
  content: "🔥 সীমিত সময়ের অফার 🔥";
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #ffff00, #ffd700);
  color: #2d5016;
  padding: 12px 30px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  animation: shake 2s infinite;
  box-shadow: 0 8px 25px rgba(255, 255, 0, 0.6);
  white-space: nowrap;
  z-index: 100;
  border: 3px solid #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  max-width: calc(100% - 60px);
  overflow: visible;
  display: block;
}

.price-section h2 {
  color: #ffffff !important;
  font-size: clamp(18px, 4vw, 24px);
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 2px 2px 8px rgba(0, 0, 0, 0.8);
  font-weight: 700;
  letter-spacing: 1px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  line-height: 1.3;
}

.price-section h2 del {
  color: #ffffff !important;
  font-size: 28px;
  text-decoration: line-through;
  text-decoration-color: #ff0000;
  text-decoration-thickness: 4px;
  animation: strikethrough 2s ease-in-out infinite;
  background: rgba(255, 0, 0, 0.2);
  padding: 4px 12px;
  border-radius: 8px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 1px 1px 3px rgba(0, 0, 0, 0.5);
  font-weight: 700;
}

.price-section h1 {
  color: #ffffff !important;
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 900;
  margin: 20px 0;
  animation: bouncePrice 3s ease-in-out infinite;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.9), 2px 2px 8px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(255, 255, 255, 0.6);
  position: relative;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #ffffff !important;
  background-clip: unset !important;
  letter-spacing: 1px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  line-height: 1.2;
}

/* Fallback for browsers that don't support background-clip */
@supports not (-webkit-background-clip: text) {
  .price-section h1 {
    color: #ffffff !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.9),
      2px 2px 8px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 255, 255, 0.6) !important;
  }
}

.price-section h1::before {
  content: "💰";
  position: absolute;
  left: -50px;
  animation: coinSpin 2s linear infinite;
  top: 50%;
  transform: translateY(-50%);
}

.price-section h1::after {
  content: "💰";
  position: absolute;
  right: -50px;
  animation: coinSpin 2s linear infinite reverse;
  top: 50%;
  transform: translateY(-50%);
}

/* Enhanced Price Elements */
.price-container {
  position: relative;
  z-index: 2;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.price-highlight {
  display: inline-block;
  background: #ffff00 !important;
  color: #2d5016 !important;
  padding: 10px 25px;
  border-radius: 15px;
  animation: priceFlash 1.5s ease-in-out infinite,
    wiggle 2s ease-in-out infinite;
  box-shadow: 0 0 30px rgba(255, 255, 0, 0.9), 0 5px 15px rgba(0, 0, 0, 0.3),
    inset 0 2px 5px rgba(255, 255, 255, 0.3);
  font-size: 1.4em;
  position: relative;
  font-weight: 900;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  border: 4px solid #fff;
  letter-spacing: 2px;
}

.price-highlight::before {
  content: "⚡";
  position: absolute;
  left: -25px;
  animation: lightning 1s ease-in-out infinite;
  top: 50%;
  transform: translateY(-50%);
}

.price-highlight::after {
  content: "⚡";
  position: absolute;
  right: -25px;
  animation: lightning 1s ease-in-out infinite 0.5s;
  top: 50%;
  transform: translateY(-50%);
}

.savings-badge {
  background: linear-gradient(45deg, #4a7c23, #2d5016);
  color: #ffffff;
  padding: 18px 30px;
  border-radius: 50px;
  margin: 20px auto;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 15px 30px rgba(74, 124, 35, 0.4);
  border: 3px solid #ffff00;
  position: relative;
  z-index: 5;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.savings-text {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.savings-amount {
  display: block;
  font-size: 28px;
  font-weight: 900;
  margin-top: 5px;
  animation: countUp 2s ease-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #ffff00 !important;
  letter-spacing: 1px;
}

.urgency-text {
  background: linear-gradient(45deg, #4a7c23, #2d5016);
  color: #ffffff;
  padding: 15px 25px;
  border-radius: 25px;
  margin-top: 20px;
  font-weight: bold;
  animation: blink 1.5s ease-in-out infinite;
  border: 3px solid #ffff00;
  box-shadow: 0 8px 20px rgba(74, 124, 35, 0.4);
  display: inline-block;
  position: relative;
  z-index: 5;
  max-width: 90%;
  word-wrap: break-word;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Product section text styling */
.product-section h1,
.product-section h2,
.product-section h3,
.product-section p,
.product-section li {
  color: #ffffff;
}

/* Keep highlighted text in product section as yellow */
.product-section .highlight {
  color: #ffff00;
}

/* Additional Animation Keyframes */
@keyframes priceFlash {
  0%,
  100% {
    background-position: 0% 50%;
    transform: scale(1);
  }
  50% {
    background-position: 100% 50%;
    transform: scale(1.1);
  }
}

@keyframes wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-3deg);
  }
  75% {
    transform: rotate(3deg);
  }
}

@keyframes lightning {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

@keyframes countUp {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blink {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0.7;
  }
}

/* Price Animation Keyframes */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes shine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(-50%) rotate(0deg);
  }
  25% {
    transform: translateX(-50%) rotate(-2deg);
  }
  75% {
    transform: translateX(-50%) rotate(2deg);
  }
}

@keyframes strikethrough {
  0%,
  100% {
    text-decoration-thickness: 3px;
  }
  50% {
    text-decoration-thickness: 5px;
  }
}

@keyframes priceGlow {
  0%,
  100% {
    background-position: 0% 50%;
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    background-position: 100% 50%;
    transform: scale(1.05);
    filter: brightness(1.2);
  }
}

@keyframes bouncePrice {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes coinSpin {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

/* Container and Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px;
  box-sizing: border-box;
  overflow: visible;
}

.header {
  background-color: #007a00;
  color: #fff;
  text-align: center;
  padding: 30px 15px;
}

.heading {
  background-color: #007a00;
  color: white;
  padding: 8px;
  border-radius: 5px;
}

.highlight {
  color: yellow;
}

.section {
  text-align: center;
  padding: 30px 15px;
  margin-top: 20px;
  overflow: visible;
}

/* Responsive iframe styling */
.responsive-iframe {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.responsive-iframe iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 15px;
}

/* Specific styling for offer price */
.offer-price {
  color: #ffffff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #ffffff !important;
  background-clip: unset !important;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.9), 2px 2px 8px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(255, 255, 255, 0.6) !important;
  font-weight: 900 !important;
  font-size: 48px !important;
  letter-spacing: 1px !important;
}

/* Force white color for price elements with highest specificity */
.price-section .price-container h2,
.price-section .price-container h2 *,
.price-section .price-container h1.offer-price,
.price-section .price-container h1.offer-price * {
  color: #ffffff !important;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 2px 2px 8px rgba(0, 0, 0, 0.8) !important;
}

/* Specific styling for the strikethrough del element */
.price-section .price-container h2 del {
  color: #ffffff !important;
  text-decoration-color: #ff0000 !important;
  text-decoration-thickness: 4px !important;
  background: rgba(255, 0, 0, 0.2) !important;
  padding: 4px 8px !important;
  border-radius: 6px !important;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.8), 1px 1px 3px rgba(0, 0, 0, 0.5) !important;
}

/* Override any existing styles for offer price */
h1.offer-price {
  color: #ffffff !important;
  text-shadow: 0 0 25px rgba(255, 255, 255, 0.9), 2px 2px 8px rgba(0, 0, 0, 0.8),
    0 0 15px rgba(255, 255, 255, 0.6) !important;
}

/* Enhanced mobile responsiveness */
@media (max-width: 768px) {
  .button {
    padding: 12px 25px;
    font-size: 16px;
    margin: 15px 0;
  }

  /* Make all images 100% width on mobile */
  img {
    width: 100% !important;
    height: auto !important;
    max-width: 100%;
    display: block;
    margin: 10px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

  /* Product section images */
  .product-section img {
    width: 100% !important;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
  }

  .product-section img:hover {
    transform: scale(1.02);
  }

  /* Responsive iframe for mobile */
  .responsive-iframe {
    width: 100%;
    margin: 15px 0;
  }

  .responsive-iframe iframe {
    width: 100% !important;
    height: 250px !important;
    border-radius: 10px;
  }

  /* Mobile responsive adjustments */
  li {
    padding: 15px 20px;
    font-size: 14px;
    margin: 12px 0;
  }

  li:hover {
    transform: translateX(5px) scale(1.01);
  } /* Responsive Price Section */
  .price-section {
    padding: 50px 15px 40px 15px;
    margin: 60px 10px 30px 10px;
    width: calc(100% - 20px);
    max-width: none;
    overflow: visible;
  }
  .price-section::after {
    top: -20px;
    font-size: 11px;
    padding: 8px 15px;
    max-width: calc(100% - 30px);
  }

  .price-section h1 {
    font-size: clamp(20px, 5vw, 32px) !important;
    margin: 15px 0 !important;
    line-height: 1.2 !important;
  }

  .price-section h2 {
    font-size: clamp(16px, 4vw, 20px) !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
  }

  .urgency-text {
    font-size: 14px;
    padding: 10px 15px;
    margin: 20px auto 0 auto;
    max-width: 90%;
  }

  .offer-price {
    font-size: clamp(20px, 5vw, 32px) !important;
  }
}

/* Reduce animations on smaller screens to prevent scrolling issues */
@media (max-width: 768px) {
  .price-section {
    animation: none !important;
    background: linear-gradient(135deg, #2d5016, #4a7c23, #2d5016) !important;
    background-size: 100% 100% !important;
    overflow: visible !important;
  }

  .price-section::before {
    animation: none !important;
  }
  .price-section::after {
    animation: shake 2s infinite !important;
    font-size: 10px !important;
    padding: 6px 12px !important;
    max-width: calc(100% - 30px) !important;
    top: -18px !important;
  }

  .price-highlight {
    animation: priceFlash 1.5s ease-in-out infinite !important;
  }

  .urgency-text {
    animation: blink 1.5s ease-in-out infinite !important;
    max-width: 95% !important;
    font-size: 13px !important;
    padding: 12px 20px !important;
  }
}

@media (max-width: 480px) {
  .button {
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 30px;
  }

  /* Even more responsive images for small mobile */
  img {
    width: 100% !important;
    height: auto !important;
    margin: 8px auto;
  }

  .product-section img {
    width: 100% !important;
    margin-bottom: 12px;
  }

  .responsive-iframe iframe {
    height: 200px !important;
  }

  /* Stack product section images vertically */
  .product-section > div:nth-child(2) {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .price-section {
    padding: 30px 10px;
    margin: 20px 5px;
    height: auto;
    overflow: hidden;
  }

  .price-section::after {
    top: -12px;
    font-size: 10px;
    padding: 6px 12px;
  }

  .urgency-text {
    font-size: 12px;
    padding: 8px 12px;
    margin: 15px auto 0 auto;
  }

  .offer-price {
    font-size: 28px !important;
  }
}

/* Extra small mobile devices - prevent overflow */
@media (max-width: 320px) {
  .container {
    padding: 10px !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .header {
    padding: 20px 10px !important;
    margin: 0 !important;
  }
  .product-section {
    padding: 25px 15px !important;
    margin: 20px 10px !important;
    border-radius: 10px !important;
  }
  .price-section {
    padding: 20px 10px !important;
    margin: 15px 5px !important;
    height: auto !important;
    overflow: hidden !important;
  }

  .button {
    padding: 10px 15px !important;
    font-size: 14px !important;
    width: calc(100% - 20px) !important;
    max-width: 280px !important;
    margin: 10px auto !important;
    display: block !important;
  }

  img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  .responsive-iframe {
    width: 100% !important;
    margin: 10px 0 !important;
  }

  .responsive-iframe iframe {
    width: 100% !important;
    height: 180px !important;
  }

  h1 {
    font-size: 18px !important;
    line-height: 1.4 !important;
    padding: 0 5px !important;
  }

  h2 {
    font-size: 16px !important;
    line-height: 1.4 !important;
    padding: 0 5px !important;
  }

  li {
    padding: 10px 15px !important;
    font-size: 13px !important;
    margin: 8px 0 !important;
  }
}

/* Ensure parent containers don't clip the price section badge */
body {
  overflow-x: hidden;
  overflow-y: visible;
}

.container {
  overflow: visible;
}

/* Ensure all sections allow vertical overflow for badges */
.section {
  overflow: visible;
}

/* Ensure price section content stays within bounds */
@media (max-width: 480px) {
  .price-section {
    margin: 40px 5px 15px 5px !important;
    padding: 40px 15px 30px 15px !important;
    position: relative !important;
    contain: none !important;
    width: calc(100% - 10px) !important;
    max-width: none !important;
    overflow: visible !important;
  }
  .price-section::after {
    top: -16px !important;
    font-size: 9px !important;
    padding: 5px 10px !important;
    max-width: calc(100% - 20px) !important;
  }

  .price-container {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .price-section h1,
  .price-section h2 {
    font-size: clamp(14px, 4vw, 18px) !important;
    line-height: 1.3 !important;
    margin: 10px 0 !important;
    padding: 0 10px !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }

  .price-highlight {
    font-size: 1.2em !important;
    padding: 8px 15px !important;
  }

  .savings-badge {
    margin: 10px 0 !important;
    font-size: 12px !important;
  }

  .urgency-text {
    font-size: 12px !important;
    padding: 10px 15px !important;
    margin: 15px 5px 0 5px !important;
  }
}

/* Extra responsive for very small screens */
@media (max-width: 360px) {
  .price-section {
    margin: 35px 2px 10px 2px !important;
    padding: 35px 10px 25px 10px !important;
    border-radius: 15px !important;
    width: calc(100% - 4px) !important;
    overflow: visible !important;
  }
  .price-section::after {
    top: -14px !important;
    font-size: 8px !important;
    padding: 4px 8px !important;
    border-radius: 15px !important;
    max-width: calc(100% - 16px) !important;
  }

  .price-section h1,
  .price-section h2 {
    font-size: clamp(12px, 3.5vw, 16px) !important;
    margin: 8px 0 !important;
    padding: 0 5px !important;
  }

  .price-highlight {
    font-size: 1.1em !important;
    padding: 6px 12px !important;
  }

  .urgency-text {
    font-size: 11px !important;
    padding: 8px 12px !important;
    margin: 12px 2px 0 2px !important;
  }

  .savings-badge {
    margin: 8px 0 !important;
    font-size: 11px !important;
  }
}

/* Prevent horizontal overflow on mobile */
* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  width: 100%;
}

body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Global mobile overflow prevention */
.container,
.header,
.section,
.product-section,
.price-section {
  max-width: 100%;
  overflow-x: hidden;
}

/* Ensure text doesn't cause overflow */
h1,
h2,
h3,
p,
li,
div {
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

/* Fix any potential margin/padding overflow */
* {
  max-width: 100%;
}

*:not(html):not(body) {
  max-width: 100%;
}

/* Fix price section content overflow */
.price-section h1,
.price-section h2,
.price-section .urgency-text,
.price-section .savings-badge {
  width: 100%;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
}

.price-section * {
  max-width: 100%;
  box-sizing: border-box;
}

/* Background animation for product section */
@keyframes subtleBgMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Order Form Container Styling */
.order-form-container {
    background-color:green;
  /*max-width: 1200px;*/
  /*margin: 40px auto;*/
  /*padding: 30px;*/
  /*background: #ffffff;*/
  /*border-radius: 15px;*/
  /*border: 0.5px solid #007a00;*/
  /*box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);*/
  /*display: grid;*/
  /*grid-template-columns: 1fr 1fr;*/
  /*gap: 40px;*/
  /*position: relative;*/
  /*overflow: hidden;*/
}

/* Form Section Styling */
.form-section {
  padding: 25px;
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  border-radius: 12px;
  border: 1px solid #007a00;
  box-shadow: 0 8px 25px rgba(0, 122, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.form-section h3 {
  color: #007a00;
  font-size: 26px;
  margin-bottom: 25px;
  font-weight: 700;
  text-align: center;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 122, 0, 0.1);
}

.form-section h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #007a00, transparent);
  border-radius: 2px;
}

/* Form Group Styling */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  font-family: "Noto Sans Bengali", Arial, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007a00;
  box-shadow: 0 0 0 3px rgba(0, 122, 0, 0.1);
  transform: translateY(-1px);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Radio Group Styling */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-label {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #007a00;
}

.radio-label:hover {
  border-color: #007a00;
  background: #f0f8f0;
  transform: translateY(-1px);
}

.radio-label input[type="radio"] {
  margin-right: 10px;
  width: 18px;
  height: 18px;
}

.radio-label input[type="radio"]:checked + * {
  color: #007a00;
}

/* Summary Section Styling */
.summary-section {
  padding: 20px;
  background: linear-gradient(135deg, #007a00, #4a7c23);
  border-radius: 12px;
  color: #ffffff;
}

.summary-section h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
  position: relative;
}

.summary-section h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: #ffff00;
  border-radius: 2px;
}

/* Order Summary Styling */
.order-summary {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.summary-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 15px;
  font-weight: 700;
  color: #ffff00;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-row.total {
  border-bottom: none;
  border-top: 2px solid #ffff00;
  margin-top: 15px;
  padding-top: 15px;
  font-weight: 700;
  font-size: 18px;
  color: #ffff00;
}

.total-amount {
  font-size: 20px;
  font-weight: 900;
  color: #ffff00;
}

.no-products-message {
  text-align: center;
  padding: 20px;
  color: #ffffff;
  font-style: italic;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin: 10px 0;
}

/* Confirm Order Button */
.confirm-order-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(45deg, #ffff00, #ffd700);
  color: #007a00;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.confirm-order-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 0, 0.4);
  background: linear-gradient(45deg, #ffd700, #ffff00);
}

.confirm-order-btn:disabled {
  background: #cccccc;
  color: #666666;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .order-form-container {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 20px 15px;
    padding: 20px;
  }

  .form-section,
  .summary-section {
    padding: 15px;
  }

  .summary-header {
    font-size: 12px;
  }

  .confirm-order-btn {
    font-size: 16px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .order-form-container {
    margin: 15px 10px;
    padding: 15px;
  }

  .form-section h3,
  .summary-section h3 {
    font-size: 20px;
  }

  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 13px;
  }

  .radio-label {
    padding: 10px 12px;
    font-size: 13px;
  }
}

        /* Quantity Controls Styles */
        .quantity-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 8px;
            gap: 10px;
        }
        
        .qty-btn {
            width: 30px;
            height: 30px;
            border: 1px solid #ddd;
            background: #f8f9fa;
            color: #333;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }
        
        .qty-btn:hover {
            background: #e9ecef;
            border-color: #adb5bd;
        }
        
        .qty-btn:active {
            transform: scale(0.95);
        }
        
        .qty-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
        .quantity-display {
            min-width: 40px;
            text-align: center;
            font-weight: bold;
            font-size: 16px;
            padding: 5px 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background: white;
        }
        
        /* Product Selection Improvements */
        .product-selection {
            margin-bottom: 30px;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .product-card {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: white;
            position: relative;
        }
        
        .product-card:hover {
            border-color: #007bff;
            box-shadow: 0 4px 12px rgba(0,123,255,0.15);
        }
        
        .product-card.selected {
            border-color: #28a745;
            background: #f8fff9;
            box-shadow: 0 4px 12px rgba(40,167,69,0.2);
        }
        
        .product-card input[type="checkbox"] {
            position: absolute;
            top: 10px;
            left: 10px;
            width: 18px;
            height: 18px;
            cursor: pointer;
            z-index: 10;
        }
        
        .product-card .product-image {
            width: 80px;
            height: 80px;
            object-fit: contain;
            margin-bottom: 10px;
            border-radius: 8px;
        }
        
        .product-card .product-info h4 {
            font-size: 14px;
            margin-bottom: 5px;
            color: #333;
        }
        
        .product-card .product-info .price {
            font-size: 13px;
            color: #666;
            margin: 0;
        }
        
        .product-card .checkmark {
            position: absolute;
            top: 10px;
            right: 10px;
            width: 20px;
            height: 20px;
            background: #28a745;
            color: white;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }
        
        .product-card.selected .checkmark {
            display: flex;
        }
        y
        /* Order Summary Improvements */
        .summary-header {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 10px;
            font-weight: bold;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
            margin-bottom: 15px;
            font-size: 14px;
        }
        
        .product-details {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 10px;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .product-summary {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .summary-product-image {
            width: 50px;
            height: 50px;
            object-fit: contain;
            border-radius: 6px;
            border: 1px solid #eee;
        }
        
        .product-summary-info {
            flex: 1;
        }
        
        .product-summary-info .product-name {
            font-size: 13px;
            font-weight: bold;
            margin: 0 0 5px 0;
            color: #333;
        }
        
        .rate, .amount {
            text-align: center;
            font-weight: bold;
            color: #333;
        }
        
        .summary-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
        .summary-row.total {
            border-top: 1px solid #eee;
            padding-top: 10px;
            margin-top: 10px;
            font-weight: bold;
            font-size: 16px;
        }
        
        .total-amount {
            color: #28a745;
            font-size: 18px;
        }
        
        /* Multiple Products in Order Summary */
        .product-item {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 10px;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .product-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }
        
        .no-products-message {
            grid-column: 1 / -1;
            text-align: center;
            padding: 20px;
            color: #666;
            font-style: italic;
        }
        
        .confirm-order-btn:disabled {
            background: #6c757d;
            cursor: not-allowed;
            opacity: 0.6;
        }
        
        .confirm-order-btn:disabled:hover {
            background: #6c757d;
            transform: none;
        }
        
        