/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: #111;
  color: #fff;
  display: flex;
  justify-content: center;
  padding: 0px;
}

.wrapper { 
  width: 100%;
}

.banner {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
}

.container {
  width: 100%;
  max-width: 420px;
  padding : 20px;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.review-wrapper { 
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.review-text {
  background: #104E43;
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 16px;
}

.remaining-text {
  font-size: 12px;
  opacity: 0.75;
}

.logo {
  font-weight: 800;
  font-size: 28px;
  line-height: 1.2;
}

.logo-yellow {
  color: #ffca28;
}

.logo-white {
  color: #fff;
}

.icon-btn {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border-radius: 10px;
}


/* Cards Section */
.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  border-radius: 20px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.00);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.00) 80%, rgba(255, 255, 255, 0.10) 100%);
}

.card-content {
  z-index: 2;
  position: relative;
}

.card-subtitle {
  font-size: 16px;
  opacity: 0.75;
}

.card-title {
  font-size: 30px;
  font-weight: 700;
  margin: 2px 0 32px;
}

.btn {
  background: #fff;
  color: #000;
  border: none;
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

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

/* Brand logos inside cards */
.brand-logo {
  position: absolute;
  right: 0;
  bottom: 0;
  /* width: 60px; */
  /* border-radius: 18px; */
  opacity: 0.9;
}

.popup-icon {
  position: absolute;
  right: 12px;
  top: 12px;
  opacity: 1;
  padding: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer-text {
  text-align: center;
  margin: 8px 0px;
  font-size: 14px;
  /* opacity: 0; */
}

.offer-text.yellow {
  color: #ffca28;
}


/* Gradients */
.zomato {
  background: linear-gradient(135deg, #e53935, #b71c1c);
}

.swiggy {
  background: linear-gradient(135deg, #ff7b00, #cc5500);
}

.ownly {
  background: linear-gradient(135deg, #e91e63, #ad1457);
}

.card-container {
  --border-bottom-width: 1px;
  --border-color: #ffffff1a;
  --border-left-width: 1px;
  --border-right-width: 1px;
  --border-style: solid;
  --border-top-width: 1px;
  background: linear-gradient(#fff0 0% 80%, #ffffff1a 100%);
  border-radius: 20px;
  flex-flow: column;
  flex: none;
  place-content: center flex-start;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: min-content;
  padding: 0px;
  text-decoration: none;
  position: relative;
  overflow: visible;
  color: #fff;
}
/* Visit Card */
.visit-card {
  margin-top: 20px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  text-decoration: none;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.00);
  background: rgba(255, 255, 255, 0.10);
}

.visit-now {
  display: flex;
  align-items: center;
  gap: 6px;
}

.visit-review-wrapper { 
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.visit-review-text {
  background: #104E43;
  border-radius: 20px;
  padding: 2px 8px;
  font-size: 12px;
}

.visit-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.map-icon {
  width: 40px;
  height: 40px;
}

.visit-left h3 {
  font-size: 18px;
  font-weight: 600;
}

.visit-left p {
  font-size: 14px;
  opacity: 0.8;
}

.arrow .right-icon {
    height: 24px;
    width: 24px;
}

/* Footer */
.footer {
  text-align: center;
}

.footer-logo {
  font-size: 22px;
}

.tagline {
  margin-top: 8px;
  font-size: 14px;
  opacity: 0.85;
}

.divider {
  margin: 40px 80px;
  height: 1px;
  background:#fff;
opacity: 0.25;
}