:root {
  --primary-button-bg: #0d2d3a;
  --primary-button-text: #FCC200;
  --primary-button-hover-bg: #2792bd;
  --menu-bg-color: #0d2d3a;
  --menu-text-color: #FCC200;
  --menu-hover-bg-color: #2792bd;
  --menu-hover-text-color: #FCC200;
}


.product-description {
  white-space: pre-wrap;
  /* Preserve white space and line breaks */
  margin-bottom: 10px;
  /* Add space below description */
  padding-right: 80px;
  /* Ensure description doesn't overlap with buttons */
}

.collection-item .secondary-content {
  right: 20px;
  /* Position the buttons closer to the right edge */
  top: 50%;
  /* Center vertically within the item */
  transform: translateY(-50%);
  /* Adjust vertical alignment */
}

.collection-item {
  padding-right: 80px;
  /* Ensure buttons have enough space */
}

.modal-content p {
  white-space: pre-wrap;
  /* Respects line breaks */
  text-align: center;
  /* Centers the text */
  margin-bottom: 1em;
  /* Adds space between paragraphs */
}


.spinner {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.preloader-wrapper {
  width: 50px;
  height: 50px;
}

.successAlert {
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid #c3e6cb;
}

.errorAlert {
  background-color: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid #f5c6cb;
}

.warningAlert {
  background-color: #fff3cd;
  color: #856404;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid #ffeeba;
}

.infoAlert {
  background-color: #d1ecf1;
  color: #0c5460;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid #bee5eb;
}

/* General styling for all icons */
i {
  color: var(--primary-button-bg);
  /* Change this to your desired color */
  font-size: 24px;
  /* Set a specific size for all icons */
  vertical-align: middle;
  /* Align icons vertically in the middle of the text */
}

/* Optional: Style icons differently when inside specific elements */
.nav-wrapper i {
  color: var(--primary-button-text) !important;
  /* Different color for icons in the navigation bar */
}

.btn i {
  color: var(--primary-button-text);
  /* background-color: white; */
  /* Different color for icons in buttons */
}

/* Optional: Hover effects for icons */
i:hover {
  color: var(--primary-button-text);
  /* Change the color on hover */
  transition: color 0.3s ease;
  /* Smooth transition effect */
}

/* Apply variables to navbar */
.nav-wrapper {
  background-color: var(--menu-bg-color) !important;
}

.nav-wrapper a.brand-logo,
.nav-wrapper a.sidenav-trigger,
.nav-wrapper ul>li>a {
  color: var(--menu-text-color) !important;
}

.nav-wrapper ul.right>li>a:hover,
.nav-wrapper ul.right>li.active>a {
  background-color: var(--menu-hover-bg-color) !important;
  color: var(--menu-hover-text-color) !important;
}

/* Apply variables to sidenav */
.sidenav {
  background-color: var(--menu-bg-color) !important;
}

.sidenav a {
  color: var(--menu-text-color) !important;
}

.sidenav a:hover {
  background-color: var(--menu-hover-bg-color) !important;
  color: var(--menu-hover-text-color) !important;
}

/* Apply variables to dropdowns */
.dropdown-content {
  background-color: var(--menu-bg-color) !important;
}

.dropdown-content li>a,
.dropdown-content li>span {
  color: var(--menu-text-color) !important;
}

.dropdown-content li>a:hover,
.dropdown-content li>span:hover {
  background-color: var(--menu-hover-bg-color) !important;
  color: var(--menu-hover-text-color) !important;
}


/* Apply the variables to the buttons */
.btn {
  background-color: var(--primary-button-bg) !important;
  color: var(--primary-button-text) !important;
  padding: 0 16px !important;
  /* Ensure enough padding for text */
  font-size: 14px !important;
  /* Set a reasonable font size */
  white-space: nowrap;
  text-transform: none !important;

  /* Prevent text wrapping */
}

.btn:hover {
  background-color: var(--primary-button-hover-bg) !important;
  color: var(--primary-button-text) !important;
}


.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.product-card .card-content {
  flex-grow: 1;
}

.product-card .card-action {
  text-align: center;
}


.messageInvalid {
  color: red !important;
}

/* .inputInvalid {
  width: 100%;
  padding: 12px;
  border: 1px solid red;
  border-radius: 4px;
  resize: vertical;
  height: 50px;
  font-size: 16px;

  background-color: white;
} */

/* Container for the custom alert */
.custom-alert {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

/* Content of the custom alert */
.custom-alert-content {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* OK button */
.custom-alert-button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin-top: 20px;
  cursor: pointer;
  border-radius: 5px;
}


.navbar-fixed {
  position: sticky;
  top: 0;
  z-index: 1000;
}


.cart-item {
  border-bottom: 1px solid #e0e0e0;
  padding: 15px 0;
}


.cart-item img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
}


.cart-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cart-quantity input {
  width: 50px;
  margin: 0 10px;
  text-align: center;
}

.cart-total {
  font-weight: bold;
  text-align: right;
}

#floatingPlayButton {
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: white;
  color: white;
  cursor: pointer;
  padding: 25px;
  /* Increase padding to make it larger */
  border-radius: 50%;
  font-size: 32px;
  /* Increase font size */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 80px;
  /* Set width to make it larger */
  height: 80px;
  /* Set height to make it larger */
}

