        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --gold: #c9a668;
            --dark-blue: #012c84;
            --light-blue: #0c2340;
            --light-gold: #e8d9b0;
            --white: #ffffff;
            --light-gray: #f5f5f5;
            --transition: all 0.4s ease;
            --black: #000000;
        }

                h1, h2, h3, h4, h5 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

.unified-header {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 130px;
  background-color: var(--white);
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid var(--gold);
}


.header-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;

  align-items: center;
  height: 100%;
}

.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  z-index: 10005 !important;
}
        

.logo-left {
    flex: 1;
}


.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-right .opening-hours-dropdown {
    margin-right: 15px;
}

.right-aligned-nav {
  display: flex;
  justify-content: flex-end;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px 10px;
}

        .header-top-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .header-icons {
            display: flex;
            gap: 15px;
            margin-left: 100px;
        }
        
        .header-icons a {
            color: var(--dark-blue);
            font-size: 15px;
            transition: var(--transition);
        }
        
        .header-icons a:hover {
            color: var(--gold);
        }
        
        .buy-now-btn {
            
            background: transparent;
            border: 1px solid var(--dark-blue);
            color: var(--dark-blue);
            font-size: 12px;
            letter-spacing: 1px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
              padding: 6px 12px;
            border-radius: 2px;
            text-decoration: none;
        }
        
        .buy-now-btn:hover {
            background: var(--gold);
            border-color: var(--gold);
            color: var(--white);
        }
        
        .opening-hours-dropdown {
            position: relative;
            cursor: auto;
            padding: 8px 12px;
            border-radius: 4px;
            transition: var(--transition);
        }
        
        .opening-hours-dropdown:hover {
            background: rgba(201, 166, 104, 0.1);
        }
        
.opening-hours-dropdown span {
 
  font-size: 13px;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 4px;
}

.opening-hours-dropdown a {
  font-size: 13px;
  color: var(--dark-blue);
  display: flex;
  text-decoration: none;
  align-items: center;
  gap: 4px;
}
        
        .hours-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--white);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            min-width: 220px;
            padding: 15px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
            z-index: 1000;
            border-radius: 5px;
        }
        
        .hours-dropdown h4 {
            color: var(--dark-blue);
            font-size: 16px;
            margin-bottom: 10px;
            text-align: center;
        }
        
        .hours-list {
            list-style: none;
        }
        
        .hours-list li {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            font-size: 14px;
        }
        
        .hours-list li:last-child {
            border-bottom: none;
        }
        
        .opening-hours-dropdown:hover .hours-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        

        
.logo-link {
  cursor: pointer;
  display: block;
}


.logo-container {
  display: flex;
  justify-content: start;
  position: absolute;
  left: calc(50% - 650px); 
  top: 0;
  height: 100%;
  z-index: 1001;
  padding: 10px 0;
  width: 200px; 
  transition: all 0.3s ease;
}


.shrink .logo-container {
  height: 70px;
  padding: 5px 0;
}


.header-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 20px;
  width: 100%;
  margin-left: 220px; 
}


.logo-bg {
  max-height: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: all 0.3s ease; 
}

.header-logo-bg .logo-link {
  pointer-events: auto;
  display: inline-block;
  cursor: pointer;
  height: 100%;
}

.logo:hover {
  opacity: 0.9;
}

.header-inner,
.nav-bar {
font-weight: 800;
  position: relative;
  z-index: 1;
  margin-left: auto;
  width: calc(100% - 220px); 
  padding-right: 20px;
  display: flex;
  justify-content: flex-end;
}


      
        
.nav-container {
    display: flex;
    justify-content: flex-end;
    padding: 0 20px 15px;
    max-width: 1300px;
    margin: 0 auto;
}

.nav-bar {
  display: flex;
  justify-content: flex-end;
  max-width: 1300px;
  margin: 0 auto;
  padding: 4px 20px 10px;
}

.nav-menu {
    
  display: flex;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-bar,
.nav-menu {
  overflow: visible !important;
}

        
        .nav-menu li {
            position: relative;
        }
        
.nav-menu li a {
    
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  gap: 5px;
}
        
        .nav-menu li a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--gold);
            transition: var(--transition);
        }
        
        .nav-menu li a:hover {
            color: var(--gold);
        }
        
        .nav-menu li a:hover:after {
            width: 100%;
        }
        
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  min-width: 200px;
  padding: 15px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1;
  border-radius: 5px;
}
        
        .dropdown li {
            padding: 0;
            color: #ffffff;
        }
        
        
        .dropdown li a {
            display: block;
            padding: 10px 20px;
            color: var(--dark-blue);
            font-size: 12px;
            text-transform: none;
            transition: var(--transition);
        }
        
        .dropdown li a:hover {
            background-color: rgba(201, 166, 104, 0.1);
            color: var(--dark-blue);
            padding-left: 25px;
        }
        
.nav-menu li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-select {
    font-weight: 800;
  padding: 5px 1px;
  font-size: 12px;
  border: none;
  background: var(--white);
  color: var(--dark-blue);
  border-radius: 2px;
  cursor: pointer;
}

