﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background: #f2f2f2;
  background-image: url('images/background\ texture.jpg');
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 18px 32px;
  z-index: 1000;
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.logo a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 24px;
  line-height: 1;
  padding: 8px 10px;
  transition: color 0.35s ease, opacity 0.35s ease;
}
#menu-toggler {
  display: none;
}
#hamburger-btn {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  z-index: 1100;
  display: block !important;
  transition: color 0.35s ease;
}
#hamburger-btn svg {
  fill: currentColor;
  transition: fill 0.35s ease;
}

#userIconLink {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  padding: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

#userIconLink .user-avatar-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}

#userIconLink.has-avatar {
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

#userIconLink.has-avatar .user-avatar-icon {
  display: block;
}

#userIconLink.has-avatar i {
  display: none;
}
.right-icons {
  display: flex;
  gap: 20px;
  margin-left: auto;
  justify-content: flex-end;
  align-items: center;
  flex-direction: row; 
}

.right-icons a {
  color: #fff;
  font-size: 18px;
}

.all-links {
  position: fixed;
  top: 60px;
  left: -100%;
  width: 220px;
  height: 100vh;
  background: #222;
  flex-direction: column;
  padding-top: 30px;
  list-style: none;
  transition: left 0.3s ease;
  z-index: 1000;
}
.all-links li {
  margin: 15px 0;
  text-align: center;
}
.all-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}
.all-links li a:hover {
  color: #ddd;
}
.all-links .has-submenu {
  padding: 0;
  margin: 15px 0;
  width: 100%;
}
.all-links .submenu-header {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 22px;
  position: relative;
}
.all-links .submenu-header a {
  flex: 1;
  text-align: center;
}
.all-links .submenu-control {
  border: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
}
.all-links .submenu-control i {
  transition: transform 0.25s ease;
}
.all-links .submenu-control:hover {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  transform: translateY(calc(-50% - 2px));
}
.all-links .has-submenu.submenu-open .submenu-control i {
  transform: rotate(180deg);
}
.all-links .submenu {
  list-style: none;
  margin: 6px 0 0;
  padding: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}
.all-links .submenu li {
  margin: 0;
  text-align: center;
}
.all-links .submenu li a {
  display: block;
  padding: 12px 22px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: #f0f0f0;
  text-align: center;
  transition: background 0.25s ease, padding 0.25s ease;
}
.all-links .submenu li a:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  padding: 12px 22px;
}
.all-links .has-submenu.submenu-open .submenu,
.all-links .has-submenu:hover .submenu {
  max-height: 280px;
  opacity: 1;
  padding: 6px 0 8px;
  pointer-events: auto;
}
.landing-header {
    background: rgba(0, 0, 0, 0);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    transition: background-color 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
    height: 72px;
    z-index: 2000;
  }

  .landing-header:hover,
  .landing-header.is-solid {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.16);
  }

  .landing-header .logo a,
  .landing-header .right-icons a,
  .landing-header #hamburger-btn {
    transition: color 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
  }

  .landing-header:hover .logo a,
  .landing-header.is-solid .logo a {
    filter: brightness(0.25) saturate(0) drop-shadow(0 6px 14px rgba(0, 0, 0, 0.22));
    opacity: 0.9;
  }

  .landing-header:hover .right-icons a,
  .landing-header:hover #hamburger-btn,
  .landing-header.is-solid .right-icons a,
  .landing-header.is-solid #hamburger-btn {
    color: #4d4d4d;
  }

  .landing-header:hover .right-icons a:hover,
  .landing-header.is-solid .right-icons a:hover,
  .landing-header:hover .logo a:hover,
  .landing-header.is-solid .logo a:hover {
    color: #1f1f1f;
    filter: brightness(0.35) saturate(0) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
  }

  .landing-header:hover #userIconLink.has-avatar,
  .landing-header.is-solid #userIconLink.has-avatar {
    border-color: rgba(0, 0, 0, 0.22);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  }

  .landing-header:hover .right-icons a,
  .landing-header.is-solid .right-icons a {
    color: #4d4d4d;  }\r\n#menu-toggler:checked ~ .all-links {
  left: 0;
}

/* ===== VIDEO HERO SECTION ===== */
header.light-header .logo a,
header.light-header .right-icons a,
header.light-header #hamburger-btn {
  color: #555 !important;
  filter: brightness(0.25) saturate(0) drop-shadow(0 6px 14px rgba(0, 0, 0, 0.22));
  opacity: 0.92;
}

