/* From resources/views/frontend/layouts/header.blade.php */
#zen-preloader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #f6f6fa;
        z-index: 999999;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    #zen-preloader.fade-out {
        opacity: 0;
        visibility: hidden;
    }
    .preloader-inner {
        text-align: center;
    }
    .brand-kanji {
        font-family: 'Noto Serif JP', serif;
        font-size: 28px;
        font-weight: 300;
        color: #151581;
        letter-spacing: 0.4em;
        margin-left: 0.4em;
        animation: zenPulse 2s ease-in-out infinite;
    }
    .brand-sub {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        font-weight: 500;
        color: #a1a1cd;
        letter-spacing: 0.3em;
        margin-top: 10px;
        text-transform: uppercase;
    }
    .preloader-loader {
        width: 120px;
        height: 2px;
        background-color: rgba(21, 21, 129, 0.08);
        margin: 25px auto 0;
        border-radius: 2px;
        overflow: hidden;
        position: relative;
    }
    .loader-line {
        width: 40px;
        height: 100%;
        background-color: #f1c40f; /* Gold accent */
        position: absolute;
        left: -40px;
        border-radius: 2px;
        animation: zenLoading 1.6s cubic-bezier(0.65, 0.05, 0.36, 1) infinite;
    }
    @keyframes zenPulse {
        0%, 100% { opacity: 0.7; transform: scale(0.98); }
        50% { opacity: 1; transform: scale(1); }
    }
    @keyframes zenLoading {
        0% { left: -40px; }
        50% { width: 60px; }
        100% { left: 120px; }
    }

/* From resources/views/frontend/layouts/header.blade.php */
/* --- Elanique Aesthetics — Luxury Spa & Wellness Header --- */

/* Global Header Container */
header.header {
  background-color: #ffffff !important;
  border-bottom: 1px solid rgba(21, 21, 129, 0.06) !important; /* Delicate hairline border */
  border-top: none !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  width: 100% !important;
  box-shadow: none !important;
}

.sticky-header {
  background-color: #ffffff !important;
  position: relative !important;
}

/* Extra vertical padding for luxurious, spacious breathing room (Wabi-Sabi space) */
.menu-bar {
  padding: 18px 0 !important;
  background-color: #ffffff !important;
  border: none !important;
}

/* Force Flexbox and order on the desktop header bar */
.menu-bar .container-fluid-space {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
}

/* Brand Logo (Order: 1) */
.menu-bar .menu-logo {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
  order: 1 !important;
}

.menu-bar .menu-logo a {
  display: flex !important;
  align-items: center !important;
}

.menu-bar .menu-logo img {
  height: 60px !important;
  width: auto !important;
  filter: drop-shadow(0 2px 8px rgba(21, 21, 129, 0.15)) !important;
  opacity: 1 !important;
  transition: all 0.3s ease !important;
}

.menu-bar .menu-logo img:hover {
  opacity: 0.9 !important;
  transform: scale(1.05) !important;
}

/* Hide duplicate logo inside the navigation menu on desktop */
.menu-links .menu-logo {
  display: none !important;
}

/* Centered Navigation Links (Order: 2) */
.menu-links {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-grow: 1 !important;
  background: transparent !important;
  box-shadow: none !important;
  order: 2 !important;
}

