@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Geologica:wght@400;500;700&display=swap");
* {
  box-sizing: border-box;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body {
  color: #242A2E;
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  background: #fff;
}

a {
  color: #242A2E;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:focus {
  outline: none;
}
a:hover {
  transition: all 0.3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Geologica", sans-serif;
  margin: 0;
}

.link-btn {
  background: #FFC013;
  border-radius: 30px;
  padding: 10px 20px;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  border: 1px solid #FFC013;
  display: flex;
  align-items: center;
  max-width: fit-content;
}
@media (max-width: 767px) {
  .link-btn {
    font-size: 14px;
  }
}
.link-btn svg {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .link-btn svg {
    width: 21px;
  }
}
.link-btn:hover {
  background: #fff;
  color: #FFC013;
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

h1 {
  color: #FFC013;
  font-size: 70px;
  font-weight: 700;
  line-height: 70px;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 1199px) {
  h1 {
    font-size: 56px;
    line-height: 62px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 42px;
    line-height: 44px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 34px;
    line-height: 40px;
  }
}
h1 span {
  color: #FFC013;
}

h2 {
  font-size: 46px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  text-transform: capitalize;
  color: #242A2E;
}
@media (max-width: 1199px) {
  h2 {
    font-size: 37px;
  }
}
@media (max-width: 991px) {
  h2 {
    font-size: 32px;
  }
}
h2 span {
  color: #FFC013;
}
h2 font {
  color: #055D62;
}

h3 {
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
}
@media (max-width: 991px) {
  h3 {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
    line-height: 28px;
  }
}

p {
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 767px) {
  p {
    font-size: 14px;
    line-height: 20px;
  }
}

.green-border-btn {
  border: 1px solid #055D62;
  background: rgba(255, 255, 255, 0.2);
}
.green-border-btn:hover {
  background: #055D62;
  border: 1px solid #055D62;
  color: #fff;
}
.green-border-btn:hover svg path:last-child {
  stroke: #fff;
}

.grey-border-btn {
  border: 1px solid #D9D9D9;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #242A2E;
}
.grey-border-btn:hover {
  background: #D9D9D9;
  color: #242A2E;
}

.transparent-btn {
  border: 1px solid #FFF;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.transparent-btn svg path:last-child {
  stroke: #fff;
}
.transparent-btn:hover {
  background: #FFC013;
  color: #fff;
  border: 1px solid #FFC013;
}
.transparent-btn:hover svg path:first-child {
  fill: #fff;
}

h4 {
  font-size: 22px;
  font-weight: 500;
  color: #242A2E;
  margin: 0;
  margin-bottom: 10px;
}

figure {
  margin: 0;
  padding: 0;
}

img {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}

.slick-arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) !important;
  bottom: 70px;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  background-color: #F8F8F8;
  z-index: 9;
  right: auto;
  top: auto;
  bottom: 0;
}
@media (max-width: 991px) {
  .slick-arrow {
    width: 40px !important;
    height: 40px !important;
  }
}
.slick-arrow:before {
  content: "" !important;
}
.slick-arrow.slick-prev {
  background-image: url('data:image/svg+xml,<svg width="12" height="20" viewBox="0 0 12 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 18L2 10L10 2" stroke="%23242A2E" stroke-width="2.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  margin-left: -32px;
}
@media (max-width: 767px) {
  .slick-arrow.slick-prev {
    margin-left: -25px;
  }
}
.slick-arrow.slick-next {
  background-image: url('data:image/svg+xml,<svg width="12" height="20" viewBox="0 0 12 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 2L10 10L2 18" stroke="%23242A2E" stroke-width="2.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 32px;
}
@media (max-width: 767px) {
  .slick-arrow.slick-next {
    margin-left: 25px;
  }
}
.slick-arrow:hover, .slick-arrow:focus {
  background-color: #075D61 !important;
}
.slick-arrow:hover.slick-prev, .slick-arrow:focus.slick-prev {
  background-image: url('data:image/svg+xml,<svg width="12" height="20" viewBox="0 0 12 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 18L2 10L10 2" stroke="white" stroke-width="2.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
}
.slick-arrow:hover.slick-next, .slick-arrow:focus.slick-next {
  background-image: url('data:image/svg+xml,<svg width="12" height="20" viewBox="0 0 12 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M2 2L10 10L2 18" stroke="white" stroke-width="2.25" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
}
.slick-arrow:before {
  content: "";
}

.grid-block .slick-arrow {
  top: auto;
  width: 32px !important;
  height: 32px !important;
  left: 50%;
  right: auto;
  border: 1px solid #075D61;
  bottom: -50px !important;
  background-size: 10px !important;
  background-color: #fff;
}
.grid-block .slick-arrow::before {
  content: "" !important;
  opacity: 1 !important;
}

.center-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.center-heading p {
  font-weight: 300;
}

body.popup-open {
  overflow: hidden;
}

.event-list-header {
  padding: 20px 0 50px;
}
@media (max-width: 991px) {
  .event-list-header {
    padding: 20px 0 30px;
  }
}

.event-list-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 479px) {
  .event-list-header-inner {
    display: block;
  }
}
@media (max-width: 479px) {
  .event-list-header-inner .event-list-header-right {
    margin-top: 15px;
  }
}
.event-list-header-inner .event-list-header-right span {
  color: #242A2E;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  display: inline-block;
  font-family: "Geologica", sans-serif;
}
.event-list-header-inner .event-list-header-right .custom-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 15px;
}
@media (max-width: 575px) {
  .event-list-header-inner .event-list-header-right .custom-dropdown {
    margin-left: 10px;
  }
}
.event-list-header-inner .event-list-header-right select {
  border: 1px solid #D9D9D9;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 15px 40px 15px 20px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="16" viewBox="0 0 15 16" fill="none"><path d="M3.75 6.125L7.5 9.875L11.25 6.125" stroke="%23242A2E" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 20px center;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  color: #565051;
  font-size: 16px;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  margin-left: 15px;
}
.event-list-header-inner .event-list-header-right select:focus-visible {
  outline: none;
  border: 1px solid #D9D9D9;
}
@media (max-width: 575px) {
  .event-list-header-inner .event-list-header-right select {
    padding: 10px 30px 10px 15px;
    font-size: 14px;
    background-position: right 15px center;
  }
}

.view-all-btn {
  margin-top: 50px;
}
.view-all-btn .link-btn {
  margin: 0 auto;
  padding: 9px 46px;
}

.iti.iti--allow-dropdown {
  width: 100% !important;
}

.iti__country-list {
  white-space: normal !important;
  z-index: 9 !important;
}
.iti__country-list .iti__country {
  width: 100%;
  min-width: 250px;
}
@media (max-width: 575px) {
  .iti__country-list .iti__country {
    min-width: 100%;
  }
}

.grey-bg {
  background: #F8F8F8;
}
.grey-bg .event-card {
  background: #fff;
}

.no-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
}

html, body {
  touch-action: manipulation;
}

.image-section {
  touch-action: manipulation;
}

header {
  padding: 10px 0;
  background: #fff;
}
@media (max-width: 991px) {
  header {
    min-height: 110px;
    position: relative;
  }
}
@media (max-width: 767px) {
  header {
    min-height: 80px;
  }
}
header .header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .header-row .logo {
  display: flex;
  align-items: center;
}
header .header-row .logo img {
  width: 140.01px;
  height: 80px;
  display: block;
  flex: none;
  object-fit: fill;
  transform: scale(1.10);
}
@media (max-width: 767px) {
  header .header-row .logo img {
    width: 104px;
    height: 60px;
    transform: scale(1.10);
  }
}
@media (max-width: 991px) {
  header .header-row .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
header .header-row .search-bar {
  flex-grow: 1;
  margin-left: 20px;
}
header .header-row .search-bar input[type=text] {
  width: 100%;
  padding: 10px;
  border-radius: 30px;
  border: 1px solid #242A2E;
  font-size: 16px;
  color: #242A2E;
}
header .header-row .search-bar input[type=text]:focus {
  outline: none;
  border-color: #055D62;
}
header .header-row .user-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .header-row .user-actions .link-btn {
  background: #055D62;
  color: #fff;
  padding: 10px 15px;
  font-weight: 500;
  text-transform: capitalize;
  border-radius: 30px;
}
header .header-row .user-actions .link-btn:hover {
  background: transparent;
  color: #055D62;
  border-color: #055D62;
}
header .header-row .navbar {
  display: flex;
}
@media (max-width: 991px) {
  header .header-row .navbar {
    display: block;
    padding-left: 20px;
    padding-top: 100px;
    padding-right: 20px;
    max-width: 340px;
  }
}
header .header-row .navbar .nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 40px;
}
@media (max-width: 1199px) {
  header .header-row .navbar .nav-list {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  header .header-row .navbar .nav-list {
    display: block;
  }
}
@media screen and (max-width: 991px) and (orientation: landscape) {
  header .header-row .navbar .nav-list {
    height: 34vh;
    overflow-y: auto;
    overflow-x: hidden;
  }
}
header .header-row .navbar .nav-list li {
  position: relative;
}
@media (max-width: 991px) {
  header .header-row .navbar .nav-list li {
    margin-bottom: 20px;
  }
}
header .header-row .navbar .nav-list li a {
  color: #242A2E;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease-in-out;
  font-weight: 400;
  font-size: 18px;
  font-family: "Geologica", sans-serif;
}
@media (max-width: 1199px) {
  header .header-row .navbar .nav-list li a {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  header .header-row .navbar .nav-list li a {
    font-size: 18px;
  }
}
header .header-row .navbar .nav-list li a:hover {
  border-bottom: 2px solid #242A2E;
}
header .header-row .navbar .nav-list li::after {
  content: "";
  position: absolute;
  background-color: #242A2E;
  opacity: 0.1;
  transition: background-color 0.3s ease-in-out;
  width: 1px;
  height: 23px;
  right: -20px;
}
@media (max-width: 1199px) {
  header .header-row .navbar .nav-list li::after {
    right: -14px;
    top: 3px;
    height: 17px;
  }
}
header .header-row .navbar .nav-list li:last-child::after {
  display: none;
}
header .header-row .navbar .navbar-right {
  display: flex;
  gap: 20px;
  margin-left: 83px;
  align-items: center;
}
@media (max-width: 1199px) {
  header .header-row .navbar .navbar-right {
    margin-left: 32px;
    gap: 10px;
  }
}
@media (max-width: 991px) {
  header .header-row .navbar .navbar-right {
    margin-left: 0;
    margin-top: 40px;
  }
}
header .header-row .navbar .navbar-right .account-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}
@media (max-width: 1199px) {
  header .header-row .navbar .navbar-right .account-info {
    gap: 10px;
  }
}
header .header-row .navbar .navbar-right .account-info li a {
  display: block;
}

/* User profile image styling */
header .header-row .navbar .navbar-right .account-info li a img {
  width: 31px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #CDE7EA;
  transition: all 0.3s ease-in-out;
}

header .header-row .navbar .navbar-right .account-info li a img:hover {
  border-color: #05676A;
  transform: scale(1.05);
}

header .header-row .navbar .navbar-right .link-btn {
  background: #055D62;
  color: #fff;
  padding: 9px 14.5px;
  font-weight: 500;
  text-transform: capitalize;
  border: 1px solid #055D62;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  font-family: "Geologica", sans-serif;
}
@media (max-width: 1199px) {
  header .header-row .navbar .navbar-right .link-btn {
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  header .header-row .navbar .navbar-right .link-btn {
    font-size: 16px;
    padding: 12px 25px;
    margin-left: 10px;
  }
}
header .header-row .navbar .navbar-right .link-btn:hover {
  background: transparent;
  color: #055D62;
}
header .mobile-menu-toggle {
  display: none;
}
@media (max-width: 991px) {
  header .mobile-menu-toggle {
    display: block;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  header .mobile-menu-toggle button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  header .mobile-menu-toggle button svg {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 991px) {
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.navbar {
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s, max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 500px;
  opacity: 1;
  overflow: hidden;
}
@media (max-width: 991px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100vw;
    width: 80vw;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 16px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    max-height: none;
    opacity: 1;
    pointer-events: none;
    display: block;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
  }
}

@media (max-width: 991px) {
  header.nav-open .navbar {
    left: 0;
    opacity: 1;
    pointer-events: auto;
  }
}

.mobile-menu-toggle {
  display: none;
}
@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: block;
    cursor: pointer;
    z-index: 900;
    position: relative;
  }
}

.language-select {
  border: none;
  background: none;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  color: #242A2E;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="21" height="20" viewBox="0 0 21 20" fill="none"><path d="M5.01172 7.5L10.0117 12.5L15.0117 7.5" stroke="%23242A2E" stroke-width="1.3" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 20px;
  padding-right: 25px;
  font-family: "Geologica", sans-serif;
  cursor: pointer;
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .language-select {
    color: #242A2E;
    cursor: pointer;
  }
}
@media (max-width: 991px) {
  .language-select {
    display: none;
    color: #242A2E;
    margin-top: 30px;
    font-size: 16px;
    font-family: "Geologica", sans-serif;
    cursor: pointer;
  }
}
.language-select:focus {
  outline: none;
  border: none;
}

.mobile-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu .language-select {
  display: none;
}
@media (max-width: 991px) {
  .mobile-menu .language-select {
    display: block;
    margin-top: 35px;
    font-size: 16px;
    color: #242A2E;
    font-family: "Geologica", sans-serif;
  }
}
@media (max-width: 767px) {
  .mobile-menu .language-select {
    margin-top: 20px;
  }
}

.navbar-close {
  display: none;
}
@media (max-width: 991px) {
  .navbar-close {
    position: fixed;
    top: 30px;
    left: 10px;
    background: none;
    border: none;
    z-index: 1101;
    cursor: pointer;
  }
  .navbar-close svg {
    width: 37px;
    height: 37px;
  }
}

.nav-open .mobile-menu-toggle {
  display: none;
}
.nav-open .navbar-close {
  display: block;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s;
}

.cart-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  max-width: 430px;
  width: 100%;
  transform: translateX(100%);
  transition: transform 0.3s;
  z-index: 9999;
  border-radius: 12px 0 0 12px;
  background: #FFF;
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.08);
}
.cart-drawer.open {
  transform: translateX(0);
}
.cart-drawer.open ~ .cart-drawer-overlay,
body.cart-drawer-open .cart-drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}
body.cart-drawer-open,
html.cart-drawer-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.cart-drawer-content {
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.cart-drawer-content .link-btn {
  max-width: 100%;
  justify-content: center;
  width: 100%;
}

.cart-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.cart-drawer-header .cart-title {
  font-size: 20px;
  font-weight: 500;
  color: #242A2E;
}
.cart-drawer-header .cart-drawer-close {
  background: none;
  border: none;
  font-size: 40px;
  cursor: pointer;
  padding: 0 8px;
  line-height: 1;
}

.cart-drawer-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0;
}
.cart-drawer-body .cart-drawer-footer {
  margin-top: auto;
  flex-shrink: 0;
  background: #fff;
  padding: 10px 0 0 0;
  border-top: 1.5px solid #e6e6e6;
  z-index: 10;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  bottom: 0;
}
.cart-item-list-outer {
  display: flex;
  flex-direction: column;
}