.language-select:hover {
    
  background-color: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.shrink {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  height: 70px; 
  display: flex;
  align-items: center;
  justify-content: space-between;

}


.shrink .header-inner{
    display: none;
}

.shrink .logo {
  height: 30px;
  transition: height 0.3s ease;
}


.shrink .nav-menu {
    margin-top: 25px;
  display: flex;
  gap: 20px;
  justify-content: flex-end; 
  align-items: center; 
  flex: 1;
  padding-right: 200px;
}


.shrink .buy-now-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 12px;
  padding: 6px 12px;
  transition: all 0.3s ease;
  z-index: 10000;
}

.shrink .buy-now-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 12px;
  padding: 6px 12px;
  transition: all 0.3s ease;
  z-index: 10000;
}


.unified-header.shrink {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  height: 70px;
}


.shrink .header-inner > *:not(.buy-now-btn) {
  display: none;
}


.shrink .header-right {
  display: none;
}

.search-container {
  position: fixed; 
  top: 0;
  left: 0;
  right: 0;
  height: 70px; 
  background: var(--white);
  z-index: 1002; 
  padding: 0 20px;
  display: none; 
  align-items: center;
}

.search-active .search-container {
  display: flex;
}


.search-form {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}


.shrink .search-container {
  top: 0;
  height: 70px;
}


.shrink .search-active .search-container {
  display: flex;
}


.search-active .opening-hours-dropdown,
.search-active .header-icons,
.search-active .language-select,
.search-active .buy-now-btn {
  display: none !important;
}

.header-modal {
  display: none;
  position: fixed;
  z-index: 10000; 
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  align-items: center;
  justify-content: center;
}

.header-modal-content {
  background-color: var(--white);
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
  width: 90%;
  max-width: 400px;
  position: relative;
  animation: modalAppear 0.3s ease-out;
  text-align: center;
}


.continue-with {
  font-size: 14px;
  color: var(--dark-blue);
  margin-bottom: 15px;
  font-weight: 600;
}

.social-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  justify-content: center; 
}

.social-btn {
  width: 50px;
  height: 50px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  border-style: none;
}

.social-btn i {
  font-size: 20px;
}

.social-btn span {
  display: none;
}

.header-close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark-blue);
  transition: var(--transition);
}

.header-close-modal:hover {
  color: var(--gold);
}

#back-to-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: var(--dark-blue);
  color: var(--white);
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition);
  font-weight: 700;
  border: 1px solid rgba(0,0,0,0.1);
  margin-bottom: 15px;
}

#back-to-login:hover {
  background-color: var(--gold);
  color: var(--white);
  text-decoration: none;
  border-color: var(--gold);
}

.back-to-login i {
  font-size: 14px;
}

.fb-btn {
  background: #3b5998;
  color: white;
}

.fb-btn:hover {
  background: #2d4373;
}

.google-btn {
  background: #dd4b39;
  color: white;
}

.google-btn:hover {
  background: #c23321;
}


.divider {
  position: relative;
  margin: 25px 0;
  text-align: center;
}

.divider span {
  background: white;
  padding: 0 15px;
  position: relative;
  z-index: 1;
  color: var(--dark-blue);
  font-size: 14px;
}

.divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0,0,0,0.1);
  transform: translateY(-50%);
}


.form-title {
  font-size: 16px;
  color: var(--dark-blue);
  margin-bottom: 20px;
  font-weight: 500;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--dark-blue);
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--light-gray);
  border-radius: 4px;
  font-size: 14px;
  transition: var(--transition);
}

.form-group input:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 2px rgba(201, 166, 104, 0.2);
}

.password-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forgot-password {
  font-size: 12px;
  color: var(--dark-blue);
  text-decoration: none;
  transition: var(--transition);
}

.forgot-password:hover {
  color: var(--gold);
  text-decoration: underline;
}

