:root {
  --gold: #c9a15a;
  --text-light: #cea744;
  --gold-dark: #cca844;
  --cream: #faf7f0;
  --black: #141210;
  --ink: #1c1a17;
  --muted: #6e6a63;
  --line: #e7e1d4;
  --radius: 18px;
  --max: 1240px;
  --gallery-gap: clamp(12px, 2vw, 28px);
  --gallery-radius: 18px;
  --gallery-bg: #ffffff;
  --primary-font: "Poppins", sans-serif;
  --secondry-font: "Outfit", sans-serif;
}
body {
  top: 0px !important;
}
* {
  box-sizing: border-box;
  font-family: var(--primary-font);
}
.para {
  font-size: 18px;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
ul li {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
  padding: 3px 23px;
  border: 1px solid var(--gold);
  border-radius: 15px;
}
h1,
h2,
h3 {
  font-family: var(--font-head);
  margin: 0;
  line-height: 1.15;
}
h2 {
  margin-bottom: 18px;
  font-family: var(--secondry-font);
  text-align: center;
  font-size: 47px;
  color: black;
}
.container {
  max-width: 1180px;
  margin: auto;
  display: block;
  width: 100%;
}
.justify-centre {
  justify-content: center;
}
p {
  font-size: 17px;
  color: #000;
}

.heading-two {
  font-size: 29px;
  color: var(--text-light);
  text-align: left;
  line-height: 35px;
}
section {
  padding: 60px 0px;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
  background: transparent;

  width: 100%;

  padding: 15px 0;
}
header.in {
  background-color: #fff;
}
.header.sticky {
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .call-btn-img img {
  width: 280px;
}
.header .flag-hamburger {
  display: flex;
  align-items: center;
}
header .toggle {
  margin-right: 23px;
}
header .toggle span {
  margin: 8px;
  background: #282727;
  height: 3px;
  display: block;
  width: 30px;
  border-radius: 15px;
}

/* nav */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -420px;
  width: 420px;

  height: 100vh;
  background: #000000;
  z-index: 9999;
  padding: 190px 50px 50px;

  transition: 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.menu-logo {
  margin-bottom: 40px;
  text-align: left;
}

.menu-logo img {
  max-width: 220px;
}
.menu-close {
  position: absolute;

  right: 25px;
  border: none;

  line-height: 1;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 800;
  display: none;
}

.menu-close:hover {
  opacity: 0.7;
}

.contact-nav p {
  font-family: var(--secondr-font);
  font-size: 17px;
}
.mobile-menu a {
  display: table;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 8px;
  font-family: var(--secondr-font);
}
.mobile-menu a:hover {
  color: var(--gold-dark);
}
.mobile-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.mobile-menu a:hover::after,
.mobile-menu a.active::after {
  transform: scaleX(1);
}
.mobile-menu a.active {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 16px;
}

.mobile-menu a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #535353;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 9998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.flex {
  display: flex;
}
.space-between {
  justify-content: space-between;
}
.align-center {
  align-items: center;
}
.flex-wrap {
  flex-wrap: wrap;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(380px, 60vw, 640px);
  background:
    linear-gradient(
      180deg,
      rgba(250, 247, 240, 0.15),
      rgba(250, 247, 240, 0.55)
    ),
    url(../img/hero-background.webp) center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 65vh;
}
.hero::after {
  border-radius: inherit;
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ffffffd4;
  opacity: 0.73;
}
.hero__content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding: 40px 20px;
  width: 80%;
}
.hero__car {
  width: clamp(220px, 30vw, 360px);
  margin: 0 auto 10px;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.25));

  border-radius: unset;
  padding: 10px 50px;
}
.hero h1 {
  font-size: clamp(28px, 5.4vw, 58px);
  letter-spacing: 0.04em;
  color: var(--black);
  text-transform: uppercase;
}
.hero__sub {
  font-family: var(--font-head);
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-size: clamp(13px, 1.8vw, 22px);
  color: var(--gold-dark);
  margin-top: 6px;
}

/* ---------- Intro ---------- */
.intro {
  padding: 36px 0;
}
.intro p {
  text-align: left;
  font-size: 17px;
}
.intro b {
  color: var(--black);
}

/* ---------- Services ---------- */
.services {
  padding: clamp(50px, 8vw, 60px) 0;
}
.services__grid {
  display: grid;
  grid-template-columns: minmax(245px, 360px) 1fr;
  gap: clamp(30px, 5vw, 70px);
}
.services__grid .services__intro {
  padding: 50px 25px;
}
.services__tag {
  font-size: 18px;
  color: #262524;
  margin-bottom: 22px;
  text-align: center;
}