.cart-delivery-box {
  background: #E3F0F1;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 30px;
}
.cart-delivery-box .cart-delivery-row {
  display: flex;
  align-items: start;
  font-weight: 600;
  color: #242A2E;
}
.cart-delivery-box .cart-delivery-row .cart-delivery-icon {
  margin-right: 5px;
}
.cart-delivery-box .cart-delivery-row .cart-delivery-label {
  font-size: 16px;
  font-weight: 500;
  font-family: "Geologica", sans-serif;
}
.cart-delivery-box .cart-delivery-row .cart-delivery-edit {
  margin-left: auto;
  font-size: 12px;
  color: #055D62;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 500;
  font-family: "Geologica", sans-serif;
}
.cart-delivery-box .cart-delivery-row .cart-delivery-edit:hover {
  color: #242A2E;
}
.cart-delivery-box .cart-delivery-address {
  font-size: 14px;
  color: #242A2E;
  margin-top: 10px;
  font-family: "Geologica", sans-serif;
  font-weight: 300;
}

.cart-delivery-type-box {
  background: #fff;
  border: 1px solid #E3F0F1;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 30px;
}

.cart-delivery-type-label {
  font-size: 14px;
  font-weight: 600;
  color: #242A2E;
  font-family: "Geologica", sans-serif;
  display: block;
  margin-bottom: 12px;
}

