/* ==========================================
   BEEBLISS – STYLE.CSS
   Font: Inter + Plus Jakarta Sans (Google Fonts)
   Mobile-first with desktop breakpoints
   ========================================== */

/* ── CSS Design Tokens ────────────────────── */
:root {
  --primary: #ef8b83;
  /* Coral Pink          */
  --primary-dark: #d4726a;
  /* Darker Coral        */
  --secondary: #a67e6b;
  /* Bronze              */
  --accent: #fde8e6;
  /* Light Coral Tint    */
  --ink: #1c1b1b;
  --muted: #857370;
  --bg-off: #fdfdfc;
  /* Solid Warm White    */
  --bg-white: #fdfdfc;
  --line: #d8c9c7;
  --radius-pill: 999px;
  --radius-card: 20px;
  --shadow-soft: 0 8px 32px rgba(239, 139, 131, 0.09);
  --shadow-hover: 0 16px 48px rgba(239, 139, 131, 0.16);
  --transition: 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  from {
    background-position: -200% center;
  }

  to {
    background-position: 200% center;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Plus Jakarta Sans", sans-serif;
  background: var(--bg-off);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

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

ul {
  list-style: none;
}

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

button,
input {
  font-family: "Inter", sans-serif;
  outline: none;
}

/* ==========================================
   BUTTONS — Premium Gradient Style
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18),
    transparent 55%
  );
  pointer-events: none;
}

.btn-white {
  background: #fff;
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.btn-white:hover {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.btn-black {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  box-shadow: 0 6px 24px rgba(239, 139, 131, 0.3);
}

.btn-black:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
  box-shadow: 0 10px 36px rgba(239, 139, 131, 0.4);
  transform: translateY(-2px);
}

/* ==========================================
   HEADER
   ========================================== */

.header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  max-width: 1440px;
  margin: 0 auto;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  transition: all 0.3s ease;
}

/* Desktop Navigation – hidden on mobile */
.desktop-nav {
  display: none;
}

.logo a {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #111;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111;
  color: #111;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 8px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.admin-quick-link:hover {
  background: #111;
  color: #fff;
}

.currency-label {
  display: none;
  /* hidden on mobile */
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #111;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  position: relative;
}

.cart-btn {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -6px;
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================
   ANNOUNCEMENT BAR
   ========================================== */

.announcement-bar {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 8px 15px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ==========================================
   CATEGORY SCROLL
   ========================================== */

.category-scroll {
  display: flex;
  overflow-x: auto;
  padding: 16px 14px;
  background: #fff;
  gap: 18px;
  scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.category {
  text-align: center;
  flex-shrink: 0;
  cursor: pointer;
}

.category-img-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid #ddd;
  transition: border-color 0.3s ease;
}

.category:hover .category-img-wrap {
  border-color: #111;
}

.category-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category p {
  font-size: 11px;
  font-weight: 500;
  margin-top: 6px;
  letter-spacing: 0.3px;
  color: #333;
}

/* ==========================================
   HERO BANNER
   ========================================== */

.hero {
  position: relative;
  overflow: hidden;
}

.hero img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.hero:hover img {
  transform: scale(1.03);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.hero-text {
  position: absolute;
  bottom: 40px;
  left: 24px;
  color: #fff;
  z-index: 2;
}

.hero-text h1 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1.1;
}

/* ==========================================
   SECTION TITLE
   ========================================== */

.section-title {
  text-align: center;
  padding: 44px 20px 22px;
  background: #fff;
}

.section-title h2 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-subtitle {
  color: #888;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ==========================================
   PRODUCT GRID
   ========================================== */

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 2px;
  background: #fff;
}

.product {
  background: #fff;
  cursor: pointer;
  overflow: hidden;
}

.product-img-wrap {
  overflow: hidden;
  background: #f0f0f0;
}

.product-img-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

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

.product-info {
  padding: 12px 14px 18px;
}

.product-info h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-bottom: 2px;
}

.product-info .color {
  font-size: 11px;
  color: #888;
  font-weight: 400;
  margin-bottom: 4px;
}

.product-info .price {
  font-size: 14px;
  font-weight: 700;
  color: #111;
}

/* ==========================================
   BANNER ROW (Side-by-side on desktop)
   ========================================== */

.banner-row {
  margin-top: 2px;
}

/* ==========================================
   BANNER (Cargo / Jackets)
   ========================================== */

.banner {
  position: relative;
  margin-top: 2px;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.banner:hover img {
  transform: scale(1.03);
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.banner-text {
  position: absolute;
  bottom: 28px;
  left: 24px;
  color: #fff;
  z-index: 2;
}

.banner-text h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.1;
}

/* ==========================================
   CATEGORY GRID
   ========================================== */

.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  padding: 0 2px 2px;
  background: #fff;
}

.cat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.cat-card img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

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

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.05) 60%,
    transparent 100%
  );
  pointer-events: none;
}

