:root {
  /* ---- Brand palette (literal) ---- */
  --c-black:          #000000;
  --c-blush-pink:     #F6C9D2;
  --c-nude-rose:      #DDAFB1;
  --c-baby-pink:      #F9DCE3;
  --c-powder-pink:    #EBC4CC;
  --c-mint-green:     #BFE7D2;
  --c-soft-mint:      #D7F2E5;
  --c-sage:           #A9CDBB;
  --c-pale-pistachio: #DCE8C9;
  --c-night-gray:     #444444;

  /* ---- Semantic roles ---- */
  --bg:            #FFFFFF;
  --bg-soft:       #F9DCE3;   /* baby pink sections */
  --surface:       #F6C9D2;   /* cards / blush surfaces */
  --accent:        #DDAFB1;   /* buttons / CTAs (nude rose) */
  --accent-hover:  #EBC4CC;
  --text:          #000000;
  --text-muted:    #444444;
  --border:        #EBC4CC;
  --success-soft:  #BFE7D2;

  /* ---- Type ---- */
  --font-display: "Pangaia", "Fraunces", Georgia, serif;
  --font-body:    "Gilroy", "Poppins", "Montserrat", system-ui, sans-serif;

  /* ---- Champagne / gold gradient for wordmark ---- */
  --grad-wordmark: linear-gradient(135deg, #c9a96a 0%, #e6c98a 35%, #f6e4b8 55%, #c79e58 85%);

  /* ---- Legacy aliases (mapped to brand roles) ---- */
  --primary: var(--accent);
  --dark:    var(--text);
  --muted:   var(--text-muted);
  --light:   var(--bg-soft);
}

@property --rotate {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text);
  letter-spacing: -0.01em;
  font-weight: 600;
}

.eyebrow {
  font-family: var(--font-body);
}

.brand-wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--grad-wordmark);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

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

button,
input,
textarea,
a {
  font-family: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.top-bar {
  background: var(--bg-soft);
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.top-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  padding: 0.8rem 0;
  font-size: 0.95rem;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.brand img {
  width: 100px;
}

.menu-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger — minimal 3-bar icon, no fixed frame */
.menu-toggle {
  display: none;
  border: none;
  background: none;
  padding: 6px 2px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle .bar {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile nav slide-in overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 1.5rem 2rem;
  transform: translateX(105%);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  visibility: hidden;
}

.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav-close {
  position: absolute;
  top: 0.9rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2.4rem;
  cursor: pointer;
  font-family: var(--font-display);
  line-height: 1;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1.1rem 1.5rem;
  border-radius: 16px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  background: var(--c-baby-pink);
  transform: translateX(40px);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease, background 0.2s ease, box-shadow 0.2s ease;
  transition-delay: 0ms;
}

.mobile-nav-item:nth-child(odd) {
  background: var(--c-blush-pink);
}

.mobile-nav-item:hover,
.mobile-nav-item:focus-visible {
  background: var(--accent);
  outline: none;
  box-shadow: 0 8px 18px rgba(221, 175, 177, 0.3);
}

.mobile-nav.open .mobile-nav-item {
  transform: translateX(0);
  opacity: 1;
  transition-delay: calc(var(--i, 0) * 60ms + 120ms);
}

body.menu-open {
  overflow: hidden;
}

.hero {
  padding: 1rem 0;
  min-height: 60vh;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 1.5rem;
}

.hero-copy {
  max-width: 540px;
}

.eyebrow {
  color: var(--text-muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
}

.hero-copy h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 0.85rem;
}

.hero-copy p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.8rem;
  background: var(--accent);
  color: var(--text);
  border: none;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 14px rgba(221, 175, 177, 0.25);
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent-hover);
  box-shadow: 0 10px 22px rgba(221, 175, 177, 0.35);
}

.hero-image {
  border-radius: 28px;
  overflow: hidden;
}

.shop-section {
  padding: 2.25rem 0;
  min-height: calc(100vh - 160px);
}

.shop-section h2,
.about-section h2,
.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.products-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) minmax(300px, 1.6fr) minmax(220px, 1.1fr);
  gap: 1rem;
}

.featured-card {
  position: relative;
  z-index: 1;
  overflow: visible;
  transform: scale(1.04);
  transition: transform 0.3s ease;
}

.featured-card:hover {
  transform: scale(1.08);
}

.featured-card::before,
.featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  z-index: -1;
}

.featured-card::before {
  margin: -10px;
  background: conic-gradient(from 0deg, var(--c-nude-rose), var(--c-blush-pink), var(--c-baby-pink), var(--c-sage), var(--c-blush-pink), var(--c-nude-rose));
  animation: spin 6s linear infinite;
  transform-origin: center;
}

.featured-card::after {
  margin: -7px;
  background: #ffffff;
}

.featured-card > img {
  height: 260px;
  object-fit: contain;
  background: #fff;
  padding: 0.4rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  max-height: 92vh;
  justify-content: space-between;
}

.product-carousel {
  position: relative;
  width: 100%;
  height: clamp(200px, 30vh, 280px);
  overflow: hidden;
  background: #f8f4f4;
  border-bottom: 1px solid var(--border);
}

