/* =========================================================
   Al Saeed Jewellers – Desktop homepage
   ========================================================= */
:root {
  --gold: #dbaf36;
  --gold-dark: #c49a2a;
  --ink: #1a1814;
  --ink-soft: #22201d;
  --muted: #6b6560;
  --line: #e6e1d8;
  --cream: #f7f5f1;
  --card: #f6f6f6;
  --white: #ffffff;
  --max: 1730px;
  --header-h: 88px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

a:hover {
  color: var(--gold);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container-site {
  width: min(100% - 60px, var(--max));
  margin-inline: auto;
}

.section-pad {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  margin: 0 0 12px;
  color: var(--ink);
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto 48px;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink-soft);
  color: #cfcac2;
  font-size: 13px;
  padding: 10px 0;
}

.topbar a {
  color: #cfcac2;
}

.topbar a:hover {
  color: var(--gold);
}

.topbar-social {
  display: flex;
  gap: 14px;
  align-items: center;
}

.topbar-social a {
  font-size: 14px;
  line-height: 1;
}

.topbar-links {
  display: flex;
  gap: 22px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 56px;
  width: auto;
}

.main-nav {
  display: none;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
  justify-content: center;
}

.main-nav > li {
  position: relative;
}

.main-nav > li > a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.main-nav > li > a:hover,
.main-nav > li:hover > a {
  color: var(--gold);
}

.main-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  z-index: 20;
}

.main-nav > li:hover > .dropdown-menu {
  display: block;
}

.main-nav .dropdown-menu a {
  display: block;
  padding: 8px 18px;
  font-size: 14px;
  color: var(--ink);
  letter-spacing: 0;
  text-transform: none;
}

.main-nav .dropdown-menu a:hover {
  background: var(--cream);
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white) !important;
  border: none;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white) !important;
}

.header-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ink);
}

.header-icon:hover {
  color: var(--gold);
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

/* ---------- Hero slider ---------- */
.hero-slider {
  position: relative;
  background: #2a2a28;
}

.hero-slider .carousel-item {
  height: clamp(420px, 42vw, 600px);
  overflow: hidden;
}

.hero-slider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.hero-slider .carousel-item:hover img {
  transform: scale(1.05);
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 56px;
  opacity: 0.85;
}

.hero-slider .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- Two banners ---------- */
.duo-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.duo-card {
  position: relative;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 960 / 520;
  min-height: 0;
}

.duo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.duo-card:hover img {
  transform: scale(1.05);
}

.duo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.18));
  pointer-events: none;
}

/* ---------- Best sellers ---------- */
.products-section {
  background: var(--white);
}

.product-card {
  text-align: center;
}

.product-media {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  margin-bottom: 16px;
  aspect-ratio: 1 / 1;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.06);
}

.product-cat {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0;
}

.product-title a:hover {
  color: var(--gold);
}

.swiper-products {
  padding-bottom: 8px;
}

.swiper-products .swiper-slide {
  height: auto;
}

.swiper-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.swiper-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.swiper-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ---------- Category grid ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.cat-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.cat-card:hover img {
  transform: scale(1.05);
}

.cat-card .cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(66, 39, 17, 0.85));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 36px 20px;
}

.cat-card h5 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.5vw, 1.85rem);
  font-weight: 700;
  color: var(--white);
  margin: 0;
  text-align: center;
  letter-spacing: 0.02em;
}

/* ---------- Services ---------- */
.services {
  border-bottom: 1px solid var(--line);
}

.service-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 10px 8px;
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
}

.service-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 32px;
  line-height: 1;
}

.service-item h6 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--gold);
}

.service-item p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

/* ---------- Promo duo ---------- */
.promo-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.promo-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 960 / 520;
  min-height: 0;
}

.promo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.promo-card:hover img {
  transform: scale(1.05);
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--white);
}

.testimonial-card {
  background: var(--card);
  border-radius: 18px;
  padding: 40px;
  height: 100%;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.testimonial-card .quote {
  flex: 1;
  font-size: 15px;
  color: #444;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 22px;
}

.testimonial-card .name {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}

.swiper-testimonials .swiper-slide {
  height: auto;
}

/* ---------- Trends CTA ---------- */
.trends {
  padding: 0;
  width: 100%;
  margin-bottom: 60px;
}

.trends-banner {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0;
  margin: 0;
}

.trends-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.trends-banner:hover img {
  transform: scale(1.05);
}

.trends-banner .content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 560px;
  padding: 50px 30px;
}

