/* ==========================================================================
   Yan Zhen Peptide — Official Chinese Pharmaceutical Export Company Theme
   ========================================================================== */

:root {
  --navy-deep: #0B1F3A;
  --navy-light: #1E3A8A;
  --biotech-blue: #0284C7;
  --biotech-cyan: #0EA5E9;
  --cyan-light: #F0F9FF;
  --gold-primary: #C8A96B;
  --gold-light: #FDF6E2;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --bg-primary: #F8FAFC;
  --bg-secondary: #FFFFFF;
  --border-color: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(11, 31, 58, 0.05), 0 1px 2px rgba(11, 31, 58, 0.03);
  --shadow-md: 0 4px 14px rgba(11, 31, 58, 0.08), 0 2px 4px rgba(11, 31, 58, 0.03);
  --shadow-lg: 0 12px 32px rgba(11, 31, 58, 0.12), 0 4px 8px rgba(11, 31, 58, 0.04);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
}

/* Global Reset & Scientific Typography */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.6;
  direction: ltr !important;
  text-align: left;
  background-image: radial-gradient(circle at 15% 15%, rgba(2, 132, 199, 0.025) 0%, transparent 25%),
                    radial-gradient(circle at 85% 85%, rgba(200, 169, 107, 0.025) 0%, transparent 25%),
                    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%230284c7' fill-opacity='0.02' fill-rule='evenodd'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

a {
  color: var(--biotech-blue);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--navy-light);
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-up {
  animation: fadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Navbar & Header */
.navbar {
  background: rgba(11, 31, 58, 0.97);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 1050;
  border-bottom: 3px solid var(--biotech-blue);
  box-shadow: var(--shadow-md);
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.35rem;
  color: white;
  letter-spacing: -0.02em;
}

.brand-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.brand-badge {
  font-size: 0.7rem;
  background: rgba(200, 169, 107, 0.18);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.nav-links a {
  color: #CBD5E1;
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  padding: 0.4rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: var(--gold-primary);
  border-radius: 2px;
}

.cart-badge {
  background-color: var(--gold-primary);
  color: var(--navy-deep);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.2rem 0.55rem;
  border-radius: 50px;
  margin-left: 0.35rem;
}

.wishlist-form {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 3;
}

.wishlist-toggle {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.wishlist-toggle:hover,
.wishlist-toggle.is-active {
  color: #DC2626;
  background: #FFF1F2;
  transform: translateY(-1px);
}

.wishlist-toggle-inline {
  position: relative;
  top: auto;
  right: auto;
}

.is-loading {
  opacity: 0.75;
  pointer-events: none;
}

/* Mobile Nav Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Cinematic Hero Video System */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: center;
  background-color: #F8FBFF;
  color: var(--navy-deep);
  padding: 4rem 0;
}

.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(248,251,255,0.92) 0%, rgba(240,249,255,0.88) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-title {
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy-deep);
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--biotech-blue);
  margin-bottom: 1rem;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2rem;
  max-width: 620px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: transform 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-4px);
}

/* Pharmaceutical Trust Strip */
.trust-bar {
  background: white;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1.75rem 0;
  box-shadow: var(--shadow-sm);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.65rem 1rem;
  background: var(--bg-primary);
  border-radius: 50px;
  border: 1px solid var(--border-color);
  transition: all 0.25s ease;
}