.featured-card .product-carousel {
  height: clamp(220px, 34vh, 320px);
  background: #fff;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.carousel-slide img,
.carousel-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

.featured-card .carousel-slide img,
.featured-card .carousel-slide video {
  object-fit: contain;
  padding: 0.5rem;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  font-family: var(--font-display);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: var(--text);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.carousel-arrow:hover {
  background: var(--accent);
  color: var(--text);
}

.carousel-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-prev { left: 8px; padding-right: 3px; }
.carousel-next { right: 8px; padding-left: 3px; }

.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
  pointer-events: auto;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.carousel-dot.active {
  background: #fff;
  width: 18px;
  border-radius: 4px;
}

.product-card h3 {
  padding: 0 1.5rem;
}

.product-card p {
  padding: 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.74rem;
  line-height: 1.4;
}

.product-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  padding: 0 1.2rem 0.8rem;
}

.product-gallery img,
.product-gallery video {
  border-radius: 14px;
  height: 80px;
  width: 100%;
  object-fit: cover;
}

.featured-card .product-gallery img,
.featured-card .product-gallery video {
  height: 110px;
}

.product-gallery video {
  display: block;
}

.product-card .product-price {
  padding: 0 1.5rem;
  margin: 0.25rem 0 0.75rem;
  color: var(--primary);
  font-weight: 700;
}

.product-card .button {
  margin: auto 1rem 1rem 1rem;
  margin-top: auto;
}

.about-section,
.contact-section,
.order-page,
.admin-page,
.success-page {
  padding: 2.25rem 0;
}

.order-page {
  display: grid;
  gap: 1.5rem;
  min-height: calc(100vh - 180px);
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.card-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}

.card {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  grid-gap: 2rem;
}

.product-imgs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.img-display {
  overflow: hidden;
  border-radius: 20px;
  background: #f8f8f8;
  width: 100%;
  max-width: 300px;
}

.img-showcase {
  display: flex;
  width: 100%;
  transition: all 0.5s ease;
}

.img-showcase img,
.img-showcase video {
  min-width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 20px;
}

.img-showcase video {
  display: block;
}

.img-select {
  display: flex;
  gap: 0.8rem;
}

.img-item {
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.img-item:hover,
.img-item.active {
  border-color: var(--primary);
  opacity: 1;
}

.img-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  display: block;
}

.product-content {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-title {
  font-size: 2rem;
  text-transform: capitalize;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.product-price {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.new-price span {
  color: var(--primary);
  font-weight: 700;
}

.product-detail {
  margin: 0;
}

.product-detail h3 {
  text-transform: capitalize;
  color: var(--dark);
  margin: 0 0 0.3rem 0;
  font-size: 1rem;
}

.product-detail p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.order-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.order-form .form-row.full-width {
  grid-column: 1 / -1;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-row input,
.form-row textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem;
  font-size: 0.95rem;
}

.form-row textarea {
  min-height: 80px;
  resize: vertical;
}

.full-width {
  grid-column: 1 / -1;
}

.btn {
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: capitalize;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  margin-top: 0.5rem;
}

.btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.order-form .btn-primary {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 1rem;
  text-align: center;
}

.order-form .form-row {
  margin-bottom: 0;
}

.order-form textarea {
  min-height: 120px;
}

.about-section,
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  min-height: auto;
  padding: 1.5rem 0;
}

.about-section {
  min-height: 70vh;
  max-height: none;
}

.about-image,
.contact-card {
  max-height: 560px;
}

.about-image,
.contact-card {
  border-radius: 28px;
  overflow: hidden;
}

.about-image img,
.about-image video {
  width: 100%;
  height: 100%;
  min-height: auto;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
}

.contact_us {
  background: transparent;
  padding: 60px 0 40px;
  color: #000;
}

.contact_inner {
  background-color: #fff;
  position: relative;
  box-shadow: 20px 22px 44px rgba(0, 0, 0, 0.15);
  border-radius: 25px;
  padding: 24px;
}

.contact_field {
  padding: 20px 20px 30px;
}

.contact_field h3 {
  color: #000;
  font-size: 32px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact_field p {
  color: #000;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.contact_field .form-control {
  width: 100%;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 12px 10px;
  margin-bottom: 16px;
}

.contact_field .form-control:focus {
  box-shadow: none;
  outline: none;
  border-bottom: 2px solid var(--primary);
}

.contact_field .form-control::placeholder {
  font-size: 13px;
  letter-spacing: 1px;
}

button.contact_form_submit {
  background: var(--primary);
  border: none;
  color: #fff;
  padding: 12px 15px;
  width: 100%;
  margin-top: 18px;
  border-radius: 35px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 2px;
}

.right_conatct_social_icon {
  background: linear-gradient(to top right, var(--c-blush-pink) -5%, var(--c-nude-rose) 100%);
  border-radius: 25px;
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.socil_item_inner {
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
  align-items: center;
  justify-content: center;
}

.socil_item_inner li {
  list-style: none;
}

.socil_item_inner li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  color: var(--text);
  font-size: 1.6rem;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.socil_item_inner li a:hover {
  background: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.contact_info_sec {
  position: absolute;
  background-color: var(--text);
  right: 1px;
  top: 15%;
  height: 260px;
  width: 280px;
  padding: 24px;
  border-radius: 25px 0 0 25px;
  color: #fff;
}

.contact_info_sec h4 {
  letter-spacing: 1px;
  padding-bottom: 12px;
  margin: 0;
}

.info_single {
  margin: 22px 0px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.info_single i {
  margin-right: 0;
  color: #fff;
  font-size: 16px;
}

.info_single span {
  font-size: 13px;
  letter-spacing: 1px;
}

.trust-strip {
  padding: 3rem 0 1.5rem;
  background: var(--bg);
}

.trust-strip-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.9vw, 1.55rem);
  color: var(--text);
  margin: 0 auto 1.75rem;
  max-width: 760px;
  line-height: 1.3;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-card {
  background: var(--bg-soft);
  border-radius: 14px;
  padding: 2rem 1rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  min-height: 180px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.trust-card i {
  font-size: 2.1rem;
  color: var(--text);
}

.trust-card p {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
  line-height: 1.35;
  max-width: 22ch;
}

@media (max-width: 900px) {
  .trust-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }
  .trust-card {
    min-height: 140px;
    padding: 1.5rem 1rem;
  }
}

.contact-feedback {
  margin-top: 0.8rem;
  min-height: 1.2em;
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.contact-feedback.is-error {
  color: #b54a4a;
}

.contact-feedback.is-success {
  color: #2f7a55;
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 0.7rem;
  margin-top: 1rem;
  padding: 0;
  list-style: none;
}

/* Higher specificity (.footer-grid .footer-social a) to beat .footer-grid a */
.footer-grid .footer-social a,
.footer .footer-social a {
  width: 42px;
  height: 42px;
  background: #fff;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 1.5px solid #fff;
  z-index: 1;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.footer-grid .footer-social a i,
.footer .footer-social a i {
  position: relative;
  color: #262626;
  transition: color 0.5s ease, transform 0.5s ease;
  z-index: 3;
  display: inline-block;
  line-height: 1;
}

.footer-grid .footer-social a:hover,
.footer .footer-social a:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

.footer-grid .footer-social a:hover i,
.footer .footer-social a:hover i {
  color: #fff;
  transform: rotateY(360deg);
}

.footer-grid .footer-social a::before,
.footer .footer-social a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  transition: top 0.5s ease;
  z-index: 2;
}

.footer-grid .footer-social a:hover::before,
.footer .footer-social a:hover::before {
  top: 0;
}

/* Brand colors per icon */
.footer-social a[aria-label="Facebook"]::before {
  background: #1877F2;
}

.footer-social a[aria-label="Instagram"]::before {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.map_sec {
  padding: 20px 0 30px;
}

.map_inner h4,
.map_inner p {
  color: #000;
  text-align: center;
}

.map_inner p {
  font-size: 13px;
}

.map_bind {
  margin-top: 30px;
  border-radius: 30px;
  overflow: hidden;
}

.map_bind iframe {
  min-height: 240px;
  height: 100%;
  width: 100%;
}

.map_inner p {
  font-size: 13px;
}

.map_bind {
  margin-top: 50px;
  border-radius: 30px;
  overflow: hidden;
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.col-md-10 {
  flex: 0 0 83.333%;
  max-width: 83.333%;
}

.col-md-2 {
  flex: 0 0 16.666%;
  max-width: 16.666%;
}

.offset-md-1 {
  margin-left: 8.333%;
}

.d-flex {
  display: flex;
}

.align-items-end {
  align-items: flex-end;
}

.align-items-center {
  align-items: center;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1rem;
}

.contact-card,
.admin-card,
.success-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.contact-card ul {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  color: var(--muted);
}

.contact-card li {
  margin-bottom: 0.75rem;
}

.contact-card a {
  color: var(--dark);
  text-decoration: none;
}

.order-page .order-header,
.admin-page .admin-header {
  margin-bottom: 2rem;
}

.order-form,
.admin-login {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 0.5rem;
}

.form-row label {
  font-weight: 600;
}

.form-row input,
.form-row textarea {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem;
  font-size: 1rem;
}

.full-width {
  grid-column: 1 / -1;
}

.order-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hidden {
  display: none;
}

.order-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.25rem;
  background: #fff;
}

.order-card h3 {
  margin-bottom: 0.75rem;
}

.order-card p {
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.order-error {
  color: #b54a4a;
  margin-top: 1rem;
}

.faq-section {
  --faq-animation-speed: 100;
  --faq-slide-ease: cubic-bezier(0.86, 0, 0.07, 1);
  --faq-slide-duration: calc(400ms * 100 / var(--faq-animation-speed));
  --faq-slide-delay: calc(450ms * 100 / var(--faq-animation-speed));
  --faq-circle-duration: calc(900ms * 100 / var(--faq-animation-speed));

  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  scroll-padding-top: 1rem;
}

.faq-section .faq-wrap {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-section .eyebrow {
  display: inline-block;
}

.faq-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.faq-section .faq-intro {
  color: var(--muted);
  margin: 0 auto 2rem;
  max-width: 620px;
}

.faq-section .accordion {
  --circle-x: 1.8rem;
  --circle-y: 0;
  --circle-r: 200%;
  --circle-bg: #fff;
  color: var(--dark);

  position: relative;
  scroll-margin-top: 140px;
  background-color: var(--circle-bg);
  width: 100%;
  margin: 0 auto 1rem;
  text-align: left;
  border-radius: 14px;

  display: grid;
  grid-template-rows: 0fr 0fr;
  transition-timing-function: var(--faq-slide-ease);
  transition-duration: 200ms, 200ms, var(--faq-slide-duration);
  transition-property: opacity, box-shadow, grid-template-rows;
  transition-delay: 0ms, 0ms, var(--faq-slide-delay);
  box-shadow: 0 0 0 1px var(--border);
  opacity: 0.95;
  overflow: hidden;
}

.faq-section .accordion:not(:target):hover {
  box-shadow: 0 0 0 1px var(--primary);
}

.faq-section .accordion:not(:target):active {
  opacity: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.faq-section .accordion .content {
  overflow: hidden;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--muted);
}

.faq-section .accordion:target {
  --d: 90deg;
  grid-template-rows: 0fr 1fr;
  box-shadow: 0 6px 20px rgba(221, 175, 177, 0.22);
  opacity: 1;
  transition: grid-template-rows var(--faq-slide-ease) var(--faq-slide-duration) var(--faq-slide-delay);
}

.faq-section .accordion .wrapper {
  padding: 0 1.25rem 1.05rem;
}

.faq-section .accordion .wrapper p {
  margin: 0;
}

.faq-section .accordion .title {
  margin: 0;
  font-size: 1rem;
}

.faq-section .accordion .title a {
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
}

.faq-section .accordion .title a::before {
  --chevron-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='white' d='M310.6 233.4c12.5 12.5 12.5 32.8 0 45.3l-192 192c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3L242.7 256 73.4 86.6c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0l192 192z'/%3E%3C/svg%3E");
  content: "";
  width: 0.65rem;
  aspect-ratio: 320 / 512;
  display: inline-block;
  margin-right: 0.75rem;
  transform: rotate(var(--d, 0deg));
  transition: transform var(--faq-slide-ease) var(--faq-slide-duration) var(--faq-slide-delay);
  mask-image: var(--chevron-icon);
  mask-size: 100% 100%;
  -webkit-mask-image: var(--chevron-icon);
  -webkit-mask-size: 100% 100%;
  background-color: currentColor;
}

.faq-section .accordion::before,
.faq-section .accordion::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--circle-bg);
  mix-blend-mode: difference;
  transform-style: preserve-3d;
  transition-timing-function: ease;
  transition-property: opacity, clip-path, visibility;
  pointer-events: none;
  clip-path: circle(var(--r) at var(--circle-x) var(--circle-y));
  border-radius: inherit;
  z-index: 4;
}

.faq-section .accordion::before {
  --r: 0%;
  transition-delay: var(--faq-circle-duration), var(--faq-circle-duration), 0ms;
  transition-duration: 0ms, var(--faq-circle-duration), 0ms;
  opacity: 0;
}

.faq-section .accordion:target::before {
  --r: var(--circle-r);
  transition-delay: 0ms, 0ms, 0ms;
  transition-duration: 0ms, var(--faq-circle-duration), 0ms;
  opacity: 1;
}

.faq-section .accordion::after {
  --r: var(--circle-r);
  transition-delay: 0ms, 0ms, var(--faq-circle-duration);
  transition-duration: 0ms, var(--faq-circle-duration), 0ms;
  visibility: hidden;
  opacity: 1;
}

.faq-section .accordion:target::after {
  --r: 0%;
  transition-delay: 0ms, 0ms, 0ms;
  transition-duration: 0ms, 0ms, 0ms;
  visibility: visible;
  opacity: 0;
}

.faq-section .accordion .title a:focus-visible {
  background-color: rgba(221, 175, 177, 0.18);
  outline: none;
}

.faq-section .accordion:target .title a:focus-visible {
  background-color: rgba(255, 255, 255, 0.08);
}

.admin-body {
  background: #fff;
}

.admin-login-page {
  display: grid;
  place-items: center;
  padding: 2.5rem 1rem;
  min-height: 60vh;
}

.admin-login-page .login-card {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 0 2rem 2.25rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
  text-align: left;
  overflow: hidden;
}

.admin-login-page .login-banner {
  margin: 0 -2rem 1.5rem;
  height: 180px;
  overflow: hidden;
  background: #fafafa;
}

.admin-login-page .login-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.admin-login-page .login-card h1 {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.admin-login-page .login-subtitle {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.admin-login-form {
  display: grid;
  gap: 1rem;
}

.admin-login-form .form-row label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
}

.admin-login-form .form-row input[type="email"],
.admin-login-form .form-row input[type="password"] {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  background: #fff;
  color: var(--dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.admin-login-form .form-row input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(221, 175, 177, 0.22);
}

.admin-login-form .checkbox-row {
  display: flex;
  align-items: center;
}

.admin-login-form .check-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
}

.admin-login-form .login-submit {
  width: 100%;
  margin-top: 0.25rem;
  border-radius: 999px;
}

.login-feedback {
  min-height: 1.2em;
  font-size: 0.9rem;
  text-align: center;
  color: var(--muted);
}

.login-feedback.is-error {
  color: #b54a4a;
}

.login-feedback.is-success {
  color: #2f7a55;
  font-weight: 600;
}

/* ============================================ */
/*  Admin Dashboard (admin-orders.html)         */
/* ============================================ */

.admin-dashboard-body {
  --dash-primary: var(--c-nude-rose);
  --dash-secondary: var(--c-blush-pink);
  --dash-accent: var(--c-sage);
  --dash-success: #2f7a55;
  --dash-warning: #b08a3a;
  --dash-danger: #b54a4a;

  --dash-primary-gradient: linear-gradient(135deg, var(--c-nude-rose), var(--c-blush-pink));
  --dash-secondary-gradient: linear-gradient(135deg, var(--c-blush-pink), var(--c-baby-pink));
  --dash-accent-gradient: linear-gradient(135deg, var(--c-sage), var(--c-mint-green));
  --dash-success-gradient: linear-gradient(135deg, var(--c-mint-green), var(--c-sage));
  --dash-warning-gradient: linear-gradient(135deg, #e8c977, #c9a96a);
  --dash-danger-gradient: linear-gradient(135deg, #d49a9a, #b54a4a);

  --dash-bg-main: #FAF6F7;
  --dash-bg-card: #ffffff;
  --dash-text-primary: var(--text);
  --dash-text-secondary: var(--text-muted);
  --dash-border: var(--border);
  --dash-sidebar-bg: #ffffff;
  --dash-sidebar-active: rgba(221, 175, 177, 0.15);

  --dash-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --dash-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.05);
  --dash-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);

  --dash-transition: all 0.3s ease;

  background-color: var(--dash-bg-main);
  color: var(--dash-text-primary);
  font-family: 'Inter', 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  transition: var(--dash-transition);
}

.admin-dashboard-body.dark-mode {
  --dash-bg-main: #1a1517;
  --dash-bg-card: #25201f;
  --dash-text-primary: #f3eded;
  --dash-text-secondary: #b8a7a7;
  --dash-border: #3a3232;
  --dash-sidebar-bg: #25201f;
  --dash-sidebar-active: rgba(221, 175, 177, 0.22);
}

.admin-dashboard-body a {
  text-decoration: none;
  color: inherit;
}

.admin-dashboard-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.admin-dashboard-body .dashboard-container {
  display: flex;
  min-height: 100vh;
}

/* Sidebar */
.admin-dashboard-body .sidebar {
  width: 250px;
  background-color: var(--dash-sidebar-bg);
  border-right: 1px solid var(--dash-border);
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  transition: var(--dash-transition);
  z-index: 100;
  overflow-y: auto;
  box-shadow: var(--dash-shadow-sm);
  display: flex;
  flex-direction: column;
}

.admin-dashboard-body .sidebar-header {
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--dash-border);
}

.admin-dashboard-body .logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dash-text-primary);
}

.admin-dashboard-body .logo-image {
  max-width: 170px;
  max-height: 44px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
}

.admin-dashboard-body .close-sidebar {
  display: none;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--dash-text-secondary);
}

.admin-dashboard-body .sidebar-content {
  padding: 1rem 0.75rem;
  flex: 1 1 auto;
  overflow-y: auto;
}

.admin-dashboard-body .sidebar-section {
  margin-bottom: 1.25rem;
}

.admin-dashboard-body .sidebar-section-title {
  color: var(--dash-text-secondary);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  padding: 0 0.6rem;
  margin-bottom: 0.4rem;
}

.admin-dashboard-body .sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.admin-dashboard-body .sidebar-nav-item {
  display: flex;
  align-items: center;
  padding: 0.6rem 0.85rem;
  border-radius: 0.5rem;
  color: var(--dash-text-primary);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--dash-transition);
  cursor: pointer;
}

.admin-dashboard-body .sidebar-nav-item:hover {
  background-color: var(--dash-sidebar-active);
  color: var(--dash-primary);
}

.admin-dashboard-body .sidebar-nav-item.active {
  background-color: var(--dash-sidebar-active);
  color: var(--dash-primary);
  font-weight: 600;
}

.admin-dashboard-body .sidebar-nav-item i {
  margin-right: 0.7rem;
  font-size: 1rem;
  width: 1.25rem;
  text-align: center;
}

.admin-dashboard-body .sidebar-nav-item .badge {
  margin-left: auto;
  background: var(--dash-primary-gradient);
  color: #fff;
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 1rem;
  font-weight: 600;
}

.admin-dashboard-body .sidebar-footer {
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--dash-border);
}

.admin-dashboard-body .user-profile {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.admin-dashboard-body .user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dash-secondary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  flex: 0 0 auto;
}

.admin-dashboard-body .user-info {
  flex: 1;
  min-width: 0;
}

.admin-dashboard-body .user-name {
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--dash-text-primary);
}

.admin-dashboard-body .user-role {
  color: var(--dash-text-secondary);
  font-size: 0.72rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-dashboard-body .user-menu {
  color: var(--dash-text-secondary);
  cursor: pointer;
  padding: 0.4rem;
  border-radius: 6px;
  transition: var(--dash-transition);
}

.admin-dashboard-body .user-menu:hover {
  color: var(--dash-primary);
  background: var(--dash-sidebar-active);
}

/* Main content */
.admin-dashboard-body .main-content {
  flex: 1;
  margin-left: 250px;
  transition: var(--dash-transition);
  padding: 1.25rem 1.5rem 1.5rem;
  min-width: 0;
}

.admin-dashboard-body .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.admin-dashboard-body .left-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.admin-dashboard-body .menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--dash-text-primary);
  font-size: 1.15rem;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  transition: var(--dash-transition);
}

.admin-dashboard-body .menu-toggle:hover {
  background-color: var(--dash-sidebar-active);
  color: var(--dash-primary);
}

.admin-dashboard-body .page-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
  color: var(--dash-text-primary);
}

