* {
      box-sizing: border-box;
    }
body {
  font-family: Heebo,sans-serif;
  margin: 0;
  background: #f7f7f7;
  line-height: 1.5;
  font-size: 13pt;
}
h1,h2,h3,h4{
	color:#f4743c
}
#main-image {
  opacity: 1;
  transition: opacity 0.6s ease-in-out;
}
.container {
  display: flex;
  flex-wrap: wrap;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
}
.container-buy{
	display: flex;
	flex-wrap: wrap;
	padding: 20px;
	max-width: 600px;
	margin: auto;
	gap: 20px;
}

.image-gallery {
  flex: 1;
  min-width: 300px;
  max-width: 600px
}

.image-gallery img {
  width: 100%;
  border-radius: 10px;
}

.thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.thumbnails img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumbnails img:hover {
  border-color: #0c9;
}

.product-details, .product-text {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
}

.subtitle {
  color: #888;
  margin-top: -10px;
}
.economiser{
	color: #423d3d;
	font-weight: 700;
	line-height: 3;
}

.offers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-box {
  display: flex;
  align-items: center;
  border: 2px solid #ccc;
  border-radius: 8px;
  padding: 15px;
  position: relative;
  background-color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.offer-box input[type="radio"] {
  appearance: none;
  margin-right: 12px;
  width: 18px;
  height: 18px;
  border: 2px solid #2f7c5b;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  background-color:#EAF5F0
}

.offer-box input[type="radio"]::after {
  content: '';
  width: 10px;
  height: 10px;
  background-color: #2f7c5b;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  display: none;
}

.offer-box input[type="radio"]:checked::after {
  display: block;
}

.offer-box input[type="radio"]:checked ~ .offer-content {
  background-color: #EFF6F7;
}

.offer-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 5px;
}

.offer-title {
  font-weight: bold;
  color: #222;
}

.offer-price {
  font-weight: bold;
  color: #2f7c5b;
}

.offer-box.popular {
  position: relative;
}

.offer-box .tag {
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: #2f7c5b;
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  transform: rotate(-5deg);
}
.shake3 {
  animation-name: shake3;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in;
  cursor: pointer;
  position: relative;
}
.achetertop {
  background-color: #6BCB4B;
  border: none;
  color: white;
  max-width:350px;
  font-weight: 700;
  padding: 10px 20px 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  border-radius: 30px;
  width: 100%;
  margin: 15px 0 15px 0
}
.achetercenter {
  background-color: #6BCB4B;
  border: none;
  color: white;
  max-width:350px;
  padding: 10px 20px 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  cursor: pointer;
  border-radius: 30px;
  width: 100%;
  margin: 15px 0 15px 0
}
.offer-price-total{
	  float:left
  }
/* Responsive */
@media (max-width: 768px) {
	h1,h2,h3,h4{
	font-size:15pt
}
	.container {
  display: flex;
  flex-wrap: wrap;
  padding: 0px;
  margin: auto;
  gap: 20px;
  flex-direction: column;
}
.container-buy{
	display: flex;
	  flex-wrap: wrap;
	  padding: 0px;
	  margin: auto;
	  gap: 20px;
	  flex-direction: column;
	}
.product-details, .product-text {
  flex: 1;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
}
.offer-box {
	padding: 15px 2px 15px 2px
}
  .offer-title, .offer-price-total{
	  font-size:10pt
  }

  .thumbnails {
    justify-content: center;
  }
}
.rating {
  margin-top: 15px;
  margin-bottom: 20px;
}

.stars {
  font-size: 24px;
  color: #FFD700; /* ذهبية */
}

