body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    margin: 0px; padding: 0px;
}

a {
    text-decoration: none;
}

.emoji {
    display: inline !important;
	border: none !important;
	box-shadow: none !important;
	height: 1em !important;
	width: 1em !important;
	margin: 0 0.07em !important;
	vertical-align: -0.1em !important;
	background: none !important;
	padding: 0 !important;
}

.button1 {
  padding: 10px 16px;
  border: none;
  background: #4DB2D1;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
}
.button1:hover {
  background: #1976d2;
}

.button2 {
  padding: 2px 10px;
  border: none;
  background: #1976d2;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
}
.button2:hover {
  background: #4DB2D1;
}

.button3 {
  padding: 10px 16px;
  border: none;
  background: #B28F24;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
}
.button3:hover {
  background: #EAD699;
  color: #B28F24;
}

.hyper1 {
    background-color: #CAE7F1;
    color: #184B5D;
    border-radius: 6px;
    padding: 2px 10px;
    font-size: 22px;
}
.hyper1:hover {
    background-color: #184B5D;
    color: #CAE7F1;
}

.hyper2 {
    color: #184B5D;
    cursor: pointer;
}
.hyper2:hover {
    color: #0A1F26;
}

.blurimg{
    filter: blur(8px);
    transition: 0.1s;
}

.blurimg:hover{
    filter: blur(0px);
}

.input1 {
    font-size: 22px;
    background: #FFFCE7;
}



/* Menus */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.navbar {
  background: #184B5D;
}
.menu {
  list-style: none;
  display: flex;
  font-size: 20px;
}
.menu li {
  position: relative;
}
.menu a {
  display: block;
  padding: 6px 22px;
  color: black;
  text-decoration: none;
  color: white;
}
.menu a:hover {
  background: #3E707E;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #222222;
  min-width: 250px;
  list-style: none;
}
.dropdown-menu li a {
  padding: 8px 15px;
}
.menu-right{
    margin-left:auto;
}
.dropdown:hover .dropdown-menu {
  display: block;
  z-index: 9999;
}
.dropdown-menu li a:hover {
  background: #41787E;
}
.dropdown-menu-selected {
  background: #2F575C;
}


/* SUB DROPDOWN */
.sub-dropdown {
  position: relative;
}
.sub-menu {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: #222;
  min-width: 220px;
  list-style: none;
}
.sub-dropdown:hover .sub-menu {
  display: block;
}
.sub-menu li a {
  padding: 8px 15px;
  color: white;
}
.sub-menu li a:hover {
  background: #41787E;
}


/* Products Cards */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
  padding: 6px 15px;
}
.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #CAE7F1;
}
.card img {
  display: block;
  width: 100%;
  object-fit: cover;
}
.cardinfo {
  padding: 10px;
  color: #184B5D;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}
.cardinfoSmall {
  padding: 10px;
  color: #184B5D;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
  font-size: 12px;
  gap: 0;
  padding: 6px;
}
.cardtitle {
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  cursor: pointer;
}
.cardtitle:hover {
  color: #0F2F3B;
}

.icon-small {
  width: 1em;
  height: 1em;
  fill: #888;
}
/* Vertically Aligned <p> */
.pvalign {
    display: flex;
    align-items:center;
    gap: 6px;
}
.pvalignSmall {
    display: flex;
    align-items:center;
    gap: 3px;
    flex-wrap: wrap;
    overflow-wrap: break-word;
    word-break: break-all;
}

.paybox{
    width:750px;
    height:150px;
    position:absolute;
    top:0;
    left:0;
    transition:all 0.6s ease;
    opacity:0;
    transform:scale(0.95);
    pointer-events:none;
}
.paybox.active{
    opacity:1;
    transform:scale(1);
    pointer-events:auto;
}

.Opacity50 {
    opacity: 0.7;
    transition: opacity 0.2s ease;
}
.Opacity50:hover {
    opacity: 1;
}


.pointsNotify {
    position: fixed;
    display: none;
    top: 15px;
    right: 20px;
    z-index: 9999;
    padding: 14px 18px;
    background: rgba(24, 75, 93, 0.95);
    color: white;
    border-radius: 12px;
    border: 3px solid white;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    min-width: 220px;
    cursor: pointer;
    transition: opacity 0.5s ease;
    animation: slideIn 1s ease;
}
.pointsValue {
    font-size: 28px;
    font-weight: bold;
}
.pointsText {
    margin-top: 4px;
    font-size: 22px;
    opacity: 0.85;
}
.hideNotify {
    opacity: 0;
}
.pointsPositive {
    color: yellow;
}
.pointsNegative {
    color: #FF8484;
}
@keyframes slideIn {
    from {
        transform: translateX(30px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
