/* CSS RESET START */

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* Prevent font size inflation */
html, body {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  overflow: hidden;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */
h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

/* CSS RESET END */

/* CUSTOM FONTS START */

/* Glyphicons Font */
@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('../assets/fonts/glyphicons-halflings-regular.eot');
    src: url('../assets/fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),
         url('../assets/fonts/glyphicons-halflings-regular.woff2') format('woff2'),
         url('../assets/fonts/glyphicons-halflings-regular.woff') format('woff'),
         url('../assets/fonts/glyphicons-halflings-regular.ttf') format('truetype'),
         url('../assets/fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

/* Glyphicons Icons */
.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glyphicon-shopping-cart:before {
    content: "\e116";
}
.glyphicon-th:before {
    content: "\e011";
}
.glyphicon-volume-up:before {
    content: "\e0a0";
}
.glyphicon-bullhorn:before {
    content: "\e122";
}
/* Inter Font */
@font-face {
    font-weight: 400;
    font-style: normal;
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-UI-Regular.woff2') format('woff2');
}
@font-face {
    font-weight: 400;
    font-style: italic;
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-UI-Italic.woff2') format('woff2');
}
@font-face {
    font-weight: 500;
    font-style: normal;
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-UI-Medium.woff2') format('woff2');
}
@font-face {
    font-weight: 500;
    font-style: italic;
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-UI-MediumItalic.woff2') format('woff2');
}
@font-face {
    font-weight: 700;
    font-style: normal;
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-UI-Bold.woff2') format('woff2');
}
@font-face {
    font-weight: 700;
    font-style: italic;
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-UI-BoldItalic.woff2') format('woff2');
}
@font-face {
    font-weight: 900;
    font-style: normal;
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-UI-Black.woff2') format('woff2');
}
@font-face {
    font-weight: 900;
    font-style: italic;
    font-family: 'Inter';
    src: url('../assets/fonts/Inter-UI-BlackItalic.woff2') format('woff2');
}

/* FuturaPT Font */
@font-face {
    font-weight: 300;
    font-style: normal;
    font-family: 'FuturaPT';
    src: url('../assets/fonts/FuturaPTLight.ttf') format('truetype');
}
@font-face {
    font-weight: 400;
    font-style: normal;
    font-family: 'FuturaPT';
    src: url('../assets/fonts/FuturaPTBook.ttf') format('truetype');
}
@font-face {
    font-weight: 500;
    font-style: normal;
    font-family: 'FuturaPT';
    src: url('../assets/fonts/FuturaPTMedium.ttf') format('truetype');
}
@font-face {
    font-weight: 700;
    font-style: normal;
    font-family: 'FuturaPT';
    src: url('../assets/fonts/FuturaPTBold.otf') format('opentype');
}
@font-face {
    font-weight: 900;
    font-style: normal;
    font-family: 'FuturaPT';
    src: url('../assets/fonts/FuturaPTHeavy.ttf') format('truetype');
}

/* Muli Font */
@font-face {
    font-weight: 300;
    font-style: normal;
    font-family: 'Muli';
    src: url('../assets/fonts/Muli-Light.ttf') format('truetype');
}
@font-face {
    font-weight: 600;
    font-style: normal;
    font-family: 'Muli';
    src: url('../assets/fonts/Muli-SemiBold.ttf') format('truetype');
}
@font-face {
    font-weight: 700;
    font-style: normal;
    font-family: 'Muli';
    src: url('../assets/fonts/Muli-Bold.ttf') format('truetype');
}

/* Poppins Font */
@font-face {
    font-weight: 400;
    font-style: normal;
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins-Regular.ttf') format('truetype');
}
@font-face {
    font-weight: 500;
    font-style: normal;
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins-Medium.ttf') format('truetype');
}
@font-face {
    font-weight: 600;
    font-style: normal;
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins-SemiBold.ttf') format('truetype');
}
@font-face {
    font-weight: 700;
    font-style: normal;
    font-family: 'Poppins';
    src: url('../assets/fonts/Poppins-Bold.ttf') format('truetype');
}

/* GeosansLight Font */
@font-face {
    font-weight: 300;
    font-style: normal;
    font-family: 'GeosansLight';
    src: url('../assets/fonts/GeosansLight.ttf') format('truetype');
}

/* FS Fallback Font */
@font-face {
    font-weight: 400;
    font-style: normal;
    font-family: 'FS Fallback';
    src: url('../assets/fonts/fsfallback.woff') format('woff');
}

/* Abril Fatface Font */
@font-face {
    font-weight: 400;
    font-style: normal;
    font-family: 'Abril Fatface';
    src: url('../assets/fonts/Abril_Fatface/AbrilFatface-Regular.ttf') format('truetype');
}

/* Questrial Font */
@font-face {
    font-weight: 400;
    font-style: normal;
    font-family: 'Questrial';
    src: url('../assets/fonts/Questrial/Questrial-Regular.ttf') format('truetype');
}

/* CUSTOM FONTS END */

/* GLOBAL STYLES START */

.top-fixed-area{
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
}

.annoucement-bar {
  width: 100%;
  background-color: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 34px 8px 16px;
  font-family: FuturaPT, sans-serif;
  font-size: 14px;
  color: #555555;
}

.sliding-text-wrapper {
  width: fit-content;
  height: 20px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.sliding-text {
  text-align: center;
  margin: 0;
  white-space: nowrap;
  line-height: 20px;
  transform: scaleX(0);
  animation: slideUp 41s infinite;
}

@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  14% {
    transform: translateY(0px);
  }
  15% {
    transform: translateY(-20px);
  }
  29% {
    transform: translateY(-20px);
  }
  30% {
    transform: translateY(-40px);
  }
  44% {
    transform: translateY(-40px);
  }
  45% {
    transform: translateY(-60px);
  }
  59% {
    transform: translateY(-60px);
  }
  60% {
    transform: translateY(-80px);
  }
  74% {
    transform: translateY(-80px);
  }
  75% {
    transform: translateY(-100px);
  }
  89% {
    transform: translateY(-100px);
  }
  90% {
    transform: translateY(-120px);
  }
  100% {
    transform: translateY(-120px);
  }
}

.announcement-bar-close {
  position: absolute;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Glyphicons Halflings';
  font-size: 14px;
  line-height: 20px;
  color: #555555;
  transition: color 0.2s ease;
}

.announcement-bar-close:before {
  content: "\e014"; /* Glyphicons remove icon */
}

.announcement-bar-close:hover {
  color: #000000;
}


header{
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  border-bottom: 14px solid white;
  font-family: FuturaPT, sans-serif;
  font-weight: 500;
  color: #555555;
  z-index: 4;
  position: relative;
}

header a{
  text-decoration: none;
  font-size: 14px;
  line-height: 20px;
}

header .left-container, header .center-container, header .right-container{
  display: flex;
  height: 80px;
  align-items: center;
  gap: 14px;
}

header .left-container, header .right-container{
  display: flex;
  flex: 1;
  align-self: flex-end;
  align-items: flex-end;
  height: 80px;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-bottom: 6px;
}

header .right-container{
  justify-content: flex-end;
}

header .right-container a img{
  height: 20px;
  width: auto;
}

header .center-container{
  width: fit-content;
  display: flex;
  justify-content: center;
  position: relative;
  padding-bottom: 14px;
  flex: 2;
}

header .center-container a:hover{
  color: #000;
}

.nav.navbar-nav.navbar-right {
  display: flex;
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 15px;
}

.nav.navbar-nav.navbar-right li {
  list-style: none;
}


header .center-container .left, header .center-container .right{
  display: flex;
  align-self: flex-end;
  align-items: flex-end;
  gap: 22px;
  height: 80px;
  flex: 1;
}

header .center-container .left{
  justify-content: flex-end;
}

header .center-container .center img{
  width: 114px;
  height: 114px;
  position: relative;
  bottom: -34px;
  filter: drop-shadow(-6px 7px 0 white) drop-shadow(0 0px 0 white) drop-shadow(6px 0px 0 white);
  z-index: 1;
}

#header-menu {
  background-color: white;
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  z-index: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

#header-menu.menu-active {
  max-height: 410px;
}

#header-menu .menu-content {
  display: none;
  padding: 41px 0;
  font-family: FuturaPT, sans-serif;
  color: #555555;
  justify-content: center;
  gap: 60px;
}

#header-menu .menu-content.active {
  display: flex;
}

