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

:root {
  --brand-primary: #641721;
  --brand-secondary: #ab2138;
  --brand-black: #1e1e1e;
  --brand-font: Montserrat;
}

body {
  background: #f7f7f7;
  font-family: var(--brand-font);
  overflow-x: hidden;
}

/* TOPBAR */

.topbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8px 0;
  background: var(--brand-black);
  color: #fff;
  font-size: 14px;
}

.top-left i {
  margin-right: 5px;
  margin-left: 10px;
}

.top-right i {
  margin-left: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.top-right i:hover {
  color: var(--brand-primary);
}

/* NAVBAR */

.navbar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-around !important;
  padding: 20px 40px;
  background: white;
  box-shadow: 0 4px 15px rgba(30, 30, 30, 0.05);
}

.subbar .navbar {
  background: var(--brand-primary);
  color: #fff;
  padding: 0 40px;
}

.subbar .navbar .nav-link {
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
}

.logo img {
  height: 100px;
}

/* SEARCH */

.search {
  display: flex;
  width: 40%;
}

.search input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-right: none;
}

.search button {
  padding: 10px 15px;
  background: var(--brand-primary);
  color: white;
  border: none;
  cursor: pointer;
}

/* ICONS */

.nav-icons {
  display: flex;
  align-items: center;
  gap: 25px;
}

.icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
  cursor: pointer;
}

.icon i {
  font-size: 22px;
  margin-bottom: 3px;
}

/* SUBBAR */

.subbar {
  background: var(--brand-primary);
  border-top: 1px solid #eee;
  transition:
    all 0.6s ease,
    transform 0.6s ease,
    opacity 0.6s ease;
  position: relative;
  z-index: 999;
}

.categories {
  font-weight: 600;
  cursor: pointer;
}

/* Main dropdown on hover */
.navbar .dropdown:hover > .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: visible;
  transform: translateY(10px);
  animation: slideDown 0.3s forwards;
}

/* Nested dropdown hover */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: visible;
  transform: translateY(10px);
  animation: slideDown 0.3s forwards;
}

/* Keyframes for slide-down */
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Optional: Smooth fade-out on mouse leave */
.navbar .dropdown-menu {
  transition: all 0.6s ease;
}

.currency select {
  padding: 6px 10px;
  border: 1px solid #ccc;
}

/* optional: when removing sticky, slide up */
.subbar.slide-up {
  transform: translateY(-20px);
}

/* links */
.subbar .nav-link {
  color: #555;
  transition: color 0.3s ease;
}

.subbar.sticky .nav-link {
  color: #000;
}

.subbar .nav-link:hover {
  color: #fff;
}

/* CART PANEL */

.cart-panel,
.wishlist-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 350px;
  height: 100%;
  background: white;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
  padding: 20px;
  transition: 0.4s;
  z-index: 9999;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.cart-header button {
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
}

#mainNav {
  justify-content: space-between;
}

/* Dropdown Submenu for Bootstrap 5 */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0.1rem;
  margin-right: 0.1rem;
}

/* Hover effect for submenu (desktop) */
@media (min-width: 992px) {
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}

/* Navbar Styling */

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
  background: var(--brand-black);
}

.navbar-brand img {
  transition: transform 0.3s;
}

.navbar-brand img:hover {
  transform: scale(1.1);
}

.badge {
  font-size: 0.6rem;
  vertical-align: top;
}

@media (min-width: 768px) {
  .topbar .top-left,
  .topbar .top-center,
  .topbar .top-right {
    text-align: left;
    margin-bottom: 0;
  }
  .topbar .top-center {
    text-align: center;
  }
  .topbar .top-right {
    text-align: right;
  }
}

@media (min-width: 992px) {
  .subbar .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}

@media (min-width: 992px) {
  .subbar .form-select {
    margin-top: 0;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: #ffffff;
  z-index: 1050;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  overflow-y: auto;
  padding: 20px;
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
}

/* open state */
.mobile-menu.open {
  transform: translateX(0);
}

/* header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.mobile-menu-header img {
  height: 40px;
}

.mobile-menu .close-btn {
  font-size: 22px;
  cursor: pointer;
  color: #555;
}

/* ICON ROW */
.mobile-menu .menu-icons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 25px;
}