header.light-header .right-icons a:hover,
header.light-header #hamburger-btn:hover,
header.light-header .logo a:hover {
  color: #222 !important;
  filter: brightness(0.35) saturate(0) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
}

header.light-header #userIconLink.has-avatar {
  border-color: rgba(0, 0, 0, 0.22);
}
.homepage {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.homepage .bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.homepage .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}
.homepage .content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}
.homepage .content h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.homepage .content p {
  font-size: 20px;
  margin-bottom: 40px;
  opacity: 0.9;
}
.homepage .content a {
  color: #000;
  background: #fff;
  padding: 12px 36px;
  font-size: 16px;
  border-radius: 5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.homepage .content a:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

/* ===== SECTIONS ===== */
section {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 80px 0 0;
}
section h2 {
  font-size: 2rem;
}
section > p {
  text-align: center;
}
section .cards {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin-top: 50px;
  padding: 0 10px;
  justify-content: space-between;
}
section.about {
  margin: 0;
  max-width: none;
  width: 100%;
  padding: 0;
}
.about .company-info {
  margin-top: 30px;
}
.about h3 {
  margin: 30px 0 10px;
}
.about .team {
  text-align: left;
  width: 100%;
}
.about .team ul {
  padding-left: 20px;
}
section .cards .card {
  background: #fff;
  padding: 40px 15px;
  list-style: none;
  border-radius: 5px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.04);
  margin-bottom: 40px;
  width: calc(100% / 3 - 30px);
  text-align: center;
}
.portfolio .cards .card {
  padding: 0 0 20px;
}
.services .card img {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  border-radius: 0;
  object-fit: cover;
}
.portfolio .card img {
  width: 100%;
  padding-bottom: 10px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 7px;
}
.cards .card p {
  padding: 0 15px;
  margin-top: 5px;
}

/* ===== CONTACT ===== */
.contact .row {
  margin: 60px 0 90px;
  display: flex;
  max-width: 1200px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
.contact .row .col {
  padding: 0 10px;
  width: calc(100% / 2 - 50px);
}
.contact .col p {
  margin-bottom: 10px;
}
.contact .col p i {
  color: #7a7a7a;
  margin-right: 10px;
}
.contact form input {
  height: 45px;
  margin-bottom: 20px;
  padding: 10px;
  width: 100%;
  font-size: 16px;
  outline: none;
  border: 1px solid #bfbfbf;
}
.contact form textarea {
  padding: 10px;
  width: 100%;
  font-size: 16px;
  height: 150px;
  outline: none;
  resize: vertical;
  border: 1px solid #bfbfbf;
}
.contact form button {
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 17px;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  background: #333;
  transition: 0.2s ease;
}
.contact form button:hover {
  background: #525252;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #050505;
  color: #f5f5f5;
  padding: 72px 48px 32px;
  margin-top: 120px;
  position: relative;
  z-index: 1;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
}
.site-footer a:hover {
  color: #d8d8d8;
}
.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #ff5d20;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
}
.footer-inner {
  max-width: 1180px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: minmax(220px, 1.25fr) repeat(3, minmax(180px, 1fr));
  gap: 32px 40px;
}
.footer-col h4 {
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.footer-brand .footer-logo {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.32em;
  display: inline-block;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: #d0d0d0;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  font-size: 18px;
}
.footer-contact p {
  font-size: 14px;
  color: #d0d0d0;
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer-form {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 6px 8px 6px 18px;
  margin-bottom: 18px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.footer-form:focus-within {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}
.footer-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: inherit;
  font-size: 14px;
  padding: 8px 0;
  outline: none;
}
.footer-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.footer-form button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #f5f5f5;
  color: #050505;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.footer-form button::after {
  content: "\2192";
  font-size: 16px;
  font-weight: 600;
}
.footer-form button:hover {
  transform: translateX(1px);
  background: #fff;
}
.footer-meta {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}
.footer-bottom nav {
  display: flex;
  align-items: center;
  gap: 18px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}
.footer-bottom nav a {
  color: inherit;
}
.footer-bottom span {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 28px 32px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 64px 24px 28px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-bottom span {
    white-space: normal;
  }
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 860px) {
  .navbar .all-links {
    position: fixed;
    left: -100%;
    width: 300px;
    display: block;
    height: 100vh;
    top: 0px;
    background: #333;
    transition: left 0.3s ease;
    animation: slideDown 0.3s ease;
  }
  .navbar #menu-toggler:checked~.all-links {
    left: 0;
  }
  .navbar #hamburger-btn {
    display: block;
  }
  .homepage .content h1 {
    font-size: 40px;
  }
  .homepage .content p {
    font-size: 17px;
  }
  .homepage .content a {
    font-size: 17px;
    padding: 9px 20px;
  }
  section .cards .card {
    width: calc(100% / 2 - 15px);
  }
  .contact .row {
    flex-direction: column;
  }
  .contact .row .col {
    width: 100%;
  }
  .contact .row .col:last-child {
    margin-top: 40px;
  }
}
@media screen and (max-width: 560px) {
  section .cards .card {
    width: 100%;
  }
  @keyframes slideDown {
  from { transform: translateY(-10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
}
.slider-container {
  position: relative;
  width: 80%;
  max-width: 900px;
  margin: 50px auto;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.slider {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
}

.slide img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.caption {
  position: absolute;
  bottom: 20px;
  left: 30px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-shadow: 0px 2px 10px rgba(0,0,0,0.8);
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: #fff;
  font-size: 26px;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
  z-index: 5;
}
.prev:hover, .next:hover {
  background: rgba(0, 0, 0, 0.7);
}
.prev { left: 15px; }
.next { right: 15px; }

@media (max-width: 768px) {
  .slider-container {
    width: 95%;
  }
  .slide img {
    height: 300px;
  }
}
.mood-banner {
  position: relative;
  width: 100%;
  height: 100vh; 
  overflow: hidden;
  margin-top: 40px;
}

.mood-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;  
  z-index: 1;
}

.mood-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.25); 
  z-index: 2;
}


@media (max-width: 768px) {
  .mood-banner {
    height: 70vh;
  }
}

.all-links {
  position: fixed;
  top: 0; 
  left: -100%;
  width: 260px;
  height: 100vh;
  background: #1e1e1e;
  flex-direction: column;
  padding-top: 80px;
  list-style: none;
  transition: left 0.45s cubic-bezier(0.25, 1, 0.3, 1), opacity 0.45s ease;
  opacity: 0;
  z-index: 1101;
}

.all-links li {
  margin: 15px 0;
  text-align: center;
}
.all-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}
.all-links li a:hover {
  color: #ddd;
}