#header-menu .menu-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#header-menu .menu-section h3 {
  font-size: 16px;
  font-weight: 500;
  color: #555555;
  margin-bottom: 8px;
}

#header-menu .menu-section a {
  text-decoration: none;
  color: #555555;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.2s ease;
}

#header-menu .menu-section a:hover, #header-menu .menu-section a:hover h3 {
  color: #000000;
  font-weight: 500;
}

#header-menu .menu-section img.butterfly-img {
  width: auto;
  height: 266px;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) brightness(80%);
}

#header-menu .menu-section a:hover img.butterfly-img {
  filter: grayscale(0%) brightness(100%);
  transition: filter 0.14s ease;
}

#header-menu .menu-section .subtitle {
  height: 1lh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#header-menu .menu-section a:hover .subtitle p {
  transform: translateY(-100%);
}

#header-menu .menu-section .subtitle p {
  transition: transform 0.66s ease-out;
}

main{
  width: 100%;
  height: 100dvh;
  overflow-y: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  /*padding-top: 120px; handled in_Layout.cshtml with conditional razor code */
}

footer{
  width: 100%;
  height: 60px;
  background-color: #ffffffde;
  backdrop-filter: blur(14px);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #555555;
  font-size: 14px;
  position: fixed;
  bottom: 0;
  z-index: 4;
}

