@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&display=swap");

:root {
  --cream: #faf8f5;
  --white: #ffffff;
  --blush: #f0e8e0;
  --rose: #c9a89a;
  --rose-dark: #a8756a;
  --charcoal: #2c2520;
  --charcoal-light: #5a4f48;
  --gold: #c4a35a;
  --gold-light: #e8d5a3;
  --border: #e8e0d8;
  --shadow: rgba(44, 37, 32, 0.08);
  --shadow-md: rgba(44, 37, 32, 0.15);
  --font-display: "Cormorant Garamond", serif;
  --font-body: "DM Sans", sans-serif;
  --nav-h: 80px;
  --radius: 2px;
  --radius-lg: 6px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo .brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--charcoal);
}

.nav-logo .tagline {
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--rose);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-light);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rose-dark);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-links a:hover {
  color: var(--charcoal);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cart {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  cursor: pointer;
}

.nav-cart:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.nav-cart svg {
  width: 18px;
  height: 18px;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--rose-dark);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== CART DRAWER ===== */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 37, 32, 0.5);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100vh;
  background: var(--white);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-header {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
}

.cart-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
}

.cart-close:hover {
  background: var(--blush);
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 32px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--charcoal-light);
}

.cart-empty p {
  margin-top: 12px;
  font-size: 14px;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  object-fit: cover;
  background: var(--blush);
}

.cart-item-info {
  flex: 1;
}
.cart-item-name {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}
.cart-item-price {
  color: var(--rose-dark);
  font-size: 14px;
  font-weight: 600;
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all var(--transition);
}

.qty-btn:hover {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.qty-num {
  font-size: 14px;
  font-weight: 500;
  min-width: 20px;
  text-align: center;
}

.cart-remove {
  color: #aaa;
  font-size: 12px;
  cursor: pointer;
  transition: color var(--transition);
}
.cart-remove:hover {
  color: var(--rose-dark);
}

@media (max-width: 768px) {
  .cart-footer {
    position: sticky;
    bottom: 0;
    background: white;
    z-index: 5;
  }
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  left: 20px;
  font-size: 14px;
}

.cart-shipping-note {
  font-size: 12px;
  color: var(--rose-dark);
  margin-bottom: 20px;
  text-align: center;
}

.btn-checkout {
  width: 100%;
  background: var(--charcoal);
  color: var(--white);
  padding: 16px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition);
  border-radius: var(--radius);
}

.btn-checkout:hover {
  background: var(--rose-dark);
}

.btn-pay {
  width: 100%;
  margin-top: 10px;
  padding: 13px;
  border-radius: 12px;
  border: none;
  background: #2d7df6; /* modern mavi */
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.btn-pay:hover {
  background: #1f5edb; /* koyu mavi */
}

.btn-confirm,
.btn-pay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-confirm svg,
.btn-pay svg {
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 2px solid var(--charcoal);
}

.btn-primary:hover {
  background: transparent;
  color: var(--charcoal);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--charcoal);
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: var(--radius);
  border: 2px solid var(--charcoal);
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ===== SECTION HEADER ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.15;
}

.section-title em {
  font-style: italic;
  color: var(--rose-dark);
}

.section-divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid transparent;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px var(--shadow-md);
  border-color: var(--border);
}

.product-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--blush);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-img img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--charcoal);
  color: var(--white);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 2px;
}

.product-badge.sale {
  background: var(--rose-dark);
}
.product-badge.new {
  background: var(--gold);
  color: var(--charcoal);
}

.product-quick-add {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  background: var(--white);
  color: var(--charcoal);
  padding: 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--transition);
  text-align: center;
}

.product-card:hover .product-quick-add {
  opacity: 1;
  transform: translateY(0);
}

.product-card-body {
  padding: 18px 20px 22px;
}

.product-card-cat {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 6px;
}

.product-card-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-card-price {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-current {
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
}

.price-original {
  font-size: 14px;
  color: #aaa;
  text-decoration: line-through;
}

.price-sale {
  color: var(--rose-dark);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== FOOTER ===== */
footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
  margin-top: 0;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .brand {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.1em;
}

.footer-brand p {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.7;
  max-width: 260px;
}

.footer-title {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: var(--charcoal);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  z-index: 9999;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--transition);
  pointer-events: none;
  border-left: 3px solid var(--rose);
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ===== UTILS ===== */
.pt-nav {
  padding-top: calc(var(--nav-h) + 40px);
}

.skeleton {
  background: linear-gradient(
    90deg,
    var(--blush) 25%,
    var(--white) 50%,
    var(--blush) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius);
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

@media (max-width: 500px) {
  .checkout-box {
    width: 95%;
    padding: 18px;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 20px;
  }
  .container {
    padding: 0 20px;
  }
  .nav-links {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .cart-drawer {
    width: 100%;
  }
}

/* ===== SİPARİŞ MODALI ===== */
.order-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 37, 32, 0.55);
  backdrop-filter: blur(4px);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.order-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.order-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.97);
  width: min(900px, 96vw);
  max-height: 88vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: 12px;
  z-index: 3001;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 32px 80px rgba(44, 37, 32, 0.22);
  display: flex;
  flex-direction: column;
}
.order-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.order-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.order-modal-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.order-modal-sub {
  font-size: 13px;
  color: var(--charcoal-light);
}

.order-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
  color: var(--charcoal-light);
}
.order-modal-close:hover {
  background: var(--blush);
  color: var(--charcoal);
}