.cat-card-label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  z-index: 2;
}

.cat-card-label span:first-child {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.cat-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.cat-card:hover .cat-arrow {
  opacity: 1;
}

/* ==========================================
   COLLAB SECTION
   ========================================== */

.collab {
  position: relative;
  margin-top: 2px;
  overflow: hidden;
}

.collab img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

.collab:hover img {
  transform: scale(1.03);
}

.collab-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0.15) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.collab-text {
  position: absolute;
  bottom: 36px;
  left: 24px;
  color: #fff;
  z-index: 2;
}

.collab-text h2 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.collab-subtitle {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.85;
}

/* ==========================================
   NEWSLETTER
   ========================================== */

.newsletter {
  padding: 50px 24px;
  background: #fff;
  text-align: center;
  margin-top: 2px;
}

.newsletter h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.newsletter p {
  margin-bottom: 20px;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  max-width: 400px;
  margin: 0 auto;
}

.newsletter input {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  font-size: 13px;
  transition: border-color 0.3s ease;
  background: #fafafa;
}

.newsletter input:focus {
  border-color: #111;
  background: #fff;
}

.newsletter input::placeholder {
  color: #aaa;
  font-size: 13px;
}

.newsletter .btn-black {
  width: 100%;
  padding: 14px;
  font-size: 13px;
  cursor: pointer;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: #111;
  color: #fff;
  padding: 30px 20px;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-col {
  border-bottom: 1px solid #333;
}

.footer-col-title {
  padding: 16px 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.footer-col-title .plus {
  font-size: 16px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

/* Footer links hidden on mobile by default */
.footer-links {
  display: none;
  padding-bottom: 16px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 12px;
  color: #aaa;
  transition: color 0.2s ease;
  letter-spacing: 0.5px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
}

.footer-logo {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 4px;
}

.copyright {
  font-size: 11px;
  margin-top: 12px;
  color: #666;
}

/* ==========================================
   RESPONSIVE — TABLET (768px+)
   ========================================== */

@media (min-width: 768px) {
  /* Header */
  .header-inner {
    padding: 16px 30px;
  }

  .logo a {
    font-size: 17px;
    letter-spacing: 4px;
  }

  /* Hero */
  .hero-text {
    bottom: 50px;
    left: 40px;
  }

  .hero-text h1 {
    font-size: 42px;
    letter-spacing: 5px;
  }

  .hero-text .btn {
    padding: 14px 36px;
    font-size: 14px;
  }

  /* Product Grid – 3 columns on tablet */
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Banners */
  .banner-text {
    bottom: 36px;
    left: 36px;
  }

  .banner-text h2 {
    font-size: 30px;
  }

  .banner-text .btn {
    padding: 14px 34px;
    font-size: 14px;
  }

  /* Category Grid – stays 2x2 on tablet */

  .cat-card span {
    font-size: 17px;
    bottom: 16px;
    left: 16px;
  }

  /* Collab */
  .collab-text {
    bottom: 50px;
    left: 40px;
  }

  .collab-text h2 {
    font-size: 28px;
  }

  /* Section Title */
  .section-title h2 {
    font-size: 20px;
  }

  /* Category Scroll */
  .category-scroll {
    justify-content: center;
    gap: 24px;
    padding: 20px 30px;
  }

  .category-img-wrap {
    width: 76px;
    height: 76px;
  }

  .category p {
    font-size: 12px;
  }

  /* Newsletter */
  .newsletter {
    padding: 50px 40px;
  }

  .newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    max-width: 600px;
  }

  .newsletter input {
    flex: 1;
    min-width: 180px;
  }

  .newsletter .btn-black {
    flex: 0 0 auto;
    width: auto;
    padding: 14px 30px;
  }
}

/* ==========================================
   RESPONSIVE — DESKTOP (1024px+)
   ========================================== */

@media (min-width: 1024px) {
  /* Header: show desktop nav, hide hamburger */
  .hamburger {
    display: none;
  }

  .desktop-nav {
    display: flex;
    gap: 24px;
  }

  .desktop-nav a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #111;
    transition: color 0.2s ease;
    white-space: nowrap;
  }

  .desktop-nav a:hover {
    color: #666;
  }

  .currency-label {
    display: inline;
  }

  .header-inner {
    padding: 18px 40px;
  }

  .logo a {
    font-size: 18px;
    letter-spacing: 5px;
  }

  .nav-right {
    gap: 14px;
  }

  /* Hero */
  .hero-text {
    bottom: 60px;
    left: 60px;
  }

  .hero-text h1 {
    font-size: 52px;
    letter-spacing: 6px;
    margin-bottom: 18px;
  }

  .hero-text .btn {
    padding: 16px 42px;
    font-size: 14px;
  }

  /* Hero image height constraint for desktop */
  .hero img {
    max-height: 600px;
    object-fit: cover;
    object-position: center;
  }

  /* Product Grid – 4 columns */
  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 4px;
  }

  .product-info {
    padding: 12px 14px 18px;
  }

  .product-info h4 {
    font-size: 14px;
  }

  .product-info .price {
    font-size: 15px;
  }

  /* Banners – side-by-side in banner-row */
  .banner-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
  }

  .banner-row .banner {
    margin-top: 0;
  }

  .banner-row .banner img {
    max-height: none;
    height: 100%;
    min-height: 400px;
  }

  .banner-text {
    bottom: 40px;
    left: 40px;
  }

  .banner-text h2 {
    font-size: 28px;
    letter-spacing: 3px;
  }

  .banner-text .btn {
    padding: 12px 28px;
    font-size: 13px;
  }

  /* Category Grid – 4 columns */
  .category-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 0 4px 4px;
  }

  .cat-card-label {
    bottom: 18px;
    left: 18px;
    right: 18px;
  }

  .cat-card-label span:first-child {
    font-size: 18px;
  }

  /* Collab */
  .collab img {
    max-height: 500px;
    object-fit: cover;
    object-position: center;
  }

  .collab-text {
    bottom: 60px;
    left: 60px;
  }

  .collab-text h2 {
    font-size: 34px;
    letter-spacing: 3px;
  }

  .collab-subtitle {
    font-size: 14px;
  }

  .collab-text .btn {
    padding: 16px 42px;
  }

  /* Section titles */
  .section-title {
    padding: 52px 20px 28px;
  }

  .section-title h2 {
    font-size: 24px;
    letter-spacing: 4px;
  }

  /* Category Scroll - larger on desktop */
  .category-scroll {
    gap: 30px;
    padding: 24px 40px;
  }

  .category-img-wrap {
    width: 84px;
    height: 84px;
  }

  .category p {
    font-size: 12px;
    margin-top: 8px;
  }

  /* Newsletter */
  .newsletter {
    padding: 60px 40px;
  }

  .newsletter h3 {
    font-size: 22px;
  }

  .newsletter p {
    font-size: 14px;
    max-width: 500px;
  }

  .newsletter-form {
    max-width: 700px;
    flex-wrap: nowrap;
  }

  /* Footer – multi-column */
  .footer {
    padding: 50px 40px 30px;
  }

  .footer-menu {
    display: flex;
    gap: 60px;
  }

  .footer-col {
    flex: 1;
    border-bottom: none;
  }

  .footer-col-title {
    cursor: default;
    padding-bottom: 14px;
    border-bottom: 1px solid #333;
    margin-bottom: 14px;
  }

  .footer-col-title .plus {
    display: none;
  }

  .footer-links {
    display: block !important;
    padding-bottom: 0;
  }

  .footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #333;
  }
}

