/* Sheesh - Pakistani-Indian Fusion Food Truck Styles */

/* ===== CSS Variables ===== */
:root {
  --turquoise: #03989e;
  --turquoise-dark: #027278;
  --orange: #E8833A;
  --orange-dark: #D4702A;
  --gold: #c8a518;
  --black: #0A0A0A;
  --charcoal: #1A1A1A;
  --cream: #2D2D2D;
  --cream-dark: #1F1F1F;
  --white: #FFF;
  --red: #E74C3C;
  --font-display: 'Josefin Sans', sans-serif;
  --font-body: 'Josefin Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.1;
}

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

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

/* ===== Skip Link (Accessibility) ===== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--turquoise);
  color: var(--white);
  padding: 8px 16px;
  z-index: 10000;
  font-weight: 600;
  transition: top 0.3s;
}

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

/* ===== Status Bar ===== */
.status-bar {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: .75rem 1rem;
  font-size: .9rem;
  font-weight: 600;
}

.status-bar.open {
  background: #27AE60;
}

.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  margin-right: .5rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .5);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

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

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  font-weight: 600;
  font-size: .95rem;
  transition: color .3s;
}

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

.nav-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
}

.header-ctas {
  display: flex;
  gap: 1rem;
}

/* ===== Mobile Navigation ===== */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 3px 0;
  transition: all 0.3s ease;
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--charcoal);
  padding: 5rem 2rem 2rem;
  transition: right 0.3s ease;
  z-index: 999;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-links .nav-link {
  font-size: 1.1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links .nav-phone {
  margin-top: 1rem;
  padding: 0.75rem 0;
}

.mobile-nav-ctas {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-ctas .btn {
  width: 100%;
  text-align: center;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
}

@media (max-width: 900px) {
  .nav,
  .header-ctas {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .mobile-nav,
  .mobile-nav-overlay {
    display: block;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 1.5rem;
  font-size: .95rem;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .2), transparent);
  transition: left .5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--turquoise);
  color: var(--white);
  box-shadow: 0 0 15px rgba(3, 152, 158, .4), 0 0 30px rgba(3, 152, 158, .2);
}

.btn-primary:hover {
  background: var(--turquoise-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(3, 152, 158, .5), 0 0 40px rgba(3, 152, 158, .3);
}

.btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-white {
  background: var(--white);
  color: var(--turquoise);
  border: 2px solid var(--white);
}

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

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

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

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

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, .4), rgba(0, 0, 0, .6));
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 6rem 2rem;
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  margin-bottom: 2rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, .3);
  position: relative;
}

.hero-title .highlight {
  color: var(--gold);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  opacity: .95;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-ctas .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ===== Menu Section ===== */
.menu {
  background: var(--charcoal);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  display: inline-block;
  color: var(--white);
  font-style: italic;
  position: relative;
  padding-left: .5rem;
  margin-bottom: 2rem;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold) 0%, var(--turquoise) 100%);
  box-shadow: 0 0 10px rgba(200, 165, 24, .3);
}

.section-header .section-title {
  display: block;
}

.section-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .7);
  opacity: .8;
  margin-top: 1rem;
}

.price-range {
  color: var(--gold);
  font-weight: 700;
  margin-top: .5rem;
}

.menu-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.menu-card {
  background: #2a3c56;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .4);
  transition: all .4s;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .1);
}

.menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .6);
}

.menu-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.menu-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--turquoise) 0%, var(--turquoise) 25%, transparent 25%, transparent 50%, var(--black) 50%, var(--black) 75%, transparent 75%);
  background-size: 40px 100%;
  opacity: .3;
}

.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.menu-card:hover .menu-card-image img {
  transform: scale(1.05);
}

.menu-card-content {
  padding: 2rem;
  position: relative;
}

.menu-card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: .75rem;
}

.menu-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  position: relative;
}

.menu-card-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  opacity: .4;
}

.menu-card-price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
}

.menu-card-desc {
  color: rgba(255, 255, 255, .8);
  opacity: .9;
  font-size: .95rem;
  line-height: 1.6;
}

/* ===== About Section ===== */
.about {
  background: linear-gradient(135deg, var(--black) 0%, #0f0f0f 100%);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
}

.about-text {
  color: var(--white);
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: .95;
}

@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .about-text {
    text-align: center;
  }
}

/* ===== Catering Section ===== */
.catering {
  background: var(--charcoal);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

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

.catering-text {
  color: var(--white);
}

.catering-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: .95;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.catering-email {
  font-size: 1.1rem;
  color: var(--white);
  opacity: .9;
}

/* ===== Testimonials Section ===== */
.testimonials {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 100%);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  margin-bottom: 1rem;
  position: relative;
}