footer ul{
  list-style: none;
  display: flex;
  gap: 22px;
}

footer ul li:hover{
  color: #000;
}

footer ul a{
  text-decoration: none;
}

footer ul .enroll-link{
  cursor: pointer;
}

/* Newsletter Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  width: 90%;
  max-width: 500px;
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.modal-header {
  padding: 30px 30px 0 30px;
  text-align: center;
  position: relative;
}

.modal-header h2 {
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 2px;
  margin: 0;
  color: #333;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 5px;
  line-height: 1;
}

.modal-close:hover {
  color: #000;
}

.modal-body {
  padding: 20px 30px 30px 30px;
  text-align: center;
}

.modal-body p {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.4;
}

form{
  width: 100%;
  max-width: 410px;
}

.form-group {
  margin-bottom: 15px;
}

.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  background: transparent;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus {
  border-color: #333;
}

.form-input::placeholder {
  color: #999;
}

/* Enquiry Form Input Styles */
.enquire-form .form-group input,
.enquire-form .form-group select,
.enquire-form .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  font-size: 0.9rem;
  font-family: 'FuturaPT', sans-serif;
  line-height: 1.5;
  box-sizing: border-box;
}

.enquire-form .form-group select {
  background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M7%2010l5%205%205-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.2em;
}

.enquire-form .text-danger {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: block;
}

/* Global Form Input Styles */
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: #fff;
  font-size: 0.9rem;
  font-family: 'FuturaPT', sans-serif;
  line-height: 1.5;
  box-sizing: border-box;
}

.form-group textarea {
  resize: vertical;
  min-height: 89px;
}

.form-group select {
  background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%3E%3Cpath%20d='M7%2010l5%205%205-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.2em;
}

.text-danger {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  display: block;
}

.terms-text {
  font-size: 12px;
  color: #666;
  margin: 15px 0;
  line-height: 1.3;
}

.terms-text a {
  color: #333;
  text-decoration: underline;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.subscribe-btn {
  background: #333;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

.subscribe-btn:hover {
  background: #000;
}

.secondary-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.secondary-actions button {
  background: none;
  border: none;
  color: #666;
  font-size: 11px;
  cursor: pointer;
  padding: 5px;
  text-decoration: underline;
  flex: 1;
  min-width: fit-content;
}

.secondary-actions button:hover {
  color: #333;
}

/* Hamburger Menu Styles */
.hamburger-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #555;
  font-size: 26px;
  transition: color 0.3s ease;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hamburger-menu-btn:hover {
  color: #333;
}

.hamburger-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 10000;
  display: none;
  justify-content: flex-start;
  align-items: stretch;
  font-family: 'Questrial', sans-serif;
}

.hamburger-modal-overlay.show {
  display: flex;
}

/* Hamburger Menu Modal Animations */
@keyframes hamburgerSlideIn {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}

@keyframes hamburgerSlideOut {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.hamburger-modal-content {
  background: #f8f8f8;
  width: 100dvw;
  height: fit-content;
  min-height: 100dvh;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.66);
  position: relative;
  overflow-y: auto;
  transform: translateX(-100%);
}

.hamburger-modal-overlay.show .hamburger-modal-content {
  animation: hamburgerSlideIn 0.3s ease-out forwards;
}

.hamburger-modal-overlay:not(.show) .hamburger-modal-content {
  animation: hamburgerSlideOut 0.3s ease-in forwards;
}

.hamburger-modal-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 26px;
}

