 :root{
    --pink1:#ff7bb5;
    --pink2:#ff4a8b;
    --accent:#d63384;
    --muted:#777;
    --card-bg:#fff;
  }
  *{box-sizing:border-box}
  body{
    margin:0;
    font-family: "Arial", sans-serif;
    background: linear-gradient(180deg,#fff0f6 0%, #fff7fb 100%);
    direction:rtl;
    color:#333;
  }
  
  header{
    padding:18px 14px;
    background:linear-gradient(90deg,var(--pink1),var(--pink2));
    color:white;
    text-align:center;
    font-weight:700;
    font-size:1.25rem;
  }
  .subtxt{
    padding:12px;
    background:#fff;
    margin:0 10px 10px;
    border-radius:10px;
    line-height:1.6;
    box-shadow:0 3px 10px rgba(0,0,0,0.04);
    color:#222;
  }
  .subtxt b{color:var(--accent)}
  .section-title{
    margin:12px 74px 15px;
    padding:10px;
    font-weight:700;
    border-radius:10px;
	font-size:1.0rem
  }


  .products{
    display:grid;
    grid-template-columns: repeat(1,1fr);
    gap:10px;
    padding:10px;
  }
  

  .product{
    background:var(--card-bg);
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 6px 18px rgba(214,51,132,0.06);
    transition:transform .18s ease, box-shadow .18s ease;
    cursor:pointer;
    display:flex;
    flex-direction:column;
    min-height:220px;
  }
  .product:hover{ transform:translateY(-6px); }
  .img{
    height:120px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    color:white;
    font-size:0.95rem;
    background: linear-gradient(135deg,#ffd6ea,#ffb3d6);
  }
  .body{
    padding:10px;
    flex:1;
    display:flex;
    flex-direction:column;
  }
  .title{
    color:var(--accent);
    font-weight:700;
    font-size:0.93rem;
    min-height:40px;
  }
  .price{
    margin-top:auto;
    display:flex;
    align-items:center;
    gap:8px;
    justify-content:flex-start;
    font-weight:800;
    font-size:1rem;
    color: #28a745;
    transition: all .28s ease;
  }
  .price .old{
    color:var(--muted);
    font-weight:600;
    text-decoration:line-through;
    font-size:0.85rem;
  }
  .price .new{
    color:#ff0000;
    font-weight:900;
    font-size:1.33rem;
    transform:translateY(0);
    transition: transform .28s cubic-bezier(.2,.9,.2,1), opacity .28s;
  }
.title {
  text-align: center;
}
.price {
  text-align: center;
  display: block; /* makes the span behave like a block so centering works */
}

  .select-btn{
    margin-top:10px;
    padding:13px;
    border-radius:9px;
    border:0;
    font-weight:700;
    background:linear-gradient(90deg,var(--pink1),var(--pink2));
    color:white;
    FONT-SIZE: larger;
    cursor:pointer;
    transition:transform .12s ease, background .12s;
  }
  .select-btn.selected{
    background:linear-gradient(90deg,#b8246a,#8e0b50);
    box-shadow: 0 6px 20px rgba(214,51,132,0.18);
  }

  .total-wrap{
    position:sticky;
    bottom:12px;
    left:0;
    right:0;
    padding:10px;
    display:flex;
    gap:10px;
    justify-content:center;
    align-items:center;
  }
    .order-form .form-row {
    margin-bottom: 12px; /* مسافة بين الحقول */
  }

  .order-form input,
  .order-form select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    box-sizing: border-box;
  }
  .total{
    width:100%;
    max-width:680px;
    background:#fff;
    border-radius:14px;
    padding:14px;
    box-shadow:0 8px 28px rgba(214,51,132,0.08);
    display:flex;
    flex-direction:column;
    align-items:center;
    border:2px solid rgba(255,74,139,0.08);
  }
  .total .row{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:10px;
  }
  .section-title.main-products {
  background-color: #ffebc2; /* لون خلفية فاتح دافئ */
  color: #8b4513; /* بني */
  font-size: 1.12rem;
  margin-top: 10px;
  margin-bottom: 6px;


}

.section-title.extra-products {
  background-color: #e0d4ff; /* لون بنفسجي فاتح */
  color: #4b0082; /* بنفسجي غامق */
  
}

  .total .big{
    font-size:1.25rem;
    color:var(--accent);
    font-weight:900;
  }
  .total .small{
    color:#666;
	font-weight: bold;

    font-size:1.12rem;
  }
    .total .smalls{
    color:#666;
	font-weight: bold;

    font-size:1.135rem;
  }
.cta {
    width: auto !important;
    margin-top: 10px;
    margin-bottom: 5px;
 margin: 10px auto 5px; /* auto يخليها وسط */

    display: block;
    padding: 12px 88px !important; /* مثل الزر الأول */
    border-radius: 12px;
    border: 0;
    font-weight: 900;
    background: linear-gradient(90deg, var(--pink2), var(--pink1));
    color: white;
    font-size: 1.1rem; /* نفس حجم الخط من الأول */
    box-shadow: 0 0 6px #ff69b450; /* الظل مثل الزر الأول */
    text-shadow: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

  .gift{
    margin-top:8px;
    color:#b30059;
    font-weight:800;
  }

  /* small phones adjust */
  @media (max-width:420px){
    .products{ grid-template-columns:repeat(1,1fr); gap:8px; padding:8px;}
    .img{height:300px}
    header{font-size:1.6rem}
    .title{font-size:1.58rem}
  }

  /* simple form styles (keeps main CSS untouched) */
  form.order-form { padding: 12px; margin: 1px; }
  .form-row { margin-bottom:10px; }
  .form-row input, .form-row select { width:100%; padding:10px; border-radius:8px; border:1px solid #e6e6e6; }
  .form-row label { display:block; margin-bottom:6px; font-weight:700; color:var(--accent); }
  
.carousel-container {
  position: relative;
  max-width: 500px;
  margin: auto;
  text-align: center;
  background: #fff0f5;
  border-radius: 20px;
  padding: 12px;
  box-shadow: 0 8px 20px rgba(255, 192, 203, 0.4);
    margin-bottom: 30px;
}

#carousel-image {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 16px;
  border: 2px solid #ffc0cb;
}

.carousel-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  background: #ff80ab;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 105, 180, 0.3);
}

.carousel-btn:hover {
  background: #ff5c9f;
}

.carousel-btn svg {
  width: 22px;
  height: 22px;
  stroke: white;
}

.carousel-btn.prev {
  left: 12px;
}

.carousel-btn.next {
  right: 12px;
}

.carousel-thumbnails {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.carousel-thumbnails img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 10px;
  transition: all 0.3s;
  box-shadow: 0 2px 6px rgba(255, 182, 193, 0.3);
}

.carousel-thumbnails img:hover {
  transform: scale(1.05);
}

.carousel-thumbnails img.active {
  border: 2px solid #ff69b4;
}

@media (min-width: 768px) {
  .img {
    height: 300px;
  }
}


.total-wrap {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.total-wrap.visible {
  opacity: 1;
  pointer-events: auto;
}

.land-image {
  max-width: 100%;      /* Don't go wider than the container */
  max-height: 8400px;    /* Limit height */
  height: auto;         /* Keep proportions */
  width: auto;          /* Prevent forced stretch */
  display: block;       /* Remove inline gap issues */
  margin: 0 auto;       /* Center horizontally */
  object-fit: contain;  /* Make sure the whole image is visible */
}

.desc {
  font-size: 21px;
  font-style: italic;
  font-weight: 400;
  color: #73033b; /* soft feminine pink */
  background: #fff0f6; /* light pastel pink background */
  padding: 8px 14px;
  border-radius: 20px;
  display: inline-block;
  margin: 12px auto 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
 .contact {
        margin-top: 20px;
        text-align: center;
    }
    .contact a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 8px;
        padding: 10px 15px;
        background-color: #ff69b4;
        color: white;
        border-radius: 8px;
        text-decoration: none;
        font-size: 15px;
        transition: 0.2s ease-in-out;
    }
    .contact a img {
        width: 40px;
        height: 40px;
        margin-left: 6px;
    }
    .contact a:hover {
        background-color: #ff4d94;
    }
    .phone {
        text-align: center;
        font-size: 18px;
        margin-top: 15px;
        font-weight: bold;
        color: #333;
    }
        .social-link {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        font-size: 1.2rem;
        margin: 10px 0;
    }
    .social-link i {
        margin-right: 8px; /* space between icon and text */
    }
    .social-facebook {
        color: #1877F2; /* Facebook blue */
    }
    .social-whatsapp {
        color: #25D366; /* WhatsApp green */
    }
    
        .social-link {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        font-size: 1.2rem;
        margin: 10px 15px 10px 0;
        gap: 10px; /* space between icon and text */
    }
    .social-link img {
        width: 28px;
        height: 28px;
    }

.note {
    font-size: 21px;
    font-style: italic;
    font-weight: 400;
    color: #0a3d62; /* deep blue text */
    background: #eaf6ff; /* light blue background */
    padding: 8px 14px;
    border-radius: 20px;
    display: inline-block;
    margin: 12px auto 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}



/* تصميم المنتجات في عمودين */
.products.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 10px;
}

@media (max-width: 480px) {
    .products.two-columns {
        grid-template-columns: 1fr;
    }
}

/* تفاصيل المنتج */
.details {
    display: none;
    margin-top: 8px;
    padding: 8px;
    background: #f8f9fa;
    border-radius: 6px;
    font-size: 14px;
    color: #555;
}

.details.show {
    display: block;
}

.toggle-details {
    margin-top: 6px;
    padding: 6px 10px;
    background: #e9ecef;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    color: #555;
}