


body {
  margin: 0;
  padding: 0;
  font-family: 'Quicksand', sans-serif;
  background: #fff;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}


.sweetcake-header {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px dashed #ddd;
  /*position: sticky;*/
  /*top: 0;*/
  /*z-index: 999;*/
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-left, .nav-right {
  display: flex;
  gap: 25px;
}

.nav-left a, .nav-right a {
  text-decoration: none;
  color: #444;
  font-family: 'Cookie', cursive;
  font-size: 22px;
  position: relative;
}

.nav-left a::after, .nav-right a::after {
  content: '';
  display: block;
  margin-top: 5px;
  height: 1px;
  width: 60%;
  background: #ddd;
  margin-left: auto;
  margin-right: auto;
}

.logo-badge {
  text-align: center;
}

.logo-badge img {
  height: 85px;
}

.logo-badge .logo-text {
  font-family: 'Cookie', cursive;
  font-size: 38px;
  color: #d86ba8;
  margin-top: -20px;
}

@media (max-width: 768px) {
  .nav-left, .nav-right {
    display: none;
  }

  .logo-badge img {
    height: 60px;
  }

  .logo-badge .logo-text {
    font-size: 30px;
  }
}
/*new */
.sweetcake-header .logo-badge .logo-lines {
  display: none;
}

.sweetcake-header .nav-wrapper {
  justify-content: center;
}

.sweetcake-header .nav-left {
  margin-right: 30px;
  gap: 20px;
}

.sweetcake-header .nav-right {
  margin-left: 30px;
  gap: 20px;
}

.sweetcake-header .nav-left a::after,
.sweetcake-header .nav-right a::after {
  width: 50%;
}

.sweetcake-header .logo-badge img {
  height: 140px;
  width: auto;
}

.sweetcake-header .logo-badge .logo-text {
  font-size: 46px;
  margin-top: -30px;
}

/* يرفع المحتوى تحت حوالي 15px */
.sweetcake-header .nav-wrapper {
  padding-top: 30px;
  padding-bottom: 10px;
}

/* يزوّد حجم اللوجو */
.sweetcake-header .logo-badge img {
  height: 220px;  /* بدل 140px */
}

/* يكبّر حجم الخط للروابط */
.sweetcake-header .nav-left a,
.sweetcake-header .nav-right a {
  font-size: 32px;  /* بدل 22px */
}

/* يزوّد المسافة الرأسية على الروابط علشان تنزل تحت شوية بالنسبة للوجو */
.sweetcake-header .nav-left,
.sweetcake-header .nav-right {
  margin-top: 25px;
}
.sweetcake-header .nav-left,
.sweetcake-header .nav-right {
  gap: 60px; /* غيّر القيمة حسب المسافة اللي ترضيها */
}
.sweetcake-header .nav-left a,
.sweetcake-header .nav-right a {
  color: #666; /* افتح أو اغلق القيمة (مثلاً #444 أو #666) حسب درجة الـ“باهت” اللي تعجبك */
}



.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.3s;
}

.dot.active {
  opacity: 1;
}


.info-boxes {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background: #f8f8f8;
  flex-wrap: wrap;
}

.info-box {
  background: white;
  padding: 15px 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-weight: bold;
  font-size: 16px;
}

.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.product-card {
  width: 230px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.product-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}



.product-info {
  padding: 12px;
}

.product-info h3 {
  font-size: 14px;
  color: #222;
  margin: 0 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-info p {
  font-size: 14px;
  color: #000;
  font-weight: 600;
  margin: 0;
}

.product-card h3 {
  font-weight: normal;
  text-decoration: none;
  color: #222;
}




.view-all-btn {
  background: #e91e63;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  transition: 0.3s;
}

.view-all-btn:hover {
  background: #c2185b;
}

@media (max-width: 768px) {
  .info-boxes {
    flex-direction: column;
    align-items: center;
  }

  .product-card {
    width: 90%;
  }
}

a.product-card {
  text-decoration: none !important;
  color: inherit;
}



.reviews-section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: bold;
  color: #222;
}



.review:last-child {
  border-bottom: none;
}



.reviewer-name {
  font-size: 16px;
  color: #444;
}

.reviews-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
}