.admin-dashboard-body .header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.admin-dashboard-body .search-bar {
  position: relative;
}

.admin-dashboard-body .search-input {
  padding: 0.5rem 1rem 0.5rem 2.3rem;
  border-radius: 0.5rem;
  border: 1px solid var(--dash-border);
  background-color: var(--dash-bg-card);
  color: var(--dash-text-primary);
  font-size: 0.85rem;
  width: 230px;
  transition: var(--dash-transition);
  font-family: inherit;
}

.admin-dashboard-body .search-input:focus {
  outline: none;
  border-color: var(--dash-primary);
  box-shadow: 0 0 0 3px rgba(221, 175, 177, 0.25);
}

.admin-dashboard-body .search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dash-text-secondary);
  font-size: 0.85rem;
}

.admin-dashboard-body .header-icon {
  width: 38px;
  height: 38px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dash-text-primary);
  background-color: var(--dash-bg-card);
  border: 1px solid var(--dash-border);
  cursor: pointer;
  transition: var(--dash-transition);
  position: relative;
}

.admin-dashboard-body .header-icon:hover {
  color: var(--dash-primary);
  border-color: var(--dash-primary);
}

.admin-dashboard-body .notification-indicator {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--dash-danger-gradient);
  animation: notifPulse 1.6s ease-in-out infinite;
}