.trust-item:hover {
  border-color: var(--biotech-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.trust-circle-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--biotech-blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.trust-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.2;
}

.trust-sublabel {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Category Filter Icons Bar */
.category-bar {
  background: white;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  border: 1.5px solid var(--border-color);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.88rem;
  background: white;
  transition: all 0.25s ease;
}

.cat-pill:hover,
.cat-pill.active {
  background: var(--biotech-blue);
  border-color: var(--biotech-blue);
  color: white;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1.2;
}

.btn-primary {
  background-color: var(--biotech-blue);
  color: white;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.btn-primary:hover {
  background-color: #0270A9;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.45);
}

.btn-outline-blue {
  background-color: transparent;
  border: 2px solid var(--biotech-blue);
  color: var(--biotech-blue);
}

.btn-outline-blue:hover {
  background-color: var(--biotech-blue);
  color: white;
  transform: translateY(-2px);
}

.btn-navy {
  background-color: var(--navy-deep);
  color: white;
}

.btn-navy:hover {
  background-color: var(--navy-light);
  color: white;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #1EBE5B;
  color: white;
}

.btn-sm {
  padding: 0.45rem 0.95rem;
  font-size: 0.85rem;
}

/* Real Peptide Vial Product Cards Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--biotech-blue);
}

.product-thumb {
  position: relative;
  background: #FFFFFF;
  padding: 1.25rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-thumb img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  transition: transform 0.35s ease;
}

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

.purity-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--navy-deep);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}

.product-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--biotech-blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}

.product-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.product-strength {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

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

.product-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--biotech-blue);
}

/* Right Quotation Summary Card */
.quotation-card-sticky {
  background: white;
  border: 1.5px solid var(--border-color);
  border-radius: 18px;
  padding: 2rem;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-md);
}

.quotation-total-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--biotech-blue);
  line-height: 1;
}

/* Public Order Page */
.public-order-layout,
.public-order-items-panel,
.quotation-card-sticky,
.public-order-mobile-items,
.public-order-mobile-item {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.public-order-mobile-items {
  display: none;
}

.public-order-mobile-item {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 1rem;
}

.public-order-mobile-item-heading,
.public-order-mobile-price-row {
  align-items: flex-start;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  min-width: 0;
}

.public-order-mobile-item-heading {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.85rem;
}

.public-order-mobile-product {
  min-width: 0;
}

.public-order-mobile-label {
  color: var(--text-muted);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.public-order-mobile-product a {
  color: var(--navy-deep);
  display: block;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.public-order-mobile-meta {
  color: var(--text-muted);
  display: block;
  font-size: 0.78rem;
  line-height: 1.4;
  margin-top: 0.25rem;
  overflow-wrap: anywhere;
}

.public-order-mobile-line-total {
  color: var(--biotech-blue);
  flex: 0 0 auto;
  font-size: 1rem;
  white-space: nowrap;
}

.public-order-mobile-item-controls {
  align-items: end;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 0.9rem 0;
}

.public-order-mobile-item-controls form:first-child {
  align-items: end;
  display: grid;
  gap: 0.45rem;
  grid-template-columns: auto 4.5rem auto;
  min-width: 0;
}

.public-order-mobile-item-controls label {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.public-order-mobile-item-controls input {
  box-sizing: border-box;
  min-height: 42px;
  min-width: 0;
  padding: 0.35rem;
  text-align: center;
  width: 100%;
}

.public-order-mobile-item-controls .btn,
.public-order-mobile-remove {
  min-height: 42px;
  white-space: nowrap;
}

.public-order-mobile-remove {
  background: #FEE2E2;
  border: 1px solid #FCA5A5;
  border-radius: var(--radius-md);
  color: #991B1B;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.45rem 0.8rem;
}

.public-order-mobile-price-row {
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.8rem;
  padding-top: 0.75rem;
}

.public-order-mobile-price-row span {
  overflow-wrap: anywhere;
}

@media (max-width: 767px) {
  .public-order-hero {
    padding: 2rem 0 !important;
  }

  .public-order-hero h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
  }

  .public-order-hero p {
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 0;
    overflow-wrap: anywhere;
  }

  .public-order-section {
    padding: 1.5rem 0 !important;
  }

  .public-order-layout {
    display: flex !important;
    flex-direction: column;
    gap: 1rem !important;
  }

  .public-order-items-panel {
    display: none;
  }

  .public-order-mobile-items {
    display: grid;
    gap: 0.85rem;
    order: 1;
    width: 100%;
  }

  .public-order-summary-card {
    order: 2;
    position: static;
    width: 100%;
  }

  .public-order-summary-card .quotation-total-amount {
    font-size: 1.9rem;
    overflow-wrap: anywhere;
  }

  .public-order-mobile-item,
  .public-order-mobile-item form,
  .public-order-mobile-item button,
  .public-order-mobile-item a {
    max-width: 100%;
  }
}

@media (max-width: 430px) {
  .public-order-mobile-item-heading,
  .public-order-mobile-price-row {
    flex-direction: column;
    gap: 0.45rem;
  }

  .public-order-mobile-line-total {
    white-space: normal;
  }

  .public-order-mobile-item-controls {
    grid-template-columns: minmax(0, 1fr);
  }

  .public-order-mobile-item-controls form:first-child {
    grid-template-columns: auto minmax(4rem, 5rem) minmax(0, 1fr);
  }

  .public-order-mobile-item-controls form:last-child,
  .public-order-mobile-remove {
    width: 100%;
  }
}

/* Full-Width Footer Feature Band */
.footer-feature-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-light) 100%);
  border-top: 3.5px solid var(--gold-primary);
  padding: 2.5rem 0;
  color: white;
}

