        *{margin:0;padding:0;box-sizing:border-box}
        body{font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;line-height:1.6;color:#333;background-color:#f8f9fa}
        .container{max-width:1200px;margin:0 auto;padding:0 20px}
        header{background:#e0e0e0;padding:1rem 0;box-shadow:0 2px 10px rgba(0,0,0,0.1)}
        .header-content{display:flex;justify-content:center;align-items:center}
        .logo{width:20%;max-width:150px;height:auto}
        #btn12345{position:fixed;width:100%;bottom:0;background:#659e42!important;color:white;font-size:22px;height:60px;left:0;right:0;display:block;z-index:999999999;border:none;cursor:pointer}
        .landing-page{display:flex;flex-direction:column;text-align:center;padding:20px 0;align-items: center;}
        .landing-page img{max-width:100%;height:auto;border-radius:15px;box-shadow:0 10px 30px rgba(0,0,0,0.3)}
        .product-section{background:white;margin:2rem 0;border-radius:15px;box-shadow:0 5px 20px rgba(0,0,0,0.1);overflow:hidden}
        .product-container{display:grid;grid-template-columns:1fr 1fr;gap:3rem;padding:3rem}
        @media (max-width:768px){.product-container{grid-template-columns:1fr;gap:2rem;padding:2rem}}
		
		
		/* ===== Testimonials Carousel ===== */
.testimonials-carousel {
    width: 100%;
    max-width: 700px;
    height: 420px;
    margin: 30px auto;
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}

.tc-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

.tc-slide.active {
    opacity: 1;
    z-index: 2;
}

.tc-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Arrows */
.tc-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
}

.tc-btn.prev { left: 12px; }
.tc-btn.next { right: 12px; }

/* Dots */
.tc-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.tc-dots span {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,.5);
    border-radius: 50%;
    cursor: pointer;
}

.tc-dots span.active {
    background: #fff;
}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
    .thank-you-container {
      max-width: 600px;
      margin: 60px auto;
      background-color: #ffffff;
      padding: 30px 20px;
      border-radius: 12px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    h1 {
      color: #2e7d32;
      margin-bottom: 20px;
    }

    p {
      font-size: 18px;
    }

    .note {
      background-color: #fff3cd;
      color: #856404;
      padding: 15px;
      margin: 20px 0;
      border: 1px solid #ffeeba;
      border-radius: 8px;
    }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: #e0e0e0;
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-direction: column;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            text-decoration: none;
            color: white;
            width: 20%;
        }

        /* Main Product Section */
        .product-section {
            background: white;
            margin: 2rem 0;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .product-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            padding: 3rem;
        }

        /* Product Image */
        .product-image {
            position: relative;
        }

        .main-image {
            width: auto;
            height: auto;
            border-radius: 10px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #e9ecef;
            overflow: hidden;
        }