.nav.navbar-nav {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 36px !important; /* Balanced spacious gap */
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.nav.navbar-nav > li {
  margin: 0 !important;
  padding: 0 !important;
  position: relative !important;
}

/* Wide-tracked, light weights for premium Japanese editorial aesthetic */
.nav.navbar-nav > li > a {
  color: #151581 !important; /* Indigo Ink (Aizome) */
  font-family: 'Inter Tight', 'Inter', sans-serif !important;
  font-weight: 400 !important; /* Delicate, thin strokes */
  font-size: 13px !important; /* Refined small size */
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important; /* Wide letter spacing signature */
  padding: 8px 4px !important;
  transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
}

.nav.navbar-nav > li > a:hover {
  color: #5465ff !important; /* Soft shift to Electric Violet */
}

.nav.navbar-nav li i {
  font-size: 8px !important;
  margin-left: 6px !important;
  color: #a1a1cd !important; /* Lavender Mist */
}

/* Main Sub-menus (Dropdowns) styling */
.sub-menu {
  background-color: #ffffff !important;
  border-radius: 8px !important; /* Geometric clean corners */
  border: 1px solid rgba(21, 21, 129, 0.08) !important; /* Delicate border frame */
  box-shadow: 0 10px 35px rgba(21, 21, 129, 0.04) !important; /* Softest ambient shadow */
  padding: 8px 0 !important;
  min-width: 200px !important;
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  display: none !important;
  list-style: none !important;
  margin: 10px 0 0 0 !important;
  z-index: 1000 !important;
}

/* Invisible bridge to prevent hover loss over the gap */
.sub-menu::before {
  content: "" !important;
  position: absolute !important;
  top: -14px !important;
  left: 0 !important;
  right: 0 !important;
  height: 16px !important;
  background: transparent !important;
}

.nav.navbar-nav > li:hover .sub-menu {
  display: block !important;
}

.sub-menu li {
  width: 100% !important;
}

.sub-menu li a {
  color: #292824 !important; /* Graphite */
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  padding: 10px 20px !important;
  display: block !important;
  text-decoration: none !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
  text-align: left !important;
  letter-spacing: 0.04em !important;
}

.sub-menu li a:hover {
  background-color: #f6f6fa !important; /* Porcelain */
  color: #151581 !important;
}

/* Secondary Actions Menu (Order: 3) */
.secondary-menu {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-shrink: 0 !important;
  order: 3 !important;
}

.secondary-inner {
  padding: 0 !important;
}

.secondary-inner ul {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.secondary-inner > ul > li {
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  position: relative !important;
}

.secondary-inner .dropdown-menu li {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Style the Currency and Language buttons as minimalist Lovi pills */
.secondary-menu button.cart-btn {
  background-color: transparent !important; /* Clear canvas */
  color: #151581 !important; /* Indigo Ink */
  border: 1px solid rgba(21, 21, 129, 0.15) !important; /* Thin, delicate hairline border */
  border-radius: 48px !important;
  padding: 6px 16px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  font-size: 13px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  height: 36px !important;
  cursor: pointer !important;
  outline: none !important;
  box-shadow: none !important;
  letter-spacing: 0.04em !important;
}

.secondary-menu button.cart-btn:hover {
  background-color: #f6f6fa !important; /* Porcelain soft fill */
  border-color: #151581 !important; /* Deepen border on hover */
}

/* Style the Cart button as a premium minimalist circle */
.secondary-menu a.cart-btn {
  background-color: transparent !important;
  color: #151581 !important;
  border: 1px solid rgba(21, 21, 129, 0.15) !important;
  border-radius: 50% !important; /* Perfect circle */
  width: 36px !important;
  height: 36px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
  cursor: pointer !important;
  outline: none !important;
  box-shadow: none !important;
}

.secondary-menu a.credits-btn {
  background-color: transparent !important;
  color: #151581 !important;
  border: 1px solid rgba(21, 21, 129, 0.15) !important;
  border-radius: 48px !important;
  padding: 0 14px !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  height: 36px !important;
}

.secondary-menu a.credits-btn:hover {
  background-color: #f6f6fa !important;
  border-color: #151581 !important;
}

.secondary-menu a.cart-btn:hover {
  background-color: #f6f6fa !important;
  border-color: #151581 !important;
}

/* Completely remove any legacy pseudo-elements showing text or custom structures */
.secondary-menu .cart-btn::before,
.secondary-menu .cart-btn::after,
.secondary-menu button.cart-btn::before,
.secondary-menu button.cart-btn::after {
  display: none !important;
  content: none !important;
}

/* Float the Cart count badge over the top right of the circle (iOS/high-end style) */
.secondary-menu a.cart-btn span {
  background-color: #151581 !important; /* Indigo Ink */
  color: #ffffff !important;
  font-size: 9px !important;
  font-weight: 600 !important;
  border-radius: 50% !important;
  min-width: 16px !important;
  height: 16px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 3px !important;
  
  /* Absolute Positioning */
  position: absolute !important;
  top: -5px !important;
  right: -5px !important;
  margin: 0 !important;
  box-shadow: 0 0 0 2px #ffffff !important; /* iOS-style white border separation */
  z-index: 10 !important;
}

/* Action Dropdown Overlays styling (Absolute position, clean borders) */
.secondary-inner .dropdown-menu {
  display: none !important; /* Secure hide by default */
  position: absolute !important;
  top: 100% !important;
  right: 0 !important;
  left: auto !important;
  background-color: #ffffff !important;
  border-radius: 8px !important;
  border: 1px solid rgba(21, 21, 129, 0.08) !important;
  box-shadow: 0 10px 35px rgba(21, 21, 129, 0.04) !important;
  padding: 8px !important;
  min-width: 180px !important;
  margin-top: 10px !important;
  z-index: 1000 !important;
  list-style: none !important;
}

/* Invisible bridge to prevent hover loss over the gap */
.secondary-inner .dropdown-menu::before {
  content: "" !important;
  position: absolute !important;
  top: -14px !important;
  left: 0 !important;
  right: 0 !important;
  height: 16px !important;
  background: transparent !important;
}

/* Show dropdown overlay on hover, active class, or Bootstrap state */
.secondary-inner .dropdown:hover .dropdown-menu,
.secondary-inner .dropdown.show .dropdown-menu,
.secondary-inner .dropdown-menu.show {
  display: block !important;
}

.secondary-inner .dropdown-item {
  color: #292824 !important; /* Graphite */
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  font-size: 13px !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
  transition: background-color 0.2s ease, color 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none !important;
  text-align: left !important;
  width: 100% !important;
  letter-spacing: 0.04em !important;
}

.secondary-inner .dropdown-item:hover {
  background-color: #f6f6fa !important;
  color: #151581 !important;
}

.secondary-inner .dropdown-item img {
  width: 18px !important;
  height: auto !important;
}

/* Clean Cart Item list inside dropdown */
.cart-list {
  min-width: 280px !important;
}

.cart-item {
  padding: 12px 0 !important;
  border-bottom: 1px solid rgba(21, 21, 129, 0.06) !important;
}

.cart-item:last-child {
  border-bottom: none !important;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
  .menu-bar {
    padding: 14px 0 !important;
  }

  .menu-bar .container-fluid-space {
    flex-wrap: wrap !important;
  }
  
  .navbar-toggler {
    display: inline-flex !important;
    align-items: center !important;
    border: none !important;
    background: transparent !important;
    color: #151581 !important;
    padding: 8px !important;
    order: 2 !important;
  }
  
  .secondary-menu {
    order: 3 !important;
    margin-left: auto !important;
    margin-right: 12px !important;
  }
  
  .menu-links {
    display: none !important;
    width: 100% !important;
    order: 4 !important;
    margin-top: 16px !important;
  }
  
  .menu-links.show {
    display: flex !important;
  }
  
  .nav.navbar-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100% !important;
    gap: 16px !important;
  }
  
  .sub-menu {
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    padding-left: 16px !important;
    display: block !important;
    margin-top: 8px !important;
  }
}

/* --- Japanese Minimalist Offcanvas Cart Revamp --- */
.offcanvas.offcanvas-end {
  width: 380px !important;
  border-left: 1px solid rgba(21, 21, 129, 0.08) !important;
  background-color: #ffffff !important;
  box-shadow: -10px 0 35px rgba(21, 21, 129, 0.04) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.offcanvas-header {
  border-bottom: 1px solid rgba(21, 21, 129, 0.06) !important;
  padding: 20px 24px !important;
}

.offcanvas-header .offcanvas-title {
  color: #151581 !important; /* Indigo Ink */
  font-family: 'Inter Tight', 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
}

.offcanvas-body {
  padding: 24px !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

/* Side Cart Item list */
.side-cart-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-grow: 1 !important;
  overflow-y: auto !important;
}

/* Scrollbar styling for side cart list */
.side-cart-list::-webkit-scrollbar {
  width: 4px;
}
.side-cart-list::-webkit-scrollbar-track {
  background: transparent;
}
.side-cart-list::-webkit-scrollbar-thumb {
  background: rgba(21, 21, 129, 0.15);
  border-radius: 2px;
}

.side-cart-item {
  display: flex !important;
  gap: 16px !important;
  padding: 16px 0 !important;
  border-bottom: 1px solid rgba(21, 21, 129, 0.06) !important;
  align-items: flex-start !important;
  position: relative !important;
}

.side-cart-item:last-child {
  border-bottom: none !important;
}

.side-cart-item .product-img {
  width: 105px !important;
  height: 70px !important;
  border-radius: 8px !important;
  object-fit: cover !important;
  flex-shrink: 0 !important;
  border: 1px solid rgba(21, 21, 129, 0.06) !important;
}

.side-cart-item .product-details {
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  padding-right: 20px !important; /* Spacing for delete button */
}

.side-cart-item .product-title {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  margin: 0 !important;
  line-height: 1.4 !important;
  letter-spacing: 0.02em !important;
}

.side-cart-item .product-title a {
  color: #151581 !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

.side-cart-item .product-title a:hover {
  color: #5465ff !important;
}

.side-cart-item .product-slot {
  font-size: 11px !important;
  color: #a1a1cd !important; /* Lavender Mist */
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.side-cart-item .product-price {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important;
  color: #292824 !important; /* Graphite */
  font-weight: 400 !important;
}

.side-cart-item .delete-item {
  position: absolute !important;
  top: 14px !important;
  right: 0 !important;
  color: #a1a1cd !important;
  font-size: 20px !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
  line-height: 1 !important;
}

.side-cart-item .delete-item:hover {
  color: #f25c75 !important; /* Alert Rose */
}

/* Side Cart Footer Section */
.side-cart-footer {
  border-top: 1px solid rgba(21, 21, 129, 0.08) !important;
  padding-top: 20px !important;
  margin-top: auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.side-cart-subtotal {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.side-cart-subtotal .label {
  font-family: 'Inter Tight', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: #292824 !important;
}

.side-cart-subtotal .amount {
  font-family: 'Inter', sans-serif !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  color: #151581 !important; /* Indigo Ink */
}

.side-cart-actions {
  display: flex !important;
  gap: 12px !important;
}

.side-cart-actions .btn {
  flex: 1 !important;
  height: 42px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 13px !important;
  letter-spacing: 0.04em !important;
}

/* Side Cart Button Overrides */
.side-cart-actions .btn-white {
  background-color: transparent !important;
  color: #151581 !important;
  border: 1px solid #151581 !important;
}

.side-cart-actions .btn-white:hover {
  background-color: #f6f6fa !important;
}

.side-cart-actions .btn-primary {
  background-color: #151581 !important;
  color: #ffffff !important;
  border: 1px solid #151581 !important;
}

.side-cart-actions .btn-primary:hover {
  background-color: #5465ff !important;
  border-color: #5465ff !important;
}

/* Minimalist Drawer Close Button */
.close-offcanvas {
  border: none !important;
  background: none !important;
  font-size: 28px !important;
  color: #151581 !important;
  line-height: 1 !important;
  padding: 0 !important;
  cursor: pointer !important;
  transition: color 0.2s ease !important;
}

.close-offcanvas:hover {
  color: #5465ff !important;
}

/* From resources/views/frontend/layouts/footer.blade.php */
/* --- Elanique Aesthetics — Luxury Spa & Wellness Footer --- */
	
	/* Main Footer block */
	.footer-style5-revamped {
		background-color: #ffffff;
		width: 100%;
		display: block;
	}
	
	/* Part 1: Top Section styling */
	.footer-style5-revamped .footer-top-section {
		padding: 100px 0 90px 0 !important;
		background-color: #ffffff !important;
		border-top: 1px solid rgba(21, 21, 129, 0.08) !important;
	}
	
	.brand-manifesto .brand-symbol {
		font-family: 'Geist', sans-serif;
		font-size: 11px;
		letter-spacing: 0.3em;
		color: #a1a1cd;
		text-transform: uppercase;
		font-weight: 500;
	}
	
	.brand-manifesto .footer-logo-img {
		display: block;
		opacity: 1 !important;
		filter: drop-shadow(0 2px 12px rgba(21, 21, 129, 0.12)) !important;
		transition: all 0.3s ease !important;
		max-width: 100%;
		height: auto;
	}

	.brand-manifesto .footer-logo-img:hover {
		opacity: 0.9 !important;
		transform: scale(1.02) !important;
	}
	
	.brand-manifesto .manifesto-text {
		color: #555552 !important;
		font-family: 'Inter', sans-serif !important;
		font-size: 14px !important;
		line-height: 1.8 !important;
		letter-spacing: 0.02em !important;
		max-width: 480px;
	}
	
	/* Newsletter Ritual Card styling */
	.newsletter-ritual-card {
		background: #f6f6fa;
		border-radius: 16px;
		padding: 40px;
		border: 1px solid rgba(21, 21, 129, 0.04);
		box-shadow: 0 8px 30px rgba(21, 21, 129, 0.02);
	}
	
	.newsletter-ritual-card .ritual-title {
		font-family: 'Inter Tight', sans-serif !important;
		color: #151581 !important;
		font-weight: 400 !important;
		font-size: 20px !important;
		letter-spacing: -0.02em;
		margin: 0 !important;
	}
	
	.newsletter-ritual-card .ritual-desc {
		color: #555552 !important;
		font-family: 'Inter', sans-serif !important;
		font-size: 13px !important;
		line-height: 1.7 !important;
		letter-spacing: 0.02em !important;
	}
	
	/* Input line styling */
	.subscribe-form-revamped .input-group-minimal {
		position: relative;
		border-bottom: 1px solid rgba(21, 21, 129, 0.15);
		padding-bottom: 8px;
		display: flex;
		align-items: center;
		transition: border-color 0.3s ease;
	}
	
	.subscribe-form-revamped .input-group-minimal:focus-within {
		border-color: #151581;
	}
	
	.subscribe-form-revamped .input-group-minimal input {
		background: transparent !important;
		border: none !important;
		box-shadow: none !important;
		color: #151581 !important;
		font-size: 13px !important;
		padding: 0 !important;
		width: 100%;
		letter-spacing: 0.04em;
	}
	
	.subscribe-form-revamped .input-group-minimal input::placeholder {
		color: #a1a1cd;
		opacity: 0.7;
	}
	
	.subscribe-form-revamped .submit-arrow-btn {
		background: transparent !important;
		border: none !important;
		color: #151581 !important;
		cursor: pointer;
		padding: 0 5px !important;
		transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
	}
	
	.subscribe-form-revamped .submit-arrow-btn:hover {
		color: #5465ff !important;
		transform: translateX(3px);
	}
	
	.subscribe-form-revamped .newsletter-disclaimer {
		font-size: 10px;
		color: #949392;
		line-height: 1.5;
		display: block;
		letter-spacing: 0.01em;
	}
	
	/* Part 2: Middle links section styling */
	.footer-style5-revamped .footer-links-section {
		padding: 80px 0 80px 0 !important;
		background-color: #f6f6fa !important;
		border-top: 1px solid rgba(21, 21, 129, 0.05) !important;
	}
	
	.link-widget .widget-header {
		margin-bottom: 24px;
		border-bottom: 1px solid rgba(21, 21, 129, 0.05);
		padding-bottom: 12px;
	}
	
	.link-widget .widget-title {
		color: #151581 !important;
		font-family: 'Inter Tight', sans-serif !important;
		font-weight: 500 !important;
		font-size: 13px !important;
		text-transform: uppercase !important;
		letter-spacing: 0.15em !important;
		margin: 0 !important;
	}
	
	.link-widget .widget-links {
		list-style: none !important;
		padding: 0 !important;
		margin: 0 !important;
	}
	
	.link-widget .widget-links li {
		margin-bottom: 12px;
	}
	
	.link-widget .widget-links a {
		color: #3a3a38 !important;
		font-family: 'Inter Tight', 'Inter', sans-serif !important;
		font-weight: 400 !important;
		font-size: 13px !important;
		letter-spacing: 0.04em !important;
		text-decoration: none !important;
		transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
		display: inline-block !important;
	}
	
	.link-widget .widget-links a:hover {
		color: #5465ff !important;
		transform: translateX(4px) !important;
	}
	
	.link-widget .widget-text {
		color: #555552 !important;
		font-size: 13px !important;
		line-height: 1.7 !important;
		font-family: 'Inter', sans-serif !important;
		margin: 0 !important;
	}
	
	.link-widget .widget-text i {
		color: #151581;
	}
	
	.link-widget .contact-email-link {
		color: #555552 !important;
		text-decoration: none !important;
		transition: color 0.2s ease;
	}
	
	.link-widget .contact-email-link:hover {
		color: #5465ff !important;
	}
	
	/* Part 3: Bottom Copyright section styling */
	.footer-style5-revamped .footer-bottom-section {
		background-color: #f6f6fa !important;
		border-top: 1px solid rgba(21, 21, 129, 0.05) !important;
		padding: 30px 0 !important;
	}
	
	.footer-style5-revamped .bottom-inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		flex-wrap: wrap;
		gap: 16px;
	}
	
	.footer-style5-revamped .copyright-text {
		color: #777775 !important;
		font-family: 'Inter', sans-serif !important;
		font-size: 12px !important;
		letter-spacing: 0.03em !important;
	}
	
	.footer-style5-revamped .copyright-link {
		color: inherit !important;
		text-decoration: none !important;
		transition: color 0.25s ease !important;
		font-weight: inherit !important;
	}
	
	.footer-style5-revamped .copyright-link:hover {
		color: #151581 !important;
		text-decoration: underline !important;
	}
	
	/* Bottom Image: completely visible (no filters) and larger (max-height: 24px) */
	.footer-style5-revamped .payment-gateways-wrap .payment-img {
		max-height: 24px !important;
		opacity: 1 !important;
		filter: none !important;
	}
	
	/* Success Message styling */
	.success_message {
		display: none;
		font-size: 13px !important;
		letter-spacing: 0.03em !important;
		margin-top: 12px !important;
		font-family: 'Inter', sans-serif !important;
	}
	
	.success_message.show {
		display: block !important;
		color: #00bb76 !important; /* Verified Green */
	}
	
	/* Fixed back-to-top button - removed from document flow to eliminate blank space */
	.back-to-top {
		position: fixed !important;
		bottom: 30px !important;
		right: 30px !important;
		z-index: 9999 !important;
		background-color: #ffffff !important;
		color: #151581 !important;
		border: 1px solid rgba(21, 21, 129, 0.15) !important;
		border-radius: 50% !important;
		width: 44px !important;
		height: 44px !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
		box-shadow: 0 4px 20px rgba(21, 21, 129, 0.05) !important;
		transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
	}
	
	.back-to-top:hover {
		background-color: #f6f6fa !important;
		color: #5465ff !important;
		border-color: #151581 !important;
		transform: translateY(-2px) !important;
	}
	
	/* --- Custom Browser Side Scrollbar Design --- */
	html::-webkit-scrollbar,
	body::-webkit-scrollbar {
		width: 10px !important;
		height: 10px !important;
	}
	
	html::-webkit-scrollbar-track,
	body::-webkit-scrollbar-track {
		background: #ffffff !important;
		border-left: 1px solid rgba(21, 21, 129, 0.04) !important;
	}
	
	html::-webkit-scrollbar-thumb,
	body::-webkit-scrollbar-thumb {
		background: rgba(21, 21, 129, 0.12) !important;
		border-radius: 100px !important;
		border: 2px solid #ffffff !important;
		transition: background-color 0.25s ease !important;
	}
	
	html::-webkit-scrollbar-thumb:hover,
	body::-webkit-scrollbar-thumb:hover {
		background: rgba(21, 21, 129, 0.25) !important;
	}
	
	/* Responsive Adjustments */
	@media (max-width: 991px) {
		.footer-style5-revamped .footer-top-section {
			padding: 70px 0 60px 0 !important;
		}
		.footer-style5-revamped .footer-links-section {
			padding: 60px 0 50px 0 !important;
		}
		.newsletter-ritual-card {
			margin-top: 40px;
			padding: 30px;
		}
		.link-widget {
			margin-bottom: 35px !important;
		}
		.footer-style5-revamped .bottom-inner {
			flex-direction: column !important;
			text-align: center !important;
		}
	}

/* From resources/views/frontend/pages/topup.blade.php */
/* --- Zen Wallet Top-Up Page Redesign --- */

    .zen-topup-section {
        padding: 80px 0 !important;
        background-color: #f6f6fa !important;
    }

    /* Balance Dashboard Card */
    .zen-balance-card {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 20px !important;
        padding: 24px 30px !important;
        box-shadow: 0 15px 45px rgba(21, 21, 129, 0.03) !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .zen-balance-info {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .zen-balance-icon-wrap {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background-color: rgba(21, 21, 129, 0.02);
        border: 1px solid rgba(21, 21, 129, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #151581;
        font-size: 22px;
        flex-shrink: 0;
    }

    .zen-balance-details {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .zen-balance-details .label {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #a1a1cd;
        font-weight: 600;
    }

    .zen-balance-details .value {
        font-family: 'Inter', sans-serif;
        font-size: 22px;
        font-weight: 700;
        color: #151581;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .zen-balance-details .value i {
        color: #f1c40f;
    }

    .zen-balance-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-weight: 500;
        color: #27ae60;
        background-color: rgba(39, 174, 96, 0.06);
        padding: 6px 16px;
        border-radius: 30px;
        border: 1px solid rgba(39, 174, 96, 0.12);
    }

    .zen-balance-badge .status-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        display: inline-block;
    }

    .zen-balance-badge .status-dot.green {
        background-color: #27ae60;
        box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.2);
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.4); }
        70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(39, 174, 96, 0); }
        100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(39, 174, 96, 0); }
    }

    /* Page Intro */
    .brand-symbol {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        letter-spacing: 0.3em;
        color: #a1a1cd;
        text-transform: uppercase;
        font-weight: 600;
    }

    .section-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 300 !important;
        font-size: 2.2rem !important;
        color: #151581 !important;
        margin-bottom: 15px !important;
    }

    .section-desc {
        max-width: 580px;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        line-height: 1.6;
        color: #777775;
    }

    /* Interactive Clickable Package Cards */
    .zen-package-card {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 20px !important;
        padding: 35px 25px !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 10px 30px rgba(21, 21, 129, 0.01) !important;
        position: relative;
        overflow: hidden;
    }

    .zen-package-card.clickable {
        cursor: pointer;
    }

    .zen-package-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(21, 21, 129, 0.06) !important;
        border-color: rgba(21, 21, 129, 0.15) !important;
    }

    .zen-package-card.featured {
        border: 1px solid rgba(21, 21, 129, 0.15) !important;
        background: linear-gradient(180deg, #ffffff 0%, rgba(21, 21, 129, 0.01) 100%) !important;
    }

    .zen-package-card.featured:hover {
        border-color: #f1c40f !important;
    }

    .package-badge {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        padding: 5px 16px;
        border-radius: 0 0 12px 12px;
        font-family: 'Inter', sans-serif;
        font-size: 9.5px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #ffffff;
    }

    .package-badge.std { background-color: #a1a1cd; }
    .package-badge.prem { background-color: #151581; }
    .package-badge.elite { background-color: #5465ff; }
    .package-badge.vip { background-color: #9f73e6; }

    .package-icon {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin: 10px auto 20px;
        background-color: rgba(21, 21, 129, 0.02);
        border: 1px solid rgba(21, 21, 129, 0.05);
    }

    .package-icon.std { color: #a1a1cd; }
    .package-icon.prem { color: #151581; background-color: rgba(21, 21, 129, 0.05); }
    .package-icon.elite { color: #5465ff; }
    .package-icon.vip { color: #9f73e6; }

    .package-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 500 !important;
        font-size: 16px !important;
        color: #151581 !important;
        margin-bottom: 8px !important;
    }

    .package-price {
        font-family: 'Inter', sans-serif;
        font-size: 20px;
        font-weight: 700;
        color: #292824;
        margin-bottom: 15px;
    }

    .package-price small {
        font-size: 11px;
        font-weight: 500;
        color: #a1a1cd;
        margin-left: 2px;
    }

    .package-points {
        background: #f6f6fa;
        padding: 10px 15px;
        border-radius: 10px;
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        color: #151581;
        font-size: 13px;
        display: inline-block;
        margin-bottom: 18px;
        border: 1px solid rgba(21, 21, 129, 0.03);
    }

    .featured-pills {
        background: rgba(21, 21, 129, 0.04);
        border-color: rgba(21, 21, 129, 0.08);
    }

    .package-desc {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        line-height: 1.5;
        color: #777775;
        margin-bottom: 15px;
    }

    .package-click-hint {
        font-family: 'Inter', sans-serif;
        font-size: 10.5px;
        font-weight: 600;
        color: #a1a1cd;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        opacity: 0;
        transform: translateY(5px);
        transition: all 0.3s ease;
        margin-top: 10px;
    }

    .zen-package-card:hover .package-click-hint {
        opacity: 1;
        transform: translateY(0);
        color: #151581;
    }

    /* Custom Recharge Card */
    .zen-recharge-card {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 24px !important;
        padding: 40px !important;
        box-shadow: 0 15px 45px rgba(21, 21, 129, 0.03) !important;
    }

    .recharge-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 400 !important;
        font-size: 18px !important;
        color: #151581 !important;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        border-bottom: 1px solid rgba(21, 21, 129, 0.06);
        padding-bottom: 15px;
        margin-bottom: 25px !important;
        text-align: center;
    }

    .form-label {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #a1a1cd;
        margin-bottom: 8px;
    }

    .zen-input-wrapper {
        position: relative;
        border-bottom: 2px solid rgba(21, 21, 129, 0.1);
        padding-bottom: 8px;
        transition: border-color 0.3s ease;
        display: flex;
        align-items: center;
    }

    .zen-input-wrapper:focus-within {
        border-color: #151581;
    }

    .currency-symbol {
        font-family: 'Inter', sans-serif;
        font-size: 22px;
        font-weight: 600;
        color: #151581;
        margin-right: 8px;
    }

    .zen-input-wrapper input {
        background: transparent;
        border: none;
        font-family: 'Inter', sans-serif;
        font-size: 24px;
        font-weight: 700;
        color: #151581;
        width: 100%;
        outline: none;
        padding: 0;
        box-shadow: none;
    }

    /* Interactive Points Calculator Preview Card */
    .zen-preview-card {
        background: #f6f6fa !important;
        border-radius: 16px !important;
        padding: 24px !important;
        border: 1px solid rgba(21, 21, 129, 0.04) !important;
    }

    .preview-label {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #a1a1cd;
        font-weight: 600;
    }

    .preview-value {
        font-family: 'Inter Tight', sans-serif;
        font-size: 32px;
        font-weight: 700;
        color: #151581;
        margin: 0 0 10px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .preview-value i {
        color: #f1c40f;
    }

    .zen-preview-card #multiplierBadge {
        background-color: #a1a1cd;
        color: #ffffff;
        padding: 6px 14px;
        border-radius: 30px;
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        font-weight: 600;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        border: none;
        box-shadow: none;
        display: inline-block;
    }

    .btn-checkout {
        background-color: #151581 !important;
        border: 1px solid #151581 !important;
        color: #ffffff !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-size: 13px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.1em !important;
        padding: 15px 24px !important;
        border-radius: 30px !important;
        width: 100%;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 0 4px 15px rgba(21, 21, 129, 0.1) !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
        cursor: pointer;
    }

    .btn-checkout:hover {
        background-color: #f1c40f !important;
        border-color: #f1c40f !important;
        color: #151581 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(241, 196, 15, 0.2) !important;
    }

    @media (max-width: 767px) {
        .zen-balance-card {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
            padding: 20px !important;
        }
        .zen-recharge-card {
            padding: 25px !important;
        }
    }

/* From resources/views/frontend/pages/cart.blade.php */
/* --- Zen Cart Page Redesign --- */

    .zen-cart-section {
        padding: 80px 0 !important;
        background-color: #f6f6fa !important;
    }

    /* Zen Cart Item Cards */
    .zen-cart-items-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .zen-cart-item-card {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 16px !important;
        padding: 24px !important;
        box-shadow: 0 10px 30px rgba(21, 21, 129, 0.02) !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        transition: all 0.3s ease;
    }

    .zen-cart-item-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(21, 21, 129, 0.04) !important;
        border-color: rgba(21, 21, 129, 0.1) !important;
    }

    .zen-cart-item-left {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-grow: 1;
    }

    .zen-cart-item-image {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: 10px;
        border: 1px solid rgba(21, 21, 129, 0.04);
        flex-shrink: 0;
    }

    /* Gold Coin Visual for Virtual Credits */
    .zen-cart-item-credits-visual {
        width: 80px;
        height: 80px;
        border-radius: 10px;
        background: linear-gradient(135deg, rgba(241, 196, 15, 0.1) 0%, rgba(21, 21, 129, 0.02) 100%);
        border: 1px solid rgba(241, 196, 15, 0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
    }

    .zen-cart-item-credits-visual i {
        color: #f1c40f;
        font-size: 24px;
        animation: pulseCoin 2s infinite alternate;
    }

    @keyframes pulseCoin {
        0% { transform: scale(1); filter: drop-shadow(0 0 0 rgba(241, 196, 15, 0)); }
        100% { transform: scale(1.1); filter: drop-shadow(0 0 8px rgba(241, 196, 15, 0.4)); }
    }

    .zen-cart-item-credits-visual .credits-badge {
        font-family: 'Inter', sans-serif;
        font-size: 9px;
        font-weight: 700;
        color: #151581;
        margin-top: 5px;
        letter-spacing: 0.05em;
    }

    .zen-cart-item-details {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .zen-cart-item-details .item-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 500 !important;
        font-size: 16px !important;
        color: #151581 !important;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .zen-cart-item-details .item-title:hover {
        color: #f1c40f !important;
    }

    .zen-cart-item-details .item-meta {
        font-family: 'Inter', sans-serif;
        font-size: 12.5px;
        line-height: 1.6;
        color: #777775;
    }

    .zen-cart-item-details .item-meta span {
        display: block;
    }

    .zen-cart-item-right {
        display: flex;
        align-items: center;
        gap: 30px;
        flex-shrink: 0;
    }

    .zen-cart-item-price {
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 600;
        color: #151581;
    }

    .zen-cart-item-delete {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-color: rgba(231, 76, 60, 0.02);
        border: 1px solid rgba(231, 76, 60, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #e74c3c;
        font-size: 14px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .zen-cart-item-delete:hover {
        background-color: #e74c3c;
        border-color: #e74c3c;
        color: #ffffff;
        transform: scale(1.08);
    }

    /* Cart Summary Card */
    .zen-cart-summary-card {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 20px !important;
        padding: 30px !important;
        box-shadow: 0 15px 45px rgba(21, 21, 129, 0.03) !important;
        position: sticky;
        top: 100px;
    }

    .summary-card-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 300 !important;
        font-size: 1.8rem !important;
        color: #151581 !important;
        margin-bottom: 24px !important;
        border-bottom: 1px solid rgba(21, 21, 129, 0.06);
        padding-bottom: 15px;
    }

    .zen-summary-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
        font-family: 'Inter', sans-serif;
    }

    .zen-summary-row .label {
        font-size: 14px;
        color: #777775;
    }

    .zen-summary-row .value {
        font-size: 14px;
        font-weight: 500;
        color: #292824;
    }

    .zen-summary-divider {
        height: 1px;
        background-color: rgba(21, 21, 129, 0.06);
        margin: 20px 0;
    }

    .zen-summary-row.total {
        margin-bottom: 30px;
    }

    .zen-summary-row.total .label {
        font-size: 15px;
        font-weight: 600;
        color: #151581;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .zen-summary-row.total .value {
        font-size: 20px;
        font-weight: 700;
        color: #151581;
    }

    .btn-checkout {
        background-color: #151581 !important;
        border: 1px solid #151581 !important;
        color: #ffffff !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-size: 13px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.1em !important;
        padding: 14px 24px !important;
        border-radius: 30px !important;
        width: 100%;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 0 4px 15px rgba(21, 21, 129, 0.1) !important;
        display: inline-block;
        text-align: center;
        text-decoration: none;
    }

    .btn-checkout:hover {
        background-color: #f1c40f !important;
        border-color: #f1c40f !important;
        color: #151581 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(241, 196, 15, 0.2) !important;
    }

    .btn-return {
        display: block;
        text-align: center;
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        color: #777775;
        text-decoration: none;
        margin-top: 20px;
        transition: color 0.3s ease;
    }

    .btn-return:hover {
        color: #151581;
    }

    /* Empty Cart Styles */
    .zen-empty-cart {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 20px !important;
        padding: 60px 40px !important;
        box-shadow: 0 15px 45px rgba(21, 21, 129, 0.03) !important;
        text-align: center;
    }

    .zen-empty-cart .icon-wrap {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: rgba(21, 21, 129, 0.02);
        border: 1px solid rgba(21, 21, 129, 0.06);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #a1a1cd;
        font-size: 32px;
        margin: 0 auto 24px;
    }

    .zen-empty-cart .empty-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 300 !important;
        font-size: 1.8rem !important;
        color: #151581 !important;
        margin-bottom: 12px !important;
    }

    .zen-empty-cart .empty-desc {
        font-family: 'Inter', sans-serif !important;
        font-size: 14px !important;
        color: #777775 !important;
        margin-bottom: 30px !important;
    }

    @media (max-width: 991px) {
        .zen-cart-summary-card {
            margin-top: 30px;
            position: relative;
            top: 0;
        }
        .zen-cart-item-card {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }
        .zen-cart-item-right {
            width: 100%;
            justify-content: space-between;
            border-top: 1px solid rgba(21, 21, 129, 0.04);
            padding-top: 15px;
        }
    }

/* From resources/views/frontend/pages/servicecart.blade.php */
/* --- Zen Redeem Cart Page Redesign --- */

    .zen-cart-section {
        padding: 80px 0 !important;
        background-color: #f6f6fa !important;
    }

    /* Balance Dashboard Card */
    .zen-balance-card {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 20px !important;
        padding: 24px 30px !important;
        box-shadow: 0 15px 45px rgba(21, 21, 129, 0.03) !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .zen-balance-info {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .zen-balance-icon-wrap {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        background-color: rgba(21, 21, 129, 0.02);
        border: 1px solid rgba(21, 21, 129, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #151581;
        font-size: 22px;
        flex-shrink: 0;
    }

    .zen-balance-details {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .zen-balance-details .label {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #a1a1cd;
        font-weight: 600;
    }

    .zen-balance-details .value {
        font-family: 'Inter', sans-serif;
        font-size: 22px;
        font-weight: 700;
        color: #151581;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .zen-balance-details .value i {
        color: #f1c40f;
    }

    .btn-topup-outline {
        background-color: transparent !important;
        border: 1px solid rgba(21, 21, 129, 0.15) !important;
        color: #151581 !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-size: 12px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.08em !important;
        padding: 12px 24px !important;
        border-radius: 30px !important;
        transition: all 0.3s ease !important;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
    }

    .btn-topup-outline:hover {
        border-color: #f1c40f !important;
        color: #f1c40f !important;
        transform: translateY(-1px);
    }

    /* Items Ledger Cards */
    .zen-cart-items-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .zen-cart-item-card {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 16px !important;
        padding: 24px !important;
        box-shadow: 0 10px 30px rgba(21, 21, 129, 0.02) !important;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        transition: all 0.3s ease;
    }

    .zen-cart-item-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 40px rgba(21, 21, 129, 0.04) !important;
        border-color: rgba(21, 21, 129, 0.1) !important;
    }

    .zen-cart-item-left {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-grow: 1;
    }

    .zen-cart-item-image {
        width: 120px;
        height: 80px;
        object-fit: cover;
        border-radius: 12px;
        border: 1px solid rgba(21, 21, 129, 0.04);
        flex-shrink: 0;
    }

    .zen-cart-item-details {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .zen-cart-item-details .item-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 500 !important;
        font-size: 16px !important;
        color: #151581 !important;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .zen-cart-item-details .item-title:hover {
        color: #f1c40f !important;
    }

    .zen-cart-item-details .item-meta {
        font-family: 'Inter', sans-serif;
        font-size: 12.5px;
        line-height: 1.6;
        color: #777775;
    }

    .zen-cart-item-details .item-meta span {
        display: block;
    }

    .zen-cart-item-right {
        display: flex;
        align-items: center;
        gap: 30px;
        flex-shrink: 0;
    }

    .zen-cart-item-price {
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        font-weight: 600;
        color: #151581;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .zen-cart-item-price i {
        color: #f1c40f;
    }

    .zen-cart-item-delete {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background-color: rgba(231, 76, 60, 0.02);
        border: 1px solid rgba(231, 76, 60, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #e74c3c;
        font-size: 14px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .zen-cart-item-delete:hover {
        background-color: #e74c3c;
        border-color: #e74c3c;
        color: #ffffff;
        transform: scale(1.08);
    }

    /* Cart Summary Card */
    .zen-cart-summary-card {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 20px !important;
        padding: 30px !important;
        box-shadow: 0 15px 45px rgba(21, 21, 129, 0.03) !important;
        position: sticky;
        top: 100px;
    }

    .summary-card-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 300 !important;
        font-size: 1.8rem !important;
        color: #151581 !important;
        margin-bottom: 24px !important;
        border-bottom: 1px solid rgba(21, 21, 129, 0.06);
        padding-bottom: 15px;
    }

    .zen-summary-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
        font-family: 'Inter', sans-serif;
    }

    .zen-summary-row .label {
        font-size: 14px;
        color: #777775;
    }

    .zen-summary-row .value {
        font-size: 20px;
        font-weight: 700;
        color: #151581;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .zen-summary-row .value i {
        color: #f1c40f;
    }

    /* Live Sufficiency Alerts */
    .zen-status-alert {
        padding: 16px;
        border-radius: 12px;
        display: flex;
        gap: 12px;
        align-items: flex-start;
        margin-bottom: 24px;
        border: 1px solid transparent;
    }

    .zen-status-alert.sufficient {
        background-color: rgba(46, 204, 113, 0.05);
        border-color: rgba(46, 204, 113, 0.12);
    }

    .zen-status-alert.sufficient .icon {
        color: #2ecc71;
        font-size: 18px;
    }

    .zen-status-alert.sufficient .title {
        color: #2ecc71;
        font-size: 13px;
        font-weight: 600;
        display: block;
        margin-bottom: 4px;
    }

    .zen-status-alert.insufficient {
        background-color: rgba(231, 76, 60, 0.05);
        border-color: rgba(231, 76, 60, 0.12);
    }

    .zen-status-alert.insufficient .icon {
        color: #e74c3c;
        font-size: 18px;
    }

    .zen-status-alert.insufficient .title {
        color: #e74c3c;
        font-size: 13px;
        font-weight: 600;
        display: block;
        margin-bottom: 4px;
    }

    .zen-status-alert .desc {
        font-family: 'Inter', sans-serif;
        font-size: 11.5px;
        line-height: 1.4;
        color: #777775;
    }

    .btn-checkout {
        background-color: #151581 !important;
        border: 1px solid #151581 !important;
        color: #ffffff !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-size: 13px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.1em !important;
        padding: 14px 24px !important;
        border-radius: 30px !important;
        width: 100%;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 0 4px 15px rgba(21, 21, 129, 0.1) !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
        cursor: pointer;
    }

    .btn-checkout:hover {
        background-color: #f1c40f !important;
        border-color: #f1c40f !important;
        color: #151581 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(241, 196, 15, 0.2) !important;
    }

    .btn-checkout.disabled {
        background-color: #e9ecef !important;
        border-color: #dee2e6 !important;
        color: #adb5bd !important;
        box-shadow: none !important;
        cursor: not-allowed;
    }

    .btn-checkout.disabled:hover {
        transform: none !important;
        background-color: #e9ecef !important;
        border-color: #dee2e6 !important;
        color: #adb5bd !important;
        box-shadow: none !important;
    }

    .btn-return {
        display: block;
        text-align: center;
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        color: #777775;
        text-decoration: none;
        margin-top: 20px;
        transition: color 0.3s ease;
    }

    .btn-return:hover {
        color: #151581;
    }

    /* Guest Guard and Empty States */
    .zen-gate-card {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 20px !important;
        padding: 60px 40px !important;
        box-shadow: 0 15px 45px rgba(21, 21, 129, 0.03) !important;
        text-align: center;
    }

    .zen-gate-card .icon-wrap {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: rgba(21, 21, 129, 0.02);
        border: 1px solid rgba(21, 21, 129, 0.06);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #a1a1cd;
        font-size: 32px;
        margin: 0 auto 24px;
    }

    .zen-gate-card .gate-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 300 !important;
        font-size: 1.8rem !important;
        color: #151581 !important;
        margin-bottom: 12px !important;
    }

    .zen-gate-card .gate-desc {
        font-family: 'Inter', sans-serif !important;
        font-size: 14px !important;
        color: #777775 !important;
        margin-bottom: 30px !important;
    }

    /* Zen Badge and Header Elements */
    .zen-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(21, 21, 129, 0.03) !important;
        border: 1px solid rgba(21, 21, 129, 0.05) !important;
        padding: 4px 12px !important;
        border-radius: 20px !important;
    }

    .zen-badge .symbol {
        font-family: 'Noto Serif JP', serif;
        font-size: 11px;
        font-weight: 600;
        color: #f1c40f !important;
    }

    .zen-badge .line {
        width: 12px;
        height: 1px;
        background: rgba(21, 21, 129, 0.15);
        margin: 0 8px;
    }

    .zen-badge .text {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: #151581 !important;
        font-weight: 500;
    }

    @media (max-width: 991px) {
        .zen-cart-summary-card {
            margin-top: 30px;
            position: relative;
            top: 0;
        }
        .zen-cart-item-card {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }
        .zen-cart-item-right {
            width: 100%;
            justify-content: space-between;
            border-top: 1px solid rgba(21, 21, 129, 0.04);
            padding-top: 15px;
        }
    }

/* From resources/views/frontend/pages/checkout.blade.php */
/* --- Zen Checkout Page Redesign --- */

    .zen-checkout-section {
        padding: 80px 0 !important;
        background-color: #f6f6fa !important;
    }

    .zen-checkout-card {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 20px !important;
        padding: 40px !important;
        box-shadow: 0 15px 45px rgba(21, 21, 129, 0.03) !important;
        margin-bottom: 30px;
    }

    .checkout-card-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 300 !important;
        font-size: 1.8rem !important;
        color: #151581 !important;
        margin-bottom: 0 !important;
    }

    /* Form Styles */
    .zen-checkout-form .form-group {
        margin-bottom: 24px;
    }

    .zen-checkout-form .form-label {
        display: block;
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 600;
        color: #151581;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .zen-checkout-form .form-control {
        border: 1px solid rgba(21, 21, 129, 0.1);
        border-radius: 8px;
        padding: 12px 16px;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        color: #292824;
        transition: all 0.3s ease;
        box-shadow: none !important;
    }

    .zen-checkout-form label.error {
        display: block !important;
        width: 100% !important;
        color: #dc3545 !important;
        font-size: 12px !important;
        margin-top: 5px !important;
        font-family: 'Inter', sans-serif;
    }

    .zen-checkout-form .form-control:focus {
        border-color: #f1c40f !important;
        box-shadow: 0 4px 12px rgba(241, 196, 15, 0.08) !important;
        background-color: #ffffff !important;
    }

    .zen-checkout-form .form-control::placeholder {
        color: #a1a1cd !important;
        opacity: 0.6;
    }

    /* Country Select Picker Styles */
    .zen-checkout-form select.form-control {
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23151581' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
        background-repeat: no-repeat !important;
        background-position: right 16px center !important;
        background-size: 16px !important;
        padding-right: 40px !important;
        cursor: pointer;
    }

    /* Error Validation Message Styles */
    .zen-checkout-form label.error,
    .zen-checkout-form .text-danger {
        color: #e74c3c !important;
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        margin-top: 6px;
        display: block;
        font-weight: 500;
    }

    .zen-checkout-form .form-control.is-invalid,
    .zen-checkout-form input.error,
    .zen-checkout-form textarea.error {
        border-color: #e74c3c !important;
        background-color: rgba(231, 76, 60, 0.01) !important;
    }

    /* Summary Card Styles */
    .zen-cart-summary-card {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 20px !important;
        padding: 30px !important;
        box-shadow: 0 15px 45px rgba(21, 21, 129, 0.03) !important;
        margin-bottom: 30px;
    }

    .summary-card-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 300 !important;
        font-size: 1.8rem !important;
        color: #151581 !important;
        margin-bottom: 24px !important;
    }

    .zen-summary-items-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }

    .zen-summary-item-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 15px;
    }

    .zen-summary-item-details {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .zen-summary-item-details .item-name {
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: #292824;
    }

    .zen-summary-item-details .item-booking-meta {
        font-family: 'Inter', sans-serif;
        font-size: 11.5px;
        color: #151581;
        background-color: rgba(21, 21, 129, 0.03);
        border: 1px solid rgba(21, 21, 129, 0.06);
        padding: 4px 8px;
        border-radius: 6px;
        display: inline-flex;
        align-items: center;
        margin-top: 4px;
        line-height: 1.2;
    }

    .zen-summary-item-price {
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: #151581;
        flex-shrink: 0;
    }

    .zen-summary-divider {
        height: 1px;
        background-color: rgba(21, 21, 129, 0.06);
        margin: 20px 0;
    }

    .zen-summary-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
        font-family: 'Inter', sans-serif;
    }

    .zen-summary-row .label {
        font-size: 14px;
        color: #777775;
    }

    .zen-summary-row .value {
        font-size: 14px;
        font-weight: 500;
        color: #292824;
    }

    .zen-summary-row.total {
        margin-bottom: 24px;
    }

    .zen-summary-row.total .label {
        font-size: 15px;
        font-weight: 600;
        color: #151581;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .zen-summary-row.total .value {
        font-size: 20px;
        font-weight: 700;
        color: #151581;
    }

    /* Custom Checkboxes */
    .zen-checkout-check-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }

    .zen-checkout-check-item {
        display: flex;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .zen-checkout-check-item label.error {
        width: 100%;
        margin-left: 28px;
        margin-top: -8px;
    }

    .zen-checkout-check-item .form-check-input {
        width: 18px;
        height: 18px;
        border: 1px solid rgba(21, 21, 129, 0.15) !important;
        border-radius: 4px !important;
        background-color: #ffffff !important;
        margin-top: 2px !important;
        cursor: pointer;
        transition: all 0.2s ease;
        box-shadow: none !important;
        flex-shrink: 0;
    }

    .zen-checkout-check-item .form-check-input:checked {
        background-color: #151581 !important;
        border-color: #151581 !important;
    }

    .zen-checkout-check-item .form-check-label {
        font-family: 'Inter', sans-serif;
        font-size: 12.5px;
        color: #555552;
        cursor: pointer;
        line-height: 1.5;
        user-select: none;
    }

    .zen-checkout-check-item .form-check-label a {
        color: #151581;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .zen-checkout-check-item .form-check-label a:hover {
        color: #f1c40f;
    }

    .btn-checkout {
        background-color: #151581 !important;
        border: 1px solid #151581 !important;
        color: #ffffff !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-size: 13px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.1em !important;
        padding: 14px 24px !important;
        border-radius: 30px !important;
        width: 100%;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 0 4px 15px rgba(21, 21, 129, 0.1) !important;
        display: inline-block;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
    }

    .btn-checkout:hover {
        background-color: #f1c40f !important;
        border-color: #f1c40f !important;
        color: #151581 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(241, 196, 15, 0.2) !important;
    }

    /* Zen Badge and Header Elements */
    .zen-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(21, 21, 129, 0.03) !important;
        border: 1px solid rgba(21, 21, 129, 0.05) !important;
        padding: 4px 12px !important;
        border-radius: 20px !important;
    }

    .zen-badge .symbol {
        font-family: 'Noto Serif JP', serif;
        font-size: 11px;
        font-weight: 600;
        color: #f1c40f !important;
    }

    .zen-badge .line {
        width: 12px;
        height: 1px;
        background: rgba(21, 21, 129, 0.15);
        margin: 0 8px;
    }

    .zen-badge .text {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: #151581 !important;
        font-weight: 500;
    }

    @media (max-width: 991px) {
        .zen-checkout-card,
        .zen-cart-summary-card {
            padding: 30px !important;
        }
    }

/* From resources/views/frontend/pages/about-us.blade.php */
/* --- Elanique Aesthetics About Us Page (Luxury Spa Minimalist) --- */

    /* Section Styling */
    .elanique-hero-section,
    .elanique-values-section {
        padding: 80px 0 !important;
    }

    .elanique-hero-section {
        background-color: #ffffff !important;
    }

    .elanique-values-section {
        background-color: #f6f6fa !important;
    }

    /* Philosophy Badge */
    .philosophy-badge,
    .values-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(21, 21, 129, 0.03) !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        padding: 8px 16px !important;
        border-radius: 30px !important;
        gap: 8px;
    }

    .philosophy-badge .icon,
    .values-badge .icon {
        font-size: 16px;
        color: #151581;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .philosophy-badge .text,
    .values-badge .text {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: #151581 !important;
        font-weight: 600;
    }

    /* Philosophy Title */
    .philosophy-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 400 !important;
        font-size: 2.8rem !important;
        line-height: 1.2 !important;
        color: #151581 !important;
        letter-spacing: -0.02em !important;
    }

    /* Philosophy Divider */
    .philosophy-divider {
        width: 50px;
        height: 2px;
        background: linear-gradient(90deg, #151581 0%, rgba(21, 21, 129, 0.1) 100%);
        border-radius: 2px;
    }

    /* Philosophy Description */
    .philosophy-description {
        font-family: 'Inter', sans-serif !important;
        font-size: 15px !important;
        line-height: 1.8 !important;
        color: #555552 !important;
    }

    /* Spa Benefits List */
    .spa-benefits-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 24px;
        border-top: 1px solid rgba(21, 21, 129, 0.06);
        padding-top: 28px;
        margin-top: 28px;
    }

    .spa-benefits-list li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-family: 'Inter', sans-serif;
        font-size: 13.5px;
        color: #292824;
        font-weight: 500;
    }

    .spa-benefits-list .benefit-accent {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #151581;
        flex-shrink: 0;
    }

    /* Video Container (v2.mp4) */
    .elanique-video-container {
        position: relative;
        width: 100%;
        padding-right: 20px;
        padding-bottom: 20px;
    }

    .video-frame-accent {
        position: absolute;
        top: 20px;
        left: 20px;
        right: -20px;
        bottom: -20px;
        border: 1px solid rgba(21, 21, 129, 0.1);
        border-radius: 20px;
        z-index: 1;
        pointer-events: none;
    }

    .elanique-video-frame {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 10;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 12px 40px rgba(21, 21, 129, 0.08);
        z-index: 2;
        background-color: #0d0d52;
    }

    .spa-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .video-frame-border {
        position: absolute;
        top: 12px;
        left: 12px;
        right: 12px;
        bottom: 12px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 14px;
        pointer-events: none;
        z-index: 3;
    }

    /* Wellness Badge */
    .elanique-wellness-badge {
        position: absolute;
        bottom: -12px;
        right: 10px;
        background: #ffffff;
        padding: 10px 18px;
        border-radius: 25px;
        box-shadow: 0 8px 25px rgba(21, 21, 129, 0.1);
        border: 1px solid rgba(21, 21, 129, 0.08);
        display: flex;
        align-items: center;
        gap: 8px;
        z-index: 4;
        animation: floatBadge 3.5s ease-in-out infinite alternate;
    }

    .elanique-wellness-badge i {
        font-size: 16px;
        color: #151581;
    }

    .elanique-wellness-badge span {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-weight: 600;
        color: #151581;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    @keyframes floatBadge {
        0% { transform: translateY(0); }
        100% { transform: translateY(-8px); }
    }

    /* Philosophy Content */
    .elanique-philosophy-content {
        padding-left: 0;
    }

    /* Values Section Container */
    .values-content {
        padding-right: 20px;
    }

    /* Accordion Styles */
    .elanique-accordion {
        background: transparent;
    }

    .elanique-accordion .accordion-item {
        position: relative;
        background-color: transparent !important;
        border: none !important;
        border-bottom: 1px solid rgba(21, 21, 129, 0.08) !important;
        margin-bottom: 0;
        transition: all 0.3s ease;
    }

    .elanique-accordion .accordion-item::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 0;
        height: 2px;
        background: #151581;
        transition: width 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        z-index: 2;
    }

    .elanique-accordion .accordion-item:has(.accordion-button:not(.collapsed))::after {
        width: 100%;
    }

    .elanique-accordion .accordion-button {
        background-color: transparent !important;
        box-shadow: none !important;
        padding: 20px 0 !important;
        font-family: 'Inter Tight', sans-serif !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        color: #151581 !important;
        display: flex;
        align-items: center;
        gap: 14px;
        transition: all 0.3s ease;
    }

    .elanique-accordion .accordion-button::after {
        background-image: none !important;
        content: '\f067'; /* fontawesome plus */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: #a1a1cd;
        font-size: 14px;
        width: auto;
        height: auto;
        margin-left: auto;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .elanique-accordion .accordion-button:not(.collapsed)::after {
        content: '\f068'; /* fontawesome minus */
        color: #151581;
        transform: rotate(180deg);
    }

    .elanique-accordion .accordion-button:not(.collapsed) {
        color: #151581 !important;
    }

    .elanique-accordion .acc-num {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-weight: 700;
        color: #a1a1cd;
        letter-spacing: 0.08em;
        transition: color 0.3s ease;
        min-width: 30px;
    }

    .elanique-accordion .accordion-button:not(.collapsed) .acc-num {
        color: #151581;
    }

    .elanique-accordion .accordion-body {
        padding: 0 0 24px 44px !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 14px !important;
        line-height: 1.8 !important;
        color: #555552 !important;
    }

    /* Commitment Section */
    .elanique-commitment-section {
        background-color: #f6f6fa !important;
    }

    .commitment-content {
        padding-right: 0;
    }

    .commitment-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(21, 21, 129, 0.03) !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        padding: 8px 16px !important;
        border-radius: 30px !important;
        gap: 8px;
    }

    .commitment-badge .icon {
        font-size: 16px;
        color: #151581;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .commitment-badge .text {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: #151581 !important;
        font-weight: 600;
    }

    /* Stacked Gallery Container */
    .stacked-gallery-container {
        position: relative;
        width: 100%;
        height: 600px;
        padding-left: 20px;
    }

    .gallery-image {
        position: absolute;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 12px 40px rgba(21, 21, 129, 0.1);
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gallery-frame {
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        background-color: #f6f6fa;
    }

    .gallery-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .gallery-image:hover .gallery-img {
        transform: scale(1.05);
    }

    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(21, 21, 129, 0.05) 0%, transparent 100%);
        z-index: 2;
    }

    /* Image 1 (Top Left) */
    .gallery-image-1 {
        top: 0;
        left: 0;
        width: 55%;
        aspect-ratio: 16 / 10;
        z-index: 10;
    }

    /* Image 2 (Middle Right - Offset) */
    .gallery-image-2 {
        top: 150px;
        right: 0;
        width: 50%;
        aspect-ratio: 3 / 4;
        z-index: 20;
    }

    /* Image 3 (Bottom Left - Further Offset) */
    .gallery-image-3 {
        bottom: 0;
        left: 40px;
        width: 60%;
        aspect-ratio: 16 / 10;
        z-index: 15;
    }

    /* Hover Effects */
    .gallery-image-1:hover {
        transform: translateY(-8px);
    }

    .gallery-image-2:hover {
        transform: translateY(-8px);
    }

    .gallery-image-3:hover {
        transform: translateY(8px);
    }

    /* Gallery Wellness Badge */
    .gallery-wellness-badge {
        position: absolute;
        bottom: 30px;
        left: 30px;
        background: #ffffff;
        padding: 12px 20px;
        border-radius: 28px;
        box-shadow: 0 10px 30px rgba(21, 21, 129, 0.12);
        border: 1px solid rgba(21, 21, 129, 0.1);
        display: flex;
        align-items: center;
        gap: 10px;
        z-index: 30;
        animation: floatBadge 3.5s ease-in-out infinite alternate;
    }

    .gallery-wellness-badge i {
        font-size: 16px;
        color: #151581;
    }

    .gallery-wellness-badge span {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-weight: 600;
        color: #151581;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    /* Highlight Badge */
    .elanique-highlight-badge {
        position: absolute;
        bottom: -12px;
        left: 10px;
        background: #ffffff;
        padding: 10px 18px;
        border-radius: 25px;
        box-shadow: 0 8px 25px rgba(21, 21, 129, 0.1);
        border: 1px solid rgba(21, 21, 129, 0.08);
        display: flex;
        align-items: center;
        gap: 8px;
        z-index: 4;
        animation: floatBadgeLeft 3.5s ease-in-out infinite alternate;
    }

    .elanique-highlight-badge i {
        font-size: 16px;
        color: #151581;
    }

    .elanique-highlight-badge span {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-weight: 600;
        color: #151581;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    @keyframes floatBadgeLeft {
        0% { transform: translateY(0); }
        100% { transform: translateY(-8px); }
    }

    /* Responsive */
    @media (max-width: 991px) {
        .philosophy-title,
        .about-editorial-title {
            font-size: 2rem !important;
        }

        .commitment-content {
            padding-right: 0;
            margin-bottom: 30px;
        }

        .spa-benefits-list {
            grid-template-columns: 1fr;
            gap: 12px 0;
        }

        .elanique-video-container {
            padding-left: 0;
            padding-right: 0;
            margin-bottom: 30px;
        }

        .video-frame-accent {
            display: none;
        }

        .elanique-video-frame {
            max-width: 100%;
        }

        .elanique-wellness-badge {
            bottom: 10px;
            padding: 8px 14px;
            font-size: 11px;
        }

        .stacked-gallery-container {
            padding-left: 0;
            height: 500px;
        }
    }

    @media (max-width: 768px) {
        .stacked-gallery-container {
            height: 450px;
        }

        .gallery-image-1 {
            width: 70%;
            top: 0;
            left: 0;
        }

        .gallery-image-2 {
            width: 60%;
            top: 120px;
            right: 0;
        }

        .gallery-image-3 {
            width: 70%;
            bottom: 0;
            left: 20px;
        }

        .gallery-wellness-badge {
            bottom: 20px;
            left: 20px;
            padding: 10px 16px;
            font-size: 10px;
        }
    }

    @media (max-width: 576px) {
        .stacked-gallery-container {
            height: 380px;
        }

        .gallery-image-1 {
            width: 100%;
            top: 0;
            left: 0;
            aspect-ratio: 4 / 3;
            z-index: 10;
        }

        .gallery-image-2 {
            width: 75%;
            top: 100px;
            right: 0;
            aspect-ratio: 2 / 3;
            z-index: 20;
        }

        .gallery-image-3 {
            width: 85%;
            bottom: 0;
            left: 0;
            aspect-ratio: 4 / 3;
            z-index: 15;
        }

        .gallery-wellness-badge {
            bottom: 15px;
            left: 15px;
            padding: 8px 12px;
            font-size: 10px;
        }
    }

/* From resources/views/frontend/pages/contact.blade.php */
/* --- Zen Contact Page Redesign --- */

    .zen-contact-section {
        padding: 80px 0 !important;
        background-color: #f6f6fa !important;
    }

    /* Zen Badge and Header Elements */
    .zen-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(21, 21, 129, 0.03) !important;
        border: 1px solid rgba(21, 21, 129, 0.05) !important;
        padding: 4px 12px !important;
        border-radius: 20px !important;
    }

    .zen-badge .symbol {
        font-family: 'Noto Serif JP', serif;
        font-size: 11px;
        font-weight: 600;
        color: #f1c40f !important;
    }

    .zen-badge .line {
        width: 12px;
        height: 1px;
        background: rgba(21, 21, 129, 0.15);
        margin: 0 8px;
    }

    .zen-badge .text {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: #151581 !important;
        font-weight: 500;
    }

    .about-editorial-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 300 !important;
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
        color: #151581 !important;
        letter-spacing: -0.01em !important;
    }

    .about-manifesto-desc {
        font-family: 'Inter', sans-serif !important;
        font-size: 14px !important;
        line-height: 1.7 !important;
        color: #555552 !important;
    }

    /* Contact Card & Form Styles */
    .zen-contact-card {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 20px !important;
        padding: 40px !important;
        box-shadow: 0 15px 45px rgba(21, 21, 129, 0.03) !important;
    }

    .zen-contact-form .form-group {
        margin-bottom: 24px;
    }

    .zen-contact-form .form-label {
        display: block;
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 600;
        color: #151581;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .zen-contact-form .form-control {
        background-color: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.08) !important;
        border-radius: 8px !important;
        padding: 12px 16px !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 14px !important;
        color: #292824 !important;
        transition: all 0.3s ease !important;
        box-shadow: none !important;
    }

    .zen-contact-form .form-control:focus {
        border-color: #f1c40f !important;
        box-shadow: 0 4px 12px rgba(241, 196, 15, 0.08) !important;
        background-color: #ffffff !important;
    }

    .zen-contact-form .form-control::placeholder {
        color: #a1a1cd !important;
        opacity: 0.6;
    }

    /* Error Validation Message Styles */
    .zen-contact-form label.error {
        color: #e74c3c !important;
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        margin-top: 6px;
        display: block;
        font-weight: 500;
    }

    .zen-contact-form input.error,
    .zen-contact-form textarea.error {
        border-color: #e74c3c !important;
        background-color: rgba(231, 76, 60, 0.01) !important;
    }

    /* Elegant Button Submit */
    .zen-contact-form .btn-submit {
        background-color: #151581 !important;
        border: 1px solid #151581 !important;
        color: #ffffff !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-size: 12px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.12em !important;
        padding: 14px 36px !important;
        border-radius: 30px !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 0 4px 15px rgba(21, 21, 129, 0.1) !important;
        cursor: pointer;
        outline: none;
    }

    .zen-contact-form .btn-submit:hover {
        background-color: #f1c40f !important;
        border-color: #f1c40f !important;
        color: #151581 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(241, 196, 15, 0.2) !important;
    }

    /* Info Panel Styles */
    .zen-info-panel {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 20px !important;
        padding: 40px !important;
        box-shadow: 0 15px 45px rgba(21, 21, 129, 0.03) !important;
        position: relative;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .info-panel-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 300 !important;
        font-size: 1.8rem !important;
        color: #151581 !important;
        margin-bottom: 0 !important;
    }

    .zen-info-list {
        display: flex;
        flex-direction: column;
        gap: 32px;
        margin-top: 40px;
        margin-bottom: 40px;
        position: relative;
        z-index: 2;
    }

    .zen-info-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
    }

    .zen-info-icon-wrap {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background-color: rgba(21, 21, 129, 0.02);
        border: 1px solid rgba(21, 21, 129, 0.06);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #f1c40f;
        font-size: 18px;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .zen-info-item:hover .zen-info-icon-wrap {
        background-color: #151581;
        border-color: #151581;
        color: #ffffff;
        transform: translateY(-2px);
    }

    .zen-info-content {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .zen-info-content .label {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #a1a1cd;
        font-weight: 600;
    }

    .zen-info-content .value {
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        color: #555552;
        line-height: 1.5;
    }

    .zen-info-content .value-link {
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        color: #151581;
        text-decoration: none;
        transition: color 0.3s ease;
        font-weight: 500;
    }

    .zen-info-content .value-link:hover {
        color: #f1c40f;
    }

    /* Watermark */
    .zen-info-watermark {
        position: absolute;
        bottom: -20px;
        right: -10px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        opacity: 0.03;
        pointer-events: none;
        z-index: 1;
    }

    .zen-info-watermark .kanji {
        font-family: 'Noto Serif JP', serif;
        font-size: 120px;
        font-weight: 900;
        color: #151581;
        line-height: 1;
    }

    .zen-info-watermark .text {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        letter-spacing: 0.2em;
        color: #151581;
        font-weight: 600;
        margin-top: -10px;
        margin-right: 15px;
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
        .zen-contact-card,
        .zen-info-panel {
            padding: 30px !important;
        }
        .zen-info-panel {
            margin-top: 30px;
        }
        .about-editorial-title {
            font-size: 1.8rem !important;
        }
    }

/* From resources/views/frontend/pages/forget-pwd-form.blade.php */
/* --- Zen Auth Page Redesign --- */

    .zen-auth-section {
        padding: 80px 0 !important;
        background-color: #f6f6fa !important;
    }

    /* Zen Badge and Header Elements */
    .zen-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(21, 21, 129, 0.03) !important;
        border: 1px solid rgba(21, 21, 129, 0.05) !important;
        padding: 4px 12px !important;
        border-radius: 20px !important;
    }

    .zen-badge .symbol {
        font-family: 'Noto Serif JP', serif;
        font-size: 11px;
        font-weight: 600;
        color: #f1c40f !important;
    }

    .zen-badge .line {
        width: 12px;
        height: 1px;
        background: rgba(21, 21, 129, 0.15);
        margin: 0 8px;
    }

    .zen-badge .text {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: #151581 !important;
        font-weight: 500;
    }

    .about-editorial-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 300 !important;
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
        color: #151581 !important;
        letter-spacing: -0.01em !important;
    }

    .about-manifesto-desc {
        font-family: 'Inter', sans-serif !important;
        font-size: 14px !important;
        line-height: 1.7 !important;
        color: #555552 !important;
    }

    /* Contact Card & Form Styles */
    .zen-contact-card {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 20px !important;
        padding: 40px !important;
        box-shadow: 0 15px 45px rgba(21, 21, 129, 0.03) !important;
    }

    .zen-contact-form .form-group {
        margin-bottom: 24px;
    }

    .zen-contact-form .form-label {
        display: block;
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 600;
        color: #151581;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .zen-contact-form .form-control {
        background-color: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.08) !important;
        border-radius: 8px !important;
        padding: 12px 16px !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 14px !important;
        color: #292824 !important;
        transition: all 0.3s ease !important;
        box-shadow: none !important;
    }

    .zen-contact-form .form-control:focus {
        border-color: #f1c40f !important;
        box-shadow: 0 4px 12px rgba(241, 196, 15, 0.08) !important;
        background-color: #ffffff !important;
    }

    .zen-contact-form .form-control::placeholder {
        color: #a1a1cd !important;
        opacity: 0.6;
    }

    /* Error Validation Message Styles */
    .zen-contact-form label.error {
        color: #e74c3c !important;
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        margin-top: 6px;
        display: block;
        font-weight: 500;
    }

    .zen-contact-form .form-control.is-invalid,
    .zen-contact-form input.error,
    .zen-contact-form textarea.error {
        border-color: #e74c3c !important;
        background-color: rgba(231, 76, 60, 0.01) !important;
    }

    /* Elegant Button Submit */
    .zen-contact-form .btn-submit,
    .btn-submit {
        background-color: #151581 !important;
        border: 1px solid #151581 !important;
        color: #ffffff !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-size: 12px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.12em !important;
        padding: 14px 36px !important;
        border-radius: 30px !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 0 4px 15px rgba(21, 21, 129, 0.1) !important;
        cursor: pointer;
        outline: none;
    }

    .zen-contact-form .btn-submit:hover,
    .btn-submit:hover {
        background-color: #f1c40f !important;
        border-color: #f1c40f !important;
        color: #151581 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(241, 196, 15, 0.2) !important;
    }

    /* Info Panel Styles */
    .zen-info-panel {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 20px !important;
        padding: 40px !important;
        box-shadow: 0 15px 45px rgba(21, 21, 129, 0.03) !important;
        position: relative;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .info-panel-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 300 !important;
        font-size: 1.8rem !important;
        color: #151581 !important;
        margin-bottom: 0 !important;
    }

    /* Watermark */
    .zen-info-watermark {
        position: absolute;
        bottom: -20px;
        right: -10px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        opacity: 0.03;
        pointer-events: none;
        z-index: 1;
    }

    .zen-info-watermark .kanji {
        font-family: 'Noto Serif JP', serif;
        font-size: 120px;
        font-weight: 900;
        color: #151581;
        line-height: 1;
    }

    .zen-info-watermark .text {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        letter-spacing: 0.2em;
        color: #151581;
        font-weight: 600;
        margin-top: -10px;
        margin-right: 15px;
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
        .zen-contact-card,
        .zen-info-panel {
            padding: 30px !important;
        }
        .zen-info-panel {
            margin-top: 30px;
            padding-bottom: 40px !important;
        }
        .about-editorial-title {
            font-size: 1.8rem !important;
        }
    }

