/*
Theme Name: Villa Gourmet 161
Theme URI: https://villagourmet161.com
Description: Tema personalizado para Villa Gourmet 161 — Restaurante y Panadería Artesanal
Author: Villa Gourmet
Version: 2.0
*/

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

:root {
  --black: #0a0a0a;
  --carbon: #1a1a1a;
  --dark-gray: #2a2a2a;
  --medium-gray: #3a3a3a;
  --light-gray: #8a8a8a;
  --off-white: #f0ece4;
  --cream: #e8e0d0;
  --gold: #c9a96e;
  --gold-light: #dfc08a;
  --gold-dark: #a8853d;
  --green: #4a6741;
  --green-light: #6b8f5e;
  --wine: #722f37;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--black);
  color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; }

/* ===== NAVIGATION ===== */
nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1rem 2rem;
  transition: all 0.4s ease;
  background: transparent;
}

nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  padding: 0.6rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--gold); letter-spacing: 1px;
}

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

.nav-links a {
  color: var(--off-white); font-size: 0.85rem; font-weight: 300;
  letter-spacing: 2px; text-transform: uppercase;
  transition: color 0.3s; position: relative;
}

.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none; flex-direction: column; cursor: pointer; gap: 5px;
}

.nav-toggle span {
  width: 25px; height: 2px; background: var(--gold); transition: all 0.3s;
}

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

.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.1) 40%,
    rgba(10,10,10,0.6) 80%, rgba(10,10,10,1) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.6) saturate(0.8);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero-content {
  position: relative; z-index: 2; max-width: 800px; padding: 0 2rem;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem; font-weight: 300;
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold); border: 1px solid var(--gold);
  padding: 0.5rem 1.5rem; margin-bottom: 2rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 1.5rem; color: var(--off-white);
}

.hero h1 span { color: var(--gold); font-style: italic; font-weight: 400; }

.hero p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--cream);
  font-style: italic; margin-bottom: 2.5rem; line-height: 1.8;
}

.hero-cta {
  display: inline-block; padding: 1rem 3rem;
  border: 1px solid var(--gold); color: var(--gold);
  font-size: 0.8rem; letter-spacing: 4px; text-transform: uppercase;
  transition: all 0.4s;
}

.hero-cta:hover {
  background: var(--gold); color: var(--black);
}

.hero-phone {
  display: block; margin-top: 1.5rem;
  font-size: 1rem; color: var(--cream); letter-spacing: 2px;
}

.scroll-indicator {
  position: absolute; bottom: 3rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  animation: float 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.65rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--light-gray);
}

.scroll-indicator .arrow {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 6rem 2rem; max-width: 1400px; margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 4rem; }

.section-label {
  font-size: 0.7rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  margin-bottom: 1rem; color: var(--off-white);
}

.section-title span { color: var(--gold); font-style: italic; }

.section-line {
  width: 60px; height: 1px; background: var(--gold); margin: 1.5rem auto;
}

.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--light-gray);
  font-style: italic; max-width: 600px; margin: 0 auto;
}

/* ===== DARK BANDS ===== */
.dark-band { background: var(--carbon); }
.alt-band { background: linear-gradient(180deg, var(--black) 0%, var(--carbon) 50%, var(--black) 100%); }

/* ===== PRODUCT GRID ===== */
/* ===== PRODUCT GRID & CARDS ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}

/* --- Card with image (overlay style) --- */
.product-card {
  position: relative; border-radius: 12px; overflow: hidden;
  height: 380px; cursor: default;
  opacity: 0; transform: translateY(30px);
  transition: transform 0.4s, box-shadow 0.4s;
}

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

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.product-card .card-img {
  position: absolute; inset: 0; width: 100%; height: 100%; overflow: hidden;
}

.product-card .card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}

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

.product-card .card-body {
  position: absolute; inset: 0;
  background: linear-gradient(0deg,
    rgba(10,10,10,0.97) 0%,
    rgba(10,10,10,0.75) 40%,
    rgba(10,10,10,0.15) 65%,
    transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.8rem;
}

.card-img .featured-badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--gold); color: var(--black);
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 2px;
}

.product-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: #fff; margin-bottom: 0.4rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.product-card .desc {
  font-size: 0.85rem; color: var(--cream);
  line-height: 1.55; font-weight: 300;
  margin-bottom: 0.7rem;
}

.product-card .price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--gold); font-weight: 700;
}

/* --- Card without image --- */
.product-card.no-img {
  position: relative; height: auto; min-height: 220px;
  background: linear-gradient(160deg, var(--carbon) 0%, var(--dark-gray) 100%);
  border: 1px solid var(--medium-gray);
  display: flex; flex-direction: column; justify-content: center;
}