.services__title {
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--text-light);
  margin-bottom: 16px;
  text-align: center;
}
.services__desc {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}
.services__list li {
  border-bottom: 1px solid var(--gold);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.services__list li:last-child {
  border: unset;
}
.services__row-head {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 30%;
}
.services__list svg {
  fill: var(--gold);
  width: 13px;
}
.services__list svg:nth-child(2) {
  font-size: 19px;
}

.services__name {
  font-family: var(--primary-font);
  font-weight: 700;
  font-size: 19px;

  width: 75%;
  margin-left: auto;
}
.services__text {
  color: var(--ink);
  line-height: 1.65;
  font-size: 15px;
  font-size: 17px;
  width: 60%;
}
.arrow {
  color: var(--gold-dark);
  font-size: 20px;
  align-self: center;
}
@media (max-width: 900px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
  .services__list li {
    grid-template-columns: 1fr;
    row-gap: 8px;
  }
  .arrow {
    display: none;
  }
}

/* ---------- Quote / testimonial ---------- */
.quote .container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin: auto;
}
.quote__text {
  width: 60%;
}
.quote__eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 22px;
}
.quote__line {
  font-family: var(--primary-font);
  font-weight: 700;
  color: var(--gold);
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.4;
  font-size: 22px;
}

.quote__img {
  background: url(../img/quote-right.webp);
  width: 300px;
  margin-left: auto;
  height: 500px;
  object-fit: cover;
}
@media (max-width: 900px) {
  .quote {
    grid-template-columns: 1fr;
  }
  .quote__img {
    min-height: 260px;
    order: -1;
  }
}

/* ---------- Discover / map / contact ---------- */

.discover__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 0.6fr 0.6fr;
  gap: 30px;
  align-items: self-start;
  padding: 40px 0px;
}

.discover h2 {
  font-size: clamp(24px, 3vw, 32px);
  color: var(--text-light);
}
.discover p {
  font-size: 19px;
  margin: 0px;
}
.discover__map {
  height: 400px;
  width: 190px;
}
.discover__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.discover__contact p {
  margin: 0 0 14px;
  color: var(--text-light);
  font-weight: 700;
  font-size: 16px;
}
.discover__contact a {
  color: var(--text-light);
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 16px;
}

.discover .right {
  width: 60%;
}
@media (max-width: 900px) {
  .discover__grid {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

.discover.comfert .discover__grid {
  display: flex;
  justify-content: space-between;
}
.discover.comfert .discover__grid h2 {
  width: 38%;
  text-align: left;
}
.discover.comfert p {
  font-size: 19px;
  margin: 0px;
  text-align: justify;
}
.discover.comfert h4 {
  font-size: 20px;
}
.discover.comfert .right {
  width: 62%;
}
/* ---------- Reviews ---------- */
/* ── Section wrapper ── */
.reviews-section {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Header ── */
.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.g-logo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
}

.brand-label {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
}

.overall-score {
  display: flex;
  align-items: center;
  gap: 10px;
}

.big-score {
  font-size: 2.4rem;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1;
}

.score-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.stars-row {
  display: flex;
  gap: 2px;
}

.star {
  font-size: 18px;
  color: #fbbc04;
}

.star.empty {
  color: #ddd;
}

.total-reviews {
  font-size: 12px;
  color: #666;
}

/* ── Write a review button ── */
.add-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 8px;
  border: 1.5px solid #4285f4;
  color: #4285f4;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
  white-space: nowrap;
}

.add-review-btn:hover {
  background: #4285f4;
  color: #fff;
}

.add-review-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ── Grid ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 14px;
}

/* ── Card ── */
.review-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition:
    box-shadow 0.2s,
    border-color 0.2s;
}

.review-card:hover {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  border-color: #d0d0d0;
}

/* ── Reviewer row ── */
.reviewer-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  text-decoration: none;
  cursor: pointer;
  transition:
    opacity 0.15s,
    transform 0.15s;
}

.avatar:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

.reviewer-meta {
  flex: 1;
  min-width: 0;
}

.reviewer-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-decoration: none;
  cursor: pointer;
}

.reviewer-name:hover {
  color: #4285f4;
  text-decoration: underline;
}

.reviewer-sub {
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}

.google-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  text-decoration: none;
  transition: background 0.15s;
  flex-shrink: 0;
}

.google-link:hover {
  background: #f1f3f4;
}

