*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #fff;
    line-height: 1.6;

}


.amx-crd-pg-section {
            background: #ffffff;
            width: 1400px;
            max-width: 100%;
            margin: 100px auto;
            padding: 5px;
            /* box-shadow: 0 10px 30px rgba(0,0,0,0.06); */
            border-radius: 16px;
            overflow: hidden;
        }

        /* ==================== MOBILE-FIRST TOP INFO ==================== */
        .amx-crd-pg-top-info {
            padding: 12px;
            text-align: left;
            background: #fff;
        }
        
        .amx-crd-pg-product-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 0.6em;
            line-height: 1.15;
        }
        
        .amx-crd-pg-order-custom {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: #e8f5e9;
            color: #28a745;
            font-size: 1rem;
            font-weight: 600;
            padding: 10px 24px;
            border-radius: 12px;
            margin-bottom: 1.8em;
        }
        
        .amx-crd-pg-order-custom i {
            font-size: 1.5rem;
        }
        
        /* ==================== PRICING ROW ==================== */
        .amx-crd-pg-pricing {
            display: flex;
            align-items: center;
            justify-content: start;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 2em;
            font-size: 1.65rem;
        }
        
        .amx-crd-pg-sale-price {
            font-weight: 700;
            color: #000000;
            font-size: 2.3rem;
        }
        
        .amx-crd-pg-original-price {
            color: #b1b1b1;
            text-decoration: line-through;
            font-size: 2.3rem;
        }
        
        .amx-crd-pg-discount-badge {
            background: linear-gradient(145deg, #e1a203, #f9cb69);
            color: #1a1a1a;
            font-weight: 700;
            font-size: 15px;
            padding: 10px;
            width: auto;
            height: fit-content;
            border-radius: 12px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.15);
        }

        /* ==================== MAIN CONTAINER (Desktop Layout) ==================== */
        .amx-crd-pg-container {
            display: flex;
            gap: 60px;
            padding: 15px;
            max-width: 1600px;
            margin: 0 auto;
        }
        
        /* ==================== IMAGE SECTION ==================== */
        .amx-crd-pg-image-section {
            flex: 1;
            display: flex;
            gap: 20px;
            min-width: 0;
        }
        
        .amx-crd-pg-thumbnails {
            display: flex;
            flex-direction: column;
            gap: 12px;
            width: 110px;
            flex-shrink: 0;
        }
        
        .amx-crd-pg-thumbnail {
            width: 100%;
            height: 82px;
            object-fit: cover;
            border-radius: 10px;
            cursor: pointer;
            border: 3px solid transparent;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        
        .amx-crd-pg-thumbnail:hover,
        .amx-crd-pg-thumbnail.active {
            border-color: #28a745;
            transform: scale(1.05);
        }
        
        .amx-crd-pg-main-image-wrapper {
            /* object-fit: cover; */
            height: fit-content;
            /* max-width: 300px; */
            flex: 1;
            border-radius: 16px;
            overflow: hidden;
            /* background: #fafafa; */
            /* box-shadow: 0 10px 25px rgba(0,0,0,0.1); */
        }
        
        .amx-crd-pg-main-image {
            width: 100%;
            height: auto;
            display: block;
            transition: opacity 0.4s ease;
        }

        /* ==================== DETAILS / FORM SECTION ==================== */
        .amx-crd-pg-details {
            flex: 1;
            min-width: 340px;
        }
        
        .amx-crd-pg-form {
            background: #fff;
            border: 1px solid #a6a6a6;
            border-radius: 14px;
            padding: 30px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.05);
        }
        
        .amx-crd-pg-form-group {
            margin-bottom: 24px;
        }
        
        .amx-crd-pg-form-group label {
            display: block;
            font-weight: 600;
            margin-bottom: 8px;
            color: #444;
        }
        
        .amx-crd-pg-form-group input,
        .amx-crd-pg-form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.25s;
        }
        
        .amx-crd-pg-form-group input:focus,
        .amx-crd-pg-form-group textarea:focus {
            border-color: #28a745;
            box-shadow: 0 0 0 3px rgba(40,167,69,0.12);
        }
        
        .amx-crd-pg-form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .amx-crd-pg-buttons {
            display: flex;
            gap: 16px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .amx-crd-pg-buy-now,
        .amx-crd-pg-contact-us {
            flex: 1;
            min-width: 180px;
            padding: 18px 28px;
            font-size: 1.18rem;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .amx-crd-pg-buy-now {
            background: #d4a017;
            color: white;
            border: none;
            border: 2px solid #d4a017;
        }
        
        .amx-crd-pg-buy-now:hover {
            background: transparent;
            color: #222;
            transform: translateY(-3px);
        }
        
        .amx-crd-pg-contact-us {
            background: #28a745;
            color: #fff;
            border: 2px solid #28a745;
        }
        
        .amx-crd-pg-contact-us:hover {
            background: transparent;
            color: #28a745;
        }

        /* ==================== FAQS ==================== */
        .amx-crd-pg-faqs {
            margin: 60px 40px;
            max-width: 900px;
            width: 90%;
            margin-left: auto;
            margin-right: auto;
        }
        
        .amx-crd-pg-faqs h2 {
            text-align: center;
            font-size: 2.1rem;
            margin-bottom: 2rem;
            color: #222;
        }
        
        .amx-crd-pg-faq {
            margin-bottom: 16px;
            border: 1px solid #eee;
            border-radius: 12px;
            overflow: hidden;
            color: #222;
            background: white;
        }
        
        .amx-crd-pg-faq summary {
            padding: 18px 24px;
            font-weight: 600;
            cursor: pointer;
            background: #f9fafb;
            font-size: 1.08rem;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .amx-crd-pg-faq summary:hover {
            background: #f0f2f5;
        }
        
        .amx-crd-pg-faq summary i {
            color: #d4a017;
            font-size: 1.35rem;
        }
        
        .amx-crd-pg-faq p {
            padding: 0 24px 24px;
            color: #555;
        }

        /* ==================== RESPONSIVE MAGIC ==================== */
        @media (max-width: 1024px) {
            .amx-crd-pg-top-info {
                display: block;
            }
            
            .amx-crd-pg-container {
                flex-direction: column;
                padding: 15px;
                gap: 40px;
            }
            
            .amx-crd-pg-details {
                order: 3; /* form comes after image */
            }
            
            /* Image section becomes full-width with thumbnails BELOW */
            .amx-crd-pg-image-section {
                flex-direction: column;
            }
            
            .amx-crd-pg-thumbnails {
                flex-direction: row;
                width: 100%;
                overflow-x: auto;
                padding: 12px 0;
                gap: 12px;
                /* justify-content: center; */
            }
            
            .amx-crd-pg-thumbnail {
                width: 90px;
                height: 70px;
                flex-shrink: 0;
            }
            
            .amx-crd-pg-main-image-wrapper {
                width: 100%;
            }
            
            .amx-crd-pg-pricing {
                /* justify-content: center; */
            }

.amx-crd-pg-desktop-header{
    display: none;
}
            
        }
        
        @media (min-width: 1025px) {
            .amx-crd-pg-top-info {
                display: none; /* hidden on desktop - we show inside details */
            }
            
            /* Desktop version of title, green & pricing (inside .details) */
            .amx-crd-pg-desktop-header {
                display: block;
            }
        }
        
        @media (max-width: 600px) {
            .amx-crd-pg-product-title { font-size: 2.1rem; }
            .amx-crd-pg-sale-price   { font-size: 2rem; }
            .amx-crd-pg-pricing      { font-size: 1.45rem; gap: 12px; }
            .amx-crd-pg-form         { padding: 25px; }
            .amx-crd-pg-buy-now{
                width: fit-content;
                padding: 14px 22px;
                font-size: 1rem;
                flex: none;
            }
        }
        
        /* Smooth image transition */
        .amx-crd-pg-main-image {
            opacity: 1;
        }




        /* Title styling */
.amx-chip-title{
      display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #444;
}

/* Radio option container */
.amx-chip-option{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:6px;
  cursor:pointer;
  font-size:14px;
}

/* Radio input alignment */
.amx-chip-option input[type="radio"]{
  width:16px;
  height:16px;
  cursor:pointer;
}










  .vl-pmc-sc.trust-badges {
    max-width: 1200px;
    font-family: system-ui, -apple-system, sans-serif;
  }

  .vl-pmc-sc.container {
    width: 100%;
  }

  .vl-pmc-sc.boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
  }

  .vl-pmc-sc.box {
    padding: 28px 20px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #1a1a1a;
    transition: all 0.25s ease;
  }

  .vl-pmc-sc.box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0,0,0,0.1);
  }

  .vl-pmc-sc.box i {
    font-size: 1.8rem;
    color: #d4a017;
    margin-bottom: 30px;
    display: block;
  }

  .vl-pmc-sc.box h3 {
    font-size: 1.18rem;
    font-weight: 600;
    margin: 0 0 8px;
    color: #111827;
  }

  .vl-pmc-sc.box p {
    font-size: 0.92rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.45;
  }

  @media (max-width: 992px) {
    .vl-pmc-sc.boxes {
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }
  }

  @media (max-width: 576px) {
    .vl-pmc-sc.boxes {
      grid-template-columns: 1fr;
      gap: 16px;
    }
    
    .vl-pmc-sc.box {
      padding: 24px 18px;
    }
  }



    @media (max-width: 400px) {
   .amx-crd-pg-details {
            flex: 1;
            min-width: 270px;
        }
  }