.delivery-type-options {
  display: flex;
  gap: 12px;
}

.delivery-type-option {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.delivery-type-radio {
  display: none;
}

.delivery-type-label-text {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 2px solid #E3F0F1;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #242A2E;
  font-family: "Geologica", sans-serif;
  transition: all 0.3s ease;
  background: #fff;
}

.delivery-type-label-text svg {
  width: 18px;
  height: 18px;
}

.delivery-type-radio:checked + .delivery-type-label-text {
  border-color: #FFC013;
  background: #FFC013;
  color: #242A2E;
  font-weight: 600;
}

.delivery-type-radio:checked + .delivery-type-label-text svg path {
  stroke: #242A2E;
}

.delivery-type-label-text:hover {
  border-color: #FFC013;
}

@media (max-width: 767px) {
  .delivery-type-options {
    flex-direction: column;
    gap: 10px;
  }
  
  .delivery-type-label-text {
    width: 100%;
    padding: 12px 16px;
    justify-content: center;
  }
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}

#empty-cart-message {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  flex: 1 !important;
  margin-bottom: 0 !important;
  max-height: none !important;
  overflow: visible !important;
  min-height: 0;
}

.cart-item-card {
  display: flex;
  align-items: start;
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid #D9D9D9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  padding: 15px;
  gap: 20px;
  position: relative;
}