.rating-star {
  color: var(--gold);
  font-size: 1.5rem;
}

.rating-number {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
}

.rating-number span {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  opacity: .6;
}

.rating-source {
  font-size: .9rem;
  color: rgba(255, 255, 255, .7);
  opacity: .7;
  margin-bottom: 4rem;
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.testimonial-card {
  padding: 2rem;
  position: relative;
  border-left: 3px solid var(--turquoise);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
}

.testimonial-stars .star {
  color: var(--gold);
  font-size: 1rem;
}

.testimonial-date {
  font-size: .85rem;
  color: rgba(255, 255, 255, .6);
  opacity: .6;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .9);
  margin-bottom: 1rem;
}

.testimonial-author {
  color: var(--gold);
  font-weight: 700;
  font-size: .9rem;
}

.testimonial-author span {
  display: block;
  color: rgba(255, 255, 255, .7);
  font-weight: 400;
  opacity: .6;
  font-size: .85rem;
}

/* ===== Instagram Section ===== */
.instagram {
  background: var(--charcoal);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.instagram-grid {
  max-width: 1000px;
  margin: 3rem auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

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

.instagram-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.instagram-item:hover img {
  transform: scale(1.1);
}

.instagram-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-item:hover::after {
  opacity: 1;
}

.instagram-cta {
  text-align: center;
  margin-top: 2rem;
}

/* ===== Newsletter Section ===== */
.newsletter {
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.newsletter-content {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 250px;
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color 0.3s;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--turquoise);
}

.newsletter-form button {
  padding: 0.875rem 2rem;
}

/* ===== Location Section ===== */
.location {
  background: var(--black);
  padding: 8rem 2rem;
  position: relative;
  overflow: hidden;
}

.location-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .location-content {
    grid-template-columns: 1fr;
  }
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: #2a3c56;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--turquoise);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .4);
  position: relative;
  border: 1px solid rgba(255, 255, 255, .1);
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .5rem;
}

.info-card-icon {
  width: 36px;
  height: 36px;
  background: var(--turquoise);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.info-card-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}

.info-card-content {
  padding-left: 0;
}

.info-card-content p {
  color: rgba(255, 255, 255, .8);
  line-height: 1.6;
}

.info-card-content a {
  color: var(--turquoise);
  font-weight: 600;
}

.info-card-content .btn {
  margin-top: 1rem;
  color: var(--white) !important;
}

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .25rem 1rem;
  font-size: .95rem;
}

.hours-day {
  font-weight: 600;
  color: var(--gold);
}

.hours-time {
  color: rgba(255, 255, 255, .8);
}

.hours-closed {
  opacity: .5;
}

.payment-methods {
  display: flex;
  gap: 1rem;
  margin-top: .5rem;
}

.payment-badge {
  background: var(--charcoal);
  padding: .5rem 1rem;
  border-radius: 8px;
  font-size: .9rem;
  border: 1px solid rgba(255, 255, 255, .1);
}

.location-visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
}

.location-map {
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
  background: var(--cream-dark);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Final CTA Section ===== */
.final-cta {
  background: linear-gradient(135deg, var(--black), var(--charcoal));
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta-subtitle {
  color: var(--white);
  opacity: .8;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.final-cta-phone {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

.final-cta-phone a {
  color: var(--gold);
}

.final-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Sticky Mobile CTA ===== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  padding: 1rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  z-index: 900;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-sticky-cta .btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

@media (max-width: 900px) {
  .mobile-sticky-cta {
    display: block;
  }

  /* Add padding to body to account for sticky CTA */
  body {
    padding-bottom: 80px;
  }
}

/* ===== Footer ===== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 4rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  position: relative;
  z-index: 1;
}

.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
}

.footer-brand .logo::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--gold);
  opacity: .5;
}

.footer-brand p {
  opacity: .7;
  line-height: 1.7;
  max-width: 280px;
  font-size: .95rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, .1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all .3s;
}

.social-link:hover {
  background: var(--turquoise);
  transform: translateY(-3px);
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.footer-column h4 {
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 2rem;
  color: var(--gold);
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: .6rem;
}

.footer-column a {
  opacity: .7;
  font-size: .95rem;
  transition: opacity .3s, color .3s;
}

.footer-column a:hover {
  opacity: 1;
  color: var(--turquoise);
}

.footer-bottom {
  max-width: 1200px;
  margin: 4rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  text-align: center;
}

.footer-bottom p {
  opacity: .5;
  font-size: .9rem;
}

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ===== Icon Styles ===== */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

/* ===== Visually Hidden (Accessibility) ===== */
.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;
}