.review-count {
  font-size: 14px;
  color: #666;
}
.toggle-container {
			margin: 15px;
			color: #423d3d;
			font-size:14px
        }

        .toggle-header {
            font-weight: bold;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .toggle-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .toggle-content.open {
            max-height: 300px;
        }
.option {
	  border: 2px solid #EAF5F0;
	  border-radius: 8px;
	  padding: 16px 16px 6px 16px;
	  margin-bottom: 6px;
	  background: #fff;
	  cursor: pointer;
	  transition: border-color 0.3s, background 0.3s;
	  position: relative;
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  gap: 10px;
	}
    .option.active {
	  border-color: #f4743c;
	  background: #EFF6F7;
	}

    .option input[type="radio"] {
      transform: scale(1.2);
      margin-right: 10px;
    }

    .left {
      display: flex;
      align-items: center;
      gap: 8px;
      flex: 1;
      min-width: 0;
    }

    .left strong {
      white-space: nowrap;
	  color: #423d3d;
    }

    .save-text {
      color: #4ebd3e;
      /*white-space: nowrap;*/
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .price {
      color: #f4743c;
      font-size: 20px;
      text-align: right;
      white-space: nowrap;
    }

    .original-price {
      text-decoration: line-through;
      font-size: 14px;
      color: #999;
      display: block;
    }

    .label {
      position: absolute;
      top: -11px;
      right: 10px;
      background: #f4743c;
      color: white;
      /*font-size: 12px;*/
      font-weight: bold;
      padding: 4px 8px;
      border-radius: 4px;
      transform: rotate(-5deg);
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      white-space: nowrap;
      z-index: 2;
    }
	
	/* إخفاء الزر الأصلي */
	input[type="radio"] {
	  display: none;
	}

	/* تصميم دائري مخصص */
	.custom-radio {
	  display: inline-block;
	  width: 18px;
	  height: 18px;
	  border: 2px solid #f4743c;;
	  border-radius: 50%;
	  position: relative;
	}

	/* النقطة الداخلية السوداء عند التحديد */
	input[type="radio"]:checked + .custom-radio::after {
	  content: "";
	  position: absolute;
	  top: 3px;
	  left: 3px;
	  width: 8px;
	  height: 8px;
	  background-color: #f4743c;
	  border-radius: 50%;
	}


    /* منع تفكك التخطيط على الموبايل */
    @media (max-width: 600px) {
      .option {
        flex-wrap: nowrap;
      }

      .left {
        flex-wrap: nowrap;
        flex-shrink: 1;
        overflow: hidden;
      }

      .price {
        font-size: 18px;
      }

      .label {
        top:-20px
      }
	  .option input[type="radio"] {
      margin-right: 0px;
    }
	.save-text {
  font-size: 12px
}
    }
.feature-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 700px;
	padding-top:25px
  }

  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }

  .feature-content {
    flex: 1;
  }

  .feature-title {
    font-weight: bold;
    margin-bottom: 5px;
  }

  .feature-description {
    color: #333;
    line-height: 1.5;
  }
  
  .comparison-container {
      position: relative;
      max-width: 1024px;
      margin: 15px auto;
      overflow: hidden;
      border-radius: 12px;
    }
	.day15{
		margin-right:35px
	}

    .comparison-container img {
      width: 100%;
      height: auto;
      display: block;
    }

    .image-blur {
      position: relative;
      z-index: 1;
    }

    .image-clear {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 2;
      clip-path: inset(0 67% 0 0);
      transition: clip-path 0.05s;
    }

    .slider-handle {
      position: absolute;
	  top: 0;
	  top: 0;
      left: 33%;
      width: 100px;
      height: 100%;
      z-index: 3;
      cursor: ew-resize;
      display: flex;
      align-items: center;
      justify-content: center;
      transform: translateX(-50%);
    }

    .slider-handle img {
      height: 100px;
      pointer-events: none;
      user-select: none;
    }

    /* ✅ Labels styling */
    .labels7 {
      position: absolute;
      bottom: 10px;
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 20px;
      font-size: 12px;
      z-index: 4;
    }

    .labels7 span {
      background: rgba(0, 0, 0, 0.7);
      color: white;
      padding: 6px 12px;
      border-radius: 6px;
      font-weight: bold;
    }

    .labels7 .center {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
    }

	.accordion {
      max-width: 800px;
      margin: auto;
    }

    .accordion-header {
      background-color: #FF941D;
      color: #EFF6F7;
      padding: 16px;
      width: 100%;
      border: none;
      text-align: left;
      font-size: 1.1em;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease;
      border-bottom: 2px solid #e67300;
    }

    .accordion-header:hover {
      background-color: #e68300;
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      background-color: #EFF6F7;
      padding: 0 16px;
      transition: max-height 0.4s ease, padding 0.4s ease;
      color: #423d3d;
	  font-size: 14pt;
	  line-height: 30px
    }

    .accordion-content p {
      margin: 16px 0;
    }

    .accordion-item.active .accordion-content {
      max-height: 3800px;
    }
  
    .accordion-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .accordion-header .arrow {
      transition: transform 0.3s ease;
      font-size: 1.2em;
    }

    .accordion-item.active .arrow {
      transform: rotate(180deg);
    }
	
	.reviews-container {
      max-width: 900px;
      margin: auto;
    }

    .reviews-summary {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      background-color: #f8f8f8;
      padding: 20px;
      border-radius: 10px;
      margin-bottom: 30px;
    }

    .rating-value {
      font-size: 3em;
      font-weight: bold;
      color: #423d3d;
      text-align: center;
    }

    .rating-stars {
      color: #f4743c;
      text-align: center;
      font-size: 1.5em;
	  padding-top: 20px;
    }

    .rating-count {
      text-align: center;
      font-size: 0.9em;
      color: #555;
    }

    .rating-bars {
      flex: 1;
      min-width: 250px;
      padding-left: 20px;
    }

    .bar-row {
      display: flex;
      align-items: center;
      margin: 6px 0;
    }

    .bar-label {
      width: 70px;
      font-size: 0.9em;
    }

    .bar-bg {
      background-color: #e0e0e0;
      flex: 1;
      height: 10px;
      border-radius: 5px;
      margin: 0 10px;
      overflow: hidden;
    }

    .bar-fill {
      height: 100%;
      background-color: #f4743c;
    }

    .bar-percent {
      width: 30px;
      font-size: 0.9em;
    }

    .review {
	  margin-bottom: 30px;
	  background-color: #F8F8F8;
	  padding: 1px 10px 1px 10px;
	  border-radius: 10px;
    }

    .review-stars {
      color: #f4743c;
      font-size: 1.2em;
    }

    .review-author {
      font-weight: bold;
      margin: 8px 0 4px;
    }

    .review-date {
      font-size: 0.85em;
      color: #666;
      margin-left: 5px;
    }

    @media (max-width: 600px) {
      .reviews-summary {
        flex-direction: column;
        align-items: flex-start;
      }

      .rating-bars {
        padding-left: 0;
        margin-top: 15px;
        width: 100%;
      }
	  .accordion-header {
      background-color: #FF941D;
      color: #EFF6F7;
      padding: 16px;
      width: 100%;
      border: none;
      text-align: left;
      font-size: 13pt;
      font-weight: 600;
      cursor: pointer;
      transition: background-color 0.3s ease;
      border-bottom: 2px solid #e67300;
    }
    }
.form-container {
      max-width: 500px;
      margin: auto;
      background-color: white;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    h2 {
      margin-bottom: 20px;
      color: #333;
    }
    input {
      width: 100%;
      padding: 12px;
      margin-bottom: 15px;
      border-radius: 6px;
      border: 1px solid #ccc;
      font-size: 1rem;
    }
    .summary {
      margin-top: 0px;
    }
    .summary table {
      width: 100%;
      border-collapse: collapse;
    }
    .summary th, .summary td {
      padding: 10px 5px;
      text-align: left;
    }
    .summary th {
      font-weight: 600;
      color: #555;
    }
    .summary tr:last-child td {
      font-weight: bold;
      border-top: 1px solid #ddd;
    }
    @media (max-width: 600px) {
      .form-container {
        padding: 15px;
      }
    }
	.error-message {
  color: red;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
  
  
