* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  padding: 0;
    min-height: 100%;
    overflow-y: auto;
}
body {
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
     max-width: 768px;
    margin: auto;
  overflow: hidden;
  margin: auto;
}
/* Start Page Intro */
.cb-phone-wrapper {
  height: 100vh;
  background: #000;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  box-shadow: none;
}

/* Slides Container */
.cb-slides-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.cb-single-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.7s cubic-bezier(0.77, 0, 0.18, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cb-single-slide.cb-slide-visible {
  opacity: 1;
  transform: translateX(0);
}

.cb-single-slide.cb-slide-leaving {
  opacity: 0;
  transform: translateX(-100%);
}

/* Slide Backgrounds */
.cb-slide-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

/* Slide 1 */
.cb-intro-slide .cb-slide-background {
  background: radial-gradient(
    ellipse at 50% 30%,
    #3d1a0a 0%,
    #1a0800 40%,
    #000 100%
  );
}

/* Animated coffee beans for slide 1 */
.cb-floating-beans-layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cb-coffee-bean {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 40% 35%,
    #8b4513 0%,
    #5c2e0a 50%,
    #3d1a05 100%
  );
  animation: cb-beanFloatUp linear infinite;
  box-shadow:
    inset 0 0 8px rgba(0, 0, 0, 0.5),
    0 2px 4px rgba(0, 0, 0, 0.3);
}

.cb-coffee-bean::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 2px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  transform: translateY(-50%);
}

/* Individual bean positions, sizes, speeds */
.cb-coffee-bean:nth-child(1) {
  width: 24px;
  height: 15px;
  left: 12%;
  animation-duration: 5.2s;
  animation-delay: -1.1s;
  opacity: 0.7;
}
.cb-coffee-bean:nth-child(2) {
  width: 32px;
  height: 20px;
  left: 23%;
  animation-duration: 7.8s;
  animation-delay: -3.5s;
  opacity: 0.9;
}
.cb-coffee-bean:nth-child(3) {
  width: 20px;
  height: 13px;
  left: 37%;
  animation-duration: 6.1s;
  animation-delay: -0.8s;
  opacity: 0.6;
}
.cb-coffee-bean:nth-child(4) {
  width: 28px;
  height: 18px;
  left: 48%;
  animation-duration: 8.3s;
  animation-delay: -5.2s;
  opacity: 0.8;
}
.cb-coffee-bean:nth-child(5) {
  width: 22px;
  height: 14px;
  left: 61%;
  animation-duration: 4.9s;
  animation-delay: -2.3s;
  opacity: 0.7;
}
.cb-coffee-bean:nth-child(6) {
  width: 30px;
  height: 19px;
  left: 74%;
  animation-duration: 7s;
  animation-delay: -4.6s;
  opacity: 0.9;
}
.cb-coffee-bean:nth-child(7) {
  width: 26px;
  height: 16px;
  left: 83%;
  animation-duration: 5.7s;
  animation-delay: -1.9s;
  opacity: 0.6;
}
.cb-coffee-bean:nth-child(8) {
  width: 18px;
  height: 12px;
  left: 17%;
  animation-duration: 6.5s;
  animation-delay: -0.4s;
  opacity: 0.8;
}
.cb-coffee-bean:nth-child(9) {
  width: 34px;
  height: 21px;
  left: 55%;
  animation-duration: 8.8s;
  animation-delay: -6.1s;
  opacity: 0.7;
}
.cb-coffee-bean:nth-child(10) {
  width: 23px;
  height: 15px;
  left: 30%;
  animation-duration: 5.4s;
  animation-delay: -3s;
  opacity: 0.9;
}
.cb-coffee-bean:nth-child(11) {
  width: 29px;
  height: 18px;
  left: 68%;
  animation-duration: 7.2s;
  animation-delay: -2.7s;
  opacity: 0.6;
}
.cb-coffee-bean:nth-child(12) {
  width: 21px;
  height: 13px;
  left: 42%;
  animation-duration: 6.8s;
  animation-delay: -4.9s;
  opacity: 0.8;
}
.cb-coffee-bean:nth-child(13) {
  width: 27px;
  height: 17px;
  left: 78%;
  animation-duration: 5.9s;
  animation-delay: -1.5s;
  opacity: 0.7;
}
.cb-coffee-bean:nth-child(14) {
  width: 25px;
  height: 16px;
  left: 8%;
  animation-duration: 8.1s;
  animation-delay: -5.8s;
  opacity: 0.9;
}