/* From resources/views/frontend/pages/login.blade.php */
/* --- Zen Auth Page Redesign --- */

    .zen-auth-section {
        padding: 80px 0 !important;
        background-color: #f6f6fa !important;
    }

    /* Zen Badge and Header Elements */
    .zen-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(21, 21, 129, 0.03) !important;
        border: 1px solid rgba(21, 21, 129, 0.05) !important;
        padding: 4px 12px !important;
        border-radius: 20px !important;
    }

    .zen-badge .symbol {
        font-family: 'Noto Serif JP', serif;
        font-size: 11px;
        font-weight: 600;
        color: #f1c40f !important;
    }

    .zen-badge .line {
        width: 12px;
        height: 1px;
        background: rgba(21, 21, 129, 0.15);
        margin: 0 8px;
    }

    .zen-badge .text {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: #151581 !important;
        font-weight: 500;
    }

    .about-editorial-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 300 !important;
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
        color: #151581 !important;
        letter-spacing: -0.01em !important;
    }

    .about-manifesto-desc {
        font-family: 'Inter', sans-serif !important;
        font-size: 14px !important;
        line-height: 1.7 !important;
        color: #555552 !important;
    }

    /* Contact Card & Form Styles */
    .zen-contact-card {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 20px !important;
        padding: 40px !important;
        box-shadow: 0 15px 45px rgba(21, 21, 129, 0.03) !important;
    }

    .zen-contact-form .form-group {
        margin-bottom: 24px;
    }

    .zen-contact-form .form-label {
        display: block;
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 600;
        color: #151581;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .zen-contact-form .forgot-link {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        color: #151581;
        transition: color 0.3s ease;
        font-weight: 500;
    }

    .zen-contact-form .forgot-link:hover {
        color: #f1c40f;
    }

    .zen-contact-form .form-control {
        background-color: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.08) !important;
        border-radius: 8px !important;
        padding: 12px 16px !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 14px !important;
        color: #292824 !important;
        transition: all 0.3s ease !important;
        box-shadow: none !important;
    }

    .zen-contact-form .form-control:focus {
        border-color: #f1c40f !important;
        box-shadow: 0 4px 12px rgba(241, 196, 15, 0.08) !important;
        background-color: #ffffff !important;
    }

    .zen-contact-form .form-control::placeholder {
        color: #a1a1cd !important;
        opacity: 0.6;
    }

    /* Error Validation Message Styles */
    .zen-contact-form label.error {
        color: #e74c3c !important;
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        margin-top: 6px;
        display: block;
        font-weight: 500;
    }

    .zen-contact-form .form-control.is-invalid,
    .zen-contact-form input.error,
    .zen-contact-form textarea.error {
        border-color: #e74c3c !important;
        background-color: rgba(231, 76, 60, 0.01) !important;
    }

    /* Elegant Button Submit */
    .zen-contact-form .btn-submit,
    .btn-submit {
        background-color: #151581 !important;
        border: 1px solid #151581 !important;
        color: #ffffff !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-size: 12px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.12em !important;
        padding: 14px 36px !important;
        border-radius: 30px !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 0 4px 15px rgba(21, 21, 129, 0.1) !important;
        cursor: pointer;
        outline: none;
    }

    .zen-contact-form .btn-submit:hover,
    .btn-submit:hover {
        background-color: #f1c40f !important;
        border-color: #f1c40f !important;
        color: #151581 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(241, 196, 15, 0.2) !important;
    }

    /* Info Panel Styles */
    .zen-info-panel {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 20px !important;
        padding: 40px !important;
        box-shadow: 0 15px 45px rgba(21, 21, 129, 0.03) !important;
        position: relative;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .info-panel-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 300 !important;
        font-size: 1.8rem !important;
        color: #151581 !important;
        margin-bottom: 0 !important;
    }

    /* Watermark */
    .zen-info-watermark {
        position: absolute;
        bottom: -20px;
        right: -10px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        opacity: 0.03;
        pointer-events: none;
        z-index: 1;
    }

    .zen-info-watermark .kanji {
        font-family: 'Noto Serif JP', serif;
        font-size: 120px;
        font-weight: 900;
        color: #151581;
        line-height: 1;
    }

    .zen-info-watermark .text {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        letter-spacing: 0.2em;
        color: #151581;
        font-weight: 600;
        margin-top: -10px;
        margin-right: 15px;
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
        .zen-contact-card,
        .zen-info-panel {
            padding: 30px !important;
        }
        .zen-info-panel {
            margin-top: 30px;
            padding-bottom: 40px !important;
        }
        .about-editorial-title {
            font-size: 1.8rem !important;
        }
    }