@keyframes notifPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(181, 74, 74, 0.45); }
  50%      { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(181, 74, 74, 0); }
}

.admin-dashboard-body .notif-trigger {
  position: relative;
}

.admin-dashboard-body .notif-panel.hidden,
.admin-dashboard-body .connected-banner.hidden,
.admin-dashboard-body .notif-empty.hidden,
.admin-dashboard-body .notification-indicator.hidden,
.admin-dashboard-body .orders-empty.hidden {
  display: none;
}

.admin-dashboard-body .notif-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 340px;
  max-height: 420px;
  background: var(--dash-bg-card);
  border: 1px solid var(--dash-border);
  border-radius: 0.7rem;
  box-shadow: var(--dash-shadow-lg);
  z-index: 150;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: default;
  animation: dashFadeIn 0.18s ease;
}

.admin-dashboard-body .notif-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--dash-border);
  flex: 0 0 auto;
}

.admin-dashboard-body .notif-head strong {
  font-size: 0.9rem;
  color: var(--dash-text-primary);
}

.admin-dashboard-body .notif-head button {
  background: none;
  border: none;
  color: var(--dash-primary);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  transition: var(--dash-transition);
}

.admin-dashboard-body .notif-head button:hover {
  background: var(--dash-sidebar-active);
}

.admin-dashboard-body .notif-list {
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
}

