/* ===== FruitWorld Cebu - 2025-style static site (light mode only) ===== */
/* Font: Poppins. Text: dark green #2f4d18. Highlights/CTAs: orange #f7941d. Background: #eeeeee. Edit images/embeds via HTML comments. */
:root {
  --color-primary: #2f4d18;
  --color-primary-hover: #3d6b20;
  --color-accent: #f7941d;
  --color-cream: #f5f0e8;
  --color-warm-white: #ffffff;
  --color-text: #2f4d18;
  --color-text-muted: #4a6b2a;
  --color-border: #ddd9d2;
  --color-bg: #eeeeee;
  --color-bg-soft: #f5f3f0;
  --shadow-sm: 0 1px 4px rgba(47, 77, 24, 0.06);
  --shadow-md: 0 4px 14px rgba(47, 77, 24, 0.08);
  --shadow-lg: 0 10px 28px rgba(47, 77, 24, 0.1);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.28s ease;
  --font-sans: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Poppins", var(--font-sans);
  --section-spacing: 7.5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition), transform var(--transition);
}

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

/* ===== Typography (Poppins: 400 body, 500 medium, 600 headings, 700 bold) ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.35rem); }

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 5rem 0;
}

/* Section scroll reveal: fade-in + slide-up (JS adds .visible) */
.section-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.section-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-title {
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

/* ===== Navigation ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--color-primary);
}

.nav-logo:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--color-text);
  font-weight: 500;
  padding: 0.35rem 0;
  transition: color var(--transition), transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--color-accent);
  transform: translateY(-1px);
}

.nav-links a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  background: none;
  margin-left: auto;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--color-text);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-bg);
    padding: 1rem;
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav-links.is-open { display: flex; }
}

/* ===== Hero ===== */
/* Hero: logo placeholder in .hero-content; background image optional — uncomment and set url() in .hero for your image. */
/* Hero: optional background image — uncomment and set url() below. */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, var(--color-bg-soft) 0%, var(--color-cream) 50%, #fef8f0 100%);
  /* background-image: url('images/hero-bg.jpg'); background-size: cover; background-position: center; */
  padding: 5rem 1.5rem 5rem;
  position: relative;
  overflow: hidden;
  transition: background-image 0.6s ease, background-size 0.6s ease;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(47, 77, 24, 0.06) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(247, 148, 29, 0.06) 0%, transparent 45%);
  pointer-events: none;
}

/* Hero content: logo + tagline vertically centered; balanced space above and below. */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 0;
  opacity: 0;
  transform: scale(0.96);
  animation: heroFadeInZoom 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Logo: no border/background — floats cleanly. Update logo image URL in index.html .logo img src. */
.hero .logo {
  margin: 0 auto 1.75rem;
  max-width: 340px;
  display: block;
  transition: transform var(--transition);
}
.hero .logo img {
  width: 100%;
  height: auto;
  display: block;
}

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

.hero .tagline {
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 500;
  color: var(--color-text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.5;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.4s;
  animation-fill-mode: both;
}

@keyframes heroFadeInZoom {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

/* ===== About ===== */
/* Extra spacing between About and Instagram (--section-spacing in :root) */
.about {
  background: var(--color-warm-white);
  padding-bottom: var(--section-spacing);
}

.about .container {
  max-width: 720px;
}

.about p {
  font-size: 1.1rem;
  color: var(--color-text);
  line-height: 1.8;
}

.about .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== Instagram Section ===== */
.instagram {
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-warm-white) 100%);
  padding-top: var(--section-spacing);
}