.product-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

        /* Product Info */
        .product-info h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #2c3e50;
        }

        .price-range {
            font-size: 22px;
            color: #4CAF50;
            font-weight: bold;
            margin-bottom: 2rem;
            text-align: center;
            padding: 1rem;
            background: #f1f8e9;
            border-radius: 10px;
        }

        .description {
            margin-bottom: 2rem;
            line-height: 1.8;
            color: #555;
            background: #f8f9fa;
            padding: 1.5rem;
            border-radius: 10px;
        }

        /* Order Form */
        .order-form {
            background: #f8f9fa;
            padding: 2rem;
            border-radius: 15px;
            border: 2px dashed #007bff;
            margin-bottom: 2rem;
        }

        .form-title {
            text-align: center;
            font-size: 19px;
            color: #2c3e50;
            margin-bottom: 2rem;
            font-weight: bold;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.8rem;
            font-weight: bold;
            color: #2c3e50;
        }

        .form-input {
            width: 100%;
            padding: 1rem;
            text-align: right;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-input:focus {
            outline: none;
            border-color: #007bff;
            box-shadow: 0 0 0 3px rgba(0,123,255,0.1);
        }

        /* Variant Selection */
        .variant-group {
            margin-bottom: 1.5rem;
        }

        .variant-options {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .variant-option {
            display: flex;
            align-items: center;
            padding: 1rem;
            border: 2px solid #e9ecef;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
            background: white;
        }

        .variant-option:hover {
            border-color: #007bff;
            background: #f8f9ff;
        }

        .variant-option.selected {
            border-color: #4CAF50;
            background: #e8f5e8;
        }

        .variant-radio {
            margin-left: 1rem;
            transform: scale(1.2);
        }

        .variant-info {
            flex: 1;
        }

        .variant-name {
            font-weight: bold;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }

        .variant-price {
            color: #4CAF50;
            font-size: 1.2rem;
            font-weight: bold;
        }

        /* Quantity Selector */
        .quantity-group {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .quantity-btn {
            background: #007bff;
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .quantity-btn:hover {
            background: #0056b3;
        }

        .quantity-input {
            width: 80px;
            padding: 0.8rem;
            text-align: center;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1rem;
        }

        /* Submit Button */
        .submit-btn {
            width: 100%;
            padding: 1.2rem;
            background: linear-gradient(135deg, #4CAF50, #45a049);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 1rem;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(76,175,80,0.3);
        }

        .submit-btn:disabled {
            background: #cccccc;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .landing-page{
            display: flex;
            flex-direction: column;
        }

        /* Total Price Display */
        .total-price {
            background: #2c3e50;
            color: white;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .clear-selection {
            background: none;
            border: none;
            color: #dc3545;
            cursor: pointer;
            font-size: 0.9rem;
            text-decoration: underline;
            margin-top: 0.5rem;
        }

        /* Success Message */
        .success-message {
            background: #d4edda;
            color: #155724;
            padding: 1rem;
            border-radius: 8px;
            margin-top: 1rem;
            display: none;
            animation: slideDown 0.3s ease-out;
        }

        .error-message {
            background: #f8d7da;
            color: #721c24;
            padding: 1rem;
            border-radius: 8px;
            margin-top: 1rem;
            display: none;
            animation: slideDown 0.3s ease-out;
        }

        /* Province Selection */
        .province-select {
            width: 100%;
            padding: 1rem;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1rem;
            background: white;
            cursor: pointer;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .product-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 2rem;
            }

            .product-info h1 {
                font-size: 27px;
                text-align: center;
                font-weight: bold;
            }

            .variant-options {
                gap: 0.5rem;
            }

            .variant-option {
                padding: 0.8rem;
            }
        }

        /* Loading Animation */
        .loading {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255,255,255,.3);
            border-radius: 50%;
            border-top-color: #fff;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Instructions Box */
        .instructions-box {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 10px;
            padding: 1rem;
            margin-bottom: 2rem;
        }

        .instructions-title {
            font-weight: bold;
            color: #856404;
            margin-bottom: 0.5rem;
        }

        .instructions-text {
            color: #856404;
            font-size: 0.9rem;
            line-height: 1.4;
        }
        
    .audio-player {
      margin-bottom: 20px;
      background-color: #fff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 0 8px rgba(0,0,0,0.1);
    }

    .audio-player h3 {
      margin-top: 0;
      font-size: 18px;
    }

    audio {
      width: 100%;
      outline: none;
    }

.home-btn {
  background-color: #4CAF50; /* Green */
  color: white;              /* White text */
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.home-btn:hover {
  background-color: #45a049;
  transform: translateY(-2px);
}

.home-btn:active {
  transform: scale(0.98);
}
#btn12345{
position:fixed;
width:100%;
bottom:0;
background:#659e42 !important;
color:white;
font-size: 22px;
height: 6%;
left:0;
right:0;
display:block;
z-index:999999999;
}
@keyframes bounceZoom {
  0%, 100% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(0.95);
  }
  70% {
    transform: scale(1.05);
  }
}

.phone-numbers {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 40px 0;
}

.phone-number {
  display: flex;
  align-items: center;
  font-size: 30px;
  font-weight: bold;
  color: #4CAF50;
  animation: bounceZoom 1.5s infinite;
}

.phone-number .icon {
  margin-right: 10px;
  font-size: 28px;
}

.phone-number a {
  text-decoration: none;
  color: #4CAF50;
}




        .phone-container {
            display: flex;
            flex-direction: column;
            gap: 15px;
            max-width: 400px;
         
			margin: 4%;
        }

        .phone-button {
            background: linear-gradient(135deg, #a8d5a8, #87c287);
            border: none;
            border-radius: 25px;
            padding: 15px 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            color: white;
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .phone-button:hover {
            background: linear-gradient(135deg, #96c496, #75b075);
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }

        .phone-button:active {
            transform: translateY(0);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .phone-icon {
            width: 30px;
            height: 30px;
            fill: #e91e63;
        }

        .phone-number {
            letter-spacing: 1px;
			color:white;
        }

        .title {
            text-align: center;
            color: #333;
            margin-bottom: 30px;
            font-size: 24px;
        }

        /* Responsive design */
        @media (max-width: 480px) {
            .phone-container {
                max-width: 100%;
                padding: 0 10px;
            }
            
            .phone-button {
                font-size: 16px;
                padding: 12px 20px;
            }
        }
   .button-container {
            text-align: center;
            margin: 2%;
        }

        .order-button {
            display: inline-block;
            padding: 18px 45px;
            font-size: 20px;
            font-weight: bold;
            color: white;
            text-decoration: none;
            background: linear-gradient(145deg, #ff6b6b, #ee5a52);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 
                0 8px 20px rgba(255, 107, 107, 0.4),
                0 4px 8px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .order-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.5s;
        }

        .order-button:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 12px 25px rgba(255, 107, 107, 0.5),
                0 6px 12px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            background: linear-gradient(145deg, #ff7b7b, #fe6a61);
        }

        .order-button:hover:before {
            left: 100%;
        }

        .order-button:active {
            transform: translateY(-1px);
            box-shadow: 
                0 6px 15px rgba(255, 107, 107, 0.4),
                0 3px 6px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        /* Alternative purple button to match your design */
        .order-button-purple {
            display: inline-block;
            padding: 18px 45px;
            font-size: 20px;
            font-weight: bold;
            color: white;
            text-decoration: none;
            background: linear-gradient(145deg, #8e44ad, #9b59b6);
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 
                0 8px 20px rgba(142, 68, 173, 0.4),
                0 4px 8px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 20px;
        }

        .order-button-purple: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.5s;
        }

        .order-button-purple:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 12px 25px rgba(142, 68, 173, 0.5),
                0 6px 12px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            background: linear-gradient(145deg, #9b59b6, #a569bd);
        }

        .order-button-purple:hover:before {
            left: 100%;
        }

        .order-button-purple:active {
            transform: translateY(-1px);
            box-shadow: 
                0 6px 15px rgba(142, 68, 173, 0.4),
                0 3px 6px rgba(0, 0, 0, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
        }

        /* Pulsing animation */
        .pulse {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        .demo-text {
            color: #666;
            margin-bottom: 30px;
            font-size: 16px;
        }