.mobile-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-links > li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.mobile-links > li > a {
  flex: 1 1 auto;
  display: block;
  padding: 14px 8px 14px 0;
  border-bottom: 0;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
}

.mobile-links li a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-submenu-toggle {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 0;
  cursor: pointer;
}

.mobile-submenu-toggle i {
  transition: transform 0.25s ease;
  font-size: 14px;
}

.mobile-links .menu-item-has-children.is-open > .mobile-submenu-toggle i {
  transform: rotate(180deg);
}

.mobile-links .sub-menu {
  display: none;
  flex: 0 0 100%;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0 0 10px 12px;
  background: transparent;
}

.mobile-links .menu-item-has-children.is-open > .sub-menu {
  display: block;
}

.mobile-links .sub-menu li {
  border-bottom: 0;
}

.mobile-links .sub-menu a {
  padding: 10px 0;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--muted);
  border-bottom: 0;
}

.mobile-links .sub-menu a:hover {
  color: var(--gold);
}

.trends-banner .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}

.trends-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 18px;
}

.trends-banner p {
  color: var(--ink);
  margin: 0 0 28px;
}

.trends-banner .btn-outline-gold {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trends-banner .btn-outline-gold:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ---------- Map ---------- */
.map-section {
  width: 100%;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: clamp(220px, 28vw, 400px);
  border: 0;
  display: block;
  filter: grayscale(0.15);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--white);
  color: #3a3632;
  padding: 70px 0 0;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  height: 52px;
  width: auto;
  margin-bottom: 18px;
}

