html {
  scroll-behavior: smooth;
  margin: 0 !important;
}

@font-face {
  font-family: 'Big Caslon FB';
  src: local('Big Caslon FB'), local('Big Caslon'),
    url('../font/BigCaslonFB-Regular.woff2') format('woff2'),
    url('../font/BigCaslonFB-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Big Caslon FB';
  src: local('Big Caslon FB Bold'), local('Big Caslon Bold'),
    url('../font/BigCaslonFB-Bold.woff2') format('woff2'),
    url('../font/BigCaslonFB-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Unica77';
  src: url('../font/Unica77LLWeb-Medium.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Unica77';
  src: url('../font/Unica77LLWeb-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Unica77';
  src: url('../font/Unica77LLWeb-Bold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Unica77';
  src: url('../font/Unica77LLWeb-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-primary: #FAF9F7;
  --bg-secondary: #F5EEE7;
  --text-primary: #013f94;
  --accent: rgb(77, 166, 204);
  --accent-light: #b8e2f4;
  --accent-dark: #5fa8cc;
  --white: #FFFFFF;
  --transition: all 0.3s ease;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.08);
  --border-radius: 12px;
  --section-spacing: 80px;
  --font-display: 'Big Caslon FB', 'big-caslon-fb', 'Big Caslon', 'Caslon', Georgia, 'Times New Roman', serif;
  --font-body: 'Unica77', Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body.cp-loader-active {
  overflow: hidden;
}

.cp-site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(77, 166, 204, 0.14), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-primary) 100%);
  transition: opacity .55s ease, visibility .55s ease;
}

.cp-site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cp-site-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.cp-site-loader__mark {
  width: clamp(150px, 18vw, 230px);
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cpLogoFloat 1.35s ease-in-out infinite;
  filter: drop-shadow(0 18px 28px rgba(1, 63, 148, 0.15));
}

.cp-site-loader__logo {
  width: 100%;
  height: auto;
  max-height: 140px;
  object-fit: contain;
  display: block;
}

.cp-site-loader__text {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-size: clamp(36px, 7vw, 62px);
  line-height: 1;
}

.cp-site-loader__line {
  width: 150px;
  height: 3px;
  overflow: hidden;
  position: relative;
  border-radius: 999px;
  background: rgba(1, 63, 148, 0.10);
}

.cp-site-loader__line::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 45%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--text-primary), var(--accent));
  animation: cpLoaderLine 1.1s ease-in-out infinite;
}

@keyframes cpLogoFloat {
  0%, 100% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes cpLoaderLine {
  0% {
    transform: translateX(-110%);
  }
  100% {
    transform: translateX(240%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cp-site-loader__mark,
  .cp-site-loader__line::after {
    animation: none;
  }
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.3;
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

@media (min-width: 325px) {
  .container {
    padding: 0 18px;
  }
}

@media (min-width: 375px) {
  .container {
    padding: 0 20px;
  }
}

@media (min-width: 425px) {
  .container {
    padding: 0 22px;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 30px;
    max-width: 720px;
  }
}

@media (min-width: 991px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}

@media (min-width: 1920px) {
  .container {
    max-width: 1800px;
  }
}

@media (min-width: 2200px) {
  .container {
    max-width: 2100px;
  }
}

.pt-0 {
  padding-top: 0 !important;
}

/* Announcement bar (Shopify-style sliding offer ticker) — sits above the site header */
:root {
  --cp-announce-h: 54px;
}
.cp-announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--cp-announce-h);
  background: linear-gradient(135deg, #013f94 0%, #4DA6CC 100%);
  color: #fff;
  z-index: 1100;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 12px 0;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 16px;
  letter-spacing: 0.5px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.cp-announcement-track {
  display: flex;
  flex-shrink: 0;
  white-space: nowrap;
  animation: cpAnnounceMarquee 35s linear infinite;
  will-change: transform;
}
.cp-announcement-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  position: relative;
  flex-shrink: 0;
}
.cp-announcement-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}
.cp-announcement-item i {
  font-size: 15px;
  opacity: 0.95;
}
@keyframes cpAnnounceMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.cp-announcement-bar:hover .cp-announcement-track {
  animation-play-state: paused;
}
@media (max-width: 600px) {
  :root { --cp-announce-h: 46px; }
  .cp-announcement-bar { font-size: 14px; padding: 10px 0; }
  .cp-announcement-item { padding: 0 22px; }
  .cp-announcement-item i { font-size: 13px; }
}

/* Header — scope to site header only (#header), not every <header> in the DOM */
#header {
  position: fixed;
  top: var(--cp-announce-h, 0px);
  left: 0;
  width: 100%;
  background-color: rgba(250, 249, 247, 0.98);
  z-index: 1000;
  padding: 8px 0 5px 0;
  transition: transform .35s cubic-bezier(.4,0,.2,1), top .35s cubic-bezier(.4,0,.2,1), box-shadow .25s ease, background-color .25s ease, padding .25s ease;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
/* Smart sticky: slide above the viewport when scrolling down */
#header.header-hidden {
  transform: translateY(-100%);
  top: 0;
}
/* When announcement bar is not present, header sits at top:0 (no var fallback) */
body:not(:has(.cp-announcement-bar)) #header { top: 0; }


#header.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo-image {
  height: 90px;
  width: auto;
  margin-top: 4px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

@media (min-width: 991px) {
  nav ul {
    gap: 30px;
  }
}

@media (max-width: 991px) {

  /* Keep #header fixed on mobile so smart-sticky still works */
  #header {
    position: fixed;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 767px) {
  /* Bigger logo on mobile */
  .logo-image {
    height: 64px;
  }

  /* Bigger header action icons (search / cart / account) */
  .header-action-btn {
    width: 44px !important;
    height: 44px !important;
    font-size: 22px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .header-action-btn i {
    font-size: 22px;
  }
  .header-action-btn .caspetal-cart-count {
    font-size: 11px;
    min-width: 18px;
    height: 18px;
  }

  /* Bigger hamburger menu button */
  .mobile-menu-btn {
    width: 52px !important;
    height: 52px !important;
    font-size: 28px !important;
    padding: 10px !important;
  }
  .mobile-menu-btn i {
    font-size: 26px;
  }

  /* Slight breathing room between actions */
  .header-actions {
    gap: 8px;
  }
}
@media (max-width: 480px) {
  .logo-image {
    height: 56px;
  }
  .header-action-btn,
  .header-action-btn i {
    font-size: 20px !important;
  }
}

nav li {
  margin: 0;
}

nav a {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 400;
  transition: var(--transition);
  position: relative;
  font-size: 15px;
  padding: 5px 25px;
  display: block;
  position: relative;
  overflow: hidden;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  nav a {
    font-size: 16px;
  }
}

nav a::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

nav a:hover::before {
  visibility: visible;
  transform: scaleX(1);
}

nav a:hover {
  color: var(--accent);
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-primary);
  z-index: 1001;
  padding: 8px;
  border-radius: 4px;
  transition: var(--transition);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-btn:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

@media (min-width: 991px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Navigation */
#mainNav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-primary);
  padding: 87px 17px 30px;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  z-index: 999;
  overflow-y: auto;
}

#mainNav.active {
  right: 0;
}

#mainNav ul {
  flex-direction: column;
  gap: 24px;
}