/* Instagram: gallery-style layout, centered. Add more .instagram-embed-item iframes in HTML for a multi-column feed. */
.instagram-embed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 400px));
  justify-content: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.instagram-embed-item {
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.instagram-embed-item:hover {
  box-shadow: var(--shadow-lg);
}

.instagram-embed iframe {
  max-width: 100%;
  width: 100%;
  min-width: 320px;
  height: 480px;
  border: 0;
  display: block;
}

/* @fruitworldcebu: align with left edge of embed (same width as embed, left-aligned). */
.instagram-follow {
  margin-top: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 400px;
  width: 100%;
  text-align: left;
  font-weight: 500;
}

.instagram-follow a {
  color: var(--color-accent);
}

.instagram-follow a:hover {
  color: var(--color-primary);
}

@media (max-width: 380px) {
  .instagram-embed iframe {
    min-width: 280px;
    height: 450px;
  }
}

/* ===== FAQ Accordion ===== */
.faq {
  background: var(--color-warm-white);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

/* FAQ: accordion with subtle shadows, rounded corners, clean spacing */
.faq-item {
  background: var(--color-warm-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(54, 82, 20, 0.25);
}

.faq-item.is-open {
  box-shadow: 0 6px 20px rgba(54, 82, 20, 0.12);
  border-color: rgba(54, 82, 20, 0.3);
}

.faq-item.is-open .faq-answer {
  max-height: 400px;
  opacity: 1;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  text-align: left;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.faq-answer p {
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.65;
}

.faq-question:hover {
  background: var(--color-cream);
  color: var(--color-primary);
}

.faq-question:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  transition: transform 0.35s ease;
}

.faq-answer-inner {
  padding: 0.6rem 1.25rem 1.35rem;
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease;
}

/* ===== Footer ===== */
/* Footer: update contact links and social hrefs in HTML. Spacing aligned and even. */
.site-footer {
  background: #2a2f22;
  color: #f0f0f0;
  padding: 3.5rem 1.25rem;
  min-height: 240px;
  text-align: center;
  font-family: var(--font-sans);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem 2rem;
}

.footer-links a {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  transition: color var(--transition), transform var(--transition);
}

.footer-links a:hover {
  color: #f7941d;
  transform: translateY(-2px);
}

.footer-links a:focus-visible {
  outline: 2px solid #f7941d;
  outline-offset: 2px;
}

.footer-contact-info {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.6;
}

.footer-contact-info a {
  color: #fff;
  transition: color var(--transition);
}

.footer-contact-info a:hover {
  color: #f7941d;
}

.footer-address {
  display: block;
  margin-top: 0.25rem;
  white-space: nowrap;
}

.footer-copyright {
  font-size: 0.9rem;
  color: #fff;
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  width: 100%;
}

/* ===== Products Page ===== */
.page-hero {
  padding: 6rem 1.5rem 3rem;
  text-align: center;
  background: linear-gradient(135deg, var(--color-bg-soft) 0%, var(--color-cream) 100%);
}

.page-hero h1 {
  margin-bottom: 0.5rem;
  color: var(--color-primary);
}

.page-hero p {
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto;
}

/* Prevent awkward line breaks (e.g. "help" alone on new line) on Contact page subtitle. */
.page-hero .no-break {
  white-space: nowrap;
}

.products-section {
  padding: 3rem 0 4rem;
}

/* Product search and sort: filters/sorts grid (script.js). Matches site palette and radius. */
.products-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: stretch;
  justify-content: center;
  margin-bottom: 2rem;
  padding: 1.25rem 1rem;
  background: var(--color-cream);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.products-search-wrap {
  flex: 1;
  min-width: 200px;
  max-width: 380px;
}

.products-search {
  width: 100%;
  height: 100%;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-warm-white);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.products-search::placeholder {
  color: var(--color-text-muted);
}

.products-search:hover {
  border-color: rgba(47, 77, 24, 0.35);
}

.products-search:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(54, 82, 20, 0.18);
}

.products-sort-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.products-sort-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  margin-right: 0.6rem;
  white-space: nowrap;
}

.products-sort {
  min-height: 48px;
  padding: 0.75rem 2.5rem 0.75rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-warm-white);
  color: var(--color-text);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232f4d18'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1.2rem;
  transition: border-color var(--transition), box-shadow var(--transition), color var(--transition);
}

.products-sort:hover {
  border-color: rgba(47, 77, 24, 0.4);
  color: var(--color-primary);
}

.products-sort:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(54, 82, 20, 0.18);
}

.products-no-results {
  text-align: center;
  color: var(--color-text-muted);
  padding: 2rem;
}

/* Pagination: 3 full rows per page; matches site (green primary, orange hover) */
.products-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.products-pagination-btn {
  padding: 0.7rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.products-pagination-btn:hover:not(:disabled) {
  background: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 148, 29, 0.4);
}

.products-pagination-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.products-pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.products-pagination-info {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
}

/* 3 columns on desktop so page 1 = 3 full rows of 3; add more products and they overflow to next page */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow var(--transition);
  opacity: 0;
  transform: translateY(24px);
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.product-card.is-hidden {
  display: none;
}

/* Pagination: cards not on current page are hidden; sort applies across all pages */
.product-card.is-page-hidden {
  display: none;
}

.product-image {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, var(--color-bg-soft) 0%, var(--color-cream) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--color-border);
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
}

.product-info h3 {
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.product-info .product-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.product-price {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
  transition: color var(--transition);
}

.product-card:hover .product-price {
  color: var(--color-accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-primary {
  background: var(--color-accent);
  color: white;
  font-weight: 500;
  width: 100%;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn-primary:hover {
  background: #e67a14;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(246, 137, 31, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* Products page: Enquire button and price green, orange on hover; keep button glow */
.product-card .btn-primary {
  background: var(--color-primary);
}

.product-card .btn-primary:hover {
  background: var(--color-accent);
  box-shadow: 0 6px 20px rgba(247, 148, 29, 0.4);
}

/* ===== Contact Page ===== */
.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-wrapper {
  display: flex;
  flex-direction: column;
}

.contact-form-wrapper h2,
.contact-info h2 {
  margin-bottom: 1.25rem;
  color: var(--color-text);
}

.contact-follow {
  margin-top: auto;
  padding-top: 2.25rem;
}

.contact-info .contact-address,
.contact-info .contact-phone,
.contact-info .contact-email {
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.contact-info .contact-address a,
.contact-info .contact-phone a,
.contact-info .contact-email a {
  color: var(--color-primary);
  transition: color var(--transition);
}

.contact-info .contact-address a:hover,
.contact-info .contact-phone a:hover,
.contact-info .contact-email a:hover {
  color: var(--color-accent);
}

/* Contact page: submit button green, hover orange. */
.contact-form .btn-primary {
  background: var(--color-primary);
}

.contact-form .btn-primary:hover {
  background: var(--color-accent);
  box-shadow: 0 6px 20px rgba(247, 148, 29, 0.35);
}

.contact-info p {
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-warm-white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(54, 82, 20, 0.18);
}

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

.contact-form .btn {
  margin-top: 0.5rem;
}

.map-embed {
  margin-top: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-embed iframe {
  display: block;
  width: 100%;
  max-width: 600px;
  height: 450px;
  border: 0;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-cream);
  border-radius: var(--radius-sm);
  color: var(--color-accent);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.social-links a:hover {
  background: var(--color-accent);
  color: white;
  transform: translateY(-3px);
}

.social-links a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Favicon: target in CSS if needed (e.g. .favicon { ... }) */

.social-links svg {
  width: 22px;
  height: 22px;
}

/* ===== Page title (for Products & Contact) ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