/* From resources/views/frontend/pages/order-failed.blade.php */
/* --- Zen Status Gate (Success / Failure) Redesign --- */

    .zen-status-section {
        padding: 100px 0 !important;
        background-color: #f6f6fa !important;
    }

    .zen-status-card {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 24px !important;
        padding: 60px 45px !important;
        box-shadow: 0 15px 50px rgba(21, 21, 129, 0.03) !important;
        position: relative;
    }

    /* Status Icon Wrap with Soft Glow */
    .status-icon-wrap {
        width: 84px;
        height: 84px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        margin: 0 auto;
    }

    .status-icon-wrap.error {
        background-color: rgba(231, 76, 60, 0.06);
        color: #e74c3c;
        border: 1px solid rgba(231, 76, 60, 0.12);
        box-shadow: 0 0 30px rgba(231, 76, 60, 0.1);
    }

    .status-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 400 !important;
        font-size: 24px !important;
        color: #151581 !important;
    }

    .status-desc {
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        line-height: 1.6;
        color: #777775;
        max-width: 520px;
        margin: 0 auto;
    }

    /* Premium Status Info / Alert Box */
    .zen-status-info-box {
        background-color: rgba(21, 21, 129, 0.02);
        border: 1px solid rgba(21, 21, 129, 0.06);
        border-radius: 16px;
        padding: 20px 24px;
        display: flex;
        gap: 15px;
        align-items: flex-start;
        max-width: 520px;
        margin: 0 auto;
    }

    .zen-status-info-box.error {
        background-color: rgba(231, 76, 60, 0.03);
        border-color: rgba(231, 76, 60, 0.08);
    }

    .zen-status-info-box .icon {
        font-size: 20px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .zen-status-info-box .text {
        font-family: 'Inter', sans-serif;
        font-size: 12.5px;
        line-height: 1.5;
        color: #777775;
    }

    /* Assistance Section */
    .assistance-box {
        border-top: 1px solid rgba(21, 21, 129, 0.06);
        padding-top: 24px;
        max-width: 520px;
        margin: 0 auto;
    }

    .assistance-box h5 {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 500 !important;
        font-size: 14px !important;
        color: #151581 !important;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 8px !important;
    }

    .assistance-box p {
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        color: #777775;
    }

    .support-email {
        color: #151581 !important;
        font-weight: 600;
        text-decoration: underline;
        transition: color 0.3s ease;
    }

    .support-email:hover {
        color: #f1c40f !important;
    }

    /* Action buttons */
    .btn-action-primary {
        background-color: #151581 !important;
        border: 1px solid #151581 !important;
        color: #ffffff !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-size: 13px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.1em !important;
        padding: 14px 28px !important;
        border-radius: 30px !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 0 4px 15px rgba(21, 21, 129, 0.1) !important;
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        cursor: pointer;
    }

    .btn-action-primary.error-btn {
        background-color: #e74c3c !important;
        border-color: #e74c3c !important;
        box-shadow: 0 4px 15px rgba(231, 76, 60, 0.15) !important;
    }

    .btn-action-primary.error-btn:hover {
        background-color: #151581 !important;
        border-color: #151581 !important;
        color: #ffffff !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(21, 21, 129, 0.15) !important;
    }

    .btn-action-secondary {
        background-color: transparent !important;
        border: 1px solid rgba(21, 21, 129, 0.15) !important;
        color: #151581 !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-size: 13px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.1em !important;
        padding: 14px 28px !important;
        border-radius: 30px !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        cursor: pointer;
    }

    .btn-action-secondary:hover {
        border-color: #151581 !important;
        background-color: rgba(21, 21, 129, 0.02) !important;
        transform: translateY(-1px) !important;
    }

    @media (max-width: 767px) {
        .zen-status-card {
            padding: 40px 25px !important;
        }
        .btn-action-primary, .btn-action-secondary {
            width: 100%;
            justify-content: center;
        }
    }

/* From resources/views/frontend/pages/order-success.blade.php */
/* --- Zen Status Gate (Success / Failure) Redesign --- */

    .zen-status-section {
        padding: 100px 0 !important;
        background-color: #f6f6fa !important;
    }

    .zen-status-card {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 24px !important;
        padding: 60px 45px !important;
        box-shadow: 0 15px 50px rgba(21, 21, 129, 0.03) !important;
        position: relative;
    }

    /* Status Icon Wrap with Soft Glow */
    .status-icon-wrap {
        width: 84px;
        height: 84px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        margin: 0 auto;
    }

    .status-icon-wrap.success {
        background-color: rgba(46, 204, 113, 0.06);
        color: #2ecc71;
        border: 1px solid rgba(46, 204, 113, 0.12);
        box-shadow: 0 0 30px rgba(46, 204, 113, 0.1);
    }

    .status-icon-wrap.error {
        background-color: rgba(231, 76, 60, 0.06);
        color: #e74c3c;
        border: 1px solid rgba(231, 76, 60, 0.12);
        box-shadow: 0 0 30px rgba(231, 76, 60, 0.1);
    }

    .status-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 400 !important;
        font-size: 24px !important;
        color: #151581 !important;
    }

    /* Transaction ID Monospace Pill */
    .transaction-pill-wrap {
        display: inline-flex;
        flex-direction: column;
        background-color: #f6f6fa;
        border: 1px solid rgba(21, 21, 129, 0.03);
        padding: 8px 24px;
        border-radius: 12px;
    }

    .transaction-pill-wrap .label {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: #a1a1cd;
        font-weight: 600;
        margin-bottom: 2px;
    }

    .transaction-pill-wrap .value {
        font-family: 'Courier New', Courier, monospace;
        font-weight: 700;
        font-size: 15px;
        color: #151581;
    }

    .thank-you-text {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 500 !important;
        font-size: 16px !important;
        color: #151581 !important;
    }

    .status-desc {
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        line-height: 1.6;
        color: #777775;
        max-width: 520px;
        margin: 0 auto;
    }

    /* Premium Status Info / Alert Box */
    .zen-status-info-box {
        background-color: rgba(241, 196, 15, 0.05);
        border: 1px solid rgba(241, 196, 15, 0.12);
        border-radius: 16px;
        padding: 16px 24px;
        display: flex;
        gap: 15px;
        align-items: flex-start;
        max-width: 520px;
        margin: 0 auto;
    }

    .zen-status-info-box .icon {
        color: #f1c40f;
        font-size: 20px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .zen-status-info-box .text {
        font-family: 'Inter', sans-serif;
        font-size: 12.5px;
        line-height: 1.5;
        color: #777775;
    }

    .zen-status-info-box .text strong {
        color: #151581;
        font-weight: 600;
    }

    /* Assistance Section */
    .assistance-box {
        border-top: 1px solid rgba(21, 21, 129, 0.06);
        padding-top: 24px;
        max-width: 520px;
        margin: 0 auto;
    }

    .assistance-box h5 {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 500 !important;
        font-size: 14px !important;
        color: #151581 !important;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        margin-bottom: 8px !important;
    }

    .assistance-box p {
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        color: #777775;
    }

    .support-email {
        color: #151581 !important;
        font-weight: 600;
        text-decoration: underline;
        transition: color 0.3s ease;
    }

    .support-email:hover {
        color: #f1c40f !important;
    }

    /* Action buttons */
    .btn-action-primary {
        background-color: #151581 !important;
        border: 1px solid #151581 !important;
        color: #ffffff !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-size: 13px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.1em !important;
        padding: 14px 28px !important;
        border-radius: 30px !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 0 4px 15px rgba(21, 21, 129, 0.1) !important;
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        cursor: pointer;
    }

    .btn-action-primary:hover {
        background-color: #f1c40f !important;
        border-color: #f1c40f !important;
        color: #151581 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(241, 196, 15, 0.2) !important;
    }

    .btn-action-secondary {
        background-color: transparent !important;
        border: 1px solid rgba(21, 21, 129, 0.15) !important;
        color: #151581 !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-size: 13px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.1em !important;
        padding: 14px 28px !important;
        border-radius: 30px !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        cursor: pointer;
    }

    .btn-action-secondary:hover {
        border-color: #151581 !important;
        background-color: rgba(21, 21, 129, 0.02) !important;
        transform: translateY(-1px) !important;
    }

    @media (max-width: 767px) {
        .zen-status-card {
            padding: 40px 25px !important;
        }
        .btn-action-primary, .btn-action-secondary {
            width: 100%;
            justify-content: center;
        }
    }

/* From resources/views/frontend/pages/page.blade.php */
/* --- Zen Dynamic Page Styles --- */

    .zen-page-section {
        padding: 80px 0 !important;
        background-color: #f6f6fa !important;
    }

    .zen-page-card {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 24px !important;
        padding: 60px 50px !important;
        box-shadow: 0 15px 45px rgba(21, 21, 129, 0.02) !important;
    }

    .zen-page-card .brand-symbol {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        letter-spacing: 0.3em;
        color: #a1a1cd;
        text-transform: uppercase;
        font-weight: 600;
        display: block;
    }

    .zen-page-card .page-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 300 !important;
        font-size: 2.5rem !important;
        color: #151581 !important;
        line-height: 1.25 !important;
        letter-spacing: -0.01em;
    }

    .zen-page-card .page-divider {
        height: 1px;
        width: 100%;
        background-color: rgba(21, 21, 129, 0.06);
    }

    /* Styles for dynamic HTML elements injected via database */
    .zen-editorial-content {
        font-family: 'Inter', sans-serif !important;
        font-size: 15px !important;
        line-height: 1.8 !important;
        color: #555552 !important;
    }

    .zen-editorial-content p {
        margin-bottom: 24px;
        line-height: 1.8;
        color: #555552;
    }

    .zen-editorial-content h1,
    .zen-editorial-content h2,
    .zen-editorial-content h3,
    .zen-editorial-content h4,
    .zen-editorial-content h5,
    .zen-editorial-content h6 {
        font-family: 'Inter Tight', sans-serif !important;
        color: #151581 !important;
        margin-top: 35px;
        margin-bottom: 15px;
        font-weight: 500 !important;
        line-height: 1.3 !important;
    }

    .zen-editorial-content h1 { font-size: 26px !important; }
    .zen-editorial-content h2 { font-size: 22px !important; border-bottom: 1px solid rgba(21, 21, 129, 0.04); padding-bottom: 8px; }
    .zen-editorial-content h3 { font-size: 18px !important; }
    .zen-editorial-content h4 { font-size: 16px !important; }
    .zen-editorial-content h5 { font-size: 14px !important; }
    .zen-editorial-content h6 { font-size: 13px !important; }

    /* Custom bullet lists with gold dot styling */
    .zen-editorial-content ul {
        list-style-type: none;
        padding-left: 0;
        margin-bottom: 24px;
    }

    .zen-editorial-content ul li {
        position: relative;
        padding-left: 20px;
        margin-bottom: 10px;
        color: #555552;
    }

    .zen-editorial-content ul li::before {
        content: "•";
        color: #f1c40f; /* Gold dot */
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
        position: absolute;
        left: 5px;
        top: 0;
    }

    /* Numbered Lists */
    .zen-editorial-content ol {
        padding-left: 20px;
        margin-bottom: 24px;
    }

    .zen-editorial-content ol li {
        margin-bottom: 10px;
        color: #555552;
        padding-left: 5px;
    }

    .zen-editorial-content strong,
    .zen-editorial-content b {
        color: #151581;
        font-weight: 600;
    }

    .zen-editorial-content blockquote {
        border-left: 3px solid #f1c40f;
        padding: 10px 20px;
        margin: 30px 0;
        background-color: rgba(241, 196, 15, 0.03);
        border-radius: 0 8px 8px 0;
        font-style: italic;
        color: #777775;
    }

    .zen-editorial-content a {
        color: #151581;
        text-decoration: underline;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .zen-editorial-content a:hover {
        color: #f1c40f;
    }

    /* Premium Responsive Tables */
    .zen-editorial-content table {
        width: 100%;
        border-collapse: collapse;
        margin: 30px 0;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        border: 1px solid rgba(21, 21, 129, 0.08);
        border-radius: 12px;
        overflow: hidden;
    }

    .zen-editorial-content th {
        background-color: rgba(21, 21, 129, 0.03);
        color: #151581;
        font-weight: 600;
        text-align: left;
        padding: 14px 18px;
        border-bottom: 2px solid rgba(21, 21, 129, 0.06);
    }

    .zen-editorial-content td {
        padding: 14px 18px;
        border-bottom: 1px solid rgba(21, 21, 129, 0.04);
        color: #555552;
    }

    .zen-editorial-content tr:last-child td {
        border-bottom: none;
    }

    .zen-editorial-content tr:hover td {
        background-color: rgba(21, 21, 129, 0.01);
    }

    /* Responsive Rich-Text Images */
    .zen-editorial-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0px;
    margin: 0px 0;
    border: 0px solid rgba(21, 21, 129, 0.05);
    width: 118px;
    }

    @media (max-width: 767px) {
        .zen-page-card {
            padding: 40px 25px !important;
        }
        .zen-page-card .page-title {
            font-size: 1.8rem !important;
        }
    }

