/* ===========================
   Koshatakin Exim — Premium Bag Brand
   Shared Design System
=========================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Jost:wght@300;400;500;600&family=Space+Grotesk:wght@400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --cream: #F5F1EB;
  --dark-brown: #4A2E2A;
  --gold: #C8A96A;
  --gold-light: #e2c98a;
  --text: #1A1A1A;
  --text-muted: #6b6050;
  --white: #FFFFFF;
  --border: #e4ddd3;
  --shadow-sm: 0 2px 12px rgba(74, 46, 42, 0.08);
  --shadow-md: 0 6px 30px rgba(74, 46, 42, 0.14);
  --shadow-lg: 0 12px 50px rgba(74, 46, 42, 0.18);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', 'Inter', sans-serif;
  --font-num: 'Space Grotesk', monospace;
  --radius: 4px;
  --radius-lg: 12px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-sans);
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: var(--font-sans);
}

.order-id,
.nav-badge,
.stat-big {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark-brown);
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.2rem;
}

p {
  color: var(--text-muted);
  font-weight: 300;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  margin-bottom: 0.5rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-sub {
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--dark-brown);
  color: var(--white);
  border: 2px solid var(--dark-brown);
}

.btn-primary:hover {
  background: transparent;
  color: var(--dark-brown);
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-outline {
  background: transparent;
  color: var(--dark-brown);
  border: 2px solid var(--dark-brown);
}

.btn-outline:hover {
  background: var(--dark-brown);
  color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
  /* Default: dark glass — always visible over carousel */
  background: rgba(26, 12, 10, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled {
  background: rgba(245, 241, 235, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(74, 46, 42, 0.12);
  padding: 0.75rem 0;
}

/* Inner pages always use light navbar */
.navbar.nav-light {
  background: rgba(245, 241, 235, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(74, 46, 42, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}

.nav-logo span {
  color: var(--gold);
}

.navbar.scrolled .nav-logo,
.navbar.nav-light .nav-logo {
  color: var(--dark-brown);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  position: relative;
  transition: color var(--transition);
}

.navbar.scrolled .nav-links a,
.navbar.nav-light .nav-links a {
  color: var(--dark-brown);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--gold) !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-icon-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
  cursor: pointer;
}

.navbar.scrolled .nav-icon-btn,
.navbar.nav-light .nav-icon-btn {
  background: transparent;
  color: var(--dark-brown);
}

/* Handle elephant image color in navbar */
.nav-icon-btn img {
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.navbar.scrolled .nav-icon-btn img,
.navbar.nav-light .nav-icon-btn img {
  filter: none;
}

.nav-icon-btn:hover img {
  filter: brightness(0) invert(1) !important;
}

.nav-icon-btn:hover {
  background: var(--dark-brown);
  color: var(--white);
}

.navbar.scrolled .nav-icon-btn:hover,
.navbar.nav-light .nav-icon-btn:hover {
  background: var(--dark-brown);
  color: var(--white);
}

.nav-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 17px;
  height: 17px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-brown);
  border-radius: 2px;
  transition: var(--transition);
}

/* Search bar */
.nav-search-bar {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(245, 241, 235, 0.98);
  backdrop-filter: blur(16px);
  padding: 1rem 2rem;
  box-shadow: var(--shadow-md);
  display: none;
  animation: slideDown 0.25s ease;
}

.nav-search-bar.open {
  display: block;
}

.nav-search-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  overflow: hidden;
}

.nav-search-inner input {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
}

.nav-search-inner button {
  padding: 0.75rem 1.5rem;
  background: var(--dark-brown);
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 100vw);
  height: 100vh;
  background: var(--white);
  z-index: 2000;
  padding: 2rem;
  transition: right 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--dark-brown);
}

.mobile-nav-links a {
  display: block;
  padding: 0.9rem 0;
  font-size: 1.1rem;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--dark-brown);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}

.mobile-nav-links a:hover {
  color: var(--gold);
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1999;
  display: none;
  backdrop-filter: blur(2px);
}

.overlay.open {
  display: block;
}

/* ---------- Toast ---------- */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--dark-brown);
  color: var(--white);
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-lg);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: toastIn 0.35s ease;
  border-left: 3px solid var(--gold);
  min-width: 260px;
}

.toast img {
  filter: brightness(0) invert(1);
  transform: translateY(-2px);
  height: 18px;
  width: auto;
  flex-shrink: 0;
  vertical-align: middle;
}