.footer-about {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
  color: #3a3632;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 14px;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-col h6 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink);
  margin: 0 0 22px;
  font-weight: 600;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #3a3632;
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.55;
  color: #3a3632;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 50px;
  padding: 18px 0;
  font-size: 13px;
  text-align: center;
  color: #3a3632;
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1040;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover {
  color: #fff !important;
  transform: scale(1.06);
}

/* =========================================================
   RESPONSIVE
   Breakpoints:
   - Mobile:        ≤575
   - Large phone:   576–767
   - Tablet:        768–991
   - Small laptop:  992–1199
   - Desktop:       1200–1399
   - Large:         1400–1919
   - Ultra / 27":   ≥1920
   ========================================================= */

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

img,
iframe,
video,
.swiper,
.carousel {
  max-width: 100%;
}

/* ----- Ultra-wide / 27" screens (≥1920) ----- */
@media (min-width: 1920px) {
  :root {
    --max: 1800px;
  }

  .container-site {
    width: min(100% - 100px, var(--max));
  }

  .hero-slider .carousel-item {
    height: clamp(560px, 38vw, 720px);
  }

  .section-pad {
    padding: 100px 0;
  }

  .trends-banner {
    min-height: 560px;
  }

  .cat-card .cat-overlay {
    padding: 48px 28px;
  }

  .map-section iframe {
    height: 420px;
  }
}

/* ----- Large desktop (1400–1919) ----- */
@media (min-width: 1400px) and (max-width: 1919.98px) {
  .container-site {
    width: min(100% - 80px, var(--max));
  }

  .hero-slider .carousel-item {
    height: clamp(480px, 40vw, 620px);
  }
}

/* ----- Desktop (1200–1399): full nav ----- */
@media (min-width: 1200px) {
  .main-nav {
    display: flex;
  }

  .navbar-toggler {
    display: none !important;
  }
}

/* ----- Small laptop (992–1199) ----- */
@media (max-width: 1199.98px) {
  .main-nav {
    display: none;
  }

  .navbar-toggler {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 4px;
    background: transparent;
  }

  .header-inner {
    gap: 16px;
  }

  .brand img {
    height: 48px;
  }

  .btn-gold {
    padding: 10px 16px;
    font-size: 12px;
  }

  .hero-slider .carousel-item {
    height: clamp(360px, 40vw, 480px);
  }

  .section-pad {
    padding: 64px 0;
  }

  .section-sub {
    margin-bottom: 36px;
  }

  .cat-card .cat-overlay {
    padding: 28px 16px;
  }

  .testimonial-card {
    padding: 28px 24px;
    min-height: 240px;
  }

  .trends-banner {
    min-height: 400px;
  }
}

/* ----- Tablet (768–991) ----- */
@media (max-width: 991.98px) {
  .container-site {
    width: min(100% - 40px, var(--max));
  }

  .header-inner {
    min-height: 72px;
    padding: 10px 0;
  }

  .header-actions {
    gap: 8px;
  }

  .header-icon[aria-label="Cart"] {
    display: none;
  }

  .duo-banners,
  .promo-duo {
    grid-template-columns: 1fr;
  }

  .cat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-slider .carousel-item {
    height: clamp(280px, 48vw, 400px);
  }

  .hero-slider .carousel-control-prev,
  .hero-slider .carousel-control-next {
    width: 40px;
  }

  .section-pad {
    padding: 52px 0;
  }

  .service-item {
    margin-bottom: 8px;
  }

  .trends {
    margin-bottom: 40px;
  }

  .trends-banner {
    min-height: 360px;
  }

  .trends-banner .content {
    padding: 36px 24px;
    max-width: 90%;
  }

  .site-footer {
    padding: 50px 0 0;
  }

  .footer-col {
    margin-bottom: 10px;
  }
}

/* ----- Large phone / small tablet (576–767) ----- */
@media (max-width: 767.98px) {
  .topbar-links {
    display: none;
  }

  .brand img {
    height: 42px;
  }

  .btn-gold {
    padding: 8px 12px;
    font-size: 11px;
  }

  .header-icon {
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .section-title {
    font-size: clamp(1.65rem, 6vw, 2.1rem);
  }

  .section-sub {
    font-size: 14px;
    margin-bottom: 28px;
    padding: 0 8px;
  }

  .product-title {
    font-size: 1.1rem;
  }

  .testimonial-card {
    padding: 24px 20px;
    border-radius: 14px;
    min-height: 0;
  }

  .map-section iframe {
    height: 240px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* ----- Mobile (≤575) ----- */
@media (max-width: 575.98px) {
  .container-site {
    width: min(100% - 24px, var(--max));
  }

  .topbar {
    padding: 8px 0;
  }

  .header-actions .header-icon[aria-label="Search"] {
    display: none;
  }

  .hero-slider .carousel-item {
    height: 52vw;
    min-height: 200px;
    max-height: 280px;
  }

  .cat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .cat-card .cat-overlay {
    padding: 18px 10px;
  }

  .cat-card h5 {
    font-size: 1.05rem;
  }

  .section-pad {
    padding: 40px 0;
  }

  .trends {
    margin-bottom: 32px;
  }

  .trends-banner {
    min-height: 300px;
  }

  .trends-banner .content {
    padding: 28px 16px;
  }

  .trends-banner h2 {
    font-size: 1.75rem;
  }

  .trends-banner p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .service-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .service-icon {
    margin: 0 auto;
  }

  .site-footer {
    padding: 40px 0 0;
    text-align: center;
  }

  .footer-about {
    max-width: none;
    margin-inline: auto;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
    text-align: left;
  }

  .footer-bottom {
    margin-top: 30px;
    padding: 16px 12px;
  }

  .swiper-nav {
    margin-top: 20px;
  }

  .swiper-btn {
    width: 40px;
    height: 40px;
  }
}

/* Reduce hover zoom on touch devices (optional polish) */
@media (hover: none) {
  .duo-card:hover img,
  .promo-card:hover img,
  .cat-card:hover img,
  .product-card:hover .product-media img,
  .trends-banner:hover img,
  .hero-slider .carousel-item:hover img {
    transform: none;
  }
}

/* =========================================================
   ABOUT US PAGE
   ========================================================= */
.main-nav > li.active > a {
  color: var(--gold);
}

.text-gold {
  color: var(--gold);
}

/* Hero — matches live Elementor layout (left ~39% column, centered text) */
.about-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: #fff;
  padding: 0 30px;
}

.about-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.8s ease;
}

.about-hero:hover .about-hero__media img {
  transform: scale(1.03);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(34, 32, 29, 0.36);
  pointer-events: none;
}

.about-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  display: flex;
  align-items: center;
  min-height: 640px;
}

.about-hero__content {
  width: 39%;
  max-width: 520px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 10px;
}

.about-hero__content h1 {
  font-family: "Jost", var(--font-body);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.125;
  letter-spacing: 0;
  color: #fff;
  margin: 0 0 30px;
}

.about-hero__content p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  color: #fff;
  margin: 0 0 30px;
  max-width: 100%;
}

.about-hero__sign {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-signature {
  width: 205px;
  max-width: 70%;
  height: auto;
  margin: 0 0 -30px;
  filter: brightness(0) invert(1);
}

.about-byline {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.5px;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* Our Story */
.about-story__image {
  overflow: hidden;
  border-radius: 0;
}

.about-story__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s ease;
}

.about-story__image:hover img {
  transform: scale(1.04);
}

.about-story__text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 600;
  margin: 0 0 24px;
  color: var(--ink);
}

