/* ==========================================
   Anem's Company Limited - Styles
   ========================================== */

/* CSS Variables */
:root {
  --color-orange: #58b4ff;
  --color-orange-dark: #1d88dd;
  --color-pineapple: #ffd35c;
  --color-sorrel: #0e5fb6;
  --color-coconut: #795548;
  --color-navy: #0f3d75;
  --color-navy-light: #1f5da8;
  --color-white: #FFFFFF;
  --color-gray: #5f6f82;
  --color-gray-light: #eef6ff;
  --color-gray-dark: #374151;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --transition: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--color-gray-dark);
  background-color: var(--color-white);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

/* Skip Link for Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-orange);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 1000;
}

.skip-link:focus {
  top: 0;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Navbar */
.navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo-mark {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.logo-text {
  display: flex;
  align-items: center;
}

.logo-main {
  font-family: 'Poppins', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.2;
}

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

.nav-link {
  color: var(--color-gray-dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

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

.cart-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  color: var(--color-navy);
}

.cart-count {
  background: var(--color-orange);
  color: white;
  border-radius: 9999px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  position: absolute;
  top: -8px;
  right: -8px;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-navy);
}

.nav-social {
  display: flex;
  gap: 12px;
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at top left, rgba(88, 180, 255, 0.25), transparent 35%),
    radial-gradient(circle at bottom right, rgba(29, 136, 221, 0.2), transparent 40%),
    linear-gradient(135deg, #f6fbff 0%, #dff0ff 52%, #f8fcff 100%);
  padding: 80px 0;
}

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

.hero-tagline {
  display: inline-block;
  background: rgba(15, 61, 117, 0.08);
  color: var(--color-navy);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-content h1 {
  font-family: 'Monotype Corsiva', 'Lucida Handwriting', cursive;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--color-navy);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.highlight {
  color: var(--color-orange);
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--color-gray);
  margin-bottom: 24px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-point {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(88, 180, 255, 0.35);
  color: var(--color-navy);
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

/* Trust Strip */
.trust-strip {
  background: var(--color-navy);
  padding: 24px 0;
  color: white;
}

.trust-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-subtitle {
  display: block;
  color: var(--color-orange);
  font-weight: 600;
  margin-bottom: 8px;
}

.section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.25rem;
  color: var(--color-navy);
}

/* Filter Bar */
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  gap: 24px;
  flex-wrap: wrap;
}

.filter-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid var(--color-gray-light);
  background: var(--color-white);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
  color: var(--color-gray-dark);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-orange);
  color: white;
  border-color: var(--color-orange);
}

.filter-search input {
  padding: 10px 16px;
  border: 2px solid var(--color-gray-light);
  border-radius: var(--radius-sm);
  min-width: 250px;
  font-size: 1rem;
}

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

.product-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--color-gray-light);
}

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

.product-card:nth-child(odd) {
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(244, 250, 255, 1) 100%);
}

.product-image {
  width: 100%;
  height: 280px;
  background: linear-gradient(180deg, #f7fbff 0%, #e9f4ff 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.04);
}

.product-content {
  padding: 20px;
}

.product-category {
  color: var(--color-orange);
  font-size: 0.875rem;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.product-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  margin-bottom: 8px;
  color: var(--color-navy);
}

.product-description {
  color: var(--color-gray);
  margin-bottom: 12px;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-sorrel);
  margin-bottom: 16px;
}

.product-actions {
  display: flex;
  gap: 12px;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--color-orange);
  color: white;
}

.btn-primary:hover {
  background: var(--color-orange-dark);
}

.btn-outline {
  background: transparent;
  border: 2px solid;
}

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

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

.btn-whatsapp:hover {
  background: #1DA851;
}

/* VAT Notice */
.vat-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(88, 180, 255, 0.12), rgba(255, 255, 255, 0.95));
  border-radius: var(--radius-sm);
}

.favourites-section {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

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

.favourite-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(234, 246, 255, 0.98));
  box-shadow: 0 18px 40px rgba(15, 61, 117, 0.12);
  animation: floatCard 4.4s ease-in-out infinite;
}

.favourite-card:nth-child(2n) {
  animation-duration: 5.2s;
}

.favourite-card:nth-child(3n) {
  animation-duration: 5.8s;
}