.cart-item-img {
  width: 65px;
  height: 65px;
  object-fit: cover;
  border-radius: 8px;
  background: #f7f7f7;
}

.cart-box-right {
  width: 100%;
}
.cart-box-right .cart-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  min-width: 0;
}
.cart-box-right .cart-item-actions .qty-btn {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}
.cart-box-right .cart-item-actions .cart-item-qty {
  font-size: 14px;
  font-weight: 400;
  min-width: 20px;
  text-align: center;
  color: #121212BF;
}
.cart-box-right .cart-item-actions .cart-item-qty[type="number"] {
  border: none;
  background: transparent;
  width: 30px;
  text-align: center;
  -moz-appearance: textfield;
  appearance: textfield;
  outline: none;
  padding: 0;
}
.cart-box-right .cart-item-actions .cart-item-qty[type="number"]::-webkit-inner-spin-button,
.cart-box-right .cart-item-actions .cart-item-qty[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart-box-right .cart-item-actions .cart-item-qty[type="number"]:focus {
  background: rgba(255, 255, 255, 0.5);
}
.cart-box-right .cart-item-actions .cart-item-remove {
  background: none;
  border: none;
  font-size: 22px;
  color: #888;
  cursor: pointer;
  margin-left: 4px;
}
.cart-box-right .cart-item-actions .cart-item-remove:hover {
  color: #e74c3c;
}
.cart-box-right .cart-item-actions .cart-quant {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: flex-end;
  flex-shrink: 0;
}
.cart-box-right .cart-item-actions .cart-quant .qunat-box {
  border: 1px solid #D0D0D0;
  border-radius: 50px;
  width: 100px;
  min-width: 100px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-box-right .cart-item-actions .cart-item-price {
  font-size: 16px;
  color: #055D62;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
  line-height: 20px;
  letter-spacing: 0%;
  min-width: 0;
  flex: 0 1 auto;
  max-width: calc(100% - 140px);
  word-break: break-word;
  overflow-wrap: anywhere;
}
.cart-item-customize {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #fff;
  border: 1px solid #e5e7eb;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  color: #111;
  z-index: 10;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.cart-item-customize:hover {
  border-color: #d1d5db;
  background: #fafafa;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.cart-item-customize svg {
  width: 16px;
  height: 16px;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #242A2E;
  margin: 18px 0 18px 0;
  padding-top: 16px;
  font-family: "Geologica", sans-serif;
}

.cart-place-order-btn {
  width: 100%;
  background: #242A2E;
  color: #242A2E;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 16px 0;
  margin-top: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: background 0.2s, color 0.2s;
}
.cart-place-order-btn:hover {
  color: #fff;
}
.cart-place-order-btn .cart-place-order-icon {
  font-size: 24px;
}

/* Global style for place-order-button to ensure consistent text color on desktop and mobile */
#place-order-button,
.cart-drawer-content #place-order-button,
.cart-drawer-footer #place-order-button,
button#place-order-button.link-btn,
.cart-drawer #place-order-button {
  background: #FFC107 !important;
  background-color: #FFC107 !important;
  color: #000000 !important;
  border-color: #FFC107 !important;
}
#place-order-button:hover,
.cart-drawer-content #place-order-button:hover,
.cart-drawer-footer #place-order-button:hover,
button#place-order-button.link-btn:hover,
.cart-drawer #place-order-button:hover {
  background: #FFB300 !important;
  background-color: #FFB300 !important;
  color: #000000 !important;
  border-color: #FFB300 !important;
}
#place-order-button:disabled,
.cart-drawer-content #place-order-button:disabled,
.cart-drawer-footer #place-order-button:disabled,
button#place-order-button.link-btn:disabled,
.cart-drawer #place-order-button:disabled {
  background: #FFE082 !important;
  background-color: #FFE082 !important;
  color: #9E9E9E !important;
  opacity: 0.6;
}