.admin-dashboard-body .notif-item {
  display: flex;
  gap: 0.65rem;
  padding: 0.7rem 1rem;
  cursor: pointer;
  border-bottom: 1px solid var(--dash-border);
  transition: background 0.15s;
  text-align: left;
}

.admin-dashboard-body .notif-item:last-child {
  border-bottom: none;
}

.admin-dashboard-body .notif-item:hover {
  background: var(--dash-sidebar-active);
}

.admin-dashboard-body .notif-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--dash-primary-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.75rem;
  flex: 0 0 auto;
}

.admin-dashboard-body .notif-body {
  flex: 1;
  min-width: 0;
}

.admin-dashboard-body .notif-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dash-text-primary);
  margin-bottom: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-dashboard-body .notif-meta {
  font-size: 0.75rem;
  color: var(--dash-text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.admin-dashboard-body .notif-empty {
  padding: 1.5rem 1rem;
  text-align: center;
  color: var(--dash-text-secondary);
  font-size: 0.85rem;
}

@media (max-width: 480px) {
  .admin-dashboard-body .notif-panel {
    width: calc(100vw - 1.5rem);
    right: -0.5rem;
  }
}

.admin-dashboard-body .theme-toggle {
  position: relative;
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background-color: var(--dash-bg-card);
  border: 1px solid var(--dash-border);
  cursor: pointer;
  transition: var(--dash-transition);
}

.admin-dashboard-body .theme-toggle::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--dash-primary);
  transition: var(--dash-transition);
}