#menu-toggler:checked ~ .all-links {
  left: 0;
  opacity: 1;
}


.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 1100;
  backdrop-filter: blur(6px);
}

#menu-toggler:checked ~ .menu-overlay {
  opacity: 1;
  pointer-events: all;
}

.all-links .close-btn {
  position: absolute;
  top: 15px;
  right: 18px;
  z-index: 1101;
  display: block; 
}

.all-links .close-icon {
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  transition: transform 0.25s ease, color 0.25s ease;
}

.all-links .close-icon:hover {
  transform: scale(1.15);
  color: #ccc;
}
.about {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.about-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.45);
  z-index: 2;
}

.about-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.about-content.show {
  opacity: 1;
  transform: translateY(0);
}

.about-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.about-content p, .about-content h3 {
  color: #eee;
  font-weight: 400;
  line-height: 1.6;
}

.about-content h3 {
  margin-top: 30px;
  font-weight: 600;
  color: #fff;
}

@media (max-width: 768px) {
  .about-content h2 {
    font-size: 34px;
  }
  .about-content p {
    font-size: 16px;
  }
}

.about {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  margin-top: 80px;
}

.about-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.45);
  z-index: 2;
}

.about-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 0 20px;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.about-content.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.about-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.about-content p, .about-content h3 {
  color: #eee;
  font-weight: 400;
  line-height: 1.6;
}

.about-content h3 {
  margin-top: 30px;
  font-weight: 600;
  color: #fff;
}
.about-content {
  position: relative;
  z-index: 10; 
}
.about-content h2, .about-content p, .about-content h3 {
  color: #fff !important; text-shadow: 0 2px 10px rgba(0,0,0,.8);
}
.search-popup {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.15);
  padding: 24px;
  width: 380px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all 0.3s ease;
  z-index: 1500;
}

.search-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-popup h3 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
  text-transform: uppercase;
}

.search-input {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
}

.search-input input {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px;
  font-size: 14px;
}

