/* ========================
   GLOBAL
======================== */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fdf7f5;
}

/* ========================
   HEADER
======================== */
.Header {
  background-color: #f3928e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(186,99,96,0.18);
}

.selora-logo {
  height: 48px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links > a {
  color: white;
  text-decoration: none;
  padding: 7px 13px;
  font-size: 15px;
  border-radius: 12px;
  transition: background 0.3s, color 0.3s;
}

.nav-links > a:hover {
  background-color: #ffffff;
  color: #CA9A8E;
}

/* ----- shared button ----- */
.button {
  background-color: #ba6360;
  color: white;
  border: none;
  padding: 9px 20px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  border-radius: 14px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.button:hover {
  background-color: #ffffff;
  color: #CA9A8E;
}

/* ----- Products nav dropdown ----- */
.nav-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.nav-dropdown-trigger {
  color: white;
  text-decoration: none;
  padding: 7px 13px;
  font-size: 15px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}

.nav-dropdown-trigger:hover {
  background-color: #ffffff;
  color: #CA9A8E;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 180px;
  z-index: 200;
}

.nav-dropdown-wrapper:hover .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 11px 18px;
  color: #5a3b38;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.15s;
}

.nav-dropdown a:hover {
  background-color: #fde8e5;
  color: #ba6360;
}

/* ----- Language dropdown ----- */
.lang-wrapper {
  position: relative;
  display: inline-block;
}

.lang-btn { cursor: pointer; }

.lang-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 150px;
  z-index: 200;
}

.lang-wrapper:hover .lang-dropdown { display: block; }

.lang-option {
  display: block;
  width: 100%;
  padding: 12px 18px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  color: #5a3b38;
  cursor: pointer;
  transition: background 0.15s;
}

.lang-option:hover {
  background-color: #fde8e5;
  color: #ba6360;
}

/* ========================
   HERO
======================== */
.Main-content {
  background-color: #f3928e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 32px 0;
  color: #fff;
  border-radius: 0 0 50px 50px;
  overflow: hidden;
  min-height: 280px;
}

.hero-text { max-width: 700px; }

.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  opacity: 0.9;
}

.hero-text h1 {
  font-size: 28px;
  font-weight: 800;
  margin: 8px 0 12px;
  line-height: 1.25;
}

.hero-text p {
  font-size: 12px;
  line-height: 1.7;
  opacity: 0.92;
  margin-bottom: 20px;
  max-width: 680px;
}

/* Search bar */
.search {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 32px;
}

.search input {
  border: none;
  outline: none;
  height: 36px;
  width: 210px;
  padding: 0 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  background: transparent;
  color: #5a3b38;
}