.admin-dashboard-body.dark-mode .theme-toggle::before {
  transform: translateX(18px);
}

/* Connected banner stays */
.admin-dashboard-body .connected-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background: rgba(169, 205, 187, 0.25);
  color: var(--dash-success);
  border: 1px solid rgba(47, 122, 85, 0.35);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: opacity 0.4s ease;
}

.admin-dashboard-body .connected-banner.fade-out {
  opacity: 0;
}

.admin-dashboard-body .connected-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dash-success);
  box-shadow: 0 0 0 4px rgba(0, 181, 89, 0.15);
  display: inline-block;
}

/* Stat cards */
.admin-dashboard-body .dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.admin-dashboard-body .stat-card {
  background-color: var(--dash-bg-card);
  border-radius: 0.9rem;
  padding: 1.1rem 1.2rem;
  box-shadow: var(--dash-shadow-md);
  transition: var(--dash-transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  animation: dashFadeIn 0.5s ease forwards;
}

.admin-dashboard-body .stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--dash-shadow-lg);
}

.admin-dashboard-body .stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
}

.admin-dashboard-body .stat-card.primary::before { background: var(--dash-primary-gradient); }
.admin-dashboard-body .stat-card.secondary::before { background: var(--dash-secondary-gradient); }
.admin-dashboard-body .stat-card.success::before { background: var(--dash-success-gradient); }
.admin-dashboard-body .stat-card.warning::before { background: var(--dash-warning-gradient); }

.admin-dashboard-body .stat-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.7rem;
}

.admin-dashboard-body .stat-title {
  color: var(--dash-text-secondary);
  font-size: 0.82rem;
  font-weight: 500;
}

.admin-dashboard-body .stat-icon {
  width: 36px;
  height: 36px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.05rem;
  flex: 0 0 auto;
}

.admin-dashboard-body .stat-icon.primary { background: var(--dash-primary-gradient); }
.admin-dashboard-body .stat-icon.secondary { background: var(--dash-secondary-gradient); }
.admin-dashboard-body .stat-icon.success { background: var(--dash-success-gradient); }
.admin-dashboard-body .stat-icon.warning { background: var(--dash-warning-gradient); }

.admin-dashboard-body .stat-value {
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--dash-text-primary);
}

.admin-dashboard-body .stat-change {
  display: flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--dash-text-secondary);
}

.admin-dashboard-body .stat-change.positive { color: var(--dash-success); }
.admin-dashboard-body .stat-change.negative { color: var(--dash-danger); }

.admin-dashboard-body .stat-change i {
  margin-right: 0.25rem;
}

.admin-dashboard-body .stat-card:nth-child(1) { animation-delay: 0.05s; }
.admin-dashboard-body .stat-card:nth-child(2) { animation-delay: 0.10s; }
.admin-dashboard-body .stat-card:nth-child(3) { animation-delay: 0.15s; }
.admin-dashboard-body .stat-card:nth-child(4) { animation-delay: 0.20s; }

/* Chart */
.admin-dashboard-body .chart-container {
  background-color: var(--dash-bg-card);
  border-radius: 0.9rem;
  padding: 1.1rem 1.2rem 1.2rem;
  box-shadow: var(--dash-shadow-md);
  margin-bottom: 1.25rem;
}

.admin-dashboard-body .chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.admin-dashboard-body .chart-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dash-text-primary);
}

.admin-dashboard-body .chart-actions {
  display: flex;
  gap: 0.4rem;
}

