        .product-details h3 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #2c3e50;
            padding-bottom: 10px;
            border-bottom: 1px solid #eee;
        }
        
        /* Reduced font size implementation */
        .product-details ul {
            list-style: none;
            font-size: 12px; /* Reduced from typical 16px */
        }
        
        .product-details li {
            display: flex;
            padding: 10px 0;
            border-bottom: 1px dashed #e0e0e0;
        }
        
        .product-details li:last-child {
            border-bottom: none;
        }
        
        .product-details span:first-child {
            font-weight: 600;
            color: #2c3e50;
            width: 150px;
            flex-shrink: 0;
        }
        
        .product-details span:last-child {
            color: #555;
        }
        
        .product-details a {
            display: inline-block;
            color: #3498db;
            text-decoration: none;
            font-weight: 600;
            margin-top: 15px;
            transition: all 0.3s ease;
        }
        
        .product-details a:hover {
            color: #2980b9;
            text-decoration: underline;
        }
.photo-selection {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.photo-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(16.666% - 10px); /* Default width for larger screens */
}

.photo-option img {
  width: 100%;
  height: 100px;
  border-radius: 5px;
  margin-bottom: 5px;
}
.photo-option label{
font-size:12px;
text-align: center;
    line-height: 1.2;
}

.photo-option input[type="checkbox"] {
  margin-bottom: 5px;
}

/* Media query for medium-sized screens */
@media screen and (max-width: 768px) {
  .photo-option {
    width: calc(25% - 10px); /* Adjust width for medium screens */
  }
}

/* Media query for small screens */
@media screen and (max-width: 480px) {
  .photo-option {
    width: calc(33.333% - 10px); /* Adjust width for small screens */
  }
}

/* Media query for very small screens */
@media screen and (max-width: 320px) {
  .photo-option {
    width: calc(50% - 10px); /* Adjust width for very small screens */
  }
}

/* Clearfix for clearing floats */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Styling for the product specs section */
.product-specs-section {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}

.product-specs-section h2,
.product-description-section h2 {
  display: block;
  width: 100%;
  font-weight: 500;
  font-size: 24px;
  color: #333;
  text-align: center;
  padding: 10px 0;
  margin: 20px 0 10px;
  border-bottom: 2px solid #3498db;
  clear: both;
}

/* Styling for the product description section */
.product-description-section {
  display: block;
  width: 100%;
}

.product-description-section p {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 1.6;
  padding: 5px 10px;
  font-weight: normal;
  text-align: justify;
}

/* Styling for the product specs list */
.product-specs-section ul {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}

.product-specs-section ul li {
  float: left;
  width: 50%;
  margin: 0;
  padding: 0 0 20px 0;
  font-size: 16px;
}

.product-specs-section ul li label {
  display: inline-block;
  width: 47%;
  color: #000;
  font-weight: 600;
  vertical-align: top;
}

.product-specs-section ul li span {
  display: inline-block;
  font-weight: normal;
  width: 50%;
}

/* Table styling */
table.MsoTableGrid {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
}

table.MsoTableGrid td {
  border: 1px solid #ddd;
  padding: 8px;
}

table.MsoTableGrid td p {
  margin: 0;
  font-size: 14px;
}

.product-details {
  display: block;
  width: 100%;
  margin: 30px 0 0 0;
  padding: 0;
}

.product-details h3 {
  display: block;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  color: #333;
  margin: 0 0 15px 0;
  text-align: left;
}

.product-details ul {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.product-details ul li {
  display: block;
  width: 100%;
  border-bottom: 1px solid #cfcfcf;
  font-size: 16px;
  color: #000;
  padding: 8px 2px;
  font-weight: 200;
}

.product-details ul li:last-child {
  border-bottom: none;
}

.product-details ul li span:first-child {
  width: 40%;
  color: #000;
  font-weight: 400;
}

.product-details ul li span {
  display: inline-block;
  width: 58%;
  vertical-align: top;
}

.product-details a {
  display: inline-block;
  margin: 0;
  font-size: 16px;
}

.product-details a:hover {
  text-decoration: underline;
}
.product-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
}

.product-table th {
  text-align: center;
  background-color: #f2f2f2;
  padding: 10px;
  border: 1px solid #ddd;
}

.product-table td {
  padding: 8px;
  border: 1px solid #ddd;
  width: 50%;
}

.product-table tr:nth-child(even) {
  background-color: #f9f9f9;
}
.accordion {
  background-color: #f9f9f9;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 18px;
  transition: 0.4s;
}

.active,
.accordion:hover {
  background-color: transparent;
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}

.modal-dialog {
  max-width: 580px;
  margin: 2rem auto;
}

.modal-content {
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 2rem 2.5rem 1.5rem;
  position: relative;
}

.modal-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
}

.modal-title {
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0;
  letter-spacing: -0.02em;
}

.btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
  transition: all 0.2s ease;
}

.btn-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.modal-body {
  padding: 2.5rem;
  background: #fafbfc;
}

/* Product Card */
.product-card {
  background: white;
  border: 1px solid #e8ecef;
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.product-image {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

.product-title {
  font-weight: 700;
  font-size: 1.25rem;
  color: #2d3748;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.product-price {
  color: #667eea;
  font-size: 1.5rem;
  font-weight: 600;
}

/* Form Sections */
.form-section {
  margin-bottom: 2rem;
}

.form-label {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  display: block;
}

.required::after {
  content: "*";
  color: #e53e3e;
  margin-left: 4px;
}

/* Quantity Inputs */
.quantity-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.quantity-input,
.unit-select {
  flex: 1;
}

.form-control,
.form-select {
  height: 52px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 0 1.5rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  background: white;
}

.form-control:focus,
.form-select:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  outline: none;
}

/* Preset Buttons */
.quantity-presets {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.preset-btn {
  background: white;
  border: 2px solid #e2e8f0;
  color: #4a5568;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  font-size: 1.3rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 70px;
}

.preset-btn:hover {
  border-color: #667eea;
  color: #667eea;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.preset-btn:active {
  transform: translateY(0);
}

/* Textarea */
.form-control[rows] {
  min-height: 100px;
  resize: vertical;
  padding: 1.5rem;
  line-height: 1.5;
}

/* Phone Section */
.iti {
  width: 100%;
}
.phone-section {
  display: flex;
  gap: 0;
  margin-bottom: 2rem;
}

.country-code {
  width: 120px;
  height: 52px;
  border: 2px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-radius: 12px 0 0 12px;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: white;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.country-code:hover {
  border-color: #667eea;
}

.phone-input {
  flex: 1;
  height: 52px;
  border: 2px solid #e2e8f0;
  border-left: 1px solid #e2e8f0;
  border-radius: 0 12px 12px 0;
  padding: 0 1.5rem;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  background: white;
}

.phone-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  outline: none;
}
/* Submit Button */
.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  font-size: 1.1.5rem;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 576px) {
  .modal-dialog {
    margin: 1.5rem;
  }

  .modal-body {
    padding: 1.5rem;
  }

  .modal-header {
    padding: 1.5rem 1.5rem 1.5rem;
  }

  .quantity-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .quantity-presets {
    justify-content: center;
  }

  .preset-btn {
    flex: 1;
    min-width: auto;
  }
}