.product-card.no-img .card-body {
  position: relative; inset: auto;
  background: none;
  display: flex; flex-direction: column;
  justify-content: center; text-align: center;
  padding: 2rem 1.8rem;
}

.product-card.no-img h3 {
  font-size: 1.15rem; text-shadow: none; color: var(--off-white);
}

.product-card.no-img .desc {
  color: var(--light-gray); margin-bottom: 0.8rem;
}

.product-card.no-img .price-inline {
  color: var(--gold); font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700; margin-top: 0.5rem;
}

.product-card.no-img:hover {
  border-color: var(--gold-dark);
  box-shadow: 0 10px 30px rgba(201,169,110,0.08);
}

/* ===== CHEF RECOMMENDS ===== */
.chef-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2.5rem;
}

.chef-card {
  position: relative; border-radius: 12px; overflow: hidden;
  height: 420px; cursor: default;
  opacity: 0; transform: translateY(30px);
}

.chef-card.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.6s, transform 0.6s;
}

.chef-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}

.chef-card:hover img { transform: scale(1.08); }

.chef-card .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg,
    rgba(10,10,10,0.97) 0%,
    rgba(10,10,10,0.78) 38%,
    rgba(10,10,10,0.18) 65%,
    transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
}

.chef-card .overlay .tag {
  font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.5rem;
}

.chef-card .overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 700;
  color: var(--off-white); margin-bottom: 0.5rem;
}

.chef-card .overlay p {
  font-size: 0.9rem; color: var(--cream); font-weight: 300;
  line-height: 1.6; margin-bottom: 0.8rem;
}

.chef-card .overlay .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--gold); font-weight: 700;
}

/* ===== WEEKLY SPECIALS ===== */
.weekly-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.weekly-card {
  background: linear-gradient(145deg, var(--dark-gray), var(--carbon));
  border: 1px solid var(--medium-gray); border-radius: 8px;
  padding: 2rem; text-align: center;
  transition: all 0.4s;
  opacity: 0; transform: translateY(20px);
}

.weekly-card.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.5s, transform 0.5s;
}

.weekly-card:hover {
  border-color: var(--gold); transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(201,169,110,0.1);
}

.weekly-card .day {
  font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--green-light); margin-bottom: 0.8rem;
}

.weekly-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--off-white); margin-bottom: 0.8rem;
}

.weekly-card .desc {
  font-size: 0.85rem; color: var(--light-gray);
  font-weight: 300; line-height: 1.6; margin-bottom: 1rem;
}

.weekly-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--gold); font-weight: 700;
}

/* ===== BEVERAGE SECTION ===== */
.beverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
}

.beverage-category {
  opacity: 0; transform: translateY(20px);
}

.beverage-category.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.5s, transform 0.5s;
}

.beverage-category h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--gold);
  margin-bottom: 1.5rem; padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--dark-gray);
}

.beverage-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.7rem 0; border-bottom: 1px dotted var(--dark-gray);
}

.beverage-item .name {
  font-size: 0.95rem; color: var(--off-white); font-weight: 300;
}

.beverage-item .bev-price {
  font-family: 'Playfair Display', serif;
  color: var(--gold); font-size: 0.95rem;
  white-space: nowrap; margin-left: 1rem;
}

.beverage-item .bev-desc {
  font-size: 0.78rem; color: var(--light-gray);
  font-weight: 300; font-style: italic;
}

/* ===== PHOTO BANNER ===== */
.photo-banner {
  position: relative; height: 400px; overflow: hidden;
}

.photo-banner img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.5);
}

.photo-banner .banner-text {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
}

.photo-banner .banner-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--off-white); margin-bottom: 1rem;
}

.photo-banner .banner-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-style: italic;
  color: var(--cream); max-width: 500px;
}

/* ===== TWO-COLUMN LAYOUT ===== */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; min-height: 500px;
}

.two-col .col-img { overflow: hidden; }

.two-col .col-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}

.two-col:hover .col-img img { transform: scale(1.05); }

.two-col .col-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem; background: var(--carbon);
}

.two-col .col-text .label {
  font-size: 0.65rem; letter-spacing: 5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}

.two-col .col-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; color: var(--off-white); margin-bottom: 1rem;
}

.two-col .col-text p {
  font-size: 0.95rem; color: var(--light-gray);
  font-weight: 300; line-height: 1.8;
}

/* ===== PASTRY GRID ===== */
.pastry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
}

.pastry-item {
  background: linear-gradient(145deg, var(--dark-gray), var(--carbon));
  border: 1px solid var(--medium-gray); border-radius: 8px;
  padding: 1.5rem; text-align: center;
  transition: all 0.3s;
  opacity: 0; transform: translateY(15px);
}

.pastry-item.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.5s, transform 0.5s;
}

.pastry-item:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(201,169,110,0.08);
}