.feature-band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.feature-band-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.feature-band-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.feature-band-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
}

/* Footer Base */
footer {
  background: var(--navy-deep);
  color: #94A3B8;
  padding: 4rem 0 2rem 0;
}

/* Modal Styling */
.modal-header-biotech {
  background: var(--navy-deep);
  color: white;
  border-bottom: 3px solid var(--gold-primary);
  padding: 1.25rem 1.5rem;
}

.payment-method-box {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.dhgate-warning-box {
  background: #FEF2F2;
  border: 1.5px solid #EF4444;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 1.25rem 0;
  color: #991B1B;
}

.dhgate-notice-orange {
  background: #FFFBEB;
  border: 1.5px solid #F59E0B;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: #B45309;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.dhgate-notice-green {
  background: #ECFDF5;
  border: 1.5px solid #10B981;
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  color: #065F46;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

/* Responsive Rules */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-cta-group {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--navy-deep);
    padding: 1.5rem;
    border-bottom: 2px solid var(--gold-primary);
  }

  .nav-links.active {
    display: flex;
  }

  .hero-video-bg {
    display: none;
  }

  .hero {
    background: linear-gradient(rgba(248,251,255,0.92), rgba(240,249,255,0.88)), url('../images/hero/hero-mobile.jpg') center/cover no-repeat;
  }
}

/* Floating WhatsApp Widget */
.whatsapp-float-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 58px;
  height: 58px;
  background-color: #0B5ED7;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 4px 16px rgba(11, 94, 215, 0.4);
  z-index: 1080;
  transition: all 0.3s ease;
  animation: pulse-widget 2.2s infinite;
}

.whatsapp-float-widget:hover {
  background-color: #0a58ca;
  color: white;
  transform: scale(1.08);
}

@keyframes pulse-widget {
  0% {
    box-shadow: 0 0 0 0 rgba(11, 94, 215, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(11, 94, 215, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(11, 94, 215, 0);
  }
}

/* Global Back-to-Top Button */
.back-to-top-btn {
  position: fixed;
  right: 20px;
  bottom: 92px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #0284C7;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.35);
  cursor: pointer;
  z-index: 1081;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease, background 0.2s ease;
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: #0270A9;
}

@media (max-width: 768px) {
  .back-to-top-btn {
    right: 16px;
    bottom: 88px;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }
}

/* White Pharmaceutical Footer Styling */
.footer-pharmaceutical {
  background-color: #FFFFFF;
  color: var(--navy-deep);
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 2rem 0;
}

.footer-pharmaceutical h4 {
  color: var(--biotech-blue);
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.footer-pharmaceutical a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-pharmaceutical a:hover {
  color: var(--biotech-blue);
}

@media (max-width: 768px) {
  .checkout-shipping-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Responsive Brand Logo Styling */
.navbar-brand {
    display: flex;
    align-items: center;
    min-width: 280px;
    overflow: visible;
}

.logo-img {
    height: 72px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .navbar-brand {
        min-width: 220px;
    }
    .logo-img {
        height: 56px;
        max-width: 200px;
    }
}
