/*My logo color is #4cb050*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    overflow-x:hidden;
    background-color: white;
}

:root {
  --gallery-radius: 12px;
  --primary-color: #111111;
  --border-color: #e5e5e5;
  --transition-speed: 0.4s;
}

#container{
    width:100%;
    height: 100vh;
}

.announcement-bar {
    width: 100%;
    background: #026e0f;
    color: #fff;
    overflow: hidden;
    height: 45px;
    display: flex;
    align-items: center;
}

.announcement-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 25s linear infinite;
}

.announcement-item {
    white-space: nowrap;
    font-size: 14px;
    padding-right: 80px;
    letter-spacing: 0.3px;
    font-weight: bolder;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.announcement-bar:hover .announcement-track {
    animation-play-state: paused;
}

/* Mobile */
@media (max-width: 768px) {
    .announcement-item {
        font-size: 12px;
        padding-right: 50px;
    }

    .announcement-track {
        animation-duration: 18s;
    }
}


/* Header */

header {
    width: 100%;
    height: 80px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#logo img{
    height: 90px;
}

/* Product Info */

#product-info{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

#product-name{
    margin: 20px;
}

.d-img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Product Gallery */

.product-gallery-container {
  max-width: 600px;
  margin: 10px;
  font-family: inherit;
}

.gallery-main-wrapper {
  position: relative;
  width: 100%;
  background-color: #f8f9fa;
  border-radius: var(--gallery-radius);
  overflow: hidden;
  margin-bottom: 12px;
}

/* Viewport & Track setup for horizontal scrolling with scroll-snap */
.gallery-viewport {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for IE/Edge */
}

.gallery-viewport::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome/Safari */
}

.gallery-track {
  display: flex;
  width: 100%;
}

.gallery-slide {
  flex: 0 0 100%;
  width: 100%;
  scroll-snap-align: start;
  aspect-ratio: 1 / 1;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Navigation Buttons */
.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.gallery-nav-btn:hover {
  background: #ffffff;
  transform: translateY(-50%) scale(1.05);
}

.prev-btn {
  left: 16px;
}

.next-btn {
  right: 16px;
}

/* Thumbnails Grid */
.gallery-thumbnails {
  display: flex;
  /* grid-template-columns: repeat(5, 1fr); */
  gap: 10px;
  margin-left: 10px;
  margin-right: 10px;
}

.thumbnail-btn {
  background: none;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
}

.thumbnail-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumbnail-btn:hover {
  opacity: 1;
}

.thumbnail-btn.active {
  border-color: var(--primary-color);
  opacity: 1;
}

/* Hide navigation buttons on mobile screens */
@media (max-width: 768px) {
  .gallery-nav-btn {
    display: none;
  }
  .product-gallery-container{
    margin: 10px 0px;
  }
}

/*Product Information*/

.product-info-container {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1a202c;
  max-width: 480px;
  padding: .8rem;
}

.product-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

.badge.best-seller {
  background-color: #edf2f7;
  color: #2d3748;
}

.badge.category {
  background-color: #ebfff8;
  color: #4cb050;
}

.product-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.75rem 0;
  color: #111827;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.signal-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #d1fae5;
}
.current-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #026e0f;
}

.original-price {
  font-size: 1rem;
  color: #9ca3af;
  text-decoration: line-through;
}

.discount-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #059669;
  background-color: #d1fae5;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
}

.product-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #4b5563;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 1.5rem;
}

.option-group {
  margin-bottom: 1.5rem;
}

.option-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}

.color-swatches {
  display: flex;
  gap: 0.75rem;
}

.swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  outline: none;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.swatch:hover {
  transform: scale(1.1);
}

.swatch.active {
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.purchase-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  overflow: hidden;
  background-color: #ffff;
  width: 110px;
}

.qty-btn {
  background: transparent;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  color: #374151;
  transition: background-color 0.15s;
}

.qty-btn:hover {
  background-color: #e5e7eb;
}

.quantity-selector input {
  flex: 1;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  outline: none;
}

/* Hide spin buttons for number input */
.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-add-to-cart,
.btn-buy-now {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.05s ease;
}

.btn-add-to-cart {
  background-color: #ffffff;
  color: #3c3d3c;
  border: 2px solid #026e0f;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.05);
}

.btn-add-to-cart:hover {
  background-color: #eff6ff;
}

.btn-buy-now {
  background-color: #026e0f;
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
  animation: shake 0.5s ease-in-out infinite alternate;
}

@keyframes shake {
  0% {
    transform: scale(0.99);
  }
  100% {
    transform: scale(1.01);
  }
}

.btn-buy-now:hover {
  background-color: rgb(2, 103, 9);
}

.btn-add-to-cart:active,
.btn-buy-now:active {
  transform: scale(0.99);
}

#message {
  font-size: 0.875rem;
  color: #cb102c;
  margin: 0.5rem;
  text-align: center;
  font-weight: 600;
  line-height: 1.7;
}

.faq-container {
  width: 100%;
  border-top: 1px solid #ddd;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-header {
  width: 100%;
  padding: 16px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}