.mobile-menu .menu-icons .icon-btn {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  background: #f7f7f7;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-menu .menu-icons .icon-btn i {
  display: block;
  font-size: 18px;
  margin-bottom: 3px;
}

.mobile-menu .menu-icons .icon-btn:hover {
  background: #f0f0f0;
}

/* MENU LIST */
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu ul li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 5px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s ease;
}

.mobile-menu ul li a:hover {
  color: var(--brand-primary);
  padding-left: 10px;
}

/* currency dropdown */
.mobile-menu .currency-select {
  margin-top: 25px;
}

.mobile-menu .currency-select select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}
/* Responsive adjustments */
@media (max-width: 991px) {
  .navbar .search-form {
    display: none;
  }
  .navbar .nav-icons > *:not(.mobile-toggle) {
    display: none;
  }
  .navbar .mobile-toggle {
    display: block;
    font-size: 1.2rem;
    cursor: pointer;
  }

  .navbar .logo img {
    height: 50px;
  }

  .navbar {
    justify-content: space-between !important;
  }
}

/* Navbar icons */
.navbar .nav-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.nav-icons .icon {
  cursor: pointer;
  position: relative;
  font-size: 0.9rem;
}
.nav-icons .badge-count {
  background: var(--brand-secondary);
  color: #fff;
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  right: -15px;
}

/* SEARCH OVERLAY */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 2000;

  display: flex;
  justify-content: center;
  align-items: flex-start;

  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

/* active state */
.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* search box */
.search-box {
  background: #fff;
  width: 100%;
  padding: 30px 20px;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.search-overlay.open .search-box {
  transform: translateY(0);
}

/* close icon */
.close-search {
  font-size: 22px;
  cursor: pointer;
  float: right;
  margin-bottom: 10px;
}

/* search form */
.search-form-overlay {
  display: flex;
  margin-top: 20px;
}

.search-form-overlay input {
  flex: 1;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px 0 0 6px;
  font-size: 16px;
}

.search-form-overlay button {
  background: #ff6600;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 0 6px 6px 0;
}

/* Sticky class */
.subbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.subbar.sticky {
  transform: translateY(0);
  opacity: 1;
}

.subbar.sticky .navbar {
  background-color: #f7f7f7;
}
.subbar.sticky .nav-link:hover {
  background-color: #f7f7f7;
  color: var(--brand-secondary);
}

/* Navbar links inside subbar */
.subbar .nav-link {
  color: #555; /* default text color */
  transition:
    color 0.3s ease,
    padding 0.3s ease;
}

/* When subbar is sticky, make text black */
.subbar.sticky .nav-link {
  color: #000;
}

/* Hover effect */
.subbar .nav-link:hover {
  color: #fff; /* change hover color */
  padding-left: 5px; /* small smooth shift effect */
  transition:
    color 0.3s ease,
    padding 0.3s ease;
}

/* Mobile sticky navbar */
@media (max-width: 991px) {
  nav.navbar {
    transition:
      transform 0.4s ease,
      background-color 0.3s ease,
      box-shadow 0.3s ease;
    position: relative;
    transform: translateY(0);
  }

  nav.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(0) !important;
  }

  nav.navbar.slide-up {
    transform: translateY(-50px);
  }
}