#floatingPlayButton .material-icons {
  font-size: 48px;
  /* Make the icon larger */
}

#cartButton {
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  border: none;
  outline: none;
  background-color: white;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#cartButton .material-icons {
  font-size: 24px;
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: white;
  color: var(--primary-button-bg);
  border-radius: 50%;
  padding: 2px 6px;
  font-size: 18px;
  font-weight: bold;
}

/* h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
} */

/* body,
p,
a { */

/* font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal; */
/* font-family: 'Lato', sans-serif; */

/* font-family: 'Playfair Display', sans-serif; */
/* or */
/* font-family: 'Montserrat', sans-serif; */
/* } */

/* table td th {
  font-family: 'Lato', sans-serif;
} */

html {
  height: 100%;
}

body {
  background: #F0F8FF;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  /* font-family: "Exo 2", sans-serif; */
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.main-content {
  flex: 1;
}

.page-footer {
  text-align: center;
  font-size: 16px;
  background-color: var(--primary-button-bg);
  color: var(--primary-button-text);
  padding: 15px 0;
}

.card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.card:hover {
  transform: scale(1.05);
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  text-align: center;
  background-color: #fff;
}

.card-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 14px !important;
}

.play-button {
  transition: background-color 0.3s;
  color: var(--primary-button-text);
  background-color: var(--primary-button-hover-bg);


}

.play-button:hover {
  background-color: var(--primary-button-hover-bg);
  color: var(--primary-button-text);

}

.play-button2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-button-hover-bg);
  color: var(--primary-button-text);
  text-align: center;
  cursor: pointer;
}

.play-button2 i.material-icons {
  font-size: 24px;
}


.audio-control {
  width: 100%;
  margin-top: 10px;
  outline: none;
}



/* Hide default arrows in input number fields */
.cart-quantity input[type=number]::-webkit-outer-spin-button,
.cart-quantity input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-quantity input[type=number] {
  -moz-appearance: textfield;
  width: 60px;
  padding: 10px;
  font-size: 16px;
  text-align: center;
}

/* Style for the quantity buttons */
.quantity-controls {
  display: flex;
  align-items: center;
}

.quantity-controls button {
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
}

.quantity-controls button:focus {
  outline: none;
}




/* Style for quantity input on mobile devices */
@media screen and (max-width: 600px) {

  .btn i {
    margin-right: 8px;
    /* Adjust icon spacing */
  }

  .btn {
    padding: 0 12px !important;
    /* Adjust padding for small screens */
    font-size: 12px !important;
    /* Ensure the font size is visible */
  }

  .cart-quantity input[type=number] {
    width: 80px;
    padding: 12px;
    font-size: 18px;
  }

  .quantity-controls button {
    padding: 15px;
    font-size: 24px;
  }
}



@media print {
  @page {
    margin: 0;
  }

  body {
    margin: 0;
    -webkit-print-color-adjust: exact;
  }

  /* Additional styles to remove header/footer */
  @page {
    size: auto;
    /* auto is the initial value */
    margin: 2mm;
    /* this affects the margin in the printer settings */
  }
}