/* ==========================================
   RESPONSIVE — LARGE DESKTOP (1440px+)
   ========================================== */

@media (min-width: 1440px) {
  .header-inner {
    padding: 18px 60px;
  }

  .hero-text {
    bottom: 80px;
    left: 80px;
  }

  .hero-text h1 {
    font-size: 60px;
  }

  .banner-text {
    bottom: 60px;
    left: 80px;
  }

  .banner-text h2 {
    font-size: 46px;
  }

  .collab-text {
    bottom: 80px;
    left: 80px;
  }

  .collab-text h2 {
    font-size: 40px;
  }

  .desktop-nav {
    gap: 30px;
  }

  .footer-menu {
    gap: 80px;
  }
}

/* ==========================================
   AUTH MODAL (Login/Register)
   ========================================== */
.auth-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.auth-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.auth-modal {
  background: #fff;
  width: 100%;
  max-width: 440px;
  border-radius: 0;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.auth-overlay.active .auth-modal {
  transform: translateY(0);
}

.auth-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: color 0.2s;
}

.auth-close:hover {
  color: #111;
}

.auth-tabs {
  display: flex;
  border-bottom: 1px solid #eee;
}

.auth-tab {
  flex: 1;
  padding: 20px;
  background: #fafafa;
  border: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #888;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.2s;
}