.hero {
  height: 90vh;
  background: url("/images/hero.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: white;
  overflow: hidden;
  animation: zoomInOut 35s ease-in-out infinite alternate;
}

/* Zoom animation */
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05); /* zoom in */
  }
  100% {
    transform: scale(1); /* back to normal */
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero h1 {
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 3px;
}

.hero p {
  margin-top: 20px;
  font-size: 18px;
  opacity: 0.9;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

.btn-primary {
  background: var(--brand-primary);
  padding: 12px 28px;
  color: white;
  text-decoration: none;
}

.btn-secondary {
  border: 1px solid white;
  padding: 12px 28px;
  color: white;
  text-decoration: none;
}

.section-title {
  font-weight: 700;
  font-size: 34px;
  letter-spacing: 1px;
  position: relative;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  padding: 15px;
  text-align: center;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Fix image height */
.product-img {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 250px; /* fixed height for all cards */
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ensures image covers the container */
  transition: transform 0.5s ease;
}

/* Hover zoom */
.product-card:hover .product-img img {
  transform: scale(1.1);
}

.product-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .product-hover {
  opacity: 1;
}

.view-btn {
  padding: 10px 25px;
  background: var(--brand-primary);
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.view-btn:hover {
  background: var(--brand-primary);
  transform: scale(1.1);
}

/* Price styling */
.price {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
}

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

/* Buttons */
.product-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

.cart-btn {
  background: var(--brand-primary);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.cart-btn:hover {
  background: var(--brand-secondary);
  transform: translateY(-2px);
}

.wishlist-btn {
  border: 1px solid #ddd;
  background: white;
  padding: 8px 10px;
  border-radius: 6px;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.wishlist-btn:hover {
  background: #fce7b0;
  transform: translateY(-2px);
  border-color: var(--brand-primary);
}

/* Responsive */
@media (max-width: 767px) {
  .product-card h5 {
    font-size: 18px;
  }
  .price {
    font-size: 14px;
  }
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
  padding: 15px;
}

.category-overlay h4 {
  margin: 0;
  font-weight: 600;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.category-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: 0.4s;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(100, 23, 23, 0.5);
  color: white;
  text-align: center;
  padding: 15px;
  transition: 0.3s;
}

.category-overlay h4 {
  margin: 0;
  font-weight: 600;
}

/* Explore Button */

.explore-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 16px;
  background: var(--brand-secondary);
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
}

/* Show button on hover */

.category-card:hover .explore-btn {
  opacity: 1;
  transform: translateY(0);
}

.about-eternal-tibet {
  background: #f9f9f9;
}

.about-image img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

.about-btn {
  display: inline-block;
  margin-top: 15px;
  background: var(--brand-primary);
  color: white;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 4px;
  transition: 0.3s;
}

.about-btn:hover {
  background: var(--brand-secondary);
}

.why-choose {
  background: #ffffff;
}

.choose-box {
  padding: 30px 20px;
  border-radius: 8px;
  transition: 0.3s;
}

.choose-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.choose-box i {
  font-size: 40px;
  color: var(--brand-primary);
  margin-bottom: 15px;
}

.choose-box h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.choose-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.product-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--brand-primary);
  z-index: 333;
  color: white;
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 4px;
}

.product-card {
  position: relative;
}

.latest-products {
  background: #f9f9f9;
}

.product-badge.new {
  background: var(--brand-primary);
}

.swiper {
  padding-bottom: 40px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.latest-product-img {
  position: relative;
  height: 260px;
  overflow: hidden;
  border-radius: 8px;
}

.latest-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;

  opacity: 0;
  transition: 0.3s;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.icon-btn:hover {
  background: var(--brand-primary);
  color: #fff;
}

.testimonials {
  background: #ffffff;
}

.testimonial-card {
  background: #f9f9f9;
  padding: 35px;
  border-radius: 10px;
  text-align: center;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.stars i {
  color: #d4af37;
  margin: 2px;
}
.testimonials {
  background: #ffffff;
}

.testimonial-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.quote-icon {
  font-size: 28px;
  color: var(--brand-primary);
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}

.testimonial-user img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info h5 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

.user-info span {
  font-size: 13px;
  color: #888;
}

.stars i {
  color: var(--brand-primary);
  margin: 2px;
}

.blog-section {
  background: #f9f9f9;
}

.blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.read-more {
  color: var(--brand-secondary);
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover {
  text-decoration: underline;
}

.partners {
  background: #ffffff;
}

.partner-logo {
  max-height: 60px;
  opacity: 0.7;
  transition: 0.3s;
}

.partner-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer {
  background: #1e1e1e;
  color: #ddd;
  padding: 60px 0 20px;
}

.footer-logo {
  height: 100px;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
}

.footer h5 {
  color: white;
  margin-bottom: 15px;
}

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

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--brand-primary);
}

.footer-social i {
  font-size: 18px;
  margin-right: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-social i:hover {
  color: var(--brand-primary);
}

.footer-bottom {
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
}

.img-container {
  display: flex;
  justify-content: center;
}

.about-hero {
  background: url("/images/hero.png") center/cover no-repeat;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.timeline-item {
  border-left: 3px solid var(--brand-primary);
  padding-left: 20px;
  margin-bottom: 20px;
}

.btn {
  background-color: var(--brand-primary);
  color: #fff;
}

.mission-section {
  background: #f8f8f8;
}

.mission-card {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: 0.4s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mission-icon {
  font-size: 40px;
  color: var(--brand-primary);
  margin-bottom: 20px;
}

.mission-card h4 {
  margin-bottom: 10px;
}

.timeline {
  position: relative;
  margin: 40px auto;
  max-width: 700px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--brand-primary);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-content {
  background: white;
  padding: 20px 25px;
  border-radius: 8px;
  width: 45%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
}

.timeline-content h4 {
  color: var(--brand-primary);
  margin-bottom: 5px;
}

.about-cta {
  position: relative;
  background: url("/images/hero.png") center/cover no-repeat;
  padding: 120px 20px;
  color: white;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.about-cta .container {
  position: relative;
  z-index: 2;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: var(--brand-primary);
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.cta-btn:hover {
  background: var(--brand-secondary);
}

.shop-hero {
  height: 300px;
  background: url("/images/hero.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.shop-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.shop-hero-content {
  position: relative;
  color: white;
}

.shop-hero h1 {
  font-size: 42px;
  font-weight: 700;
}

.shop-hero p {
  font-size: 18px;
  opacity: 0.9;
}

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

.shop-sidebar {
  background: #fafafa;
  padding: 25px;
  border-radius: 10px;
}

.filter-group {
  margin-bottom: 25px;
}

.filter-group h5 {
  margin-bottom: 10px;
}

.filter-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
}

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

.product-card-listing {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.product-card-listing:hover {
  transform: translateY(-6px);
}

.product-card-listing img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.product-info-desc {
  padding: 20px;
  text-align: center !important;
}

.product-info-desc h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.product-info-desc p {
  font-weight: 600;
  margin-bottom: 12px;
  text-align: justify;
}

.product-info-desc button {
  background: var(--brand-primary);
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  cursor: pointer;
}

.product-info-desc button:hover {
  background: var(--brand-secondary);
}

@media (max-width: 768px) {
  .shop-sidebar {
    margin-bottom: 30px;
  }

  .shop-hero {
    height: 220px;
  }

  .shop-hero h1 {
    font-size: 28px;
  }
}

.filter-group {
  margin-bottom: 25px;
}

.filter-group h5 {
  font-size: 16px;
  margin-bottom: 10px;
}

.filter-group input[type="text"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.reset-btn {
  width: 100%;
  padding: 10px;
  border: none;
  background: var(--brand-primary);
  color: white;
  border-radius: 6px;
}

.product-page {
  padding: 80px 0;
}

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

.main-image img {
  width: 100%;
  border-radius: 10px;
}

.thumbnail-images {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
}

.thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 6px;
  opacity: 0.7;
}

.thumb.active {
  opacity: 1;
  border: 2px solid var(--brand-primary);
}

.product-info h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

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

.product-price {
  font-size: 24px;
  color: var(--brand-primary);
  margin-bottom: 15px;
}

.product-short {
  margin-bottom: 20px;
  line-height: 1.6;
}

.quantity-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.quantity-box button {
  border: none;
  background: var(--brand-primary);
}

.quantity-box input {
  width: 60px;
  text-align: center;
  margin: 0 8px;
}

.product-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.add-cart {
  background: var(--brand-primary);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
}

.wishlist-btn {
  border: 1px solid #ddd;
  background: white;
  padding: 10px 15px;
}

.product-meta {
  list-style: none;
  padding: 0;
  font-size: 18px;
  color: #555;
  text-align: left;
  margin-top: 50px;
}

.product-tabs-section {
  padding: 80px 0;
  width: 100%;
  margin: auto;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  border-bottom: 1px solid #eee;
  margin-bottom: 35px;
}

.tab-btn {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
  color: #777;
  padding-bottom: 10px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}

.tab-btn:hover {
  color: var(--brand-secondary);
}

.tab-btn.active {
  color: var(--brand-primary);
}

.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--brand-primary);
}

.tab-content {
  display: none;
  background: #fafafa;
  padding: 35px;
  border-radius: 8px;
  line-height: 1.7;
  color: #555;
}

.tab-content.active {
  display: block;
}

.product-details {
  list-style: none;
  padding: 0;
}

.product-details li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.product-details span {
  font-weight: 600;
  color: #1e1e1e;
}

.review-box {
  text-align: center;
}

.review-btn {
  margin-top: 15px;
  background: var(--brand-primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  cursor: pointer;
}

.review-btn:hover {
  background: var(--brand-primary);
}

.category-intro {
  text-align: center;
  max-width: 750px;
  margin: 60px auto;
  line-height: 1.7;
  color: #555;
  font-size: 17px;
}

.category-products {
  padding: 60px 0;
}

.product-card-cat {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.product-card-cat:hover {
  transform: translateY(-6px);
}

.product-img {
  position: relative;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: 0.4s;
}

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

.product-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: 0.3s;
}

.product-card-cat:hover .product-hover {
  opacity: 1;
}

.product-hover button {
  background: var(--brand-primary);
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
  cursor: pointer;
}

.product-info {
  padding: 18px;
  text-align: center;
}

.product-info h4 {
  font-size: 17px;
  margin-bottom: 5px;
}

.product-info p {
  color: var(--brand-primary);
  font-weight: 600;
}

.contact-hero {
  height: 320px;
  background: url("/images/hero.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.contact-hero .hero-content {
  position: relative;
  color: white;
  max-width: 650px;
}

.contact-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.contact-hero p {
  font-size: 18px;
  opacity: 0.9;
}

.contact-info {
  padding: 80px 0;
}

.contact-card {
  text-align: center;
  padding: 35px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-6px);
}

.contact-card i {
  font-size: 30px;
  color: var(--brand-primary);
  margin-bottom: 15px;
}

.contact-card h4 {
  margin-bottom: 8px;
}

.contact-card p {
  color: #666;
}

.contact-form-section {
  padding: 80px 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 15px;
}

.contact-form button {
  background: var(--brand-primary);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

.contact-form button:hover {
  background: var(--brand-secondary);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
  border-radius: 10px;
}

.contact-quote {
  padding: 70px 0;
  background: #f8f6f2;
  text-align: center;
}

.contact-quote h3 {
  font-size: 26px;
  font-style: italic;
  margin-bottom: 10px;
}

.contact-quote p {
  color: #777;
}

.cart-section {
  padding: 60px 0;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  text-align: left;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.cart-table td {
  padding: 20px 15px;
  border-bottom: 1px solid #eee;
}

.product-info-cart {
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-info-cart img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}

.qty-box {
  display: flex;
  align-items: center;
}

.qty-box button {
  width: 35px;
  height: 35px;
  border: none;
  background: #eee;
  cursor: pointer;
}

.qty-box input {
  width: 50px;
  text-align: center;
  border: 1px solid #ddd;
  margin: 0 5px;
}

.remove-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #999;
}

.remove-btn:hover {
  color: red;
}

.cart-summary {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 80px;
}

.summary-box {
  width: 350px;
  background: #fafafa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.summary-box h3 {
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  color: #555;
}

.summary-row.total {
  font-size: 18px;
  font-weight: 600;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.checkout-btn {
  width: 100%;
  margin-top: 20px;
  padding: 14px;
  border: none;
  background: var(--brand-primary);
  color: white;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.checkout-btn:hover {
  background: var(--brand-secondary);
}

@media (max-width: 768px) {
  .cart-table thead {
    display: none;
  }

  .cart-table tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
  }

  .cart-table td {
    display: flex;
    justify-content: space-between;
    border: none;
  }

  .summary-box {
    width: 100%;
  }
}

.checkout-section {
  padding: 60px 0;
}

.checkout-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.checkout-form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.checkout-form h3 {
  margin-bottom: 20px;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.order-summary {
  background: #fafafa;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  height: fit-content;
}

.order-summary h3 {
  margin-bottom: 20px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #555;
}

.order-total {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

.order-total.final {
  font-size: 18px;
  font-weight: 600;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.payment-options {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-options label {
  background: white;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  cursor: pointer;
}

.place-order {
  margin-top: 20px;
  width: 100%;
  padding: 15px;
  background: #8b5e34;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

.place-order:hover {
  background: #6f4727;
}

@media (max-width: 768px) {
  .checkout-wrapper {
    grid-template-columns: 1fr;
  }

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

.account-dashboard {
  padding: 60px 0;
}

.dashboard-wrapper {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
}

.account-dashboard {
  padding: 60px 0;
}

.dashboard-wrapper {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
}

.account-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.account-tab {
  display: none;
}

.account-tab.active {
  display: block;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.orders-table th,
.orders-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
}

.account-sidebar {
  background: #fafafa;
  padding: 25px;
  border-radius: 10px;
}

.account-sidebar ul {
  list-style: none;
  padding: 0;
}

.account-sidebar li {
  padding: 12px;
  cursor: pointer;
  border-radius: 6px;
  margin-bottom: 5px;
}

.account-sidebar li:hover {
  background: #eee;
}

.account-sidebar li.active {
  background: var(--brand-primary);
  color: white;
}

.order-detail-order-summary {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.order-detail-summary-box {
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
  flex: 1;
}

.order-detail-order-items {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.order-detail-order-items th,
.order-detail-order-items td {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

.order-detail-product-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.order-detail-product-info img {
  width: 50px;
  border-radius: 6px;
}

.order-detail-address-box {
  background: #fafafa;
  padding: 20px;
  border-radius: 8px;
  margin-top: 10px;
}

.order-detail-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.back-orders {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.back-orders i {
  margin-right: 6px;
}

.order-actions {
  display: flex;
  gap: 10px;
}

.invoice-btn {
  background: var(--brand-primary);
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
}

.invoice-btn:hover {
  background: var(--brand-primary);
}

.print-btn {
  background: #333;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}

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

.invoice-header img{
height:50px;
}

#invoice-area{
    display: none;
}

.et-cart-items{
flex:1;
overflow:auto;
padding:20px;
}

/* CART ITEM */

.et-cart-item{
display:flex;
gap:15px;
align-items:center;
margin-bottom:20px;
border-bottom:1px solid #eee;
padding-bottom:15px;
}

.et-cart-img{
width:60px;
height:60px;
object-fit:cover;
border-radius:6px;
}

.et-cart-info h5{
font-size:14px;
margin:0;
}

.et-cart-info p{
font-weight:600;
margin:5px 0;
}

.et-qty-box{
display:flex;
align-items:center;
gap:5px;
}

.et-qty-box button{
width:25px;
height:25px;
border:1px solid #ccc;
background:#fff;
cursor:pointer;
}

.et-qty-box input{
width:40px;
text-align:center;
border:1px solid #ddd;
}

.et-remove-item{
background:none;
border:none;
color:red;
cursor:pointer;
}

/* FOOTER */

.et-cart-footer{
border-top:1px solid #eee;
padding:20px;
}

.et-cart-total{
display:flex;
justify-content:space-between;
font-weight:600;
margin-bottom:10px;
}

.et-checkout-btn{
width:100%;
padding:12px;
background:var(--brand-primary);
color:#fff;
border:none;
border-radius:6px;
cursor:pointer;
}

.et-wishlist-item{
display:flex;
gap:10px;
align-items:center;
border-bottom:1px solid #eee;
padding:15px 0;
flex-wrap: wrap;
}

.et-wishlist-item img{
width:60px;
height:60px;
border-radius:6px;
}

.et-wishlist-info{
flex:1;
}

.et-wishlist-actions{
display:flex;
gap:5px;
}

.et-wishlist-cart{
background:var(--brand-primary);
border:none;
color:#fff;
padding:5px 10px;
cursor:pointer;
}

.et-wishlist-remove{
background:none;
border:none;
color:red;
cursor:pointer;
}