/* 
  =========================================
  Pet Shop Demo - style.css
  Designed for: Druti IT / Mashfiq
  Theme: Warm, Premium Pet-friendly Niche
  =========================================
*/

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Hind+Siliguri:wght@400;500;600;700&display=swap');

/* --- CSS Variables & Design System --- */
:root {
  --font-primary: 'Montserrat', 'Hind Siliguri', sans-serif;
  
  /* Color Palette */
  --bg-main: #FAF8F5;
  --bg-card: #FFFFFF;
  --text-main: #1E2022;
  --text-muted: #686D76;
  
  --primary: #FF7A5A;         /* Warm Terracotta / Coral */
  --primary-hover: #E05C3C;
  --secondary: #4A7C59;       /* Deep Sage Green */
  --secondary-hover: #3B6447;
  
  --accent-light: #FFF2EE;
  --border-color: #EAE5DF;
  
  /* System Colors */
  --success: #2EC4B6;
  --danger: #E71D36;
  
  /* Brand Colors */
  --color-bkash: #E2136E;
  --color-nagad: #F47321;
  --color-rocket: #8C3494;
  
  /* Layout Constants */
  --header-height: 80px;
  --container-width: 1200px;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(226, 114, 91, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* --- Base Reset --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

ul {
  list-style: none;
}

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

button, input, select {
  font-family: inherit;
  border: none;
  background: none;
  outline: none;
}

/* --- Scrollbar Customization --- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* --- Utility Components --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(255, 122, 90, 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 122, 90, 0.4);
}

.btn-secondary {
  background-color: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background-color: var(--accent-light);
  border-color: var(--primary);
  color: var(--primary);
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-primary {
  background-color: var(--accent-light);
  color: var(--primary);
}

.badge-teal {
  background-color: #E8F7F5;
  color: var(--secondary);
}

/* --- Sticky Glassmorphic Header --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(250, 248, 245, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234, 229, 223, 0.5);
  z-index: 100;
  transition: var(--transition-smooth);
}

header.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-main);
}

.logo svg {
  fill: var(--primary);
  transition: var(--transition-smooth);
}

.logo:hover svg {
  transform: rotate(-10deg) scale(1.1);
}

.logo span {
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  color: var(--primary);
}

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

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

.cart-icon-btn {
  position: relative;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon-btn:hover {
  background-color: var(--accent-light);
  color: var(--primary);
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-card);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  transition: var(--transition-smooth);
}

/* --- Hero Banner Section --- */
.hero {
  margin-top: calc(var(--header-height) + 24px);
  padding: 60px 0;
}

.hero-banner {
  background: linear-gradient(135deg, rgba(255, 242, 238, 0.95) 0%, rgba(250, 248, 245, 0.75) 100%), 
              url('images/hero-pets.webp') no-repeat center center / cover;
  border-radius: 24px;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  min-height: 480px;
}

.hero-content {
  max-width: 550px;
  z-index: 2;
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text-main);
}

.hero-title span {
  color: var(--primary);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* Local Delivery Info Bar */
.delivery-info-bar {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.delivery-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.delivery-item svg {
  fill: var(--secondary);
}

/* --- Features Section --- */
.features-section {
  padding: 40px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.feature-card {
  background-color: var(--bg-card);
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 122, 90, 0.3);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background-color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.feature-icon svg {
  fill: currentColor;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- Shop / Featured Products Section --- */
.shop-section {
  padding: 60px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-top: 8px;
}

.category-tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.category-tab {
  padding: 8px 20px;
  border-radius: 50px;
  background: white;
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition-smooth);
}

.category-tab:hover,
.category-tab.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 10px rgba(255, 122, 90, 0.2);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: var(--bg-card);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 122, 90, 0.25);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 10;
}

.product-img-wrapper {
  aspect-ratio: 1 / 1;
  background-color: #F8F9FA;
  overflow: hidden;
  position: relative;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.product-details {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-cat {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.product-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.6em;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: #FFB020;
  margin-bottom: 16px;
}

.product-rating span {
  color: var(--text-muted);
  margin-left: 4px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
}

.product-price {
  display: flex;
  flex-direction: column;
}

.price-current {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.price-original {
  font-size: 0.85rem;
  text-decoration: line-through;
  color: var(--text-muted);
}

.add-to-cart-btn {
  background-color: var(--accent-light);
  color: var(--primary);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.add-to-cart-btn:hover {
  background-color: var(--primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(255, 122, 90, 0.3);
}

.add-to-cart-btn svg {
  fill: currentColor;
  width: 20px;
  height: 20px;
}

/* --- Dynamic Slide-out Cart Drawer --- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: white;
  z-index: 200;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: var(--transition-smooth);
}

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

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.cart-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

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

.cart-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.close-cart-btn {
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.close-cart-btn:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.cart-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-empty-message {
  text-align: center;
  padding: 40px 0;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cart-empty-message svg {
  fill: #D3D0CB;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cart-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #F8F9FA;
  border: 1px solid var(--border-color);
  flex-shrink: 0;
}

.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-main);
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-item-price {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

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

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: var(--bg-main);
  font-size: 0.8rem;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.qty-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.qty-val {
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 14px;
  text-align: center;
}

.remove-item-btn {
  color: var(--text-muted);
  cursor: pointer;
  padding: 6px;
  border-radius: 50%;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-item-btn:hover {
  color: var(--danger);
  background-color: #FFEEF1;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--border-color);
  background-color: #FAF9F8;
}

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

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 500;
}

.summary-row.total {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  padding-top: 10px;
  border-top: 1px dashed var(--border-color);
}

.checkout-btn {
  width: 100%;
  margin-bottom: 16px;
}

/* Local Delivery note inside Cart Drawer */
.cart-drawer-delivery-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  background-color: white;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* --- Toast Notification System --- */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background-color: var(--text-main);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  min-width: 300px;
  transform: translateY(100px);
  opacity: 0;
  animation: toastIn 0.3s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.removing {
  animation: toastOut 0.3s forwards ease-in;
}

.toast-icon {
  color: var(--primary);
  display: flex;
  align-items: center;
}

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

@keyframes toastOut {
  to {
    transform: translateX(120%);
    opacity: 0;
  }
}

/* --- Footer & Payments --- */
footer {
  background-color: #1E2022;
  color: #E2E4E6;
  padding: 80px 0 30px;
  border-top: 6px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #B3B9C0;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col ul a {
  font-size: 0.9rem;
  color: #B3B9C0;
}

.footer-col ul a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
  align-items: flex-start;
  color: #B3B9C0;
}

.contact-item svg {
  fill: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

/* Payments Badges (Sleek Visual Icons) */
.payments-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.pay-badge {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 90px;
  transition: var(--transition-smooth);
}

.pay-badge:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.pay-logo {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.pay-logo.bkash { color: var(--color-bkash); }
.pay-logo.nagad { color: var(--color-nagad); }
.pay-logo.rocket { color: var(--color-rocket); }
.pay-logo.cod { color: #2EC4B6; }

/* Copyright Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  color: #8E96A0;
}

/* --- Media Queries for Responsiveness --- */

@media (max-width: 991px) {
  .hero-banner {
    padding: 60px 40px;
    min-height: 420px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: white;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    gap: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    z-index: 99;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-banner {
    background: linear-gradient(180deg, rgba(255, 242, 238, 0.95) 0%, rgba(250, 248, 245, 0.85) 100%), 
                url('images/hero-pets.webp') no-repeat center center / cover;
    padding: 40px 24px;
    text-align: center;
    justify-content: center;
  }
  
  .hero-content {
    max-width: 100%;
  }
  
  .hero-tag {
    margin-left: auto;
    margin-right: auto;
  }
  
  .delivery-info-bar {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  
  .category-tabs {
    width: 100%;
  }
  
  .footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .toast-container {
    left: 24px;
    right: 24px;
  }
  
  .toast {
    min-width: 0;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* --- Consultation Top Bar --- */
.consultation-topbar {
  background: #1e2022;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0;
  font-size: 0.85rem;
  z-index: 1001;
  width: 100%;
}

.topbar-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pulse-icon {
  width: 8px;
  height: 8px;
  background-color: #2ec4b6;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7);
  animation: pulseGreen 1.5s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(46, 196, 182, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(46, 196, 182, 0); }
}

.topbar-text {
  font-weight: 500;
  color: #faf8f5;
  margin: 0;
}

.topbar-btn {
  background: var(--primary);
  color: #ffffff !important;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.75rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.topbar-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