.search input::placeholder { color: #b8978f; }

.search button {
  background-color: #ba6360;
  color: white;
  border: none;
  padding: 0 18px;
  height: 36px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  border-radius: 0 20px 20px 0;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.search button:hover { background-color: #de807c; }

.hero-img { flex-shrink: 0; align-self: flex-end; }
.hero-img img { display: block; }

/* ========================
   PRODUCTS
======================== */
.all-products { padding: 0 0 40px; }

.trending-container { padding: 28px 24px 12px; }

.section-label {
  color: #ba6360;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.trendingheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.trendingheader h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #CA9A8E;
}

.trending-card {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ========================
   CARD — now an <a> tag
======================== */
.card {
  width: 220px;
  background-color: #eed4c6;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(186,99,96,0.22);
}

.card-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  background-color: #e8c8b8;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.card:hover .card-img-wrap img { transform: scale(1.04); }

.Card-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px 14px 14px;
  gap: 8px;
}

.card-name { flex: 1; min-width: 0; }

.card-name h3 {
  margin: 0 0 2px;
  font-size: 13px;
  font-weight: 700;
  color: #CA9A8E;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-name p {
  margin: 0;
  font-size: 11px;
  color: #7a5048;
  line-height: 1.5;
}

/* Search icon image */
.search-icon-img {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  object-fit: contain;
  transition: transform 0.2s;
}

.card:hover .search-icon-img {
  transform: scale(1.12);
}

/* ========================
   FOOTER
======================== */
.footer {
  background-color: #CA9A8E;
  color: #7a5a52;
  padding: 40px 32px 0;
}

.footer-inner {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(232,200,184,0.15);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: #7a5a52;
  margin: 0;
}

.footer-links h4 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 600;
}

.footer-links a {
  display: block;
  color: #7a5a52;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 7px;
  transition: color 0.2s;
}

.footer-links a:hover { color: #f3928e; }

.footer-bottom {
  text-align: center;
  padding: 16px;
  font-size: 12px;
  color: #7a5a52;
}

/* ========================
   ABOUT & CONTACT SHARED
======================== */
.page-hero {
  background-color: #f3928e;
  color: #fff;
  padding: 60px 40px;
  border-radius: 0 0 50px 50px;
  text-align: center;
}

.page-hero h1 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 12px;
}

.page-hero p {
  font-size: 14px;
  opacity: 0.92;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 24px 60px;
}

/* ========================
   ABOUT PAGE
======================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.about-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 4px 18px rgba(186,99,96,0.08);
}

.about-card .icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.about-card h3 {
  color: #CA9A8E;
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 10px;
}

.about-card p {
  color: #7a5048;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}

.about-story {
  background: linear-gradient(135deg, #f3928e22, #eed4c655);
  border-radius: 24px;
  padding: 36px;
  margin-bottom: 40px;
}

.about-story h2 {
  color: #CA9A8E;
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 14px;
}

.about-story p {
  color: #5a3b38;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 12px;
}

.values-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.value-pill {
  background: #f3928e;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

/* ========================
   CONTACT PAGE
======================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-info { display: flex; flex-direction: column; gap: 20px; }

.contact-info-item {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: 0 4px 14px rgba(186,99,96,0.08);
}

.contact-info-item .ci-icon {
  font-size: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item h4 {
  margin: 0 0 4px;
  color: #CA9A8E;
  font-size: 14px;
  font-weight: 700;
}

.contact-info-item p {
  margin: 0;
  color: #7a5048;
  font-size: 13px;
  line-height: 1.6;
}

.contact-form {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 4px 18px rgba(186,99,96,0.08);
}

.contact-form h3 {
  margin: 0 0 22px;
  color: #CA9A8E;
  font-size: 18px;
  font-weight: 700;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #5a3b38;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1.5px solid #e8c8b8;
  border-radius: 12px;
  padding: 10px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #CA9A8E;
  background: #fdf7f5;
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #f3928e;
}

.form-submit {
  width: 100%;
  background-color: #f3928e;
  color: white;
  border: none;
  padding: 13px;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  border-radius: 14px;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s, transform 0.15s;
}

.form-submit:hover {
  background-color: #e07a76;
  transform: translateY(-1px);
}

.form-success {
  display: none;
  text-align: center;
  padding: 20px;
  color: #ba6360;
  font-size: 15px;
  font-weight: 600;
}

/* ========================
   VIDEO PAGE
======================== */
.video-page {
  min-height: 100vh;
  background: #fdf7f5;
}

.video-hero {
  background: #f3928e;
  color: #fff;
  padding: 40px 32px;
  border-radius: 0 0 40px 40px;
  text-align: center;
}

.video-hero .back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 16px;
  transition: color 0.2s;
}

.video-hero .back-btn:hover { color: #fff; }

.video-hero h1 {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 6px;
}

.video-hero .shade-badge {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 13px;
  margin-top: 6px;
}

.video-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 24px;
}

.video-placeholder {
  background: #eed4c6;
  border-radius: 24px;
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #ba6360;
  font-size: 15px;
  font-weight: 600;
  border: 3px dashed #f3928e;
}

.video-placeholder .big-play {
  width: 72px;
  height: 72px;
  background: #f3928e;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  padding-left: 5px;
}

.video-details {
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  margin-top: 24px;
  box-shadow: 0 4px 14px rgba(186,99,96,0.08);
}

.video-details h2 {
  color: #CA9A8E;
  font-size: 18px;
  margin: 0 0 10px;
}

.video-details p {
  color: #7a5048;
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
}
/* 🔥 توحيد كل الروابط */
.contact-info a,
.social-links a {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;        /* 👈 نفس حجم الانستغرام */
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

/* hover effect موحد */
.contact-info a:hover,
.social-links a:hover {
  color: #f5928e;
  transform: translateX(5px);
}

/* الأيقونات */
.contact-info a i,
.social-links a i {
  font-size: 18px;
}

/* 🔥 ضبط الفواصل (لأن عندك <br>) */
.contact-info p {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0;
}