.toast span {
  display: inline-flex;
  align-items: center;
}

.toast.removing {
  animation: toastOut 0.3s ease forwards;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(60px);
  }
}

/* ---------- Product Card ---------- */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-img img {
  transform: scale(1.08);
}

.product-card-actions {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition);
}

.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(0);
}

.card-action-btn {
  width: 38px;
  height: 38px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--dark-brown);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.card-action-btn:hover {
  background: var(--dark-brown);
  color: var(--white);
}

/* Elephant wishlist icon */
.wishlist-btn .wish-elephant,
#wishBtn .wish-elephant {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  pointer-events: none;
}

/* Default state */
.wishlist-btn,
#wishBtn {
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease !important;
}

/* Active / wishlisted state */
.card-action-btn.wishlisted,
.wishlist-btn.wishlisted,
#wishBtn.wishlisted {
  background: #ffe0e6 !important;
  box-shadow: 0 0 12px rgba(255, 105, 135, 0.4), var(--shadow-sm) !important;
  transform: scale(1.08);
}

.card-action-btn.wishlisted .wish-elephant,
.wishlist-btn.wishlisted .wish-elephant,
#wishBtn.wishlisted .wish-elephant {
  transform: scale(1.15);
  filter: invert(53%) sepia(87%) saturate(3015%) hue-rotate(315deg) brightness(101%) contrast(101%) drop-shadow(0 0 4px rgba(255, 105, 135, 0.5)) !important;
}

/* Hover on active */
.card-action-btn.wishlisted:hover,
.wishlist-btn.wishlisted:hover,
#wishBtn.wishlisted:hover {
  background: #ffc8d4 !important;
  box-shadow: 0 0 18px rgba(255, 105, 135, 0.55), var(--shadow-sm) !important;
}

/* Hover on inactive — keep dark brown bg override only when NOT wishlisted */
.wishlist-btn:not(.wishlisted):hover,
#wishBtn:not(.wishlisted):hover {
  background: var(--dark-brown);
}

.wishlist-btn:not(.wishlisted):hover .wish-elephant,
#wishBtn:not(.wishlisted):hover .wish-elephant {
  filter: brightness(0) invert(1);
}

/* PDP wish button elephant sizing */
#wishBtn .wish-elephant {
  width: 22px;
  height: 22px;
}

.product-badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  background: var(--dark-brown);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

.product-badge.sale {
  background: var(--gold);
}

.product-card-info {
  padding: 1.1rem 1.2rem 1.4rem;
}

.product-card-category {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.product-card-name {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark-brown);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.product-card-name a:hover {
  color: var(--gold);
  transition: color var(--transition);
}

.stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.6rem;
}

.stars i {
  color: var(--gold);
  font-size: 0.75rem;
}

.stars span {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-left: 4px;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.price-current {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--dark-brown);
}

.price-original {
  font-family: var(--font-num);
  font-variant-numeric: tabular-nums;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.btn-add-cart {
  background: var(--dark-brown);
  color: var(--white);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-add-cart:hover {
  background: var(--gold);
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark-brown);
  color: var(--white);
  padding: 5rem 0 2rem;
  margin-top: 5rem;
  border-top: 2px solid rgba(200, 169, 106, 0.4);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(200, 169, 106, 0.2);
}

.footer-brand-logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-brand-logo span {
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-col-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition), transform var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
  display: inline-block;
}

.footer-newsletter-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.2rem;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
  border: 1.5px solid rgba(200, 169, 106, 0.5);
  border-radius: 50px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.footer-newsletter-form input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.footer-newsletter-form button {
  padding: 0.8rem 1.5rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition);
  text-transform: uppercase;
}

.footer-newsletter-form button:hover {
  background: var(--white);
  color: var(--dark-brown);
}

.footer-bottom {
  padding: 1.5rem 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ---------- Pagination ---------- */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.page-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--dark-brown);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.page-btn:hover,
.page-btn.active {
  background: var(--dark-brown);
  color: var(--white);
  border-color: var(--dark-brown);
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb i {
  font-size: 0.6rem;
}

/* ---------- Utility ---------- */
.text-gold {
  color: var(--gold);
}

.text-brown {
  color: var(--dark-brown);
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.d-flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.gap-1 {
  gap: 0.5rem;
}

.gap-2 {
  gap: 1rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.2rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 0.75rem 1.6rem;
    font-size: 0.8rem;
  }
}