.order-modal-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  flex: 1;
  min-height: 0;
}

/* Form tarafı */
.order-form-side {
  padding: 28px 32px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.order-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--charcoal-light);
}

.req {
  color: var(--rose-dark);
}

.order-input,
.order-textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--charcoal);
  background: var(--cream);
  outline: none;
  transition:
    border-color var(--transition),
    background var(--transition);
  width: 100%;
}
.order-input:focus,
.order-textarea:focus {
  border-color: var(--rose-dark);
  background: var(--white);
}
.order-textarea {
  resize: vertical;
  line-height: 1.6;
}

/* Özet tarafı */
.order-summary-side {
  padding: 28px 24px;
  background: var(--blush);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.order-summary-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: 16px;
  font-weight: 600;
}

.order-summary-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
}

.summary-item-name {
  color: var(--charcoal);
  line-height: 1.4;
  flex: 1;
}

.summary-item-name em {
  font-style: normal;
  color: var(--charcoal-light);
  font-size: 12px;
}

.summary-item-price {
  font-weight: 600;
  color: var(--charcoal);
  white-space: nowrap;
}

.order-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(44, 37, 32, 0.12);
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.order-total-val {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--rose-dark);
}

.order-summary-shipping {
  font-size: 12px;
  margin-top: 4px;
}

.ship-free {
  color: #4a8a4a;
  font-weight: 600;
}

.ship-paid {
  color: var(--rose-dark);
}

/* Footer */
.order-modal-footer {
  padding: 20px 32px 28px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-error {
  background: #fff0ee;
  border: 1px solid #f5c6be;
  color: #c0392b;
  padding: 11px 16px;
  border-radius: var(--radius);
  font-size: 13px;
}

.btn-order-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: #25d366;
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
  letter-spacing: 0.02em;
}
.btn-order-submit:hover {
  background: #128c7e;
  transform: translateY(-1px);
}
.btn-order-submit:disabled {
  background: #aaa;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 700px) {
  .order-modal-body {
    grid-template-columns: 1fr;
  }
  .order-form-side {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 20px;
  }
  .order-summary-side {
    padding: 20px;
  }
  .order-modal-header {
    padding: 20px;
  }
  .order-modal-footer {
    padding: 16px 20px 20px;
  }
}

/* ===== CHECKOUT MODAL ===== */
.checkout-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.checkout-modal.active {
  display: flex;
  animation: fadeIn 0.25s ease;
}

.checkout-box {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  animation: scaleIn 0.25s ease;
}

.checkout-box h3 {
  margin-bottom: 18px;
  font-size: 20px;
}

/* inputs */
.checkout-box input,
.checkout-box textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 1px solid #eee;
  font-size: 14px;
  outline: none;
  transition: 0.2s;
}

.checkout-box input:focus,
.checkout-box textarea:focus {
  border-color: #c9a89a;
}

/* button */
.btn-confirm {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  border: none;
  background: #25d366; /* WhatsApp yeşili */
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.btn-confirm:hover {
  background: #1ebe5d; /* koyu yeşil */
}

/* animasyon */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* SUCCESS MODAL */
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.success-modal.active {
  display: flex;
}

/* BOX */
.success-box {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  width: 90%;
  max-width: 360px;
  animation: popIn 0.3s ease;
}

.success-box h3 {
  margin-top: 15px;
  color: #2e7d32;
}

.success-desc {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

.success-box button {
  margin-top: 20px;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  background: #2e7d32;
  color: white;
  cursor: pointer;
}

/* CHECKMARK */
.checkmark {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  position: relative;
}

.checkmark-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #4caf50;
  position: absolute;
  animation: scaleIn 0.3s ease;
}

.checkmark-stem {
  position: absolute;
  width: 4px;
  height: 20px;
  background: white;
  left: 33px;
  top: 22px;
  transform: rotate(45deg);
  animation: draw 0.3s ease 0.3s forwards;
  opacity: 0;
}

.checkmark-kick {
  position: absolute;
  width: 4px;
  height: 12px;
  background: white;
  left: 24px;
  top: 32px;
  transform: rotate(-45deg);
  animation: draw 0.3s ease 0.5s forwards;
  opacity: 0;
}

@keyframes draw {
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

@keyframes popIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 20px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.checkout-box {
  position: relative;
}