/* From resources/views/frontend/pages/product_detail.blade.php */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600&display=swap');

    /* --- General Section Setup --- */
    .zen-detail-section {
        background-color: #f8f9fa !important;
    }

    /* --- Left Column: Gallery & Details --- */
    .zen-gallery-container {
        position: relative;
    }
    .zen-main-image-wrap {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(21, 21, 129, 0.04);
        aspect-ratio: 16/10;
        background-color: #f6f6fa;
    }
    .zen-main-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .zen-main-image-wrap:hover .zen-main-image {
        transform: scale(1.03);
    }
    .zen-gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(21, 21, 129, 0) 60%, rgba(21, 21, 129, 0.15) 100%);
        pointer-events: none;
    }
    
    /* Thumbnails Grid */
    .zen-thumbnails-strip {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
    }
    .zen-thumb-wrap {
        width: 80px;
        height: 60px;
        border-radius: 12px;
        overflow: hidden;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    }
    .zen-thumb-wrap.active {
        border-color: #f1c40f;
        box-shadow: 0 4px 12px rgba(241, 196, 15, 0.2);
    }
    .zen-thumb-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Editorial Details Typography */
    .zen-category-tag {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #f1c40f;
        display: inline-block;
        margin-bottom: 8px;
    }
    .zen-details-title {
        font-family: 'Outfit', 'Inter Tight', sans-serif;
        font-weight: 400;
        font-size: 36px;
        color: #151581;
        letter-spacing: -0.5px;
    }
    .zen-summary-box {
        border-left: 3px solid #f1c40f;
        padding-left: 20px;
        margin: 25px 0;
    }
    .zen-summary-box p {
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        line-height: 1.7;
        color: #151581;
        font-weight: 400;
        opacity: 0.85;
        margin: 0;
    }
    .zen-section-title {
        font-family: 'Outfit', sans-serif;
        font-weight: 500;
        font-size: 20px;
        color: #151581;
        border-bottom: 1px solid rgba(21, 21, 129, 0.05);
        padding-bottom: 10px;
    }
    .zen-description-body {
        font-family: 'Inter', sans-serif;
        font-size: 15px;
        line-height: 1.8;
        color: #777775;
    }
    .zen-description-body p {
        margin-bottom: 15px;
    }

    /* --- Right Column: Sticky Booking Widget --- */
    .zen-booking-sidebar {
        position: sticky;
        top: 120px;
        z-index: 10;
        transition: top 0.3s ease;
    }
    .zen-booking-card {
        background: #ffffff;
        border: 1px solid rgba(21, 21, 129, 0.06);
        border-radius: 24px;
        padding: 35px;
        box-shadow: 0 20px 50px rgba(21, 21, 129, 0.04);
    }
    .zen-card-subtitle {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #f1c40f;
        display: block;
        margin-bottom: 6px;
    }
    .zen-card-title {
        font-family: 'Outfit', sans-serif;
        font-weight: 400;
        font-size: 24px;
        color: #151581;
        margin-bottom: 10px;
    }
    .zen-card-desc {
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        line-height: 1.6;
        color: #777775;
        margin: 0;
    }

    /* Price and Duration Relocation Styling */
    .zen-booking-meta-row {
        display: flex;
        align-items: center;
        background: #f6f6fa;
        border: 1px solid rgba(21, 21, 129, 0.04);
        border-radius: 14px;
        padding: 10px 16px;
        margin-top: 15px;
    }
    .zen-meta-item {
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        color: #151581;
        display: inline-flex;
        align-items: center;
    }
    .zen-meta-item strong {
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        margin-left: 2px;
        color: #151581;
    }

    /* Region Selector Segment Buttons */
    .zen-region-selector {
        display: flex;
        gap: 12px;
        width: 100%;
    }
    .zen-region-btn {
        flex: 1;
        background: #ffffff;
        border: 1px solid rgba(21, 21, 129, 0.08);
        border-radius: 14px;
        padding: 12px 10px;
        font-family: 'Outfit', sans-serif;
        font-weight: 500;
        font-size: 14px;
        color: #151581;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        text-align: center;
    }
    .zen-region-btn:hover {
        border-color: #f1c40f;
        background-color: rgba(241, 196, 15, 0.03);
    }
    .zen-region-btn.active {
        background-color: #151581;
        border-color: #151581;
        color: #ffffff;
        box-shadow: 0 6px 15px rgba(21, 21, 129, 0.15);
    }

    /* Step Indicators */
    .zen-step-badge {
        width: 26px;
        height: 26px;
        background-color: rgba(21, 21, 129, 0.05);
        color: #151581;
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 600;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        transition: all 0.3s ease;
    }
    .zen-step-badge.completed {
        background-color: #f1c40f !important;
        color: #151581 !important;
        box-shadow: 0 4px 10px rgba(241, 196, 15, 0.2);
    }
    .zen-step-label {
        font-family: 'Outfit', sans-serif;
        font-weight: 500;
        font-size: 15px;
        color: #151581;
    }
    .zen-booking-divider {
        height: 1px;
        background: rgba(21, 21, 129, 0.06);
        margin: 25px 0;
    }

    /* Custom Dropdown Trigger & Options */
    .zen-custom-select-wrapper {
        position: relative;
        width: 100%;
        transition: opacity 0.3s ease;
    }
    .zen-custom-select {
        position: relative;
        width: 100%;
    }
    .zen-select-trigger {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.08) !important;
        padding: 14px 18px !important;
        border-radius: 14px !important;
        cursor: pointer;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        transition: all 0.3s ease;
    }
    .zen-select-trigger:hover {
        border-color: rgba(21, 21, 129, 0.2) !important;
    }
    .zen-custom-select.active .zen-select-trigger {
        border-color: #151581 !important;
        box-shadow: 0 0 0 3px rgba(21, 21, 129, 0.05);
    }
    .selected-value-text {
        display: flex;
        flex-direction: column;
        text-align: left;
    }
    .store-placeholder {
        font-family: 'Inter', sans-serif;
        font-size: 13.5px;
    }
    .store-name {
        font-family: 'Outfit', sans-serif;
        font-weight: 500;
        font-size: 14px;
        color: #151581;
    }
    .store-address {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        color: #777775;
    }
    .select-arrow-icon {
        font-size: 12px;
        color: #151581;
        transition: transform 0.3s ease;
    }
    .zen-custom-select.active .select-arrow-icon {
        transform: rotate(180deg);
    }
    .zen-select-options-menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        width: 100%;
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.08) !important;
        border-radius: 14px !important;
        box-shadow: 0 15px 40px rgba(21, 21, 129, 0.08) !important;
        z-index: 1000 !important;
        display: none;
        padding: 6px 0 !important;
        max-height: 280px;
        overflow-y: auto;
    }
    .zen-select-option {
        padding: 12px 18px !important;
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: 2px;
        text-align: left;
        transition: all 0.2s ease !important;
    }
    .zen-select-option:hover {
        background-color: rgba(21, 21, 129, 0.03) !important;
    }
    .zen-select-option.selected {
        background-color: rgba(21, 21, 129, 0.05) !important;
        border-left: 3px solid #151581;
    }
    
    /* Specificity fix for jQuery hide/show */
    .zen-hidden {
        display: none !important;
    }

    /* --- Modern, Minimalist Borderless Calendar Styling --- */
    .zen-calendar-wrapper {
        background: #ffffff;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 20px !important;
        padding: 20px !important;
        box-shadow: 0 10px 30px rgba(21, 21, 129, 0.02) !important;
    }
    
    /* Remove all grid lines and borders */
    .fc-theme-standard td, 
    .fc-theme-standard th, 
    .fc-theme-standard .fc-scrollgrid, 
    .fc-theme-standard .fc-scrollgrid-section,
    .fc-theme-standard .fc-scrollgrid-section td,
    .fc-theme-standard .fc-scrollgrid-section th,
    .fc-theme-standard .fc-col-header-cell {
        border: none !important;
    }
    
    /* Month Title Header */
    .fc .fc-toolbar {
        margin-bottom: 15px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
    .fc .fc-toolbar-title {
        font-family: 'Outfit', sans-serif !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        color: #151581 !important;
        letter-spacing: -0.3px !important;
        text-transform: capitalize !important;
    }
    
    /* Modern Navigation Buttons */
    .fc .fc-button-group {
        display: flex !important;
        gap: 4px !important;
    }
    .fc .fc-button-primary {
        background: #f6f6fa !important;
        border: none !important;
        color: #151581 !important;
        width: 32px !important;
        height: 32px !important;
        padding: 0 !important;
        border-radius: 50% !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: none !important;
        transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }
    .fc .fc-button-primary:hover {
        background: #151581 !important;
        color: #ffffff !important;
    }
    .fc .fc-button-primary:focus {
        box-shadow: none !important;
    }
    .fc .fc-button-primary .fc-icon {
        font-size: 16px !important;
        font-weight: bold !important;
    }
    
    /* Weekday Cushions (Sun, Mon, etc.) */
    .fc .fc-col-header-cell-cushion {
        font-family: 'Inter', sans-serif !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        color: #a1a1cd !important;
        padding: 8px 0 !important;
        text-decoration: none !important;
    }
    
    /* Day Cells Frame */
    .fc-daygrid-day-frame {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 42px !important;
        padding: 2px !important;
    }
    
    /* Day Circular Selector Cushion */
    .fc-daygrid-day-number {
        font-family: 'Inter', sans-serif !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        color: #151581 !important;
        text-decoration: none !important;
        width: 34px !important;
        height: 34px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
        padding: 0 !important;
    }
    
    /* Hover state for active day cells */
    .fc-daygrid-day:not(.fc-day-disabled):hover .fc-daygrid-day-number {
        background-color: rgba(21, 21, 129, 0.05) !important;
        color: #151581 !important;
        cursor: pointer !important;
    }
    
    /* Disabled out-of-range day cells */
    .fc-day-disabled {
        opacity: 0.25 !important;
        background: transparent !important;
    }
    .fc-day-disabled .fc-daygrid-day-number {
        color: #777775 !important;
        background: transparent !important;
        cursor: not-allowed !important;
        pointer-events: none !important;
    }
    
    /* Circular Active Day Selection */
    .fc-daygrid-day.zen-selected-day .fc-daygrid-day-number {
        background-color: #151581 !important;
        color: #ffffff !important;
        font-weight: 600 !important;
        box-shadow: 0 4px 12px rgba(21, 21, 129, 0.25) !important;
    }
    
    /* Today circular indicator outline */
    .fc-day-today .fc-daygrid-day-number {
        border: 1.5px solid #f1c40f !important;
        color: #151581 !important;
    }
    .fc-day-today.zen-selected-day .fc-daygrid-day-number {
        background-color: #151581 !important;
        color: #ffffff !important;
        border-color: #f1c40f !important;
    }
    
    /* Hide standard dots/events to keep grid minimal */
    .fc-daygrid-day-events, .fc-daygrid-event-harness {
        display: none !important;
    }

    /* --- Compact 3-Column Timeslots Grid --- */
    .zen-selected-date-text {
        font-family: 'Inter', sans-serif !important;
        color: #f1c40f !important;
        font-weight: 600 !important;
        font-size: 14px !important;
    }
    .zen-timeslots-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        padding: 0;
        margin: 15px 0 0;
        list-style: none;
    }
    .zen-timeslots-grid li {
        background: #ffffff;
        border: 1px solid rgba(21, 21, 129, 0.08);
        border-radius: 12px;
        padding: 10px 4px;
        font-family: 'Inter', sans-serif;
        font-size: 12.5px;
        font-weight: 500;
        color: #151581;
        text-align: center;
        cursor: pointer;
        transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        box-sizing: border-box;
    }
    .zen-timeslots-grid li:hover {
        border-color: #f1c40f;
        background-color: rgba(241, 196, 15, 0.03);
        transform: translateY(-2px);
    }
    .zen-timeslots-grid li.active {
        background-color: #151581 !important;
        border-color: #151581 !important;
        color: #ffffff !important;
        box-shadow: 0 6px 15px rgba(21, 21, 129, 0.12);
    }
    .zen-timeslots-grid li.active .slot-status {
        color: #f1c40f !important;
    }
    .zen-timeslots-grid li.booked {
        background-color: #f8f9fa !important;
        border-color: rgba(0, 0, 0, 0.03) !important;
        color: #a1a1cd !important;
        opacity: 0.55;
        cursor: not-allowed;
        text-decoration: line-through;
        pointer-events: none;
    }
    .slot-time {
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: 13.5px;
    }
    .slot-status {
        font-size: 9px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: #28a745;
        font-weight: 600;
    }
    .booked .slot-status {
        color: #dc3545;
    }

    /* --- Form Submission Button --- */
    .zen-btn-submit {
        background: #151581 !important;
        color: #ffffff !important;
        border: none !important;
        border-radius: 30px !important;
        padding: 15px 30px !important;
        font-family: 'Outfit', sans-serif !important;
        font-weight: 600 !important;
        font-size: 15px !important;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(21, 21, 129, 0.1);
    }
    .zen-btn-submit:hover {
        background: #f1c40f !important;
        color: #151581 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 20px rgba(241, 196, 15, 0.2) !important;
    }

    /* --- Mobile Responsive Adjustments --- */
    @media (max-width: 991px) {
        .zen-booking-sidebar {
            position: relative;
            top: 0;
            margin-top: 40px;
        }
        .zen-booking-card {
            padding: 25px;
        }
        .zen-details-title {
            font-size: 30px;
        }
    }