@media (max-width: 900px) {
  .cart-drawer {
    width: 100vw;
    border-radius: 0;
  }
  .cart-drawer-content {
    padding: 18px 8px 12px 8px;
  }
  .cart-item-card {
    padding: 10px 8px;
    gap: 8px;
  }
  .cart-item-img {
    width: 48px;
    height: 48px;
  }
  .cart-place-order-btn {
    padding: 12px 0;
    font-size: 16px;
  }
  #place-order-button,
  .cart-drawer-content #place-order-button,
  .cart-drawer-footer #place-order-button,
  button#place-order-button.link-btn {
    background: #FFC107 !important;
    background-color: #FFC107 !important;
    color: #000000 !important;
    border-color: #FFC107 !important;
  }
  #place-order-button:hover,
  .cart-drawer-content #place-order-button:hover,
  .cart-drawer-footer #place-order-button:hover,
  button#place-order-button.link-btn:hover {
    background: #FFB300 !important;
    background-color: #FFB300 !important;
    color: #000000 !important;
    border-color: #FFB300 !important;
  }
  #place-order-button:disabled,
  .cart-drawer-content #place-order-button:disabled,
  .cart-drawer-footer #place-order-button:disabled,
  button#place-order-button.link-btn:disabled {
    background: #FFE082 !important;
    background-color: #FFE082 !important;
    color: #9E9E9E !important;
    opacity: 0.6;
  }
}