@keyframes cb-beanFloatUp {
  0% {
    transform: translateY(120vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-20vh) rotate(720deg);
    opacity: 0;
  }
}

/* Steam */
.cb-steam-group {
  position: absolute;
  bottom: 42%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
}

.cb-steam-wisp {
  width: 3px;
  height: 80px;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0)
  );
  border-radius: 50px;
  animation: cb-steamRiseUp 2.5s ease-in-out infinite;
  filter: blur(2px);
}
.cb-steam-wisp:nth-child(2) {
  animation-delay: 0.8s;
  height: 100px;
}
.cb-steam-wisp:nth-child(3) {
  animation-delay: 1.6s;
}

@keyframes cb-steamRiseUp {
  0% {
    transform: translateY(0) scaleX(1);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  80% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-60px) scaleX(1.5);
    opacity: 0;
  }
}

/* Slide 2 */
.cb-aroma-slide .cb-slide-background {
  background: radial-gradient(
    ellipse at 50% 60%,
    #2d1206 0%,
    #0f0500 50%,
    #000 100%
  );
}

/* Slide 3 */
.cb-journey-slide .cb-slide-background {
  background: radial-gradient(
    ellipse at 50% 50%,
    #1a0f00 0%,
    #0a0500 60%,
    #000 100%
  );
}

/* Bottom Content */
.cb-slide-text-content {
  position: relative;
  z-index: 10;
  padding: 0 32px 60px;
  text-align: center;
}

.cb-slide-heading {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
  letter-spacing: -0.5px;
}

.cb-slide-description {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

/* Next Button */
.cb-btn-next-slide {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #c4713a 0%, #a85a28 100%);
  border: none;
  border-radius: 20px;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(168, 90, 40, 0.5);
  margin-bottom: 28px;
}

.cb-btn-next-slide:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(168, 90, 40, 0.6);
}

.cb-btn-next-slide:active {
  transform: translateY(0);
}

/* Get Started button (last slide) */
.cb-btn-get-started {
  background: linear-gradient(135deg, #c4713a 0%, #8b4513 100%);
  box-shadow: 0 8px 30px rgba(139, 69, 19, 0.6);
}

.cb-btn-label-default {
  display: inline;
}
.cb-btn-label-success {
  display: none;
}

.cb-btn-get-started.cb-btn-confirmed {
  background: linear-gradient(135deg, #4caf50, #388e3c);
}
.cb-btn-get-started.cb-btn-confirmed .cb-btn-label-default {
  display: none;
}
.cb-btn-get-started.cb-btn-confirmed .cb-btn-label-success {
  display: inline;
}

/* Skip Link */
.cb-skip-link {
  display: block;
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.5px;
  cursor: pointer;
  margin-top: -18px;
  margin-bottom: 22px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.cb-skip-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* Dots */
.cb-pagination-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.cb-pagination-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
  cursor: pointer;
}

.cb-pagination-dot.cb-dot-active {
  width: 24px;
  border-radius: 4px;
  background: #c4713a;
}

/* Gradient overlay */
.cb-bottom-gradient-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.7) 50%,
    transparent 100%
  );
}

/* Slide 2 visual elements */
.cb-aroma-rings-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cb-aroma-pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(196, 113, 58, 0.15);
  animation: cb-ringPulseScale 3s ease-in-out infinite;
}

@keyframes cb-ringPulseScale {
  0%,
  100% {
    transform: scale(0.8);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

/* Slide 3 visual */
.cb-starfield-layer {
  position: absolute;
  inset: 0;
}

.cb-glowing-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(196, 113, 58, 0.6);
  border-radius: 50%;
  animation: cb-particleTwinkle 2s ease-in-out infinite;
}

@keyframes cb-particleTwinkle {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.5);
  }
}

@keyframes cb-cupBrewPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
/* End Page Intro */
/* Start Page Sign in */

:root {
  --ombe-green-primary: #1d7a4f;
  --ombe-green-dark: #155f3c;
  --ombe-green-light: #e8f5ee;
  --ombe-cream-btn: #f2d9b4;
  --ombe-cream-hover: #e8c99a;
  --ombe-text-dark: #1a1a1a;
  --ombe-text-muted: #888;
  --ombe-text-label: #555;
  --ombe-border-input: #d4d4d4;
  --ombe-border-focus: #1d7a4f;
  --ombe-bg-page: #ffffff;
  --ombe-shadow-card: 0 8px 40px rgba(0, 0, 0, 0.07);
  --ombe-radius-btn: 50px;
  --ombe-radius-input: 8px;
  --ombe-font-main: "DM Sans", sans-serif;
}