#mainNav li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#mainNav a {
  font-size: 18px;
  padding: 10px 0;
  display: block;
  width: 100%;
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 991px) {
  #mainNav {
    position: static;
    width: auto;
    height: auto;
    background: none;
    padding: 0;
    box-shadow: none;
    overflow: visible;
  }

  #mainNav ul {
    flex-direction: row;
  }

  #mainNav li {
    margin: 0 !important;
    border: none;
    padding: 0 !important;
  }

  #mainNav a {
    font-size: 20px;
    padding: 8px 0;
  }

  .nav-overlay {
    display: none;
  }
}

/* Footer Main Section */
.luxury-footer .footer-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.luxury-footer .footer-brand {
  max-width: 100%;
}

@media (min-width: 768px) {
  .luxury-footer .footer-brand {
    max-width: 500px;
  }
}

.luxury-footer .footer-logo {
  display: inline-block;
}

.luxury-footer .brand-name {
  font-family: 'Cormorant Garamond', 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: white;
}

.luxury-footer .footer-description {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #b8c7d8;
}

.luxury-footer .social-links {
  display: flex;
  gap: 15px;
}

.luxury-footer .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #e8e8e8;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.luxury-footer .social-link:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(77, 166, 204, 0.3);
}

/* Footer Links */
.luxury-footer .footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 576px) {
  .luxury-footer .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .luxury-footer .footer-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

.luxury-footer .link-group h3 {
  font-size: 18px;
  margin-bottom: 20px;
  color: white;
  font-weight: 500;
  position: relative;
  padding-bottom: 10px;
}

.luxury-footer .link-group h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.luxury-footer .link-group ul {
  list-style: none;
}

.luxury-footer .link-group ul li {
  margin-bottom: 12px;
}

.luxury-footer .link-group ul li a {
  color: #b8c7d8;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  display: inline-block;
}

.luxury-footer .link-group ul li a:hover {
  color: white;
  transform: translateX(5px);
}

.luxury-footer .contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: #b8c7d8;
  font-size: 15px;
  line-height: 1.5;
}

.luxury-footer .contact-info li i {
  margin-right: 10px;
  color: var(--accent);
  margin-top: 3px;
  min-width: 16px;
}
/* Footer Bottom Section */
.luxury-footer .footer-bottom {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.luxury-footer .footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .luxury-footer .footer-bottom-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.luxury-footer .footer-bottom p {
  font-size: 14px;
  color: #a0b1c5;
  margin: 0;
}

.luxury-footer .footer-legal {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

@media (min-width: 768px) {
  .luxury-footer .footer-legal {
    justify-content: flex-end;
  }
}

.luxury-footer .footer-legal a {
  color: #a0b1c5;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.luxury-footer .footer-legal a:hover {
  color: white;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-10px) translateX(-50%);
  }

  60% {
    transform: translateY(-5px) translateX(-50%);
  }
}

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

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

#okapi-wasb-button {
  position: fixed;
  bottom: 20%;
  right: 15px;
  z-index: 9999;
}

#okapi-wasb-button img {
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

#okapi-wasb-button:hover img {
  transform: scale(1.1);
}

  /* Luxury Footer Styles */
  .luxury-footer {
      background: linear-gradient(135deg, #0a1f3a 0%, #1a3a5f 100%);
      color: #e8e8e8;
      padding: 45px 0 20px;
      position: relative;
      overflow: hidden;
  }

  .luxury-footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:
          radial-gradient(circle at 20% 80%, rgba(77, 166, 204, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 80% 20%, rgba(1, 63, 148, 0.1) 0%, transparent 50%),
          radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
      pointer-events: none;
  }

  .luxury-footer .footer-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 50px;
      position: relative;
      z-index: 1;
  }

  @media (min-width: 992px) {
      .luxury-footer .footer-container {
          grid-template-columns: 1fr 1fr;
      }
  }

  @media (max-width: 767px) {
      .luxury-footer {
          padding: 40px 0 20px;
      }

      .luxury-footer .footer-container {
          gap: 30px;
      }
  }

  html{
      overflow-x: hidden !important;
  }
