  /* ============================================
     El Bajío Market 2 — Styles
     Classic & Elegant | Emerald + Cream
     ============================================ */

  /* Reset & Base */
  *, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --cream-50: #faf9f6;
    --cream-100: #f5f0e8;
    --cream-200: #ede5d8;
    --cream-300: #e0d5c4;
    --gold-400: #d4a574;
    --gold-500: #c9a86c;
    --gold-600: #b8944f;
    --text-dark: #1a1a1a;
    --text-mid: #3d3d3d;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', 'Segoe UI', sans-serif;
    --shadow-sm: 0 1px 3px rgba(6, 78, 59, 0.06);
    --shadow-md: 0 4px 20px rgba(6, 78, 59, 0.08);
    --shadow-lg: 0 8px 40px rgba(6, 78, 59, 0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }

  body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--cream-50);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

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

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

  ul {
    list-style: none;
  }

  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* Typography */
  h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--emerald-900);
  }

  /* ============================================
     Navigation
     ============================================ */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
  }

  .nav.scrolled {
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
  }

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

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
  }

  .nav.scrolled .nav-logo {
    color: var(--emerald-900);
  }

  .nav-logo-text {
    letter-spacing: 0.02em;
  }

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

  .nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    position: relative;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold-400);
    transition: var(--transition);
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .nav-link:hover {
    color: var(--white);
  }

  .nav.scrolled .nav-link {
    color: var(--text-mid);
  }

  .nav.scrolled .nav-link:hover {
    color: var(--emerald-800);
  }

  .nav-link--cta {
    padding: 8px 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 100px;
    transition: var(--transition);
  }

  .nav-link--cta:hover {
    background: var(--white);
    color: var(--emerald-900) !important;
    border-color: var(--white);
  }

  .nav.scrolled .nav-link--cta {
    border-color: var(--emerald-900);
    color: var(--emerald-900);
  }

  .nav.scrolled .nav-link--cta:hover {
    background: var(--emerald-900);
    color: var(--white) !important;
  }

  /* Hamburger */
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
  }

  .hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: var(--transition);
  }

  .hamburger::before,
  .hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
  }

  .hamburger::before { top: -7px; }
  .hamburger::after { top: 7px; }

  .nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
  }

  .nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
  }

  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--emerald-900);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .mobile-menu.active {
    opacity: 1;
    pointer-events: all;
  }

  .mobile-menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 500;
    color: var(--cream-100);
    transition: var(--transition);
  }

  .mobile-menu-link:hover {
    color: var(--gold-400);
  }

  /* ============================================
     Hero
     ============================================ */
  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      #047857 0%,
      #065f46 25%,
      #064e3b 50%,
      #1a3a2a 75%,
      #0d2818 100%
    );
  }

  .hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: 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='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V2h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V2H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 80px;
  }

  .hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
  }

  .hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
  }

  .hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
  }

  .hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s 1s forwards;
  }

  .hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
  }

  .hero-trust-item svg {
    color: var(--gold-400);
    flex-shrink: 0;
  }

  .hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 1;
  }

  .hero-scroll svg {
    animation: bounce 2s infinite;
  }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(24px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
  }

  /* ============================================
     Buttons
     ============================================ */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
  }

  .btn--primary {
    background: var(--gold-400);
    color: var(--emerald-900);
    border-color: var(--gold-400);
  }

  .btn--primary:hover {
    background: var(--gold-500);
    border-color: var(--gold-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.35);
  }

  .btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
  }

  .btn--outline:hover {
    background: var(--white);
    color: var(--emerald-900);
    border-color: var(--white);
    transform: translateY(-2px);
  }

  .btn--gold {
    background: var(--gold-400);
    color: var(--emerald-900);
    border-color: var(--gold-400);
  }

  .btn--gold:hover {
    background: var(--gold-500);
    border-color: var(--gold-500);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.35);
  }

  .btn--outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
  }

  .btn--outline-light:hover {
    background: var(--white);
    color: var(--emerald-900);
    border-color: var(--white);
    transform: translateY(-2px);
  }

  .btn--full {
    width: 100%;
  }

  /* ============================================
     Section Shared
     ============================================ */
  .section {
    padding: 100px 0;
  }

  .section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
  }

  .section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: 16px;
  }

  .section-eyebrow--light {
    color: var(--gold-400);
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
  }

  .section-title--light {
    color: var(--white);
  }

  .section-subtitle {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
  }

  /* ============================================
     Products
     ============================================ */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
  }

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

  .product-card-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
  }

  .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-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--emerald-900);
    color: var(--gold-400);
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 100px;
  }

  .product-card-body {
    padding: 24px;
  }

  .product-card-title {
    font-size: 1.375rem;
    margin-bottom: 8px;
  }

  .product-card-desc {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.7;
  }

  /* ============================================
     About
     ============================================ */
  .about {
    background: var(--cream-100);
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .about-images {
    position: relative;
  }

  .about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

  .about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream-100);
  }

  .about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .about-experience {
    position: absolute;
    top: -24px;
    left: -24px;
    background: var(--emerald-900);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
  }

  .about-exp-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1;
    margin-bottom: 4px;
  }

  .about-exp-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
  }

  .about-content {
    padding: 16px 0;
  }

  .about-text {
    font-size: 1.0625rem;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 20px;
  }

  .about-values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .about-value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .about-value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
  }

  .about-value-title {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--emerald-900);
    margin-bottom: 4px;
  }

  .about-value-desc {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
  }

  /* ============================================
     Visit (Dark Section)
     ============================================ */
  .section-dark {
    background: var(--emerald-900);
    padding: 100px 0;
  }

  .visit-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
  }

  .visit-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    margin-bottom: 48px;
  }

  .visit-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 48px;
    text-align: left;
  }

  .visit-detail {
    padding: 24px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .visit-detail-icon {
    color: var(--gold-400);
    margin-bottom: 12px;
  }

  .visit-detail-title {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 8px;
  }

  .visit-detail p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
  }

  .visit-detail a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
  }

  .visit-detail a:hover {
    color: var(--gold-400);
  }

  .visit-hours-note {
    font-size: 0.8125rem !important;
    color: rgba(255, 255, 255, 0.45) !important;
  }

  .visit-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  /* ============================================
     Contact
     ============================================ */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }

  .contact-text {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
  }

  .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--cream-100);
    border-radius: var(--radius-md);
    transition: var(--transition);
  }

  .contact-method:hover {
    background: var(--cream-200);
    transform: translateX(4px);
  }

  .contact-method-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
  }

  .contact-method span {
    font-size: 0.9375rem;
    color: var(--text-mid);
  }

  /* Form */
  .contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 8px;
  }

  .form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--cream-50);
    border: 1.5px solid var(--cream-200);
    border-radius: var(--radius-md);
    outline: none;
    transition: var(--transition);
  }

  .form-input:focus {
    border-color: var(--emerald-700);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.08);
  }

  .form-input::placeholder {
    color: var(--text-light);
  }

  .form-textarea {
    resize: vertical;
    min-height: 120px;
  }

  .form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 16px;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: var(--radius-md);
    color: var(--emerald-800);
    font-size: 0.9375rem;
  }

  .form-success svg {
    flex-shrink: 0;
    color: var(--emerald-700);
  }

  /* ============================================
     Footer
     ============================================ */
  .footer {
    background: #0a2e20;
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 0;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
  }

  .footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 280px;
  }

  .footer-heading {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: 20px;
  }

  .footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
  }

  .footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
  }

  .footer-hours p {
    font-size: 0.9375rem;
    margin-bottom: 4px;
  }

  .footer-hours-note {
    font-size: 0.8125rem !important;
    color: rgba(255, 255, 255, 0.35) !important;
  }

  .footer-contact p {
    font-size: 0.9375rem;
    margin-bottom: 6px;
  }

  .footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
  }

  .footer-contact a:hover {
    color: var(--gold-400);
  }

  .footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
  }

  /* ============================================
     Divider SVGs
     ============================================ */
  .section-divider {
    background: var(--cream-50);
    margin-top: -1px;
  }

  .section-divider-light {
    background: var(--cream-100);
    margin-top: -1px;
  }

  /* ============================================
     Reveal Animation
     ============================================ */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  /* ============================================
     Responsive
     ============================================ */
  @media (max-width: 1024px) {
    .products-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
      gap: 48px;
    }

    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
  }

  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }

    .nav-toggle {
      display: block;
    }

    .hero-content {
      padding: 100px 24px 80px;
    }

    .hero-trust {
      flex-direction: column;
      gap: 12px;
    }

    .products-grid {
      grid-template-columns: 1fr;
      max-width: 480px;
      margin: 0 auto;
    }

    .about-grid {
      grid-template-columns: 1fr;
    }

    .about-img-secondary {
      right: 0;
      bottom: -24px;
      width: 60%;
    }

    .about-experience {
      top: -16px;
      left: -16px;
      padding: 16px;
    }

    .about-exp-number {
      font-size: 2rem;
    }

    .visit-details {
      grid-template-columns: 1fr;
    }

    .contact-grid {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .contact-form-wrapper {
      padding: 28px;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 36px;
    }

    .section {
      padding: 72px 0;
    }
  }

  @media (max-width: 480px) {
    .hero-actions {
      flex-direction: column;
      width: 100%;
    }

    .hero-actions .btn {
      width: 100%;
    }

    .visit-actions {
      flex-direction: column;
      width: 100%;
    }

    .visit-actions .btn {
      width: 100%;
    }
  }