/* From resources/views/frontend/pages/product-lists.blade.php */
/* --- Zen Product Grid Redesign --- */

    .zen-product-section {
        padding: 80px 0 !important;
        background-color: #f6f6fa !important;
    }

    /* Category Select Wrapper */
    .zen-category-selector-wrapper {
        max-width: 320px;
        margin: 0 auto 50px;
    }

    .zen-category-select {
        background-color: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.08) !important;
        border-radius: 30px !important;
        padding: 12px 24px !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        color: #151581 !important;
        cursor: pointer;
        box-shadow: 0 8px 25px rgba(21, 21, 129, 0.02) !important;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23151581' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
        background-repeat: no-repeat !important;
        background-position: right 20px center !important;
        background-size: 16px !important;
        padding-right: 45px !important;
        transition: all 0.3s ease !important;
    }

    .zen-category-select:focus {
        border-color: #f1c40f !important;
        box-shadow: 0 8px 30px rgba(241, 196, 15, 0.1) !important;
    }

    /* Product Item Cards */
    .zen-product-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .zen-product-card {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 20px !important;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(21, 21, 129, 0.02) !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .zen-product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 45px rgba(21, 21, 129, 0.05) !important;
        border-color: rgba(21, 21, 129, 0.1) !important;
    }

    .zen-product-image-wrap {
        position: relative;
        width: 100%;
        aspect-ratio: 3 / 2 !important;
        overflow: hidden;
        background-color: #f6f6fa;
    }

    .zen-product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .zen-product-card:hover .zen-product-image {
        transform: scale(1.06);
    }

    .zen-product-info {
        padding: 24px !important;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        justify-content: space-between;
    }

    .zen-product-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 400 !important;
        font-size: 17px !important;
        line-height: 1.4 !important;
        margin-bottom: 8px !important;
    }

    .zen-product-title a {
        color: #151581 !important;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .zen-product-title a:hover {
        color: #f1c40f !important;
    }

    .zen-product-summary {
        font-family: 'Inter', sans-serif !important;
        font-size: 13px !important;
        color: #777775 !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }

    .zen-product-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 15px;
        border-top: 1px solid rgba(21, 21, 129, 0.04);
        padding-top: 15px;
    }

    .zen-product-points {
        font-family: 'Inter', sans-serif !important;
        font-size: 13.5px !important;
        font-weight: 600 !important;
        color: #f1c40f !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
    }

    .zen-product-points i {
        color: #f1c40f !important;
    }

    .zen-product-duration {
        font-family: 'Inter', sans-serif;
        font-size: 11.5px;
        color: #777775;
        background-color: rgba(21, 21, 129, 0.02);
        border: 1px solid rgba(21, 21, 129, 0.05);
        padding: 4px 10px;
        border-radius: 30px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        line-height: 1.2;
    }

    .zen-product-duration i {
        color: #f1c40f;
    }

    /* --- Category Hero Card --- */
    .zen-category-hero {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 24px !important;
        padding: 40px !important;
        margin-bottom: 50px !important;
        display: flex !important;
        align-items: center !important;
        gap: 50px !important;
        box-shadow: 0 15px 45px rgba(21, 21, 129, 0.02) !important;
    }

    .zen-category-hero-image-wrap {
        flex: 0 0 320px !important;
        width: 320px !important;
        aspect-ratio: 1 / 1 !important;
        border-radius: 16px !important;
        overflow: hidden !important;
        background-color: #f6f6fa !important;
        border: 1px solid rgba(21, 21, 129, 0.04) !important;
    }

    .zen-category-hero-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    .zen-category-hero-content {
        flex-grow: 1 !important;
    }

    .zen-category-hero-subtitle {
        font-family: 'Inter', sans-serif !important;
        font-size: 12px !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        letter-spacing: 2px !important;
        color: #f1c40f !important;
        display: block !important;
        margin-bottom: 10px !important;
    }

    .zen-category-hero-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 400 !important;
        font-size: 36px !important;
        line-height: 1.2 !important;
        color: #151581 !important;
        margin-bottom: 18px !important;
    }

    .zen-category-hero-summary {
        font-family: 'Inter', sans-serif !important;
        font-size: 16px !important;
        color: #555552 !important;
        line-height: 1.7 !important;
        margin: 0 !important;
    }

    @media (max-width: 767px) {
        .zen-category-hero {
            flex-direction: column !important;
            align-items: stretch !important;
            gap: 30px !important;
            padding: 30px !important;
        }

        .zen-category-hero-image-wrap {
            flex: none !important;
            width: 100% !important;
            max-width: 100% !important;
            aspect-ratio: 1 / 1 !important;
        }

        .zen-category-hero-title {
            font-size: 28px !important;
        }
    }

    @media (max-width: 991px) {
        .zen-product-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }

    @media (max-width: 575px) {
        .zen-product-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
    }