.login-btn {
  width: 100%;
  background-color: var(--dark-blue);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  transition: var(--transition);
  margin-top: 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.login-btn:hover {
  background-color: var(--gold);
}


.signup-link {
  margin-top: 20px;
  font-size: 14px;
  color: var(--dark-blue);
}

.signup-link a {
  color: var(--dark-blue);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.signup-link a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.privacy-policy {
  margin-top: 15px;
}

.privacy-policy a {
  font-size: 12px;
  color: var(--dark-blue);
  text-decoration: none;
  transition: var(--transition);
}

.privacy-policy a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background-color: var(--gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
}

.user-link {
  position: relative;
  z-index: 9999;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  min-width: 300px; 
  padding: 10px; 
  opacity: 0;
  visibility: hidden;
  transform: none !important;
  transition: var(--transition);
  z-index: 10010 !important;
  border-radius: 4px;
  border: 1px solid var(--gold);
  margin-top: 10px;
}

.nav-menu li {
  position: relative;
  z-index: 1;
}

.user-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.welcome-message {
  font-size: 15px; 
  font-weight: 700;
  color: var(--dark-blue);
  padding: 18px 20px 14px; 
  border-bottom: 1px solid var(--light-gray);
  margin: 0;
}

.dropdown-item {
  display: block;
  padding: 14px 20px; 
  color: var(--dark-blue);
  text-decoration: none;
  font-size: 14px; 
  font-weight: 600;
  transition: var(--transition);
  border-bottom: 1px solid var(--gold); 
}

.dropdown-item:last-child {
  border-bottom: none; 
}

.dropdown-item:hover {
  color: var(--gold);
  background-color: rgba(201, 166, 104, 0.05); 
  padding-left: 25px;
}

.logout-btn {
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  width: 100%;
  padding: 14px 20px; 
  font-size: 14px; 
  font-weight: 600;
  color: var(--dark-blue);
}

.logout-btn:hover {
  color: var(--gold);
  background-color: rgba(201, 166, 104, 0.05); 
  padding-left: 25px;
}

.user-link.logged-in:hover .user-dropdown {
  opacity: 1;
  visibility: visible;
}

.nav-menu li a {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .unified-header {
    height: 80px;
    position: relative;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    z-index: 10010;
    cursor: pointer;
  }
  
  .mobile-menu-toggle i {
    font-size: 24px;
    color: var(--dark-blue);
  }
  
  .logo-container {
    position: static;
    width: auto;
    left: auto;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    height: 100%;
  }
  
  .header-inner {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
    padding: 0;
    width: auto;
  }
  
  .header-right {
    gap: 12px;
  }
  
  .opening-hours-dropdown,
  .language-select,
  .header-icons {
    display: none;
  }
  
  .buy-now-btn {
    font-size: 11px;
    padding: 6px 10px;
  }
  
  .nav-bar {
    display: none;
  }
  
  /* Mobile Navigation */
  .mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    height: 100vh;
    background: var(--white);
    z-index: 10020;
    transition: all 0.4s ease;
    overflow-y: auto;
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
  }
  
  .mobile-nav.active {
    left: 0;
  }
  
  .mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
  }
  
  .mobile-logo {
    height: 30px;
  }
  
  .mobile-close {
    font-size: 24px;
    color: var(--dark-blue);
    cursor: pointer;
  }
  
  .mobile-nav-menu {
    list-style: none;
    padding: 20px 0;
  }
  
  .mobile-nav-menu > li {
    border-bottom: 1px solid var(--light-gray);
  }
  
  .mobile-nav-menu > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
  }
  
  .mobile-submenu {
    list-style: none;
    padding: 0 20px 10px;
    display: none;
  }
  
  .mobile-submenu.active {
    display: block;
  }
  
  .mobile-submenu li a {
    display: block;
    padding: 12px 10px;
    color: var(--dark-blue);
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  
  .mobile-submenu li:last-child a {
    border-bottom: none;
  }
  
  .mobile-buy-btn {
    display: block;
    margin: 20px;
    text-align: center;
    background: var(--dark-blue);
    color: white !important;
    border-radius: 4px;
    padding: 12px;
    font-weight: 700;
  }
  
  .mobile-footer {
    padding: 20px;
    border-top: 1px solid var(--light-gray);
  }
  
  .mobile-lang-select {
    margin-bottom: 15px;
  }
  
  .mobile-lang-select select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
  }
  
  .mobile-social {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .mobile-social a {
    color: var(--dark-blue);
    font-size: 20px;
  }
  
  /* Adjust sticky header for mobile */
  .unified-header.shrink {
    height: 70px;
  }
  
  .shrink .logo-container {
    padding: 5px 0;
  }
  
  /* User dropdown adjustments */
  .user-dropdown {
    right: -50px;
    min-width: 280px;
  }
  
  /* Modal adjustments */
  .header-modal-content {
    width: 95%;
    padding: 20px;
  }
  
  .social-buttons {
    flex-wrap: wrap;
  }
  
  .social-btn {
    flex: 1;
    min-width: 120px;
  }
  
  .social-btn span {
    display: inline;
    margin-left: 8px;
    font-size: 14px;
  }
  
  /* Search overlay for mobile */
  .search-container {
    height: 70px;
    padding: 10px 15px;
  }
  
  .search-form input {
    padding: 12px 15px;
    font-size: 16px;
  }
  
  /* Hide desktop elements */
  .right-aligned-nav,
  .nav-container {
    display: none;
  }
}

@media (min-width: 992px) {
  .mobile-menu-toggle,
  .mobile-nav {
    display: none;
  }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991px) {
  .header-inner {
    right: 30px;
  }
  
  .mobile-nav {
    width: 65%;
  }
  
  .buy-now-btn {
    font-size: 12px;
    padding: 8px 14px;
  }
}

/* Small Mobile Screens */
@media (max-width: 480px) {
  .logo-bg {
    max-height: 40px;
  }
  
  .header-icons {
    gap: 10px;
  }
  
  .user-link img {
    width: 20px;
    height: 20px;
  }
  
  .buy-now-btn {
    padding: 5px 8px;
    font-size: 10px;
  }
  
  .mobile-nav {
    width: 90%;
  }
}