/* Additional fix for horizontal mobile screens */
@media screen and (max-width: 1024px) and (orientation: landscape),
       screen and (max-width: 1024px) and (max-height: 600px) {
  #place-order-button,
  .cart-drawer-content #place-order-button,
  .cart-drawer-footer #place-order-button,
  button#place-order-button.link-btn {
    background: #FFC107 !important;
    background-color: #FFC107 !important;
    color: #000000 !important;
    border-color: #FFC107 !important;
  }
  #place-order-button:hover,
  .cart-drawer-content #place-order-button:hover,
  .cart-drawer-footer #place-order-button:hover,
  button#place-order-button.link-btn:hover {
    background: #FFB300 !important;
    background-color: #FFB300 !important;
    color: #000000 !important;
    border-color: #FFB300 !important;
  }
  #place-order-button:disabled,
  .cart-drawer-content #place-order-button:disabled,
  .cart-drawer-footer #place-order-button:disabled,
  button#place-order-button.link-btn:disabled {
    background: #FFE082 !important;
    background-color: #FFE082 !important;
    color: #9E9E9E !important;
    opacity: 0.6;
  }
}
.edit-address-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.edit-address-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.edit-address-popup {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  background: #fff;
  border-radius: 12px;
  padding: 40px 32px 32px 32px;
  width: 100%;
  max-width: 800px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 8px 0 rgba(0, 0, 0, 0.08);
  max-height: 90vh;
  overflow-y: auto;
}
.edit-address-popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
@media (max-width: 991px) {
  .edit-address-popup {
    width: 94%;
  }
}