.pastry-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--off-white); margin-bottom: 0.5rem;
}

.pastry-item .price {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--gold); font-weight: 700;
}

.pastry-item .desc {
  font-size: 0.8rem; color: var(--light-gray); margin-top: 0.4rem;
  font-weight: 300;
}

.pastry-item.featured {
  border-color: var(--gold-dark);
  background: linear-gradient(145deg, var(--dark-gray), #2a2518);
}

/* ===== FOOTER ===== */
footer {
  background: var(--carbon);
  border-top: 1px solid var(--dark-gray);
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem; margin-bottom: 3rem;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--gold); margin-bottom: 1.5rem;
}

.footer-col p, .footer-col li {
  font-size: 0.9rem; color: var(--light-gray);
  font-weight: 300; line-height: 2;
}

.footer-col ul { list-style: none; }
.footer-col a { color: var(--light-gray); transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }

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

.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--dark-gray); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; color: var(--light-gray);
  transition: all 0.3s;
}

.footer-social a:hover {
  border-color: var(--gold); color: var(--gold);
}

.footer-bottom {
  max-width: 1400px; margin: 0 auto;
  padding-top: 2rem; border-top: 1px solid var(--dark-gray);
  text-align: center; font-size: 0.8rem; color: var(--light-gray);
}

.footer-notice {
  background: rgba(255,255,255,0.03);
  padding: 12px 20px; border-radius: 8px;
  font-size: 0.78rem; margin-top: 1rem;
  text-align: center; color: var(--light-gray);
}

/* ===== COMPACT LIST (name + price only) ===== */
.compact-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.6rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--dark-gray);
}

.compact-list .compact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1.2rem;
  background: linear-gradient(145deg, var(--carbon), var(--dark-gray));
  border-radius: 6px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}

.compact-list .compact-item:hover {
  border-color: var(--gold-dark);
}

.compact-list .compact-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--off-white);
  font-weight: 600;
}

.compact-list .compact-item .price {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
  margin-left: 1rem;
}

.compact-list-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 2.5rem;
  margin-bottom: 0;
  text-align: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .chef-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
  .chef-card { height: 350px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(10,10,10,0.98);
    flex-direction: column; align-items: center;
    justify-content: center; gap: 2.5rem;
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: flex; z-index: 1001; }
  .product-grid, .chef-grid, .weekly-grid { grid-template-columns: 1fr; }
  .compact-list { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col .col-text { padding: 2rem 1.5rem; }
  .two-col .col-img { height: 250px; }

  .photo-banner { height: 250px; }
  .photo-banner .banner-text h2 { font-size: 1.4rem; }
  .photo-banner .banner-text p { font-size: 0.95rem; }

  .chef-card .overlay { padding: 1.2rem; }
  .chef-card .overlay h3 { font-size: 1.3rem; }
  .chef-card .overlay p { font-size: 0.8rem; line-height: 1.4; margin-bottom: 0.4rem; }
  .chef-card .overlay .price { font-size: 1.1rem; }
  .chef-card .overlay .tag { font-size: 0.6rem; margin-bottom: 0.3rem; }
  .section { padding: 4rem 1.5rem; }
  .beverage-grid { grid-template-columns: 1fr; }
  .pastry-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.4rem; }
  .hero p { font-size: 1.1rem; }
  .product-card { height: 340px; }
  .product-card .card-body { padding: 1.4rem; }
  .product-card h3 { font-size: 1.1rem; }
  .product-card .desc { font-size: 0.82rem; }
  .product-card .price-tag { font-size: 1.15rem; }
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s, transform 0.6s;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== FLOATING SECTION NAV ===== */
.section-nav {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.section-nav.visible {
  opacity: 1;
  pointer-events: auto;
}

.section-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  text-decoration: none;
  cursor: pointer;
}

.section-nav a .nav-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--light-gray);
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.3s ease;
  white-space: nowrap;
  pointer-events: none;
}

.section-nav a:hover .nav-label {
  opacity: 1;
  transform: translateX(0);
}

.section-nav a .nav-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--light-gray);
  background: transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.section-nav a:hover .nav-dot {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.3);
}

.section-nav a.active .nav-dot {
  border-color: var(--gold);
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201, 169, 110, 0.4);
  width: 12px;
  height: 12px;
}

.section-nav a.active .nav-label {
  opacity: 1;
  transform: translateX(0);
  color: var(--gold);
  font-weight: 700;
}

@media (max-width: 768px) {
  .section-nav {
    right: 12px;
  }
  .section-nav a .nav-label {
    display: none;
  }
  .section-nav a .nav-dot {
    width: 8px;
    height: 8px;
  }
  .section-nav a.active .nav-dot {
    width: 10px;
    height: 10px;
  }
}