.hamburger-modal-header img{
  mix-blend-mode: darken;
}

.hamburger-modal-close {
  background: none;
  border: none;
  padding-bottom: 4px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  color: #555;
  line-height: 1;
  position: absolute;
  top: 34px;
  right: 26px;
  font-family: 'Glyphicons Halflings';
}

.hamburger-modal-close::before {
  content: "\e079";
}

.hamburger-modal-close:hover {
  color: #333;
}

.hamburger-modal-body {
  padding: 26px;
}

.hamburger-nav{
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hamburger-nav ul{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.hamburger-nav ul li{
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-nav ul li a{
  text-decoration: none;
  color: #555;
  font-size: 16px;
  transition: color 0.3s ease;
  font-size: 26px;
}

.hamburger-nav ul li a:hover {
  color: #333;
}

.hamburger-modal-body .currency-selector-hamburger{
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.hamburger-modal-body .currency-selector-hamburger .select-dropdown{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: transparent!important;
}

/* Shopping Cart Modal Styles */
/* Cart Button Styles */
.cart-button {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #555;
  font-size: 20px;
  transition: color 0.3s ease;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.cart-button:hover, .cart-button:hover .cart-item-count {
  color: #333;
}

.cart-item-count {
  position: absolute;
  bottom: -6px;
  right: -6px;
  color: #555;
  border-radius: 50%;
  width: 8.9px;
  height: 8.9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8.9px;
  font-weight: bold;
  line-height: 1;
}

/* TOAST NOTIFICATION SYSTEM START */

/* Toast Container */
.toast-container {
  position: fixed;
  bottom: 89px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  pointer-events: none;
  max-width: 666px;
}

/* Individual Toast */
.toast {
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.14);
  border-radius: 2px;
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  pointer-events: auto;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s ease-in-out, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.hide {
  transform: translateY(100%);
  opacity: 0;
}

/* Toast Icon */
.toast-icon {
  flex-shrink: 0;
  width: 14px;
  height: 12px;
}

/* Toast Content */
.toast-content {
  flex: 1;
  font-family: 'FuturaPT', sans-serif;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 15px;
}

.toast-message {
  color: #666;
}

/* Toast Progress Bar */
.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #555;
  border-radius: 0 0 8px 8px;
  opacity: 0.7;
}

/* Toast Animations */
@keyframes toastSlideIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes toastSlideOut {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

.toast.animate-in {
  animation: toastSlideIn 0.3s ease-out forwards;
}

.toast.animate-out {
  animation: toastSlideOut 0.3s ease-in forwards;
}

/* TOAST NOTIFICATION SYSTEM END */

/* Responsive adjustments */
@media (max-width: 768px) {
  .annoucement-bar {
    font-size: 12px;
    letter-spacing: -0.41px;
    padding: 8px 20px 8px 16px;
  }

  .announcement-bar-close {
    font-size: 12px;
    right: 0.41rem;
  }

  header .center-container .left, header .center-container .right {
    display: none;
  }

  .hamburger-menu-btn {
    display: flex;
  }

  .currency-selector {
    display: none !important;
  }

  .modal-content {
    width: 95%;
    margin: 20px;
  }
  
  .modal-header, .modal-body {
    padding: 20px;
  }

  .modal-close{
    top: 10px;
    right: 15px;
    font-size: 20px;
  }
  
  .secondary-actions {
    flex-direction: column;
    gap: 5px;
  }
  
  .secondary-actions button {
    text-align: center;
  }
}

/* GLOBAL STYLES END */