.ombe-signin-page {
  padding: 40px 20px 60px;
  margin: 0 auto;
}

/* ── Logo ── */
.ombe-logo-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 48px;
}

.ombe-logo-icon {
  width: 46px;
  height: 46px;
}

.ombe-logo-wordmark {
  font-size: 26px;
  font-weight: 700;
  color: var(--ombe-text-dark);
  letter-spacing: -0.5px;
}

/* ── Heading ── */
.ombe-signin-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--ombe-text-dark);
  margin-bottom: 10px;
}

.ombe-signin-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: var(--ombe-text-muted);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* ── Field Group ── */
.ombe-field-group {
  margin-bottom: 24px;
}

.ombe-field-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ombe-text-label);
  margin-bottom: 10px;
  letter-spacing: 0.1px;
}

.ombe-input-row {
  position: relative;
  border-bottom: 1.5px solid var(--ombe-border-input);
  transition: border-color 0.25s ease;
}

.ombe-input-row:focus-within {
  border-color: var(--ombe-border-focus);
}

.ombe-text-input {
  width: 100%;
  border: none;
  outline: none;
  font-family: var(--ombe-font-main);
  font-size: 15px;
  font-weight: 400;
  color: var(--ombe-text-dark);
  padding: 10px 0 5px 40px;
  background: transparent;
  caret-color: var(--ombe-green-primary);
}

.ombe-text-input::placeholder {
  color: var(--ombe-text-muted);
}

/* Password toggle */
.ombe-password-toggle-btn {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ombe-text-muted);
  padding: 4px;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.ombe-password-toggle-btn:hover {
  color: var(--ombe-green-primary);
}

/* RTL fixes (Arabic) */
html[dir="rtl"] .ombe-text-input{
  direction: rtl;
  text-align: right;
}


/* ── Login Button ── */
.ombe-login-btn {
  width: 100%;
  padding: 18px;
  background: var(--ombe-green-primary);
  color: #fff;
  font-family: var(--ombe-font-main);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--ombe-radius-btn);
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 22px;
  transition:
    background 0.25s ease,
    transform 0.15s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 6px 24px rgba(29, 122, 79, 0.3);
}

.ombe-login-btn:hover {
  background: var(--ombe-green-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(29, 122, 79, 0.35);
}

.ombe-login-btn:active {
  transform: translateY(0);
}

/* ── Remember Me ── */
.ombe-remember-forgot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  margin-bottom: 28px;
}

.ombe-remember-me-label {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  color: var(--ombe-text-label);
}

.ombe-remember-me-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1.8px solid var(--ombe-border-input);
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  transition:
    border-color 0.2s,
    background 0.2s;
  flex-shrink: 0;
}

.ombe-remember-me-checkbox:checked {
  background: var(--ombe-green-primary);
  border-color: var(--ombe-green-primary);
}

.ombe-remember-me-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* ── Forgot Password ── */
.ombe-forgot-password-row {
  font-size: 14px;
  color: var(--ombe-text-muted);
  margin-bottom: 0;
}

.ombe-reset-password-link {
  color: var(--ombe-green-primary);
  font-weight: 600;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s;
}

.ombe-reset-password-link:hover {
  color: var(--ombe-green-dark);
}

/* ── Divider ── */
.ombe-or-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.ombe-divider-line {
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

.ombe-divider-text {
  font-size: 13px;
  color: var(--ombe-text-muted);
  white-space: nowrap;
}

/* ── Google Sign-In Button ── */
.ombe-google-signin-btn {
  width: 100%;
  padding: 15px 20px;
  background: #fff;
  border: 1.5px solid #d4d4d4;
  border-radius: var(--ombe-radius-btn);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--ombe-font-main);
  font-size: 15px;
  font-weight: 600;
  color: var(--ombe-text-dark);
  letter-spacing: 0.3px;
  margin-bottom: 30px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.15s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.ombe-google-signin-btn:hover {
  background: #f9f9f9;
  border-color: #bbb;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.ombe-google-signin-btn:active {
  transform: translateY(0);
}

.ombe-google-logo-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── No Account Section ── */
.ombe-no-account-label {
  text-align: center;
  font-size: 14px;
  color: var(--ombe-text-muted);
  margin-bottom: 16px;
}

.ombe-create-account-btn,
.ombe-create-account-btn a {
  display: block;
  width: 100%;
  padding: 18px;
  background: var(--ombe-cream-btn);
  color: var(--ombe-text-dark);
  font-family: var(--ombe-font-main);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--ombe-radius-btn);
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(242, 217, 180, 0.5);
  text-decoration: none;
  text-align: center;
}