.search-input button {
  background: #000;
  border: none;
  color: #fff;
  width: 45px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.search-input button:hover {
  background: #333;
}
.search-popup::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 30px;
  width: 15px;
  height: 15px;
  background: #fff;
  transform: rotate(45deg);
  box-shadow: -2px -2px 5px rgba(0,0,0,0.05);
}
.close-search {
  position: absolute;
  top: -15px;
  right: 12px;
  background: none;
  border: none;
  font-size: 28px;
  color: #333;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.2s ease;
}

.close-search:hover {
  color: #000;
  transform: scale(1.1);
}
.search-box {
  position: relative;
}

.results-container {
  margin-top: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  max-height: 480px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.results-container.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.results-container[data-has-results="true"] {
  padding: 6px;
}

.search-result-empty {
  padding: 16px;
  font-size: 14px;
  color: #494949;
  text-align: left;
  line-height: 1.4;
}

.search-result-empty span {
  font-weight: 600;
  color: #111;
}

.search-result-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-result-row + .search-result-row {
  margin-top: 6px;
}

.search-result-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  align-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.search-result-item:hover,
.search-result-item:focus-visible {
  background: rgba(15, 23, 42, 0.06);
  transform: translateY(-1px);
}

.search-result-thumb {
  width: 72px;
  height: 72px;
  border-radius: 6px;
  overflow: hidden;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-result-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 15px;
}

.search-result-meta {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(17, 20, 25, 0.55);
}

.search-result-name {
  font-weight: 600;
  color: #131313;
  line-height: 1.2;
}

.search-result-price {
  font-size: 15px;
  color: #434343;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.search-result-price.has-sale {
  color: #0f172a;
}

.search-result-price--sale {
  font-weight: 600;
  color: #c0392b;
}

.search-result-price--original {
  color: rgba(17, 20, 25, 0.5);
  text-decoration: line-through;
}

.search-popup.active .results-container {
  pointer-events: auto;
}
@media (max-width: 992px) {
  .search-popup {
    width: min(92vw, 420px); 
    padding: 22px;
    border-radius: 12px;
  }

  .results-container {
    max-height: 56vh; 
  }

  .search-result-thumb { width: 68px; height: 68px; }
  .search-result-name  { font-size: 15px; }
  .search-result-price { font-size: 13.5px; }
}

@media (max-width: 560px) {
  .search-popup {
    position: fixed;         
    right: 12px;
    left: 12px;
    width: auto;
    padding: 18px 16px;
    border-radius: 14px;
    transform: none;
  }
  .search-popup.active { transform: none; }
  .search-popup::before { display: none; }
  .results-container {
    max-height: calc(100vh - 72px - 140px); 
    padding-right: 4px;
  }

  .search-result-item { gap: 12px; padding: 10px; }
  .search-result-thumb { width: 60px; height: 60px; border-radius: 8px; }
  .search-result-info  { gap: 3px; font-size: 14px; }
  .search-result-name  { font-size: 14.5px; line-height: 1.35; }
  .search-result-price { font-size: 13px; }
  .close-search { top: -12px; right: 10px; font-size: 30px; }
}
.search-view-all {
  display: block;
  text-align: center;
  margin: 12px auto 4px;
  padding: 10px 0;
  border-radius: 6px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
  width: 100%;
}

.search-view-all:hover {
  background: #222;
  transform: translateY(-1px);
}
.search-popup.expanded {
  max-height: 90vh; 
  overflow-y: auto;
  padding-bottom: 60px;
}
.search-view-all {
  display: block;
  text-align: center;
  margin: 14px auto 0;
  padding: 10px 0;
  border-radius: 6px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
  width: 100%;
}

.search-view-all:hover {
  background: #222;
  transform: translateY(-1px);
}

.services .cards .card {
	cursor: pointer; 
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.services .cards .card:hover {
	transform: translateY(-6px);
	box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.thankyou-popup {
  position: fixed;
  top: 24px;
  right: 24px;
  background: rgba(20, 20, 20, 0.95); 
  color: #fff; 
  padding: 16px 24px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(-15px) scale(0.98);
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.thankyou-popup::before {
  content: "✔";
  display: inline-block;
  color: #00d084; 
  font-weight: bold;
  font-size: 18px;
}

.thankyou-popup.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.listing-toast-container {
  position: fixed;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 4000;
  pointer-events: none;
}

.listing-toast {
  background: rgba(15, 15, 15, 0.92);
  color: #fff;
  padding: 12px 24px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  font-size: 0.84rem;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.listing-toast.show {
  opacity: 1;
  transform: translateY(0);
}
