/* From resources/views/frontend/pages/register.blade.php */
/* --- Zen Auth Page Redesign --- */

    .zen-auth-section {
        padding: 80px 0 !important;
        background-color: #f6f6fa !important;
    }

    /* Zen Badge and Header Elements */
    .zen-badge {
        display: inline-flex;
        align-items: center;
        background: rgba(21, 21, 129, 0.03) !important;
        border: 1px solid rgba(21, 21, 129, 0.05) !important;
        padding: 4px 12px !important;
        border-radius: 20px !important;
    }

    .zen-badge .symbol {
        font-family: 'Noto Serif JP', serif;
        font-size: 11px;
        font-weight: 600;
        color: #f1c40f !important;
    }

    .zen-badge .line {
        width: 12px;
        height: 1px;
        background: rgba(21, 21, 129, 0.15);
        margin: 0 8px;
    }

    .zen-badge .text {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: #151581 !important;
        font-weight: 500;
    }

    .about-editorial-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 300 !important;
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
        color: #151581 !important;
        letter-spacing: -0.01em !important;
    }

    .about-manifesto-desc {
        font-family: 'Inter', sans-serif !important;
        font-size: 14px !important;
        line-height: 1.7 !important;
        color: #555552 !important;
    }

    /* Contact Card & Form Styles */
    .zen-contact-card {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 20px !important;
        padding: 40px !important;
        box-shadow: 0 15px 45px rgba(21, 21, 129, 0.03) !important;
    }

    .zen-contact-form .form-group {
        margin-bottom: 24px;
    }

    .zen-contact-form .form-label {
        display: block;
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 600;
        color: #151581;
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .zen-contact-form .form-control {
        background-color: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.08) !important;
        border-radius: 8px !important;
        padding: 12px 16px !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 14px !important;
        color: #292824 !important;
        transition: all 0.3s ease !important;
        box-shadow: none !important;
    }

    .zen-contact-form .form-control:focus {
        border-color: #f1c40f !important;
        box-shadow: 0 4px 12px rgba(241, 196, 15, 0.08) !important;
        background-color: #ffffff !important;
    }

    .zen-contact-form .form-control::placeholder {
        color: #a1a1cd !important;
        opacity: 0.6;
    }

    /* Custom Checkbox Design */
    .zen-contact-form .form-check {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 24px;
        padding-left: 0;
    }

    .zen-contact-form .form-check-input {
        width: 18px;
        height: 18px;
        border: 1px solid rgba(21, 21, 129, 0.15) !important;
        border-radius: 4px !important;
        background-color: #ffffff !important;
        margin-top: 0 !important;
        cursor: pointer;
        transition: all 0.2s ease;
        box-shadow: none !important;
    }

    .zen-contact-form .form-check-input:checked {
        background-color: #151581 !important;
        border-color: #151581 !important;
    }

    .zen-contact-form .form-check-label {
        font-family: 'Inter', sans-serif;
        font-size: 13px;
        color: #555552;
        cursor: pointer;
        user-select: none;
    }

    .zen-contact-form .form-check-label a {
        color: #151581;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .zen-contact-form .form-check-label a:hover {
        color: #f1c40f;
    }

    /* Error Validation Message Styles */
    .zen-contact-form label.error {
        color: #e74c3c !important;
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        margin-top: 6px;
        display: block;
        font-weight: 500;
    }

    .zen-contact-form .form-control.is-invalid,
    .zen-contact-form input.error,
    .zen-contact-form textarea.error {
        border-color: #e74c3c !important;
        background-color: rgba(231, 76, 60, 0.01) !important;
    }

    .zen-contact-form .form-check-input.error {
        border-color: #e74c3c !important;
    }

    /* Elegant Button Submit */
    .zen-contact-form .btn-submit,
    .btn-submit {
        background-color: #151581 !important;
        border: 1px solid #151581 !important;
        color: #ffffff !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-size: 12px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.12em !important;
        padding: 14px 36px !important;
        border-radius: 30px !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 0 4px 15px rgba(21, 21, 129, 0.1) !important;
        cursor: pointer;
        outline: none;
    }

    .zen-contact-form .btn-submit:hover,
    .btn-submit:hover {
        background-color: #f1c40f !important;
        border-color: #f1c40f !important;
        color: #151581 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(241, 196, 15, 0.2) !important;
    }

    /* Info Panel Styles */
    .zen-info-panel {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 20px !important;
        padding: 40px !important;
        box-shadow: 0 15px 45px rgba(21, 21, 129, 0.03) !important;
        position: relative;
        overflow: hidden;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .info-panel-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 300 !important;
        font-size: 1.8rem !important;
        color: #151581 !important;
        margin-bottom: 0 !important;
    }

    /* Watermark */
    .zen-info-watermark {
        position: absolute;
        bottom: -20px;
        right: -10px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        opacity: 0.03;
        pointer-events: none;
        z-index: 1;
    }

    .zen-info-watermark .kanji {
        font-family: 'Noto Serif JP', serif;
        font-size: 120px;
        font-weight: 900;
        color: #151581;
        line-height: 1;
    }

    .zen-info-watermark .text {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        letter-spacing: 0.2em;
        color: #151581;
        font-weight: 600;
        margin-top: -10px;
        margin-right: 15px;
    }

    /* Responsive adjustments */
    @media (max-width: 991px) {
        .zen-contact-card,
        .zen-info-panel {
            padding: 30px !important;
        }
        .zen-info-panel {
            margin-top: 30px;
            padding-bottom: 40px !important;
        }
        .about-editorial-title {
            font-size: 1.8rem !important;
        }
    }