.favourite-image {
  min-height: 240px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #f5faff 0%, #e4f2ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.favourite-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.favourite-pill {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(88, 180, 255, 0.14);
  color: var(--color-navy);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.favourite-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.favourite-content p {
  color: var(--color-gray);
}

.favourite-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: var(--color-navy);
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 24px;
  background: white;
  border: 1px solid rgba(88, 180, 255, 0.18);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.logo-card img {
  max-width: 100%;
  max-height: 72px;
  object-fit: contain;
  filter: saturate(1.05);
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.why-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.why-card h3 {
  font-family: 'Poppins', sans-serif;
  margin: 16px 0 8px;
  color: var(--color-navy);
}

.why-card p {
  color: var(--color-gray);
}

/* Wholesale Pricing Table */
.pricing-table-wrapper {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.pricing-table caption {
  padding: 16px;
  font-weight: 600;
  color: var(--color-navy);
}

.pricing-table th,
.pricing-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-gray-light);
}

.pricing-table th {
  background: var(--color-navy);
  color: white;
  font-weight: 600;
}

.badge {
  background: var(--color-orange);
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  margin-left: 8px;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.stars {
  color: var(--color-pineapple);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-gray-dark);
  margin-bottom: 16px;
}

.testimonial-author {
  font-weight: 600;
  color: var(--color-navy);
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border: 1px solid var(--color-gray-light);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: white;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-navy);
}

.faq-icon {
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 20px;
}

.faq-answer p {
  color: var(--color-gray);
}

/* About Certificate */
.about-certificate {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.contact-info h3 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 24px;
  color: var(--color-navy);
}

.contact-list {
  list-style: none;
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-item a {
  color: var(--color-navy);
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  color: var(--color-orange);
}

.contact-social {
  display: flex;
  gap: 16px;
}

.contact-form {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--color-navy);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--color-gray-light);
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.checkbox-group input {
  width: auto;
  margin-top: 4px;
}

/* Footer */
.footer {
  background: var(--color-navy);
  color: white;
  padding: 48px 0 24px;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(-0.8deg);
  }
}

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

.footer h4 {
  font-family: 'Poppins', sans-serif;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--color-gray-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-orange);
}

.footer-email a {
  color: var(--color-orange);
  text-decoration: none;
  font-weight: 600;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-vat {
  color: var(--color-gray-light);
  font-size: 0.875rem;
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  max-width: 100%;
  height: 100%;
  background: white;
  box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.cart-sidebar.open {
  right: 0;
}

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

.cart-header h2 {
  font-family: 'Poppins', sans-serif;
  color: var(--color-navy);
}

.close-cart {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-gray);
}

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

.cart-item {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-gray-light);
}

.cart-item img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  background: linear-gradient(180deg, #f7fbff 0%, #e9f4ff 100%);
  padding: 8px;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.cart-item-price {
  color: var(--color-gray);
  margin-bottom: 8px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 4px;
  background: var(--color-gray-light);
  cursor: pointer;
  font-size: 1rem;
}

.cart-footer {
  padding: 24px;
  border-top: 1px solid var(--color-gray-light);
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--color-gray-light);
  color: var(--color-navy);
}

.order-form select,
.order-form input,
.order-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 2px solid var(--color-gray-light);
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 300;
  padding: 24px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: var(--radius);
  max-width: 800px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: white;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 1;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 32px;
}

.modal-image img {
  width: 100%;
  max-height: 420px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  background: linear-gradient(180deg, #f7fbff 0%, #e9f4ff 100%);
  padding: 16px;
}

.modal-details .product-info {
  list-style: none;
  margin: 16px 0;
}

.modal-details .product-info li {
  margin-bottom: 8px;
}

/* Social Icons */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #ffffff;
  color: var(--color-navy);
  border: 1px solid rgba(15, 61, 117, 0.1);
  box-shadow: 0 10px 20px rgba(15, 61, 117, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(15, 61, 117, 0.16);
}

.footer .social-icon {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.social-icon-instagram {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 72%, #515bd4 100%);
  color: #ffffff;
}

.social-icon-facebook {
  background: #1877f2;
  color: #ffffff;
}

.social-icon-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.footer .social-icon-instagram,
.footer .social-icon-facebook,
.footer .social-icon-whatsapp {
  border-color: transparent;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow);
    display: none;
    gap: 16px;
  }

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

  .mobile-menu-btn {
    display: block;
  }

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

  .logo {
    gap: 10px;
  }

  .logo-mark {
    width: 82px;
  }

  .logo-main {
    font-size: 0.95rem;
  }

  .hero-points {
    gap: 10px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

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

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

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-search input {
    width: 100%;
    min-width: auto;
  }

  .favourite-card {
    animation: none;
  }

  .logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* sr-only for screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 48px;
  color: var(--color-gray);
  grid-column: 1 / -1;
}

/* Error Message */
.error-msg {
  color: var(--color-sorrel);
  font-weight: 500;
}

/* Focus Styles for Accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 2px;
}