.faq-header span{
  color: #555;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 16px;
}

.faq-content p {
  margin: 0;
  padding-bottom: 16px;
  color: #555;
  line-height: 1.6;
}

.faq-item.active .faq-content {
  max-height: 3200px;
}

.faq-item.active .icon {
  transform: rotate(45deg);
}

.icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* Media Query for Ipad */

@media (max-width: 1099px) and (min-width: 600px) {
  .product-gallery-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  .product-info-container{
    margin-left: 2.8rem;
  }
}

/* Cart Styles */

.cart-count {
  background: #ff4757;
  color: #fff;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
}

/* Overlay Background */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Slide-out Cart Drawer */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: #fff;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
}

.cart-drawer.active {
  right: 0;
}

/* Cart Header */
.cart-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h2 {
  font-size: 20px;
  font-weight: 600;
}

.cart-close-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #666;
}

/* Cart Body & Items */
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #f1f1f1;
  position: relative;
}

.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  background: #f9f9f9;
}

.cart-item-details {
  flex: 1;
}

.cart-item-details h4 {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.cart-item-price {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ddd;
  width: fit-content;
  padding: 2px 8px;
  border-radius: 4px;
}

.qty-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #ff4757;
  font-size: 18px;
  cursor: pointer;
}

/* Cart Footer */
.cart-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  background: #fafafa;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.checkout-btn {
  width: 100%;
  background: #4cb050;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.checkout-btn:hover {
  background: #119d15;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .cart-drawer {
    max-width: 100%;
  }
}

/* Why Choose Us Styling */

.why-choose-us {
    padding: 60px 20px;
    background: #ffff;
}

.why-choose-us .container-why-choose-us {
    max-width: 1200px;
}

.why-choose-us h2 {
    text-align: center;
    margin-left: 10px; 
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 35px;
    color: #111827;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-card {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    background: #eff6ff;
    border-radius: 50%;
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #111827;
}

.benefit-card p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-us {
        padding: 40px 15px;
    }

    .benefit-card {
        padding: 20px;
    }
}

/* FAQ Styling */

.faq-section {
    padding: 60px 20px;
    background: #ffffff;
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #111827;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    border: none;
    background: #fff;
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question span {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 20px;
    color: #6b7280;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 1200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 15px;
    }

    .faq-question {
        font-size: 15px;
        padding: 16px;
    }
}

/* Footer Styling */

.footer {
    background: #ffff;
    color: #555;
    margin-top: 80px;
}

/* Top Section */

.footer-top {
    max-width: 1300px;
    margin: auto;
    padding: 70px 25px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 50px;
}

.footer-column h3 {
    margin-bottom: 22px;
    font-size: 18px;
    font-weight: 600;
}

.footer-logo {
    font-size: 30px;
    margin-bottom: 15px;
    font-weight: 800;
}

.footer-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 420px;
}

/* Trust Badges */

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.badge {
    background: rgba(255,255,255,.08);
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
}

/* Lists */

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #555;
    text-decoration: none;
    transition: .3s;
}

.footer-column ul li a:hover {
    color: #555;
    padding-left: 4px;
}

/* Contact */

.contact-list li {
    color: #555;
    line-height: 1.8;
}

/* Social */

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: .3s;
}

.social-links a:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,.18);
}

/* Bottom */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    max-width: 1300px;
    margin: auto;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-bottom-left {
    color: #555;
    font-size: 14px;
}

.payment-icons {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    color: #555;
    font-size: 14px;
}

/* Tablet */

@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile */

@media (max-width: 768px) {

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 50px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .payment-icons {
        justify-content: center;
    }

    .footer-logo {
        font-size: 26px;
    }
}
.whatsapp-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 50px;
      height: 50px;
      background-color: #25d366;
      color: #fff;
      border-radius: 50px;
      text-align: center;
      font-size: 32px;
      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.3s ease;
      animation: pulseGlow 2s infinite 0.6s;
    }

    /* Hover effect */
    .whatsapp-btn:hover {
      background-color: #128c7e;
      transform: scale(1.1);
      color: #fff;
    }
    @keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 2px 2px 10px rgba(0, 0, 0, 0.3);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0), 2px 2px 10px rgba(0, 0, 0, 0.3);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 2px 2px 10px rgba(0, 0, 0, 0.3);
  }
}
.product-descriptionn {
            max-width: 600px;
            margin: 20px auto;
            padding: 24px;
            color: #333333;
        }

        .feature-list {
            list-style: none;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            line-height: 1.5;
        }

        .feature-item:last-child {
            margin-bottom: 0;
        }

        .check-icon {
            color: #2e7d32;
            font-weight: bold;
            margin-right: 12px;
            font-size: 1.1rem;
            flex-shrink: 0;
        }

        .feature-text strong {
            color: #111827;
        }

        @media (max-width: 480px) {
            .product-descriptionn {
                padding: 16px;
                margin: 10px;
            }
            
            .feature-text {
                font-size: 0.95rem;
            }
        }