/* From resources/views/frontend/pages/storelocator.blade.php */
/* --- Zen Store Locator Styles --- */

    .zen-store-section {
        padding: 80px 0 !important;
        background-color: #f6f6fa !important;
    }

    /* Page Intro */
    .brand-symbol {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        letter-spacing: 0.3em;
        color: #a1a1cd;
        text-transform: uppercase;
        font-weight: 600;
        display: block;
    }

    .section-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 300 !important;
        font-size: 2.2rem !important;
        color: #151581 !important;
        margin-bottom: 15px !important;
    }

    .section-desc {
        max-width: 580px;
        font-family: 'Inter', sans-serif;
        font-size: 14px;
        line-height: 1.6;
        color: #777775;
    }

    /* Region Selector Tabs */
    .zen-tabs-wrapper {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .zen-tab-btn {
        background-color: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.08) !important;
        color: #151581 !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 600 !important;
        font-size: 12px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.08em !important;
        padding: 12px 28px !important;
        border-radius: 30px !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(21, 21, 129, 0.02) !important;
    }

    .zen-tab-btn:hover {
        border-color: rgba(21, 21, 129, 0.15) !important;
        transform: translateY(-1px);
    }

    .zen-tab-btn.active {
        background-color: #151581 !important;
        border-color: #151581 !important;
        color: #ffffff !important;
        box-shadow: 0 8px 25px rgba(21, 21, 129, 0.12) !important;
    }

    /* Store Cards Network Grid */
    .zen-store-card {
        background: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 24px !important;
        box-shadow: 0 15px 45px rgba(21, 21, 129, 0.02) !important;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .zen-store-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 60px rgba(21, 21, 129, 0.06) !important;
        border-color: rgba(21, 21, 129, 0.12) !important;
    }

    .store-card-body {
        padding: 35px !important;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    /* Region Badge */
    .region-badge {
        align-self: flex-start;
        padding: 4px 14px;
        border-radius: 20px;
        font-family: 'Inter', sans-serif;
        font-size: 9.5px;
        font-weight: 700;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .region-badge.japan {
        background-color: rgba(241, 196, 15, 0.08);
        color: #d4af37;
        border: 1px solid rgba(241, 196, 15, 0.15);
    }

    .region-badge.hongkong {
        background-color: rgba(21, 21, 129, 0.04);
        color: #151581;
        border: 1px solid rgba(21, 21, 129, 0.08);
    }

    .store-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 400 !important;
        font-size: 20px !important;
        color: #151581 !important;
    }

    /* Store Metadata Block */
    .store-meta {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .meta-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-family: 'Inter', sans-serif;
        font-size: 13.5px;
        line-height: 1.5;
        color: #777775;
    }

    .meta-item i {
        color: #151581;
        font-size: 14px;
        margin-top: 3px;
        flex-shrink: 0;
        width: 16px;
        text-align: center;
    }

    /* Book Studio Button */
    .btn-book-studio {
        background-color: transparent !important;
        border: 1px solid rgba(21, 21, 129, 0.12) !important;
        color: #151581 !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-size: 12px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.08em !important;
        padding: 12px 24px !important;
        border-radius: 30px !important;
        transition: all 0.3s ease !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
        width: 100%;
        cursor: pointer;
    }

    .btn-book-studio:hover {
        border-color: #151581 !important;
        background-color: #151581 !important;
        color: #ffffff !important;
    }

    /* Embedded Interactive Map */
    .map-container {
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid rgba(21, 21, 129, 0.05);
        position: relative;
    }

    .map-container iframe {
        display: block;
    }

    /* Smooth filter transition class */
    .store-card-col {
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .zen-hidden-store {
        display: none !important;
    }

    @media (max-width: 767px) {
        .store-card-body {
            padding: 25px !important;
        }
    }


/* From resources/views/frontend/layouts/breadcrumb.blade.php */
/* --- Reusable Zen Page Banner & Breadcrumb Component --- */
    .zen-page-banner {
        background-color: #f6f6fa !important; /* Porcelain background */
        padding: 90px 0 !important;
        border-bottom: 1px solid rgba(21, 21, 129, 0.04);
        position: relative;
        overflow: hidden;
    }

    /* Breathing Zen Ambient Light Glow */
    .zen-page-banner::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 380px;
        height: 380px;
        background: radial-gradient(circle, rgba(161, 161, 205, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
        z-index: 1;
        pointer-events: none;
        animation: zenAmbientBreathe 12s ease-in-out infinite alternate;
    }

    @keyframes zenAmbientBreathe {
        0% {
            width: 320px;
            height: 320px;
            opacity: 0.7;
        }
        100% {
            width: 440px;
            height: 440px;
            opacity: 1.3;
        }
    }

    .zen-banner-content {
        position: relative;
        z-index: 2;
    }

    /* Staggered Text Entrance Animations */
    .zen-banner-badge {
        display: inline-block;
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.25em;
        color: #a1a1cd;
        margin-bottom: 12px;
        border: 1px solid rgba(161, 161, 205, 0.25);
        padding: 3px 12px;
        border-radius: 20px;
        opacity: 0;
        animation: zenFadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .zen-banner-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 300 !important;
        font-size: 3rem !important;
        color: #151581 !important;
        letter-spacing: -0.02em;
        margin-bottom: 18px;
        opacity: 0;
        animation: zenFadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
    }

    .zen-breadcrumb-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        color: #a1a1cd;
        opacity: 0;
        animation: zenFadeSlideUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    }

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

    /* Interactive Gold Underline Micro-animation on Hover */
    .zen-breadcrumb-wrap a {
        color: #151581;
        text-decoration: none;
        position: relative;
        transition: color 0.3s ease;
        padding-bottom: 2px;
    }

    .zen-breadcrumb-wrap a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #f1c40f; /* Accent Gold */
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .zen-breadcrumb-wrap a:hover {
        color: #f1c40f;
    }

    .zen-breadcrumb-wrap a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .zen-breadcrumb-wrap .separator {
        font-size: 8px;
        color: rgba(161, 161, 205, 0.4);
    }

    .zen-breadcrumb-wrap .current {
        color: #a1a1cd;
    }

    @media (max-width: 767px) {
        .zen-page-banner {
            padding: 70px 0 !important;
        }
        .zen-banner-title {
            font-size: 2.2rem !important;
        }
    }

/* From resources/views/frontend/layouts/notification.blade.php */
.zen-notification-toast {
            position: fixed;
            top: 100px;
            right: 30px;
            z-index: 99999;
            width: 380px;
            max-width: calc(100vw - 60px);
            background: rgba(246, 246, 250, 0.85) !important;
            backdrop-filter: blur(20px) !important;
            -webkit-backdrop-filter: blur(20px) !important;
            border: 1px solid rgba(21, 21, 129, 0.06) !important;
            border-radius: 16px !important;
            box-shadow: 0 20px 40px rgba(21, 21, 129, 0.08) !important;
            overflow: hidden;
            transform: translateX(120%);
            transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
            opacity: 0;
        }

        .zen-notification-toast.show {
            transform: translateX(0);
            opacity: 1;
        }

        .zen-notification-toast.hide-toast {
            transform: translateY(-20px) scale(0.95);
            opacity: 0;
            pointer-events: none;
        }

        .notification-body {
            padding: 20px 24px 18px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            position: relative;
        }

        .notification-icon-wrap {
            font-size: 20px;
            margin-top: 2px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .notification-content {
            flex-grow: 1;
            padding-right: 15px;
        }

        .notification-label {
            display: block;
            font-family: 'Inter', sans-serif;
            font-size: 9px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            color: #a1a1cd;
            margin-bottom: 4px;
        }

        .notification-message {
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            line-height: 1.5;
            color: #151581;
            margin: 0;
            font-weight: 400;
        }

        .notification-close-btn {
            background: none;
            border: none;
            font-size: 20px;
            color: #a1a1cd;
            cursor: pointer;
            padding: 0;
            line-height: 1;
            position: absolute;
            top: 15px;
            right: 20px;
            transition: color 0.2s ease;
        }

        .notification-close-btn:hover {
            color: #151581;
        }

        /* Animated Progress Bar */
        .notification-progress-bar {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            width: 100%;
            transform-origin: left;
            transform: scaleX(1);
        }

        .zen-notification-toast.show .notification-progress-bar {
            animation: shrinkProgress 4.5s linear forwards;
        }

        @keyframes shrinkProgress {
            from { transform: scaleX(1); }
            to { transform: scaleX(0); }
        }

        @media (max-width: 575px) {
            .zen-notification-toast {
                top: 20px;
                right: 20px;
                width: calc(100vw - 40px);
            }
        }


/* From resources/views/frontend/user/order/show.blade.php */
/* --- Zen Order Detail Styles --- */

    .zen-order-show-section {
        padding: 80px 0 !important;
        background-color: #f6f6fa !important;
    }

    /* Master Status Summary Panel */
    .zen-order-summary-panel {
        background: linear-gradient(135deg, #151581 0%, #0d0d52 100%) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 20px !important;
        box-shadow: 0 15px 45px rgba(21, 21, 129, 0.1) !important;
        position: relative;
        overflow: hidden;
    }

    .zen-order-summary-panel .glow-bg-circle {
        position: absolute;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
        top: -50px;
        right: -50px;
        border-radius: 50%;
        pointer-events: none;
        z-index: 1;
    }

    .summary-label {
        font-family: 'Inter', sans-serif;
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 600;
    }

    .summary-value {
        font-family: 'Inter Tight', sans-serif;
        font-size: 28px;
        font-weight: 700;
        color: #ffffff;
    }

    .summary-date {
        font-family: 'Inter', sans-serif;
        font-size: 13px;
    }

    /* Badges / Status Pills */
    .status-pill {
        padding: 6px 16px !important;
        border-radius: 30px !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    .status-pill.completed {
        background-color: rgba(46, 204, 113, 0.15) !important;
        color: #2ecc71 !important;
        border: 1px solid rgba(46, 204, 113, 0.2) !important;
    }

    .status-pill.pending {
        background-color: rgba(241, 196, 15, 0.15) !important;
        color: #d4af37 !important;
        border: 1px solid rgba(241, 196, 15, 0.2) !important;
    }

    /* Details Card */
    .zen-details-card {
        background-color: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 20px !important;
    }

    .details-card-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 400 !important;
        font-size: 18px !important;
        color: #151581 !important;
        border-bottom: 1px solid rgba(21, 21, 129, 0.06);
        padding-bottom: 12px;
    }

    /* Details List Key-Value styling */
    .details-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .details-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        font-family: 'Inter', sans-serif;
    }

    .details-item .label {
        font-size: 13px;
        color: #a1a1cd;
        font-weight: 500;
    }

    .details-item .value {
        font-size: 14px;
        color: #151581;
        font-weight: 600;
        text-align: right;
    }

    .details-item .value.monospace {
        font-family: 'Courier New', Courier, monospace;
        font-size: 14.5px;
    }

    .details-divider {
        height: 1px;
        background-color: rgba(21, 21, 129, 0.04);
        margin: 4px 0;
    }

    /* Booked Treatments Cards */
    .treatment-item-card {
        background-color: #f6f6fa;
        border: 1px solid rgba(21, 21, 129, 0.03);
        border-radius: 12px;
    }

    .treatment-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 600 !important;
        font-size: 14.5px !important;
        color: #151581 !important;
    }

    .treatment-qty {
        font-family: 'Inter', sans-serif;
        font-size: 12px;
        font-weight: 600;
        color: #a1a1cd;
        background: rgba(21, 21, 129, 0.03);
        padding: 3px 10px;
        border-radius: 20px;
    }

    .treatment-meta {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .meta-line {
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: 'Inter', sans-serif;
        font-size: 12.5px;
        color: #777775;
    }

    .meta-line i {
        font-size: 13px;
        width: 14px;
        text-align: center;
    }

    /* Action buttons */
    .btn-action-primary {
        background-color: #151581 !important;
        border: 1px solid #151581 !important;
        color: #ffffff !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-size: 12.5px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.08em !important;
        padding: 12px 24px !important;
        border-radius: 30px !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 0 4px 15px rgba(21, 21, 129, 0.1) !important;
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        cursor: pointer;
    }

    .btn-action-primary:hover {
        background-color: #f1c40f !important;
        border-color: #f1c40f !important;
        color: #151581 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(241, 196, 15, 0.2) !important;
    }

    .btn-action-secondary {
        background-color: transparent !important;
        border: 1px solid rgba(21, 21, 129, 0.15) !important;
        color: #151581 !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-size: 12.5px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.08em !important;
        padding: 12px 24px !important;
        border-radius: 30px !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        cursor: pointer;
    }

    .btn-action-secondary:hover {
        border-color: #151581 !important;
        background-color: rgba(21, 21, 129, 0.02) !important;
        transform: translateY(-1px) !important;
    }

    @media (max-width: 767px) {
        .zen-order-summary-panel {
            padding: 20px !important;
        }
        .summary-value {
            font-size: 24px;
        }
        .btn-action-primary, .btn-action-secondary {
            width: 100%;
            justify-content: center;
        }
    }

/* From resources/views/frontend/user/dashboard.blade.php */
/* --- Zen User Dashboard Styles --- */

    .zen-dashboard-section {
        padding: 80px 0 !important;
        background-color: #f6f6fa !important;
        position: relative;
    }

    /* Glassmorphic Wallet Card */
    .zen-wallet-card {
        background: linear-gradient(135deg, #151581 0%, #0d0d52 100%) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 20px !important;
        box-shadow: 0 15px 45px rgba(21, 21, 129, 0.1) !important;
    }

    .glow-bg-circle {
        position: absolute;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
        top: -50px;
        right: -50px;
        border-radius: 50%;
        pointer-events: none;
        z-index: 1;
    }

    .wallet-label {
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: rgba(255, 255, 255, 0.6);
        font-weight: 600;
        display: flex;
        align-items: center;
    }

    .wallet-value {
        font-family: 'Inter Tight', sans-serif;
        font-size: 32px;
        font-weight: 700;
        color: #ffffff;
    }

    .wallet-value small {
        font-size: 16px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.6);
        letter-spacing: 0.05em;
        margin-left: 5px;
    }

    .btn-wallet-recharge {
        background-color: #f1c40f !important;
        border: 1px solid #f1c40f !important;
        color: #151581 !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 600 !important;
        font-size: 12.5px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.08em !important;
        padding: 12px 28px !important;
        border-radius: 30px !important;
        transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
        display: inline-flex;
        align-items: center;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(241, 196, 15, 0.15) !important;
    }

    .btn-wallet-recharge:hover {
        background-color: #ffffff !important;
        border-color: #ffffff !important;
        color: #151581 !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2) !important;
    }

    /* Left Sidebar Navigation */
    .zen-sidebar-nav {
        background-color: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 20px !important;
        overflow: hidden;
    }

    .sidebar-header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .user-avatar-wrap {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background-color: rgba(21, 21, 129, 0.04);
        border: 1px solid rgba(21, 21, 129, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .avatar-letter {
        font-family: 'Inter Tight', sans-serif;
        font-size: 24px;
        font-weight: 600;
        color: #151581;
    }

    .user-name {
        font-family: 'Inter Tight', sans-serif !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        color: #151581 !important;
    }

    .user-email {
        font-family: 'Inter', sans-serif;
        font-size: 11.5px;
    }

    .sidebar-divider {
        height: 1px;
        background-color: rgba(21, 21, 129, 0.06);
    }

    .sidebar-menu .nav-link {
        font-family: 'Inter', sans-serif !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        color: #777775 !important;
        padding: 15px 24px !important;
        display: flex;
        align-items: center;
        gap: 12px;
        border-radius: 0;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
        text-decoration: none;
    }

    .sidebar-menu .nav-link .icon {
        font-size: 14px;
        width: 16px;
        text-align: center;
        color: #a1a1cd;
        transition: color 0.3s ease;
    }

    .sidebar-menu .nav-link:hover {
        background-color: rgba(21, 21, 129, 0.02) !important;
        color: #151581 !important;
    }

    .sidebar-menu .nav-link:hover .icon {
        color: #151581;
    }

    .sidebar-menu .nav-link.active {
        background-color: rgba(21, 21, 129, 0.03) !important;
        color: #151581 !important;
        border-left-color: #f1c40f !important;
        font-weight: 600 !important;
    }

    .sidebar-menu .nav-link.active .icon {
        color: #151581;
    }

    .sidebar-menu .logout-link {
        color: #e74c3c !important;
        border-top: 1px solid rgba(21, 21, 129, 0.04);
    }

    .sidebar-menu .logout-link .icon {
        color: #e74c3c;
    }

    .sidebar-menu .logout-link:hover {
        background-color: rgba(231, 76, 60, 0.04) !important;
    }

    /* Right Content Card */
    .zen-content-card {
        background-color: #ffffff !important;
        border: 1px solid rgba(21, 21, 129, 0.06) !important;
        border-radius: 20px !important;
        min-height: 400px;
    }

    .tab-pane-header {
        border-bottom: 1px solid rgba(21, 21, 129, 0.06);
        padding-bottom: 15px;
    }

    .tab-title {
        font-family: 'Inter Tight', sans-serif !important;
        font-weight: 400 !important;
        font-size: 20px !important;
        color: #151581 !important;
    }

    .tab-subtitle {
        font-family: 'Inter', sans-serif;
        font-size: 12.5px;
        color: #777775;
        margin-bottom: 0;
    }

    /* Custom elegant forms */
    .zen-form-label {
        font-family: 'Inter', sans-serif;
        font-size: 11.5px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: #a1a1cd;
        margin-bottom: 6px;
    }

    .zen-form-input {
        background: transparent !important;
        border: 1px solid rgba(21, 21, 129, 0.1) !important;
        border-radius: 10px !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 14px !important;
        color: #151581 !important;
        padding: 12px 16px !important;
        box-shadow: none !important;
        outline: none !important;
        transition: border-color 0.3s ease !important;
    }

    .zen-form-input:focus {
        border-color: #151581 !important;
    }

    .error {
        color: #e74c3c !important;
        font-family: 'Inter', sans-serif;
        font-size: 11px;
        margin-top: 5px;
        display: block;
    }

    /* Tables Redesign */
    .zen-dashboard-table {
        font-family: 'Inter', sans-serif;
        font-size: 13.5px;
        border: 1px solid rgba(21, 21, 129, 0.05);
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 0;
    }

    .zen-dashboard-table th {
        background-color: rgba(21, 21, 129, 0.03) !important;
        color: #151581 !important;
        font-weight: 600;
        padding: 14px 18px;
        border-bottom: 2px solid rgba(21, 21, 129, 0.06) !important;
    }

    .zen-dashboard-table td {
        padding: 14px 18px;
        border-bottom: 1px solid rgba(21, 21, 129, 0.04);
        color: #777775;
    }

    .zen-dashboard-table tr:hover td {
        background-color: rgba(21, 21, 129, 0.01);
    }

    .text-indigo {
        color: #151581 !important;
    }

    /* Badges / Status Pills */
    .status-pill {
        padding: 5px 12px !important;
        border-radius: 30px !important;
        font-family: 'Inter', sans-serif !important;
        font-size: 10px !important;
        font-weight: 600 !important;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }

    .status-pill.completed {
        background-color: rgba(46, 204, 113, 0.06) !important;
        color: #2ecc71 !important;
        border: 1px solid rgba(46, 204, 113, 0.12) !important;
    }

    .status-pill.pending {
        background-color: rgba(241, 196, 15, 0.06) !important;
        color: #d4af37 !important;
        border: 1px solid rgba(241, 196, 15, 0.12) !important;
    }

    .btn-view-order {
        background-color: transparent !important;
        border: 1px solid rgba(21, 21, 129, 0.12) !important;
        color: #151581 !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-size: 11.5px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.05em !important;
        padding: 6px 16px !important;
        border-radius: 30px !important;
        text-decoration: none;
        transition: all 0.3s ease !important;
        display: inline-flex;
        align-items: center;
    }

    .btn-view-order:hover {
        background-color: #151581 !important;
        border-color: #151581 !important;
        color: #ffffff !important;
    }

    /* Empty State */
    .empty-state-icon {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background-color: rgba(21, 21, 129, 0.02);
        border: 1px solid rgba(21, 21, 129, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        color: #a1a1cd;
        margin: 0 auto;
    }

    /* Primary checkout CTA style button */
    .btn-checkout {
        background-color: #151581 !important;
        border: 1px solid #151581 !important;
        color: #ffffff !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 500 !important;
        font-size: 13px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.1em !important;
        padding: 14px 28px !important;
        border-radius: 30px !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: 0 4px 15px rgba(21, 21, 129, 0.1) !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
        cursor: pointer;
    }

    .btn-checkout:hover {
        background-color: #f1c40f !important;
        border-color: #f1c40f !important;
        color: #151581 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(241, 196, 15, 0.2) !important;
    }

    @media (max-width: 767px) {
        .zen-wallet-card {
            padding: 20px !important;
        }
        .wallet-value {
            font-size: 26px;
        }
        .btn-wallet-recharge {
            width: 100%;
            justify-content: center;
        }
        .zen-content-card {
            padding: 25px 20px !important;
        }
        .btn-checkout {
            width: 100%;
            justify-content: center;
        }
    }