.admin-dashboard-body .chart-action {
  padding: 0.35rem 0.7rem;
  border-radius: 0.45rem;
  background-color: var(--dash-bg-main);
  color: var(--dash-text-secondary);
  border: 1px solid var(--dash-border);
  cursor: pointer;
  transition: var(--dash-transition);
  font-size: 0.78rem;
  font-family: inherit;
}

.admin-dashboard-body .chart-action:hover {
  color: var(--dash-primary);
  border-color: var(--dash-primary);
}

.admin-dashboard-body .chart-action.active {
  background-color: var(--dash-primary);
  color: #fff;
  border-color: var(--dash-primary);
}

.admin-dashboard-body .chart-wrapper {
  position: relative;
  height: 220px;
}

/* Table */
.admin-dashboard-body .table-container {
  background-color: var(--dash-bg-card);
  border-radius: 0.9rem;
  padding: 1.1rem 1.2rem 1rem;
  box-shadow: var(--dash-shadow-md);
}

.admin-dashboard-body .table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.admin-dashboard-body .table-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dash-text-primary);
}

.admin-dashboard-body .order-error {
  color: var(--dash-danger);
  font-size: 0.85rem;
}

.admin-dashboard-body .table-scroll {
  max-height: 320px;
  overflow-y: auto;
}

.admin-dashboard-body .table {
  width: 100%;
  border-collapse: collapse;
}

.admin-dashboard-body .table th {
  text-align: left;
  padding: 0.65rem 0.85rem;
  color: var(--dash-text-secondary);
  font-weight: 500;
  font-size: 0.78rem;
  border-bottom: 1px solid var(--dash-border);
  background: var(--dash-bg-card);
  position: sticky;
  top: 0;
  z-index: 1;
}

.admin-dashboard-body .table td {
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--dash-border);
  font-size: 0.85rem;
  color: var(--dash-text-primary);
}

.admin-dashboard-body .table tr:last-child td {
  border-bottom: none;
}

.admin-dashboard-body .table-user {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.admin-dashboard-body .table-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--dash-accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.78rem;
  flex: 0 0 auto;
}

.admin-dashboard-body .table-user-name {
  font-weight: 500;
  color: var(--dash-text-primary);
}

.admin-dashboard-body .table-user-email {
  color: var(--dash-text-secondary);
  font-size: 0.72rem;
}

.admin-dashboard-body .status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 1rem;
  font-size: 0.72rem;
  font-weight: 500;
}

.admin-dashboard-body .status-badge.completed {
  background-color: rgba(169, 205, 187, 0.3);
  color: var(--dash-success);
}

.admin-dashboard-body .status-badge i {
  margin-right: 0.3rem;
  font-size: 0.55rem;
}

.admin-dashboard-body .table-action-cell {
  text-align: right;
}

.admin-dashboard-body .orders-empty {
  padding: 1.5rem 1rem;
  text-align: center;
  color: var(--dash-text-secondary);
  font-size: 0.9rem;
}

/* Overlay */
.admin-dashboard-body .overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: var(--dash-transition);
}

.admin-dashboard-body .overlay.active {
  opacity: 1;
  visibility: visible;
}

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

/* Dark mode chart legend visibility */
.admin-dashboard-body.dark-mode .table th,
.admin-dashboard-body.dark-mode .table td {
  border-color: var(--dash-border);
}

/* Responsive */
@media (max-width: 1200px) {
  .admin-dashboard-body .dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .admin-dashboard-body .sidebar {
    transform: translateX(-100%);
  }

  .admin-dashboard-body .sidebar.sidebar-open {
    transform: translateX(0);
  }

  .admin-dashboard-body .main-content {
    margin-left: 0;
  }

  .admin-dashboard-body .menu-toggle {
    display: flex;
  }

  .admin-dashboard-body .close-sidebar {
    display: block;
  }
}

@media (max-width: 768px) {
  .admin-dashboard-body .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .admin-dashboard-body .search-bar {
    order: 3;
    width: 100%;
  }

  .admin-dashboard-body .search-input {
    width: 100%;
  }

  .admin-dashboard-body .header-actions {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .admin-dashboard-body .main-content {
    padding: 1rem;
  }

  .admin-dashboard-body .header-actions {
    gap: 0.5rem;
  }
}

/* Modal */
.admin-dashboard-body .ss-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.admin-dashboard-body .ss-modal.open {
  display: flex;
}

.admin-dashboard-body .ss-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: dashFadeBackdrop 0.2s ease;
}

@keyframes dashFadeBackdrop {
  from { opacity: 0; }
  to { opacity: 1; }
}

.admin-dashboard-body .ss-modal-window {
  position: relative;
  background: var(--dash-bg-card);
  border-radius: 1rem;
  box-shadow: var(--dash-shadow-lg);
  max-width: 920px;
  width: 100%;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  animation: dashModalIn 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

@keyframes dashModalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.admin-dashboard-body .ss-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--dash-border);
  flex: 0 0 auto;
}

.admin-dashboard-body .ss-modal-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: var(--dash-text-primary);
}

.admin-dashboard-body .ss-modal-close {
  background: none;
  border: none;
  color: var(--dash-text-secondary);
  font-size: 1.05rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--dash-transition);
}

.admin-dashboard-body .ss-modal-close:hover {
  background: var(--dash-sidebar-active);
  color: var(--dash-primary);
}

.admin-dashboard-body .ss-modal-body {
  padding: 1.1rem 1.25rem 1.25rem;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
}