.reviews-section h1 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
}

.review {
  border-bottom: 1px solid #eee;
  padding: 30px 0;
}

.review-header {
  display: flex;
  gap: 15px;
  align-items: center;
}

.review-avatar,
.seller-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review-meta {
  flex: 1;
}

.review-date {
  display: block;
  font-size: 14px;
  color: #888;
}



.review-message {
  margin-top: 15px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.review-photo img {
  margin-top: 10px;
  max-width: 100%;
  border-radius: 8px;
}

.seller-response {
  margin-top: 20px;
  background: #f5f5f5;
  padding: 15px;
  border-left: 4px solid #1e88e5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.response-text {
  font-size: 14px;
  color: #333;
}

.product-title {
  margin-top: 10px;
  font-weight: bold;
  color: #1e293b;
  font-size: 14px;
}

.pagination {
  text-align: center;
  margin-top: 40px;
}

.page-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #e91e63;
  color: white;
  border-radius: 30px;
  margin: 0 5px;
  text-decoration: none;
  font-size: 14px;
}

/* ==== Product Listing Page (Etsy Style) ==== */

.product-listing {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.product-header h1 {
  font-size: 26px;
  font-weight: bold;
  color: #222;
}

.product-sorting {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-sorting label {
  font-size: 14px;
  color: #555;
}

.product-sorting select {
  padding: 8px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 30px;
}

.product-card {
  display: block;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  background: white;
  text-decoration: none;
  transition: 0.2s ease-in-out;
}

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

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.product-info {
  padding: 14px;
}

.product-info h3 {
  font-size: 15px;
  color: #222;
  font-weight: 600;
  margin: 0 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-info p {
  font-size: 15px;
  color: #1e293b;
  font-weight: bold;
  margin: 0;
}

.single-product {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.product-main-image {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.product-price {
  font-size: 20px;
  font-weight: bold;
  color: #e91e63;
  margin-bottom: 20px;
}
/* style.css â€“ Topzzle Product Page Styles */

body {
  background: #fff;
  font-family: 'Quicksand', sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
}

.product-page {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 50px auto;
  padding: 20px;
  gap: 40px;
}

.product-gallery {
  flex: 1 1 400px;
  text-align: center;
}

.product-gallery img.product-main-image {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.product-summary {
  flex: 1 1 400px;
}

.product-summary h1 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #222;
}

.product-price {
  font-size: 22px;
  color: #e91e63;
  margin-bottom: 10px;
}

.product-price del {
  font-size: 16px;
  color: #888;
  margin-left: 10px;
}

.product-price .discount {
  background: #43a047;
  color: #fff;
  font-size: 13px;
  padding: 3px 8px;
  border-radius: 5px;
  margin-left: 10px;
}

form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form textarea, form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
}

.add-to-basket {
  background: #000;
  color: white;
  padding: 12px;
  font-size: 16px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.add-to-basket:hover {
  background: #333;
}

.highlights {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.highlights li {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}


.delivery-info {
  margin-top: 20px;
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

.product-description {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.product-description h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #222;
}

.reviews-section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.reviews-section h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #222;
}

.review {
  border-top: 1px solid #eee;
  padding: 20px 0;
}

.review-header {
  display: flex;
  gap: 15px;
  align-items: center;
}

.review-avatar,
.seller-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.review-meta {
  flex: 1;
}

.review-date {
  display: block;
  font-size: 14px;
  color: #888;
}

.review-stars {
  color: #f4c150;
  font-size: 16px;
}

.review-message {
  margin-top: 15px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.review-photo img {
  margin-top: 10px;
  max-width: 100%;
  border-radius: 8px;
}

.seller-response {
  margin-top: 20px;
  background: #f5f5f5;
  padding: 15px;
  border-left: 4px solid #1e88e5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.response-text {
  font-size: 14px;
  color: #333;
}

/* ===== Hero Slider Styles ===== */
.hero-slider {
  background: #f8c5d0;      /* ثابت وردي */
  padding: 80px 0;
  overflow: hidden;
}

/* تأكد بأن الحاوية تأخذ العرض بالكامل */
.hero-slider .swiper-container,
.hero-slider .swiper-wrapper {
  width: 100%;
}

/* عرض الشرائح أفقياً */
.hero-slider .swiper-wrapper {
  display: flex;
}

/* كل شريحة تأخذ 100% عرض */
.hero-slider .swiper-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
}

/* تنسيق المحتوى داخل الشريحة */
.slide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* نص الشريحة */
.slide-text {
  flex: 1 1 40%;
  color: #9b2e67;
}
.slide-text h2 {
  font-family: 'Cookie', cursive;
  font-size: 3rem;
  margin: 0;
}
.slide-text h3 {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 1rem;
  color: #333;
}
.slide-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #555;
}

/* زر “Shop Now” */
.btn-hero {
  display: inline-block;
  background: #9b2e67;
  color: #fff;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s;
}
.btn-hero:hover {
  background: #7a2352;
}

/* صورة الشريحة */
.slide-img {
  flex: 1 1 50%;
  text-align: right;
}
.slide-img img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .slide-inner {
    flex-direction: column-reverse;
    text-align: center;
  }
  .slide-img {
    margin-bottom: 30px;
    text-align: center;
  }
  .slide-text h2 {
    font-size: 2.5rem;
  }
  .slide-text h3 {
    font-size: 1.75rem;
  }
}
/* أخفِ كل الشرائح بشكل افتراضي */
.hero-slider .swiper-slide {
  display: none !important;
  opacity: 0 !important;
}

/* أظهر فقط الشريحة النشطة */
.hero-slider .swiper-slide-active {
  display: flex !important;
  opacity: 1 !important;
}

/* تأكد من أن .slide-inner يُعرض بشكل صحيح */
.hero-slider .slide-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* ===== Hero Slider – increased size & level alignment ===== */
.hero-slider {
  background: #f8c5d0;
  padding: 80px 0;
  overflow: hidden;
}

/* عرض الشرائح أفقياً */
.hero-slider .swiper-wrapper {
  display: flex;
}

/* شريحة بعرض كامل وتنسيق أفقي */
.hero-slider .swiper-slide {
  flex: 0 0 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: center;
}

/* inner wrapper */
.slide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;          /* مسافة أكبر بين النص والصورة */
  width: 90%;
  max-width: 1400px;  /* ضبط أقصى عرض */
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Text: larger ===== */
.slide-text {
  flex: 1 1 45%;
}
.slide-text h2 {
  font-family: 'Cookie', cursive;
  font-size: 4rem;    /* كبرنا العنوان الكبير */
  margin: 0;
}
.slide-text h3 {
  font-size: 3rem;    /* وكبرنا العنوان الثانوي */
  font-weight: bold;
  margin: .25rem 0 1.5rem;
}
.slide-text p {
  font-size: 1.25rem; /* أكبر نص الفقرة */
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* ===== Button: bigger padding ===== */
.btn-hero {
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
}

/* ===== Image: larger & same level ===== */
.slide-img {
  flex: 1 1 55%;
  text-align: right;
}
.slide-img img {
  max-width: 110%;   /* يسمح للصورة أن تبالغ حجم العنصر قليلًا */
  height: auto;
  display: inline-block;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .slide-inner {
    flex-direction: column-reverse;
    text-align: center;
  }
  .slide-img {
    margin-bottom: 30px;
    text-align: center;
  }
  .slide-text h2 { font-size: 3rem; }
  .slide-text h3 { font-size: 2rem; }
  .slide-text p  { font-size: 1rem; }
}