.about-story__text p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a4540;
  margin: 0 0 18px;
}

.about-story__text strong {
  color: var(--ink);
}

/* Finishing Touch — text only */
.about-finish {
  padding-top: 20px;
}

.about-finish .section-sub {
  margin-bottom: 48px;
}

.finish-card {
  height: 100%;
  text-align: center;
  padding: 10px 12px 20px;
}

.finish-card__label {
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.finish-card h5 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--ink);
}

.finish-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 16px;
}

.finish-card a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.finish-card a:hover {
  color: var(--gold);
}

/* Handmade CTA */
.about-handmade {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-bottom: 0;
}

.about-handmade__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-handmade__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-handmade:hover .about-handmade__media img {
  transform: scale(1.04);
}

.about-handmade .container-site {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}

.about-handmade__content {
  max-width: 440px;
  padding: 50px 40px;
  text-align: left;
}

.about-handmade__content .eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.about-handmade__content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 18px;
}

.about-handmade__content p {
  font-size: 15px;
  line-height: 1.7;
  color: #4a4540;
  margin: 0 0 28px;
}

.btn-dark-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: var(--ink);
  color: #fff !important;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn-dark-pill:hover {
  background: var(--gold);
  color: #fff !important;
}

/* About responsive */
@media (max-width: 1199.98px) {
  .about-hero,
  .about-hero__inner {
    min-height: 560px;
  }

  .about-hero__content {
    width: 45%;
  }

  .about-hero__content h1 {
    font-size: 40px;
  }

  .about-handmade {
    min-height: 480px;
  }

  .about-handmade__content {
    max-width: 400px;
    padding: 40px 24px;
  }
}

@media (max-width: 991.98px) {
  .about-hero,
  .about-hero__inner {
    min-height: 480px;
  }

  .about-hero__content {
    width: 50%;
    max-width: none;
  }

  .about-hero__content h1 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .about-handmade {
    min-height: 0;
  }

  .about-handmade .container-site {
    justify-content: center;
  }

  .about-handmade__content {
    max-width: 100%;
    padding: 48px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.72);
  }
}

@media (max-width: 767.98px) {
  .about-hero {
    padding: 40px 15px;
    min-height: 0;
  }

  .about-hero__inner {
    min-height: 300px;
  }

  .about-hero__content {
    width: 100%;
    max-width: 100%;
    padding: 20px 0;
  }

  .about-hero__content h1 {
    font-size: 32px;
  }

  .about-hero__content p {
    margin-bottom: 20px;
  }

  .about-signature {
    width: 160px;
    margin-bottom: -20px;
  }

  .about-story {
    padding-top: 40px;
  }
}

@media (max-width: 575.98px) {
  .about-hero__content h1 {
    font-size: 28px;
  }

  .about-handmade__content {
    padding: 36px 16px;
  }
}

@media (min-width: 1920px) {
  .about-hero,
  .about-hero__inner {
    min-height: 720px;
  }

  .about-handmade {
    min-height: 640px;
  }
}

@media (hover: none) {
  .about-hero:hover .about-hero__media img,
  .about-handmade:hover .about-handmade__media img,
  .about-story__image:hover img {
    transform: none;
  }
}

/* WP theme extras */
.footer-brand .footer-logo-link,
.footer-brand .brand {
  display: inline-block;
  margin-bottom: 18px;
}
.footer-brand .footer-logo-link img,
.footer-brand .brand img {
  height: 52px;
  width: auto;
}
.offcanvas .brand img {
  height: 40px;
}
.alsaeed-entry .entry-content {
  font-size: 15px;
  line-height: 1.8;
  color: #4a4540;
}
.alsaeed-entry .entry-content img {
  height: auto;
}
body.page-template-about-us .site-content,
body.page-template-contact-us .site-content,
body.home .site-content,
body.single-product .site-content {
  padding: 0;
}

/* =========================================================
   Contact Us page
   ========================================================= */
.contact-hero {
  position: relative;
  min-height: min(72vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
}

.contact-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 1.1s ease;
}

.contact-hero:hover .contact-hero__media img {
  transform: scale(1.04);
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(26, 24, 20, 0.55) 0%, rgba(26, 24, 20, 0.42) 45%, rgba(26, 24, 20, 0.62) 100%);
  pointer-events: none;
}