/* Modal content helpers */
.admin-dashboard-body .modal-summary {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.admin-dashboard-body .modal-stat {
  background: var(--dash-bg-main);
  border: 1px solid var(--dash-border);
  border-radius: 0.7rem;
  padding: 0.7rem 0.9rem;
  display: flex;
  flex-direction: column;
}

.admin-dashboard-body .modal-stat .label {
  color: var(--dash-text-secondary);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.admin-dashboard-body .modal-stat .value {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 0.25rem;
  color: var(--dash-text-primary);
}

.admin-dashboard-body .modal-chart-actions {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}

.admin-dashboard-body .modal-chart-wrapper {
  height: 320px;
  position: relative;
}

.admin-dashboard-body .modal-table-wrap {
  overflow-x: auto;
}

.admin-dashboard-body .modal-table-wrap .table th {
  position: sticky;
  top: 0;
  background: var(--dash-bg-card);
}

@media (max-width: 576px) {
  .admin-dashboard-body .ss-modal {
    padding: 0.75rem;
  }
  .admin-dashboard-body .ss-modal-window {
    max-height: 92vh;
  }
  .admin-dashboard-body .modal-chart-wrapper {
    height: 240px;
  }
}

.footer {
  width: 100%;
  background: var(--bg-soft);
  color: var(--text);
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-grid .content_1 p {
  max-width: 620px;
}

.footer-grid h4 {
  color: var(--text);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
  font-family: var(--font-body);
}

.footer-grid p {
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-grid a {
  display: block;
  text-decoration: none;
  color: var(--text-muted);
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: var(--accent);
}

.footer-grid .content_1 img {
  width: 170px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-cards span {
  background: rgba(0, 0, 0, 0.05);
  color: var(--text);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
}

.f-mail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.6rem;
  margin-top: 1rem;
}

.f-mail input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  width: 100%;
  padding: 0.6rem 0;
  font-family: var(--font-body);
}

.f-mail input::placeholder {
  color: var(--text-muted);
}

.f-mail .mail-icon {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.f-design {
  border-top: 1px solid var(--border);
  margin-top: 2rem;
  padding-top: 1.4rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .card {
    grid-template-columns: 1fr;
  }

  .img-showcase img {
    height: 300px;
  }

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

  .order-form {
    grid-template-columns: 1fr;
  }

  .form-row.full-width {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.success-page {
  display: grid;
  place-items: center;
  min-height: 70vh;
}

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

.success-card h1 {
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .hero-content,
  .about-section,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  /* Top bar — one line, smaller font */
  .top-content {
    padding: 0.5rem 0.75rem;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .top-content p {
    font-size: 0.7rem;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    margin: 0;
    text-align: center;
  }

  /* Navbar: logo LEFT, hamburger RIGHT — no dropdown, opens fullscreen overlay */
  .navbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 0.65rem 0;
    position: relative;
  }

  .nav-menu {
    flex: 0 1 auto;
    width: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
  }

  .nav-menu .brand {
    width: auto;
    padding: 0;
    display: flex;
    justify-content: flex-start;
  }

  .nav-menu .brand img {
    width: 80px;
  }

  .nav-menu .nav-links {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  /* Hero / About / Products stacking */
  .hero-content,
  .about-section,
  .products-grid {
    gap: 1.5rem;
  }

  /* Product card: smaller centered Commander button — single line */
  .product-card .button {
    align-self: center;
    width: auto;
    max-width: none;
    padding: 0.6rem 1.6rem;
    font-size: 0.82rem;
    margin: 0.6rem auto 1rem auto;
    white-space: nowrap;
  }

  /* Order page */
  .card {
    grid-template-columns: 1fr;
  }

  .img-showcase img {
    height: 240px;
  }

  .img-item img {
    width: 70px;
    height: 70px;
  }

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

  .order-form {
    grid-template-columns: 1fr;
  }

  .card-wrapper {
    padding: 0 1rem;
  }

  /* Contact: dark info box goes BELOW the form */
  .contact_inner {
    padding: 16px;
  }

  .contact_info_sec {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 18px;
    margin-top: 1.5rem;
    padding: 18px 20px;
  }

  .contact_info_sec h4 {
    text-align: center;
    padding-bottom: 8px;
  }

  .info_single {
    margin: 12px 0;
  }

  .right_conatct_social_icon {
    border-radius: 18px;
    margin-top: 1rem;
    padding: 14px;
  }

  /* Footer: smaller centered logo */
  .footer-grid .content_1 {
    text-align: center;
  }

  .footer-grid .content_1 img {
    width: 120px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .footer-grid .content_1 .footer-cards {
    justify-content: center;
  }

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

  /* Smaller carousel arrows on phones */
  .carousel-arrow {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }
}

@media (max-width: 460px) {
  .hero-copy .button,
  .button {
    /* keep most buttons readable, but not stretched full-width */
    width: auto;
  }

  .product-card .button {
    max-width: none;
    padding: 0.55rem 1.3rem;
    font-size: 0.78rem;
    white-space: nowrap;
  }
}

/* ---- Global text justification ---- */
p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

/* Selective overrides — short / centered / UI labels should NOT be justified */
.top-content p,
.eyebrow,
.product-price,
.faq-intro,
.shop-section h2,
.success-page p,
.success-card p,
.trust-card p,
.f-design p,
.contact-feedback,
.login-feedback,
.connected-banner,
.contact_field p,
.contact_field h3 + p,
.product-card h3 + .product-price,
.contact_info_sec p,
.map_inner p,
.footer-cards,
.brand-wordmark,
.notif-meta,
.notif-title,
.stat-title,
.stat-change,
.order-summary,
.orders-empty,
.f-mail input,
button p {
  text-align: inherit;
  hyphens: manual;
}

.top-content p,
.shop-section h2,
.success-page p,
.success-card p,
.trust-card p,
.f-design p,
.contact-feedback,
.login-feedback,
.contact_info_sec h4 + .info_single,
.faq-intro,
.map_inner p {
  text-align: center;
}