.auth-tab.active {
  background: #fff;
  color: #111;
  border-bottom: 2px solid #111;
}

.auth-forms-container {
  padding: 32px 32px 40px;
  position: relative;
}

.auth-form {
  display: none;
  animation: fadeIn 0.3s ease forwards;
}

.auth-form.active {
  display: block;
}

.auth-form h2 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.auth-form p.subtitle {
  font-size: 13px;
  color: #666;
  margin-bottom: 24px;
}

.auth-input-group {
  margin-bottom: 16px;
}

.auth-input-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.auth-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  background: #fafafa;
  font-size: 14px;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.auth-input:focus {
  border-color: #111;
  background: #fff;
}

.auth-form .btn-black {
  width: 100%;
  margin-top: 12px;
  padding: 16px;
}

.auth-forgot {
  display: block;
  text-align: right;
  font-size: 12px;
  color: #666;
  margin-top: -8px;
  margin-bottom: 20px;
  text-decoration: underline;
}

.auth-forgot:hover {
  color: #111;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .auth-forms-container {
    padding: 24px 20px 30px;
  }
}

/* ==========================================
   PREMIUM MICRO-ANIMATIONS & ENHANCEMENTS
   ========================================== */

/* Product card hover lift */
.product-card {
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

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

.product-card__img {
  overflow: hidden;
}

.product-card__img img {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Nav link animated underline */
.nav-item a {
  position: relative;
}

.nav-item a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  transition: width var(--transition);
}

.nav-item a:hover::after,
.nav-item.active a::after {
  width: 100%;
}

/* Cart badge pulse */
.cart-count,
.header-cart-count {
  animation: pulseOnce 0.5s ease;
}

@keyframes pulseOnce {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.35);
  }

  100% {
    transform: scale(1);
  }
}

/* Page load fade-in for sections */
.hero,
.featured-section,
.category-section {
  animation: fadeInUp 0.55s ease both;
}

/* Form input focus ring */
input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(162, 0, 186, 0.12) !important;
  outline: none;
}

/* Announcement bar gradient */
.announcement-bar {
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--primary)
  );
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

/* Image zoom on hover for collection grids */
.collection-item,
.category-card {
  overflow: hidden;
}

.collection-item img,
.category-card img {
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-item:hover img,
.category-card:hover img {
  transform: scale(1.08);
}

/* Scroll reveal utility */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