.contact-hero__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 720px);
  padding: 72px 0;
  animation: contactFadeUp 0.9s ease both;
}

.contact-hero__brand {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin: 0 0 14px;
}

.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 18px;
  color: #fff;
}

.contact-hero__lead {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 480px;
  margin: 0 auto 28px;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-outline-light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.btn-outline-dark:hover {
  background: var(--ink);
  color: #fff;
}

@keyframes contactFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Details strip */
.contact-details {
  background:
    linear-gradient(180deg, #faf8f4 0%, #fff 100%);
  border-bottom: 1px solid var(--line);
  padding-top: 56px;
  padding-bottom: 56px;
}

.contact-details__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 28px;
  border-right: 1px solid var(--line);
  color: inherit;
  transition: transform 0.35s ease;
}

.contact-detail:last-child {
  border-right: 0;
}

.contact-detail:hover {
  color: inherit;
  transform: translateY(-4px);
}

.contact-detail i {
  font-size: 22px;
  color: var(--gold);
}

.contact-detail__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.contact-detail__value {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
}

.contact-detail:hover .contact-detail__value {
  color: var(--gold-dark);
}

/* Form + map */
.contact-main {
  background: #fff;
}

.contact-form-wrap__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 500;
  margin: 0 0 10px;
}

.contact-form-wrap__sub {
  color: var(--muted);
  font-size: 15px;
  margin: 0 0 32px;
  max-width: 420px;
}

.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #faf9f7;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(219, 175, 54, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__submit {
  border: 0;
  cursor: pointer;
  margin-top: 8px;
  min-width: 180px;
}

.contact-map {
  height: 100%;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--cream);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
  filter: grayscale(0.15) contrast(1.02);
}

/* Visit strip */
.contact-visit {
  position: relative;
  padding: 72px 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(219, 175, 54, 0.12), transparent 50%),
    linear-gradient(180deg, #1a1814 0%, #2a2620 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.contact-visit__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
  animation: contactFadeUp 0.8s ease both;
}

.contact-visit h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 500;
  margin: 0 0 14px;
  color: #fff;
}

.contact-visit p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  margin: 0 0 28px;
}

.contact-visit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.contact-visit .btn-outline-dark {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.contact-visit .btn-outline-dark:hover {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

/* Contact responsive */
@media (max-width: 1199.98px) {
  .contact-details__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }

  .contact-detail:nth-child(2) {
    border-right: 0;
  }

  .contact-detail:nth-child(1),
  .contact-detail:nth-child(2) {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 991.98px) {
  .contact-hero {
    min-height: 420px;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 360px;
  }
}

@media (max-width: 575.98px) {
  .contact-details__grid {
    grid-template-columns: 1fr;
  }

  .contact-detail {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
  }

  .contact-detail:nth-child(1),
  .contact-detail:nth-child(2) {
    border-bottom: 1px solid var(--line);
    padding-bottom: 20px;
  }

  .contact-detail:last-child {
    border-bottom: 0;
  }

  .contact-hero__inner {
    width: min(100% - 32px, 720px);
    padding: 56px 0;
  }

  .contact-visit__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-visit__actions .btn-gold,
  .contact-visit__actions .btn-outline-dark {
    width: 100%;
  }
}

@media (hover: none) {
  .contact-hero:hover .contact-hero__media img {
    transform: none;
  }

  .contact-detail:hover {
    transform: none;
  }
}




/* Contact / About page shell */
body.page-template-contact-us .site-content,
body.page-template-about-us .site-content {
  padding: 0;
}

.contact-form-notice {
  padding: 12px 14px;
  margin: 0 0 20px;
  font-size: 14px;
}

.contact-form-notice--ok {
  background: #e8f5e9;
  color: #1b5e20;
  border: 1px solid #a5d6a7;
}

.contact-form-notice--err {
  background: #ffebee;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
}

/* Inner pages responsive polish */
@media (max-width: 991.98px) {
  .about-story .row {
    row-gap: 28px;
  }

  .about-finish .finish-card {
    text-align: center;
  }

  .contact-main.section-pad,
  .contact-details.section-pad {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .alsaeed-entry {
    padding: 40px 0;
  }
}

@media (max-width: 575.98px) {
  .about-hero__content h1 {
    font-size: 28px !important;
  }

  .section-pad {
    padding: 48px 0;
  }

  .contact-form-wrap__title {
    font-size: 1.75rem;
  }

  .alsaeed-shop-banner__title {
    font-size: 1.75rem;
  }
}