.ombe-create-account-btn:hover,
.ombe-create-account-btn a:hover {
  background: var(--ombe-cream-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(232, 201, 154, 0.55);
}

.ombe-create-account-btn:active {
  transform: translateY(0);
}

/* End Page Sign in */
/* Start Page OTP */

/* ── Back Button ── */
.ombe-otp-back-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ombe-font-main);
  font-size: 14px;
  font-weight: 500;
  color: var(--ombe-text-muted);
  padding: 0;
  margin-bottom: 32px;
  transition: color 0.2s;
}

.ombe-otp-back-btn:hover {
  color: var(--ombe-green-primary);
}
.ombe-otp-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--ombe-text-dark);
  margin-bottom: 10px;
}
.ombe-otp-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: var(--ombe-text-muted);
  margin-bottom: 6px;
  line-height: 1.6;
}
.ombe-otp-target-email {
  font-size: 14px;
  font-weight: 600;
  color: var(--ombe-green-primary);
  margin-bottom: 40px;
  display: block;
}

/* ── OTP Inputs Row ── */
.ombe-otp-inputs-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 36px;
  direction: ltr;
}
.ombe-otp-page{
      padding: 40px 20px 60px;
    margin: 0 auto;
}
.ombe-otp-single-input {
  flex: 1;
  max-width: 70px;
  height: 54px;
  text-align: center;
  font-family: var(--ombe-font-main);
  font-size: 22px;
  font-weight: 700;
  color: var(--ombe-text-dark);
  border: 1.5px solid var(--ombe-border-input);
  border-radius: 14px;
  background: #fafafa;
  outline: none;
  caret-color: var(--ombe-green-primary);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
  -moz-appearance: textfield;
}

.ombe-otp-single-input::-webkit-outer-spin-button,
.ombe-otp-single-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.ombe-otp-single-input:focus {
  border-color: var(--ombe-green-primary);
  background: var(--ombe-green-light);
  box-shadow: 0 0 0 4px rgba(29, 122, 79, 0.1);
}

.ombe-otp-single-input.ombe-otp-input-filled {
  border-color: var(--ombe-green-primary);
  background: #fff;
}

.ombe-otp-single-input.ombe-otp-input-error {
  border-color: #e53935;
  background: #fff5f5;
  box-shadow: 0 0 0 4px rgba(229, 57, 53, 0.08);
  animation: ombe-otp-shake 0.35s ease;
}

@keyframes ombe-otp-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-6px);
  }
  75% {
    transform: translateX(6px);
  }
}

/* ── Resend Row ── */
.ombe-otp-resend-row {
  text-align: center;
  font-size: 14px;
  color: var(--ombe-text-muted);
}

.ombe-otp-resend-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ombe-font-main);
  font-size: 14px;
  font-weight: 600;
  color: var(--ombe-green-primary);
  text-decoration: underline;
  padding: 0;
  margin-left: 6px;
  transition: color 0.2s;
}

.ombe-otp-resend-btn:hover {
  color: var(--ombe-green-dark);
}

.ombe-otp-resend-btn:disabled {
  color: var(--ombe-text-muted);
  text-decoration: none;
  cursor: default;
}

/* ── Resend States ── */
.ombe-otp-resend-btn-text-countdown {
  display: none;
}
.ombe-otp-resend-btn-text-default {
  display: inline;
}

.ombe-otp-resend-btn.ombe-resend-is-counting .ombe-otp-resend-btn-text-default {
  display: none;
}
.ombe-otp-resend-btn.ombe-resend-is-counting
  .ombe-otp-resend-btn-text-countdown {
  display: inline;
}

/* ── Countdown ── */
.ombe-otp-countdown-text {
  font-weight: 600;
  color: var(--ombe-text-dark);
}

/* ── Error Message ── */
.ombe-otp-error-msg {
  font-size: 13px;
  color: #e53935;
  text-align: center;
  margin-bottom: 16px;
  min-height: 18px;
  display: none;
}

.ombe-otp-error-msg.ombe-error-visible {
  display: block;
}
.ombe-otp-error-incomplete {
  display: none;
}
.ombe-otp-error-invalid {
  display: none;
}
.ombe-otp-error-msg.ombe-error-incomplete .ombe-otp-error-incomplete {
  display: inline;
}
.ombe-otp-error-msg.ombe-error-invalid .ombe-otp-error-invalid {
  display: inline;
}
/* End Page OTP */