.edit-address-close {
  position: absolute;
  top: 18px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #000;
  cursor: pointer;
  z-index: 1020;
  transition: color 0.2s;
}
.rtl .edit-address-close,
html[dir="rtl"] .edit-address-close,
body[dir="rtl"] .edit-address-close {
  right: auto;
  left: 24px;
}
.edit-address-close:hover {
  color: #0097a7;
}

.edit-address-popup h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #242A2E;
}

.add-new-address {
  color: #055D62;
  font-weight: 500;
  font-size: 15px;
  margin-bottom: 24px;
  display: inline-block;
  position: absolute;
  right: 30px;
  margin-top: 40px;
  font-weight: "Geologica", sans-serif;
}

.saved-addresses-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}

.saved-address-card {
  background: #fff;
  border-radius: 10px;
  border: 1.5px solid #D9D9D9;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  padding: 18px 20px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}
@media (max-width: 575px) {
  .saved-address-card {
    display: block;
  }
}

.address-title {
  font-size: 18px;
  font-weight: 500;
  font-family: "Geologica";
  margin-bottom: 4px;
}

.address-details {
  font-size: 14px;
  color: #242A2E;
  font-weight: 400;
  max-width: 100%;
}
@media (max-width: 575px) {
  .address-details {
    margin: 10px 0;
  }
}

.address-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.address-edit-btn,
.address-delete-btn {
  background: #F0F0F0;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.address-delete-btn{
  background: #F8E0DC;
}

.address-edit-btn:hover {
  background: #e0f7fa;
}

.address-delete-btn:hover {
  background: #ffebee;
}

.preferred-address-btn {
  background: #f5f5f5;
  border: 1.5px solid #e6e6e6;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 400;
  color: #242A2E;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: "Geologica", sans-serif;
  white-space: nowrap;
}

.preferred-address-btn:hover {
  background: #e8f5e9;
  border-color: #055D62;
  color: #055D62;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(5, 93, 98, 0.1);
}

.preferred-address-btn:active {
  transform: translateY(0);
}

.preferred-address-btn.preferred {
  background: linear-gradient(135deg, #055D62 0%, #067a80 100%);
  border-color: #055D62;
  color: #fff;
  box-shadow: 0 2px 8px rgba(5, 93, 98, 0.2);
}

.preferred-address-btn.preferred:hover {
  background: linear-gradient(135deg, #067a80 0%, #055D62 100%);
  box-shadow: 0 4px 12px rgba(5, 93, 98, 0.3);
  transform: translateY(-2px);
}

@media (max-width: 575px) {
  .preferred-address-btn {
    width: 100%;
    justify-content: center;
    margin-top: 12px;
  }
}

.account-info {
  position: relative;
}

#cart-count {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FFC017;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Geologica", sans-serif;
  font-size: 12px;
  color: #242A2E;
  position: absolute;
  right: 0;
  top: 0;
}

/*# sourceMappingURL=header.css.map */