.google-link svg {
  width: 18px;
  height: 18px;
}

/* ── Rating row ── */
.rating-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.card-stars {
  display: flex;
  gap: 1px;
}

.card-star {
  font-size: 14px;
  color: #fbbc04;
}

.card-star.empty {
  color: #ddd;
}

.review-date {
  font-size: 11px;
  color: #888;
}

/* ── Review text ── */
.review-text {
  font-size: 13.5px;
  color: #333;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-text.expanded {
  -webkit-line-clamp: unset;
  display: block;
}

.read-more-btn {
  font-size: 12.5px;
  color: #4285f4;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-weight: 500;
  text-align: left;
}

.read-more-btn:hover {
  text-decoration: underline;
}

/* ── Footer ── */
.powered-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 12px;
  color: #888;
}

.g-colored {
  font-weight: 700;
  font-size: 13px;
}
.G {
  color: #4285f4;
}
.O1 {
  color: #ea4335;
}
.O2 {
  color: #fbbc04;
}
.GR {
  color: #34a853;
}
.L {
  color: #4285f4;
}
.E {
  color: #ea4335;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .big-score {
    font-size: 1.8rem;
  }
}
/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  min-height: 280px;
  background: url("https://picsum.photos/seed/car-interior/1600/700")
    center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}
.cta-banner .call-pill {
  position: relative;
  z-index: 2;
  font-size: clamp(14px, 2vw, 17px);
  padding: 16px 30px;
}

/* ---------- Gallery ---------- */
.gallery {
  padding: clamp(50px, 8vw, 90px) 0;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery__grid img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 14px;
}
@media (max-width: 900px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .gallery__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Brands ---------- */
.brands {
  padding: 0 0 clamp(50px, 8vw, 90px);
}
.brands h2 {
  color: #cea744;
  margin-bottom: 100px;
  font-weight: 400;
  font-size: 53px;
}
.brands .wrap {
  border-radius: unset;
}
.brands .brands__grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brands .brands__grid .left-brand,
.brands .brands__grid .right-brand {
  width: 48%;
  margin: 0;
  padding: 25px 15px;
}

.brands__cell {
  padding: 5px;
  width: 23%;
}
.brands__cell:nth-child(4n) {
  border-right: none;
}
@media (max-width: 900px) {
  .brands__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brands__cell:nth-child(4n) {
    border-right: 1px solid var(--line);
  }
  .brands__cell:nth-child(2n) {
    border-right: none;
  }
}

.faq {
  border: 1px solid #d9b35b;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  width: 66%;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  border: none;
  background: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 15px;
  border-bottom: 1px solid #e5e5e5;
}

.faq-question span {
  font-size: 19px;
  color: #c79d42;
  font-weight: 600;
}

.faq-icon {
  width: 42px;
  height: 42px;

  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Horizontal */

.faq-icon span:first-child {
  position: absolute;
  width: 14px;
  height: 2px;
  background: #c79d42;
  border-radius: 20px;
}

/* Vertical */

.faq-icon span:last-child {
  position: absolute;

  width: 2px;
  height: 14px;

  background: #c79d42;

  border-radius: 20px;

  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.35s;
}

/* OPEN */

.faq-item.active .faq-icon {
  transform: translateY(-2px) rotate(180deg) scale(1.12);
}

.faq-item.active .faq-icon span:last-child {
  transform: scaleY(0);
}

/* Accordion */

.faq-answer {
  max-height: 0;
  overflow: hidden;

  transition: max-height 0.45s ease;
}

.faq-answer p {
  padding: 0 35px 10px;
  color: #1e1d1d;
  line-height: 1.7;
  margin-bottom: 0;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-section .container {
  display: flex;
  justify-content: space-between;
}
.faq-section .container h3 {
  width: 29%;
  font-size: 30px;
  color: var(--gold-dark);
}
/* ---------- Footer ---------- */
.site-footer {
  background: #000;
  color: #fff;
  padding: clamp(50px, 8vw, 80px) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.footer__logo-mark {
  width: 320px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 35% 30%,
    var(--gold-light),
    var(--gold-dark)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 30px;
}
.footer__logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.1;
}
.footer__logo-text .small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  font-weight: 500;
}
.newsletter {
  margin-top: 6px;
}
.newsletter input {
  width: 100%;
  max-width: 280px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
  margin-bottom: 16px;
  outline: none;
}
.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter button {
  background: #fff;
  color: var(--black);
  border: none;
  padding: 12px 75px;
  border-radius: 0;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
}
.footer__col h4 {
  font-size: 21px;
  margin-bottom: 14px;
  color: var(--gold-light);
  font-weight: 600;
}
.footer__col a,
.footer__col p {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer__col p {
  color: #958e8e;
}
.footer__col a {
  font-size: 17px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.footer__social {
  display: flex;
  gap: 14px;
}
.footer__social a {
  width: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.footer__bottom span {
  color: #fff;
  font-size: 15px;
}
@media (max-width: 900px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* cta */
.cta {
  background-image: url(../img/cta.webp);
  height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center;
}
.cta .container {
  height: 100vh;
}
.cta img {
  margin: auto;
  margin-top: 35px;
  width: 42%;
}
.cta .cta-text {
  width: 60%;
  text-align: center;
}
.cta .cta-text h3 {
  font-size: 30px;
  color: #fff;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #0000000f;
}

/* gallery  */
.gallery {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 64px) clamp(16px, 4vw, 32px);
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.85fr 1.35fr;
  grid-template-rows: auto auto;
  gap: var(--gallery-gap);
  align-items: start;
}

.gallery__item {
  overflow: hidden;
  background: #eee;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Chateau — arched top, spans both rows on the left */
.gallery__item--chateau {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  aspect-ratio: 320 / 520;
  border-radius: 50% 50% var(--gallery-radius) var(--gallery-radius) / 35% 35%
    var(--gallery-radius) var(--gallery-radius);
}

/* Car + champagne — ovals, top row, middle columns */
.gallery__item--oval {
  grid-row: 1 / 2;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  align-self: start;
}

.gallery__item--car {
  grid-column: 2 / 3;
}

.gallery__item--champagne {
  grid-column: 3 / 4;
}

/* Vineyard people — wide rounded rectangle, bottom row, middle columns */
.gallery__item--people {
  grid-column: 2 / 4;
  grid-row: 2 / 3;
  aspect-ratio: 720 / 360;
  border-radius: var(--gallery-radius);
}

/* Cathedral — tall rounded rectangle, right column, spans both rows */
.gallery__item--cathedral {
  grid-column: 4 / 5;
  grid-row: 1 / 3;
  aspect-ratio: 500 / 520;
  border-radius: var(--gallery-radius);
}

/* ----- Tablet ----- */
@media (max-width: 900px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
  }

  .gallery__item--chateau {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    aspect-ratio: 16 / 10;
    border-radius: var(--gallery-radius) var(--gallery-radius)
      var(--gallery-radius) var(--gallery-radius);
  }

  .gallery__item--car {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }

  .gallery__item--champagne {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }

  .gallery__item--people {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }

  .gallery__item--cathedral {
    grid-column: 1 / 3;
    grid-row: 4 / 5;
    aspect-ratio: 16 / 11;
  }
}

/* ----- Mobile ----- */
@media (max-width: 600px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(10px, 3vw, 16px);
  }

  .gallery__item--chateau {
    aspect-ratio: 4 / 3;
  }

  .gallery__item--oval {
    aspect-ratio: 1 / 1;
  }

  .gallery__item--people {
    aspect-ratio: 16 / 11;
  }

  .gallery__item--cathedral {
    aspect-ratio: 4 / 3.4;
  }
}

/* SECTION */
.champagne-hero {
  height: 665px;
  position: relative;
}

.right-champagne {
  position: relative;
}
.champagne-hero .right-champagne {
  position: absolute;
  width: 58%;
  right: 0;
  top: 20%;
  bottom: 0;
  z-index: -1;
}
.champagne-hero .right-champagne img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.champagne-hero .container {
  display: flex;
  justify-content: space-between;
}
.champagne-hero .left-text {
  height: 450px;

  background: #cca844;
  width: 48%;
  margin-top: 10%;
  padding: 70px 40px 0px;
  margin-left: 0%;
}
.champagne-hero .left-text h2 {
  text-align: left;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .champagne-hero {
    grid-template-columns: 1fr;
  }
  .champagne-hero__media {
    height: clamp(240px, 60vw, 380px);
    order: 1;
  }
  .champagne-hero__text {
    order: 2;
    padding: 2rem clamp(1.25rem, 5vw, 2.5rem);
  }
}

@media (max-width: 600px) {
  .champagne-hero__title {
    font-size: 1.4rem;
    max-width: none;
  }
  .champagne-hero__eyebrow {
    max-width: none;
  }
}
/* Responsive */

@media (max-width: 991px) {
  .tour-content {
    grid-template-columns: 1fr;
  }

  .tour-left {
    padding: 50px 35px;
  }

  .tour-left h2 {
    font-size: 48px;
  }

  .sub-title {
    font-size: 18px;
  }

  .tour-right {
    height: 500px;
  }
}

@media (max-width: 576px) {
  .tour-left {
    padding: 40px 25px;
  }

  .tour-left h2 {
    font-size: 36px;
  }

  .sub-title {
    font-size: 15px;

    margin-bottom: 25px;
  }

  .tour-right {
    height: 350px;
  }
}

/* TABLET */
@media (max-width: 991px) {
  .champagne-content {
    width: 70%;
    padding: 40px;
  }

  .champagne-content h2 {
    font-size: 42px;
  }

  .champagne-image {
    width: 85%;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .champagne-container {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .champagne-content {
    position: relative;
    width: 100%;
    transform: none;
    top: auto;
    order: 2;
    padding: 35px 25px;
  }

  .champagne-image {
    width: 100%;
    order: 1;
  }

  .champagne-image img {
    height: 350px;
  }

  .champagne-content h2 {
    font-size: 34px;
  }

  .champagne-subtitle {
    font-size: 13px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .champagne-content h2 {
    font-size: 28px;
  }

  .champagne-image img {
    height: 280px;
  }
}

.tour-section {
  padding: 80px 0;
}

.tour-section .container {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT IMAGE */
.tour-image {
  flex: 1;
  height: 160vh;
}
.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* RIGHT CONTENT */
.tour-content {
  flex: 1;
}
.tour-content img {
  width: 40%;
  margin-top: 30px;
}
.tour-intro {
  line-height: 1.8;
  color: #111;
  margin-bottom: 25px;
}

/* TOUR ITEMS */
.tour-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #c7ab5a;
}

.tour-content .tour-item:nth-child(6) {
  border: unset;
}
.tour-icon {
  width: 12px;
  height: 12px;
  border: 3px solid #c7ab5a;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.tour-item h3 {
  display: inline;
  font-size: 18px;
  font-weight: 700;
  color: #c7ab5a;
}

.tour-item p {
  display: inline;

  line-height: 1.7;
  color: #111;
}

/* TABLET */
@media (max-width: 992px) {
  .tour-section .container {
    gap: 40px;
  }

  .tour-intro,
  .tour-item p {
    font-size: 18px;
  }

  .tour-item h3 {
    font-size: 24px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .tour-section {
    padding: 60px 0;
  }

  .tour-section .container {
    flex-direction: column;
  }

  .tour-image,
  .tour-content {
    width: 100%;
  }

  .tour-intro {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .tour-item {
    gap: 15px;
    padding: 18px 0;
  }

  .tour-item h3 {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
  }

  .tour-item p {
    display: block;
    font-size: 16px;
  }
}

/* discover comfert champagne-tours */
.champagne-tours .discover__grid {
  align-items: center;
}
.discover.comfert p {
  margin: 0px;
  text-align: justify;
  font-weight: 500;
  width: 90%;
  font-size: 18px;
  margin-left: auto;
}

.discover.comfer.champagne-tours.chauffer .left-chauffer {
  width: 80%;
}
/* GRID */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;

  margin: auto;
}

/* CARD */
.experience-card {
  display: flex;
  flex-direction: column;
}

.experience-image {
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  display: block;
  aspect-ratio: 4/4;
  object-fit: cover;
  transition: 0.4s ease;
}

.experience-card:hover img {
  transform: scale(1.05);
}

/* TITLE */
.experience-card h3 {
  margin-top: 25px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
  color: var(--gold-dark);
  font-family: "Poppins", sans-serif;
  width: 85%;
}
/* TABLET */
@media (max-width: 991px) {
  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .experience-card h3 {
    font-size: 17px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .experience-section {
    padding: 60px 15px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .experience-card h3 {
    font-size: 16px;
    margin-top: 15px;
  }
}

.champagne-tours .left-chauffer .discover__grid {
  align-items: flex-start;
}

.discover.comfert .discover__grid .left-chauffer h2 {
  width: 90%;
  font-size: 45px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 20px;
}
.discover.comfert .discover__grid .left-chauffer p {
  margin: 15px 0px;
  font-weight: 400;
}

.champagne-tours.chauffer .discover__grid .right p {
  text-transform: uppercase;
  width: 100%;
  font-weight: 400;
  text-align: right;
}
.discover.chauffer .discover__grid {
  align-items: flex-start;
}

/* SECTION */
.luxury-features {
  position: relative;
  background: url(../img/luxury-feateruebackground.webp);
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

/* OPTIONAL DARK OVERLAY */
.luxury-features .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

/* CONTAINER */
.luxury-features .container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* CARD */
.feature-card {
  background: #fff;
  padding: 90px 35px;

  text-align: center;
  min-height: 280px;

  display: flex;
  flex-direction: column;
  justify-content: center;

  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

/* TITLE */

.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #cea744;
  line-height: 1.3;
  margin-bottom: 25px;
  font-family: var(--heading-font);
  width: 85%;
  text-align: center;
  margin: auto;
  margin-bottom: 20px;
}

/* TEXT */
.feature-card p {
  line-height: 23px;
  color: #111;
  margin: 0;
}

.reservation-section {
  padding: 80px 20px;
}

.reservation-section .container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.reservation-title {
  font-size: 30px;
  font-weight: 700;
  color: #c7a047;
  line-height: 1.2;
  margin-bottom: 25px;
  font-family: "Poppins", sans-serif;
}

.reservation-description {
  margin: 0 auto;
  color: #111;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  width: 90%;
  margin: 25px auto;
}

.social-icons ul {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.social-icons ul li {
  padding: 0px 12px;
}

.social-icons ul li img {
  width: 25px;
}

/* Large Tablet */
@media (max-width: 991px) {
  .reservation-title {
    font-size: 38px;
  }

  .reservation-description {
    font-size: 22px;
  }
}

/* Tablet */
@media (max-width: 768px) {
  .reservation-section {
    padding: 60px 20px;
  }

  .reservation-title {
    font-size: 30px;
  }

  .reservation-description {
    font-size: 18px;
    line-height: 1.7;
  }

  .social-icons {
    gap: 22px;
  }

  .social-icons a {
    width: 24px;
    height: 24px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .reservation-section {
    padding: 50px 15px;
  }

  .reservation-title {
    font-size: 24px;
  }

  .reservation-description {
    font-size: 16px;
  }

  .social-icons {
    gap: 18px;
    margin-top: 25px;
  }

  .social-icons a {
    width: 22px;
    height: 22px;
  }
}

iframe {
  width: 100%;
  height: 500px;
}

.discover.Avis .left-chauffer {
  width: 95%;
}
.discover.Avis h2 {
  font-size: 25px;
  text-align: left;
  margin: 40px 0;
}

.discover.Avis .right img {
  width: 65%;

  margin-left: auto;
  height: 440px;
  object-fit: cover;
}

.champagne-section.nos-vehicules .champagne-image {
  margin-right: auto;
  margin-left: 0;
  width: 50%;
}
.champagne-section.nos-vehicules .champagne-image img {
  height: 445px;
}
.champagne-section.nos-vehicules .champagne-content {
  left: 22%;
  background-color: transparent;
  width: 60%;
  position: absolute;
  top: 33%;
}
.champagne-section.nos-vehicules {
  padding-top: 120px;
}
.champagne-section.nos-vehicules .champagne-content h2 {
  color: var(--gold-dark);
  text-shadow: 2px 0px 3px #1c1c1c69;
  width: 88%;
  font-size: 55px;
}
.discover.comfert.champagne-tours.Caractéristiques .left {
  width: 30%;
}
.discover.comfert.champagne-tours.Caractéristiques .left h2 {
  width: 80%;
  margin-bottom: 60px;
}
.discover.comfert.champagne-tours.Caractéristiques .left img {
  width: 190px;
}
.discover.comfert.champagne-tours.Caractéristiques .right {
  width: 95%;
}
.discover.comfert.champagne-tours.Caractéristiques .right p {
  margin: 20px;
}

.experience-section.gallery-main {
  margin-top: 100px;
}
/* map-section */
.map-section {
  margin-top: 100px;
}

.map-section .right,
.map-section .left {
  width: 24%;
  height: 250px;
}
.map-section .left img,
.map-section .right iframe {
  width: 85%;
  height: 85%;
  object-fit: cover;
}

.map-section .middle {
  width: 40%;
  margin: auto;
  text-align: center;
}
.map-section .middle h2 {
  font-size: 30px;
  color: var(--gold-dark);
}

/* ===== CONTACT SECTION ===== */

.contact-section .container {
  display: flex;
  align-items: stretch;
  gap: 60px;
}

/* LEFT IMAGE */

.contact-image {
  flex: 1;
}

.contact-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* RIGHT CONTENT */

.contact-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-content .top-text {
  font-size: 15px;
  line-height: 1.8;
  text-transform: uppercase;
  color: rgb(0, 0, 0);
  margin-bottom: 15px;
}

.contact-content h2 {
  font-size: 33px;
  line-height: 1.2;
  color: #c7a34c;
  margin-bottom: 10px;
  font-weight: 600;
  text-align: left;
}

.description {
  font-size: 18px;
  line-height: 1.7;
  color: #222;
  margin-bottom: 50px;
}

/* FORM */

.contact-form {
  width: 100%;
}

.form-group {
  width: 100%;
  margin-bottom: 35px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  background: transparent;
  outline: none;
  padding: 12px 0;
  font-size: 16px;
  font-family: inherit;
}

.form-group textarea {
  height: 100px;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #c7a34c;
}

/* EMAIL + PHONE */

.form-row {
  display: flex;
  gap: 30px;
}

.form-row .form-group {
  flex: 1;
}

/* BUTTON */

.contact-form button {
  background: #c7a34c;
  color: #000;
  border: none;
  padding: 18px 45px;
  font-size: 15px;
  cursor: pointer;
  margin-left: auto;
  display: block;
  transition: 0.3s;
}

.contact-form button:hover {
  opacity: 0.9;
}

/* ==========================
   TABLET
========================== */

@media (max-width: 991px) {
  .contact-container {
    gap: 40px;
  }

  .contact-content h2 {
    font-size: 34px;
  }

  .description {
    font-size: 16px;
  }
}

/* ==========================
   MOBILE
========================== */

@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    gap: 30px;
  }

  .contact-image {
    order: 1;
  }

  .contact-content {
    order: 2;
  }

  .contact-content h2 {
    font-size: 28px;
  }

  .top-text {
    font-size: 14px;
  }

  .description {
    font-size: 15px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .contact-form button {
    width: 100%;
    margin-top: 10px;
  }
}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 15px;
  }

  .contact-content h2 {
    font-size: 24px;
  }

  .description {
    font-size: 14px;
  }

  .contact-form button {
    padding: 16px;
  }
}

.contact-info {
  text-align: center;
}
.contact-info .container {
  align-items: center;

  justify-content: center;
}
.contact-info .container .box:nth-child(2) {
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}
.contact-info h3 {
  margin-bottom: 30px;
  color: var(--gold-dark);
}

.contact-info .box {
  text-align: center;
  padding: 20px;
  width: 33%;
}
.contact-info h4 {
  font-size: 29px;
  font-weight: 400;
}
.contact-info p {
  font-size: 19px;
  color: #000;
}

/* experience-section gallery-main */
.experience-section.gallery-main h2 {
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 45px;
}
.experience-section.gallery-main img {
  border-radius: 10px;
}

/* blog  */
/* blog  */
.blog-section {
  padding: 150px 0;
  background-color: #fff;
}

.blog-section .blog-title {
  text-align: center;
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 40px;
  color: var(--gold-dark);
}

.blog-section .search-box {
  max-width: 450px;
  margin: 0 auto 70px;
  position: relative;
}

.blog-section .search-box input {
  width: 100%;
  height: 55px;
  padding: 0 55px 0 25px;
  border: 1px solid var(--gold-dark);
  border-radius: 50px;
  background: transparent;
  outline: none;
  font-size: 15px;
}
.blog-section .search-box input::placeholder {
  color: #000;
}

.blog-section .search-box button {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  cursor: pointer;
  color: var(--gold-dark);
  font-size: 16px;
}
.blog-section .search-box button img {
  width: 18px;
}

.blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 24px;
}
.blog-grid a {
  text-decoration: none;
}

.blog-section .blog-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  margin-bottom: 18px;
}

.blog-section .blog-card h3 {
  font-size: 18px;
  line-height: 1.4;

  color: var(--gold-dark);
  margin-bottom: 12px;
  font-weight: 600;
  margin: 10px 0;
}

.blog-section .blog-card span {
  display: block;
  font-size: 14px;
  color: #7a7777;
  margin-bottom: 15px;
  font-family: var(--secondr-font);
}

.blog-section .blog-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--primary-color);
}

/* Mobile */

@media (max-width: 767px) {
  .blog-section .blog-section {
    padding: 70px 0;
  }

  .blog-section .blog-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .blog-section .blog-title {
    font-weight: 700;
    font-size: 38px;
    margin-bottom: 25px;
  }

  .blog-section .search-box {
    margin-bottom: 50px;
  }

  .blog-section .blog-card img {
    height: 230px;
  }
}

/* inner-blog-banner */
.inner-blog-banner {
  background-image: url(../img/blog1.webp);
  height: 450px;
  position: relative;
  background-size: cover;
  background-position: center;
}

.inner-blog-banner::after {
  position: absolute;
  background-color: #00000040;
  content: "";
  inset: 0;
}

.inner-blog-banner .inner-banner-text {
  position: absolute;
  z-index: 9;
  top: 44%;
  width: 70%;
  left: 0;
  right: 0;
  margin: auto;
}
.inner-blog-banner .inner-banner-text h2,
.inner-blog-banner .inner-banner-text p {
  color: #fff;
  text-shadow: 1px 1px #000;
  text-align: left;
}

.share-arti .social-icons {
  margin-left: 20px;
  display: flex;
  justify-content: space-between;
}
.share-arti .social-icons a {
  height: 36px;
  width: 36px;
  background: #d4d1d1;
  padding: 10px;
  margin: 5px;
  border-radius: 100%;
}

.share-arti .social-icons a img {
  width: 18px;
}
.share-arti .social-icons {
  margin-left: 20px;
}

.share-arti h4 {
  font-family: var(--secondr-font);
  font-size: 18px;
  font-weight: 600;

  color: var(--primary-color);
}

/* detail-blog-body */
.detail-blog-body .container {
  width: 70%;
}

.detail-blog-body .container h2 {
  color: var(--gold-dark);
  margin: 30px 0px;
  font-size: 33px;
  text-align: left;
}
.detail-blog-body .container h3 {
  font-size: 26px;
  color: var(--gold-dark);
}

.detail-blog-body .container img {
  width: 100%;
  margin-bottom: 25px;
}
.detail-blog-body ul {
  margin-left: 25px;
}

.detail-blog-body p {
  font-size: 18px;
  margin: 20px 0px;
  font-weight: 500;
  color: #333;
}
.detail-blog-body p a {
  font-weight: 600px;
  color: var(--gold-dark);
  text-decoration: underline;
}
.detail-blog-body ul li {
  font-size: 17px;
  list-style: disc;
}

.detail-blog-body .next-prevous {
  margin-top: 100px;
}
.detail-blog-body .next-prevous a {
  color: #817e7c;
  font-weight: 500;
  font-size: 18px;
}

.center-blog-box {
  margin-top: 20px;
}

.prev-next-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-section.detail .blog-grid {
  width: 90%;
  margin: auto;
}

.blog-section.detail .blog-grid h3 {
  width: 100%;
}

.blog-section.in {
  background-color: unset;
  padding-top: 70px;
}

.blog-section.in h3 {
  color: #000;
}

.inner-blog-banner.Vtc {
  background-image: url("../img/blog3.webp");
}

/* legals */
.legals {
  margin-top: 100px;
}
.legals a {
  font-weight: 700;
  font-size: 17px;
  color: #0000009e;
  text-decoration: underline;
}

.contact-info .container {
  display: flex;
}

.home.discover h2 {
  text-align: left;
}

.discover.comfert.home h4 {
  text-align: left;
}
.discover.comfert.home p {
  margin-left: 0px;
  width: 100%;
}

.champagne-section.nos-vehicules .champagne-container {
  position: relative;
}

.map-section.contact p {
  font-size: 18px;
  color: #000;
  text-transform: uppercase;
}
.map-section.contact .middle {
  width: 42%;
}
.map-section.contact .middle h2 {
  font-size: 32px;
}

.contact-section.main .top-text {
  font-size: 17px;
  font-weight: 500;
}
.detail-blog-body {
  padding-top: 0px;
}

/* translate */
.goog-te-banner-frame,
.skiptranslate {
  display: none !important;
}

.language-dropdown {
  position: relative;
  display: inline-block;
}

.language-dropdown .flag-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
}

.language-dropdown .flag-btn img {
  width: 32px;
  height: 22px;
  object-fit: cover;
  border: 1px solid #ddd;
  border-radius: 3px;
  display: block;
}

.language-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;

  margin-top: 0;

  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);

  z-index: 1000;
  overflow: hidden;
}

.language-dropdown .dropdown.show {
  display: block;
}

.language-dropdown .dropdown .lang {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 5px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.language-dropdown .dropdown .lang:hover {
  background: #f5f5f5;
}

.language-dropdown .dropdown .lang img {
  width: 30px;
  height: 20px;
  object-fit: cover;
  border-radius: 2px;
}

.language-dropdown .dropdown .lang span {
  font-size: 14px;
  color: #333;
}
