/* ================================
   ROOT VARIABLES (Your Brand DNA)
================================ */

:root {
  /* Brand Colors */
  --hero-color: #0c2836;
  --hero-color-light: #d8c198;
  --white-color: #ffffff;
  --black: #1c1c1c;
  --muted-text: #6f6f6f;
  --border-color: rgba(0, 0, 0, 0.08);

  /* Typography */
  --font-primary: "Avenir Next", "Montserrat", sans-serif;
  --font-accent: "Tenor Sans", sans-serif;

  /* Font Sizes */
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-md: 18px;
  --fs-lg: 20px;
  --fs-xl: 24px;
  --fs-2xl: 30px;
  --fs-3xl: 36px;
  --fs-4xl: 44px;

  /* Spacing */
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  /* Shadows */
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/*

-- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98


  cursive ----- font-family: "Tenor Sans", sans-serif;


  less cursive --- font-family: "Avenir Next", "Montserrat", sans-serif;



-- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

*/

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

ul,
li {
  list-style-type: none;
}

button {
  cursor: pointer;
  border: none;
}

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

body {
  font-family: Arial, sans-serif;
  line-height: 1;
  font-weight: 400;
  margin: 0 auto;
}

.container {
  margin: 0 4.8rem;
}

.announcement-bar,
.top-header,
.bottom-header,
.left-h-part ul,
.review-box,
.text-part-box .btn-box,
.text-box-parallax,
.card__cont,
.card__cta,
.card-box,
.right-h-part ul,
.img-text-section .text-part-box,
.mid-header,
.img-text-section .img-part-box,
.mid-header ul,
.the-best-of,
.card-section .card-box,
.bottom-header ul,
.banner-text-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader {
  display: block;
  position: relative;
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 999;
}

.loading-page {
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.preloader-logo {
  width: 70%;
  height: fit-content;
  animation: scaling 5s;
}


@keyframes scaling {
  0% {
    transform: scale(5);
    opacity: 0;
  }

  50% {
    transform: scale(.8);
    opacity: 1;
  }

  100% {
    transform: scale(5);
    opacity: 0;
  }
}


.title-box {
  display: block;
  text-align: center;
  font-family: "Tenor Sans", sans-serif;
  padding: 6.4rem 0 4.8rem 0;
}

.title-box .primary-text {
  padding-bottom: 1.2rem;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.title-box .secondary-text {
  display: inline-block;
  padding-top: .8rem;
  border-top: 1px solid var(--hero-color-light);
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.banner-section-fw {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.banner-section-fw img,
.img-text-section div img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.announcement-bar {
  padding: 1.6rem 4.8rem;
  text-align: center;
  font-size: 1.2rem;
  font-family: "Tenor Sans", sans-serif;
  color: var(--white-color);
  background-color: var(--hero-color);
}

.top-header {
  justify-content: space-between;
  padding: .6rem 4rem;
  font-size: 1.3rem;
  border-bottom: 1px solid #e8e8e8;
  font-family: "Avenir Next", "Montserrat", sans-serif;
}

.left-h-part ul,
.right-h-part ul {
  gap: 1.6rem;
  color: #404040;
  letter-spacing: .75px;
}

.right-h-part li {
  display: grid;
}

.right-h-part ion-icon {
  font-size: 2rem;
  color: var(--hero-color);
}

.mid-header {
  padding: 3.2rem 0;
  background-color: var(--white-color);
}

.mid-header ul {
  font-family: "Tenor Sans", sans-serif;
  font-size: 3.6rem;
  flex-direction: column;
}

.mid-header ul .mid-top-logo span {
  font-size: 4.4rem;
}

.mid-header ul .mid-top-logo {
  text-align: center;
  padding-bottom: .8rem;
}

.mid-header ul .mid-bottom-logo {
  font-size: 2.2rem;
  padding-top: .8rem;
  text-align: center;
  width: fit-content;
  border-top: 1px solid var(--hero-color-light);
}

.bottom-header {
  font-size: 1.3rem;
  font-family: "Avenir Next", "Montserrat", sans-serif;
  letter-spacing: 2px;
  padding-bottom: 1.2rem;
  box-shadow: 0 4px 4px -2px rgba(0, 0, 0, 0.1);
  background-color: var(--white-color);
}

.bottom-header ul {
  gap: 3.2rem;
}

.bottom-header ul li {
  position: relative;
  cursor: pointer;
}

.bottom-header ul li:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 100%;
  margin: 0 5px;
  border-bottom: 1px solid var(--hero-color-light);
  transition: right 0.5s ease;
}

.bottom-header ul li:hover:after {
  right: 0;
}

.sliding-section .to-left-box,
.sliding-section .to-right-box {
  overflow: hidden;
  width: 100%;
  background-color: var(--white-color);
  border: 1px solid #e8e8e8;
  padding: 1.2rem 0;
  font-size: 2.4rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Avenir Next", "Montserrat", sans-serif;
  color: var(--hero-color);
}

.sliding-section .marquee {
  display: flex;
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.marquee strong {
  display: inline-block;
  padding-left: 100%;
}

.sliding-section .to-left-box .marquee strong {
  animation: marquee-l 180s linear infinite;
}

.sliding-section .to-right-box .marquee strong {
  animation: marquee-r 180s linear infinite;
}


@keyframes marquee-l {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-100%);
  }
}

@keyframes marquee-r {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(0%);
  }
}

.best-selling-section {
  display: grid;
  place-content: center;
  padding-bottom: 4.8rem;
}

.grid-collection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  padding: 4.8rem 0;
}

.grid-collection .grid-col-box .big-span,
.grid-collection .grid-col-box span {
  position: absolute;
  bottom: 17%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.8rem 1.2rem;
  font-family: "Avenir Next", "Montserrat", sans-serif;
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--hero-color);
  text-align: center;
}

.grid-collection .grid-col-box.full-width {
  grid-column: span 3;
  height: 12.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-collection .grid-col-box.full-width span {
  top: 17%;
}

.grid-collection .grid-col-box.full-width .big-span {
  bottom: 40%;
  transform: translate(-50%, 50%);
}

.grid-collection .grid-col-box .big-span {
  font-size: 2.6rem;
  bottom: 8%;
  letter-spacing: 1px;
}

.banner-text-box {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  align-items: flex-end;
  font-family: "Avenir Next", "Montserrat", sans-serif;
  gap: 1.2rem;
  color: var(--white);
  z-index: 1;
}

.banner-text-box p {
  font-size: 1.8rem;
  letter-spacing: 2.5px;
}

.banner-text-box h4 {
  font-size: 4rem;
  font-weight: 400;
  letter-spacing: 2px;
}

.banner-text-box span {
  font-size: 2rem;
  letter-spacing: 1px;
}

.btn-box {
  padding-top: 1.2rem;
}

.btn-box button {
  background-color: var(--white-color);
  color: var(--hero-color);
  padding: 1.2rem 2.4rem;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  margin: 0 6px;
  border-radius: 3px;
}

.btn-box button:hover {
  opacity: 0.8;
}

.the-best-of {
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  gap: 2.6rem;
  padding: 4.8rem 0;
}

.the-best-of img {
  width: 20rem;
}

.the-best-of span {
  font-size: 1.6rem;
}

.the-best-of h5 {
  font-size: 3.6rem;
  font-weight: 400;
}

.the-best-of p {
  font-size: 1.8rem;
  width: 74vw;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1px;
}

.bg-img-fix {
  padding: 4.8rem 0;
}

.bg-img-parallax {
  position: relative;
  background-image: url('/designing-images/YJC-wedding-rings-banner.webp');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 75vh;
  z-index: -1;
}

.mobile-nav,
.mid-header ion-icon {
  display: none;
}

.text-box-parallax {
  position: absolute;
  top: 6rem;
  left: 6rem;
  background-color: var(--white-color);
  padding: 3.6rem 2.4rem;
  font-family: "Avenir Next", sans-serif;
  color: var(--hero-color);
  width: 27vw;
  gap: 1.2rem;
  flex-direction: column;
  align-items: flex-start;
}

.text-box-parallax span {
  letter-spacing: 3px;
  font-size: 1.4rem;
}

.text-box-parallax h4 {
  font-size: 2.4rem;
  font-weight: 500;
}

.text-box-parallax p {
  line-height: 1.2;
  padding: 8px 0;
  font-size: 1.8rem;
}

.text-box-parallax button {
  padding: 1.2rem 3rem;
  color: var(--white-color);
  letter-spacing: 3px;
  font-weight: 600;
  background-color: var(--hero-color);
  border: none;
}

.img-text-section {
  display: grid;
  grid-template-columns: 55% 45%;
  place-content: center;
  padding-bottom: 4.8rem;
}

.img-text-section .img-part-box img {
  width: 80%;
}

.img-text-section .text-part-box {
  flex-direction: column;
  gap: 2.4rem;
  align-items: flex-start;
  font-family: "Avenir Next", "Montserrat", sans-serif;
}

.text-part-box span,
.review-box span {
  font-size: 1.6rem;
  letter-spacing: 2px;
}

.text-part-box h4,
.review-box h4 {
  font-size: 3rem;
  font-weight: 400;
  font-family: "Tenor Sans", sans-serif;
}

.text-part-box .span-breathe {
  padding: 1.2rem 0;
  line-height: 1.2;
}

.text-part-box p,
.review-box p {
  font-size: 1.8rem;
  line-height: 1.2;
  letter-spacing: 2px;
}

.text-part-box button,
.review-box button {
  color: var(--white-color);
  background-color: var(--hero-color);
}

.visit-showroom {
  margin: 1.6rem 0 .4rem 0;
}

.visit-showroom img {
  height: 80vh;
}

.visit-txt-box {
  background-color: var(--white-color);
  padding: 3.2rem;
  right: auto;
  left: 4%;
  width: 40vw;
  align-items: flex-start;
}

.visit-showroom p {
  font-size: 2.4rem;
  font-family: "Tenor Sans", sans-serif;
  letter-spacing: 0;
}

.visit-showroom span {
  font-size: 1.6rem;
}

.visit-showroom .dynamic-address {
  line-height: 1.5;
}

.visit-showroom button {
  background-color: var(--hero-color);
  color: var(--white-color);
}

.card-section {
  padding: 4.8rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-content: center;
}

.card-box {
  margin: 2rem 0;
}

.card {
  perspective: 150rem;
  width: 54rem;
  height: 36rem;
  position: relative;
}


.card__side {
  height: 100%;
  width: 100%;
  transition: all 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  backface-visibility: hidden;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, -0.6);
}

.card__cont,
.card__cta {
  height: 100%;
  width: 100%;
}

.card__cont img,
.card__cta img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* Front Side */
.card__side--front {
  transform: rotateY(0deg);
}

/* Back Side */
.card__side--back {
  transform: rotateY(180deg);
}

/* Flip on hover */
.card:hover .card__side--front {
  transform: rotateY(-180deg);
}

.card:hover .card__side--back {
  transform: rotateY(0deg);
}

.review-box {
  flex-direction: column;
  text-align: center;
  gap: 1.6rem;
}

.review-box button {
  letter-spacing: 2px;
  font-weight: 600;
  padding: 1.2rem 2.4rem;
}

footer {
  background-color: var(--hero-color);
  color: white;
  padding: 6.4rem 6.4rem 3.2rem 6.4rem;
}

footer .footer-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 6.4rem;
  margin-bottom: 2.4rem;
}

.footer-box .footer-items {
  text-align: left;
  max-width: 80%;
}

footer .footer-box .footer-items:nth-child(5) {
  grid-column: 1/3;
}

.footer-items h4 {
  font-size: 2.4rem;
  font-family: "Tenor Sans", sans-serif;
  padding-bottom: 8px;
  margin-bottom: 3.2rem;
  font-weight: 600;
  position: relative;
}

.footer-items h4:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--hero-color-light);
  width: 6rem;
  height: 2px;
}

.footer-items li {
  font-size: 1.8rem;
  line-height: 2;
  font-family: "Avenir Next", "Montserrat", sans-serif;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

.social-icons {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  max-width: calc(3 * 36px + 2 * 1.2rem);
  align-items: center;
  gap: 1.2rem;
}

.social-icons ion-icon,
.footer-items ion-icon {
  width: 24px;
  height: 24px;
}

.img-slider {
  display: none;
}

.ico {
  display: grid;
}

.footer-bottom {
  background-color: var(--hero-color);
  color: white;
  padding: 1.6rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-bottom p {
  width: 80%;
  padding-top: 1.2rem;
  font-weight: 200;
  letter-spacing: 1px;
  line-height: 1.4;
  font-size: 1.4rem;
}

/* Add this to your CSS */

.mid-header,
.bottom-header {
  position: relative;
  z-index: 10;
  transition: transform 0.3s ease-in-out;
}

.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(0);
  z-index: 10;
}

.mobile-bottom-navigation {
  display: none;
}

.mid-header.sticky {
  top: 0;
  padding: 1.2rem 0;
}

.bottom-header.sticky {
  top: 8rem;
  padding-top: 2rem;
}

.mid-header.sticky .mid-top-logo span,
.mid-header.sticky ul {
  font-size: 3rem;
}

.mid-header.sticky .mid-bottom-logo {
  font-size: 1.8rem;
}

/* Smooth transition when scrolling */
/* .announcement-bar {
  margin-bottom: 10px;
} */

.top-header {
  margin-bottom: 10px;
}

main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
  padding: 8rem 0;
}

main div {
  display: flex;
  /* Center the image in the div */
  justify-content: center;
  align-items: center;
}

main img {
  max-width: 100%;
  /* Ensure images are responsive */
  height: auto;
  /* Maintain aspect ratio */
  border-radius: 0.5rem;
  /* Optional: add rounded corners */
}

footer ul li:hover {
  text-decoration: underline;
}

/* Wrapper to handle horizontal scrolling */
.video-grid-wrapper {
  width: 100%;
  overflow-x: auto;
  /* Enable horizontal scrolling */
  white-space: nowrap;
  /* Prevent line breaks */
}

/* The video grid will use flexbox for horizontal alignment */
.video-grid {
  display: flex;
  gap: 10px;
  /* Space between slides */
  width: max-content;
  /* Make the container as wide as its children */
}

/* Individual video slides */
.video-grid .video-slide {
  min-width: 260px;
  display: grid;
  max-width: 100vw;
  /* Fixed width for each video slide */
  flex-shrink: 0;
  /* Prevent shrinking */
}

.lazy-image {
  width: 100%;
  height: auto;
  display: block;
}

.ig-grid-box {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  max-width: 100vw;
}


.visit-ig .ig-grid-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ig--1 {
  grid-row: 1/2;
  grid-column: 1/3;
}

.ig--2 {
  grid-row: 3/5;
}

.lazy-image {
  height: 80vh;
  width: 35vw;
  object-fit: cover;
}

.bottom-header {
  text-transform: uppercase;
}

.bp-container .bp-wrap {
  position: relative;
  left: 0;
  text-align: center;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 3fr);
  grid-column-gap: 0px;
  grid-row-gap: 10px;
  border: 1px solid #06234E;
  border-radius: 10px;
  padding: 15px 0;
  width: 80%;
}

.bp-container .bp-wrap .bp-item {
  width: 100%;
}

.bp-container .bp-wrap .bp-item img {
  width: 65%;
  height: auto;
}

.bp-container .bp-wrap .bp-item h2 {
  font-size: 14px;
  font-family: "Avenir Next", "Montserrat", sans-serif;
  line-height: 19px;
  font-weight: 400;
  margin: 0;
}

.hallmark-box {
  display: grid;
  place-items: center;
  grid-template-columns: repeat(5, 1fr);
  max-width: 100vw;
}

.hallmark-box img {
  width: 55%;
  height: auto;
  object-fit: cover;
}

.review-block-section {
  padding: 4.8rem 0;
}

.review-block-section .review-block-content {
  padding-top: 40px;
}

.review-block-content.slider-1 {
  margin-top: -20px;
}

.slider-1 {
  background: pr;
  height: auto;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.review-block-section .review-block-content .gridpad {
  padding-top: 30px;
}

.slider-1 .slide-track {
  -webkit-animation: scroll 60s linear infinite;
  animation: scroll 60s linear infinite;
  display: flex;
  flex-wrap: nowrap;
  width: calc(4000px);
}

.grid-4 {
  width: 33.33333%;
}

.review-block {
  background: #ffffff;
  padding: 35px 30px;
  height: 100%;
  box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.06);
  background-image: url(../images/testimonial-bg.png);
  background-size: cover;
  background-position: 100% center;
  position: relative;
  margin: 0 5px;
}

.review-block .head-block {
  float: right;
  position: absolute;
  right: 35px;
  top: -40px;
  display: block;
}

.user-img {
  width: 90px;
  height: 90px;
  margin-bottom: 12px;
  margin-left: auto;
}

.user-img img {
  height: auto;
  width: 100%;
  filter: brightness(-1);
  max-width: 100%;
  border-radius: 50%;
}

.user-name {
  padding-left: 10px;
  text-align: right;
}

.user-name .title {
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  margin: 0 0 1px;
  color: #1c1b1b;
}

.user-name span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #595959;
}

.user-details {
  margin: 26px 0 0;
}

.user-details .rating-star {
  margin-bottom: 14px;
}

.user-details .rating-star img {
  height: 16px;
  object-fit: cover;
  display: flex;
  width: auto;
  background-color: #fff;
  margin: 0;
}

.user-details .title {
  margin: 0 0 14px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #1c1b1b;
}

.user-details .user-review {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #595959;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  max-width: 650px;
  width: 100%;
}

.review-block-section .review-block-content {
  padding-top: 40px;
}

.slider-2 {
  background: pr;
  height: auto;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider-2 .slide-track-2 {
  -webkit-animation: scroll 60s linear reverse infinite;
  animation: scroll 60s linear reverse infinite;
  display: flex;
  flex-wrap: nowrap;
  width: calc(4000px);
}

.gridpad {
  margin-left: -15px;
  margin-right: -15px;
  display: -ms-flexbox;
  display: flex;
}

.review-block-section .review-block-content .gridpad {
  padding-top: 30px;
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(calc(-1800px));
    transform: translateX(calc(-1800px));
  }
}

/* Full-width container */
.image-slider-fw {
  width: 100vw;
  /* Full viewport width */
  overflow: hidden;
  /* Hide any overflow */
}

/* Slider-sh container to allow horizontal scroll */
.slider-sh {
  display: flex;
  /* Align items in a row */
  overflow-x: auto;
  /* Horizontal scrolling */
  scroll-behavior: smooth;
  /* Smooth scroll effect */
  width: 100%;
  height: auto;
  gap: 4px;
  padding: 4px;
}

/* Hide the scrollbar */
.slider-sh::-webkit-scrollbar {
  display: none;
}

/* Slide-sh styles */
.slide-sh {
  flex: 0 0 auto;
}

.slide-sh img {
  min-height: 166px;
  width: 92vw;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s ease-in-out;
}

.map {
  max-width: 100vw;
  height: 80vh;
  margin: 2rem 0 0 0;
}

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

/* Individual image slides */
.image-slide {
  flex-shrink: 0;
  width: 35vw;
  height: 80vh;
}

.cta-form {
  width: 80%;
  padding: 4.8rem 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.2rem;
}

.msg-grid {
  grid-column: -3/-1;
}

label {
  display: inline-block;
}

table {
  border-collapse: collapse;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  overflow-x: auto;
}

th,
td {
  border: 1px solid black;
  text-align: center;
  font-size: 1.8rem;
  padding: 1.6rem 0;
}

th {
  background-color: #003a70;
  color: white;
}

td {
  color: red;
  font-weight: bold;
}

tr:nth-child(odd) {
  background-color: #f2f2f2;
}

.upi {
  display: flex;
  justify-content: center;
  /* Center the image horizontally */
  margin: 20px 0;
  /* Add some space around the element */
}

.upi img {
  width: 50%;
  max-width: 100%;
  height: auto;
}


/**
 * MODAL 
 */

.modal1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: hsla(0, 0%, 0%, 0.5);
  display: flex;
  justify-content: center;
  font-family: "Avenir Next", "Montserrat", sans-serif;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 25;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal1.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.modal-content {
  position: relative;
  max-width: 80vw;
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  z-index: 10;
  animation: scaleUp 0.5s ease-in-out forwards;
}

@keyframes scaleUp {
  0% {
    transform: scale(0.9);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #000;
  color: white;
  display: flex;
  border: none;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

.modal-close-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.newsletter-title {
  padding-bottom: 2rem;
  font-size: 1.6rem;
}

.newsletter-desc {
  font-size: 1.4rem;
}

.btn-newsletter {
  background: #222;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.4rem;
  display: inline-block;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.btn-newsletter:hover {
  background: #ff6f61;
}

.cards {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.cards h2.header {
  font-size: 3.2rem;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.services {
  display: flex;
  align-items: center;
}

.content {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  font-family: "Avenir Next", "Montserrat", sans-serif;
  margin: 20px;
  padding: 20px;
  border: 1px solid var(--hero-color);
  border-radius: 4px;
  transition: all .3s ease;
}

.content ion-icon {
  font-size: 70px;
  margin: 16px 0;
}

.content>* {
  flex: 1 1 100%;
}

.content:hover {
  color: white;
}

.content:hover a {
  border-color: white;
  background: white;
}

.content-1:hover {
  border-color: #1DA1F2;
  background: #1DA1F2;
}

.content-1:hover a {
  color: #1DA1F2;
}

.content-2:hover {
  border-color: #E1306C;
  background: #E1306C;
}

.content-2:hover a {
  color: #E1306C;
}

.content-3:hover {
  border-color: #ff0000;
  background: #ff0000;
}

.content-3:hover a {
  color: #ff0000;
}

.content h2 {
  font-size: 2.8rem;
  font-weight: 500;
  margin: 16px 0;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.content p {
  font-size: 1.6rem !important;
}

.content a {
  margin: 22px 0;
  background: var(--hero-color);
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid var(--hero-color);
  padding: 15px 0;
  font-size: 1.6rem;
  border-radius: 25px;
  transition: .3s ease;
}

.content a:hover {
  border-radius: 4px;
}

.multi-v-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* 3 columns */
  gap: 20px;
  /* Gap between the grid items */
  padding: 20px;
}

/* Styling each video container */
.multi-v-grid div {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/*

-- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98

cursive ----- font-family: "Tenor Sans", sans-serif;

less cursive --- font-family: "Avenir Next", "Montserrat", sans-serif;


-- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

*/

/* ================================
   STORE LOCATION SECTION
================================ */

.store-location {
  background-color: #fafafa;
  padding: var(--space-8) var(--space-4);
}

.location-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.location-header h2 {
  font-family: var(--font-accent);
  font-size: var(--fs-3xl);
  color: var(--black);
  margin-bottom: var(--space-2);
  letter-spacing: 0.4px;
}

.location-header p {
  font-size: var(--fs-base);
  color: var(--muted-text);
}

/* ================================
   MAP CONTAINER
================================ */

.map-wrapper {
  background-color: var(--white-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.map-wrapper iframe {
  width: 100%;
  height: 480px;
  border: 0;
  display: block;
}

/* ================================
   RESPONSIVE REFINEMENT
================================ */

@media (max-width: 768px) {
  .location-header h2 {
    font-size: 28px;
  }

  .store-location {
    padding: 3.2rem 1.2rem;
  }

  .map-wrapper iframe {
    height: 360px;
  }
}

/* =====================================
   CONTACT SECTION
===================================== */

.contact-section {
  background: linear-gradient(180deg,
      #ffffff 0%,
      #fafafa 100%);
  padding: 3.2rem 1.2rem;
}

/* ===============================
   HEADER
================================ */

.contact-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.contact-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--hero-color);
  margin-bottom: 8px;
}

.contact-header h2 {
  font-family: var(--font-accent);
  font-size: var(--fs-3xl);
  color: var(--black);
  margin-bottom: 12px;
}

.contact-header p {
  font-size: var(--fs-base);
  color: var(--muted-text);
}

/* ===============================
   FORM CARD
================================ */

.contact-card {
  max-width: 820px;
  margin: 0 auto;
  background-color: var(--white-color);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-color);
}

/* ===============================
   FORM GRID
================================ */

.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field.full {
  grid-column: 1 / -1;
}

/* ===============================
   LABELS & INPUTS
================================ */

.form-field label {
  font-size: 13px;
  color: var(--black);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-primary);
  font-size: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: #fff;
  transition: all 0.25s ease;
}

.form-field textarea {
  min-height: 130px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--hero-color-light);
  box-shadow: 0 0 0 3px rgba(216, 193, 152, 0.18);
}

/* ===============================
   CHECKBOX
================================ */

.form-field.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.form-field.checkbox span {
  font-size: 12px;
  color: var(--muted-text);
}

/* ===============================
   BUTTON
================================ */

.contact-form .btn {
  width: 100%;
  margin-top: 1.6rem;
  color: white;
  padding: 16px;
  font-size: 14px;
  background-color: var(--hero-color);
  letter-spacing: 0.8px;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .contact-header h2 {
    font-size: 28px;
  }

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

  .contact-card {
    padding: 1.8rem;
  }
}

/* =====================================
   GOOGLE REVIEWS — PREMIUM DARK
===================================== */

.google-reviews {
  background: radial-gradient(1200px 400px at 50% -200px,
      rgba(216, 193, 152, 0.08),
      transparent),
    linear-gradient(180deg, #0c2836 0%, #081d28 100%);
  padding: 3.2rem 1.2rem;
  color: var(--white-color);
}

/* ===============================
   HEADER
================================ */

.reviews-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.2rem;
}

.reviews-eyebrow {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--hero-color-light);
  display: inline-block;
  margin-bottom: 12px;
}

.reviews-header h2 {
  font-family: var(--font-accent);
  font-size: clamp(28px, 4vw, 36px);
  color: var(--white-color);
  margin-bottom: 12px;
}

.reviews-header p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.6;
}

/* ===============================
   REVIEWS GRID
================================ */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.review-card {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.03));
  border-radius: 14px;
  padding: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.review-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.2rem;
}

.review-author {
  font-size: 13px;
  color: var(--hero-color-light);
  letter-spacing: 0.3px;
}

/* ===============================
   CTA BUTTON — PREMIUM
================================ */

.reviews-cta {
  text-align: center;
}

/* Override generic button look */
.review-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 16px 38px;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;

  color: var(--hero-color-light);
  background: transparent;
  border-radius: 999px;
  border: 1.5px solid rgba(216, 193, 152, 0.55);

  transition: all 0.35s ease;
  overflow: hidden;
}

/* Subtle inner glow */
.review-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120px 60px at 50% 0%,
      rgba(216, 193, 152, 0.25),
      transparent 70%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.review-btn:hover::before {
  opacity: 1;
}

/* Hover state */
.review-btn:hover {
  color: #0c2836;
  background-color: var(--hero-color-light);
  box-shadow: 0 12px 30px rgba(216, 193, 152, 0.35);
  transform: translateY(-2px);
}

/* Active (click) */
.review-btn:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(216, 193, 152, 0.25);
}

/* ===============================
   RESPONSIVE
================================ */

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

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

  .reviews-header p {
    font-size: 14px;
  }

  .review-btn {
    width: 100%;
    max-width: 320px;
  }
}

/* =====================================
   GALLERY SECTION
===================================== */

.gallery-section {
  background-color: #ffffff;
  padding: 3.2rem 1.2rem;
}

/* ===============================
   HEADER
================================ */

.gallery-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.gallery-eyebrow {
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--hero-color);
  display: inline-block;
  margin-bottom: 10px;
}

.gallery-header h2 {
  font-family: var(--font-accent);
  font-size: var(--fs-3xl);
  color: var(--black);
  margin-bottom: 12px;
}

.gallery-header p {
  font-size: var(--fs-base);
  color: var(--muted-text);
}

/* ===============================
   GRID
================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

/* ===============================
   ITEMS
================================ */

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: #f4f4f4;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

/* Subtle hover zoom (luxury standard) */
.gallery-item:hover img {
  transform: scale(1.06);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-header h2 {
    font-size: 28px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

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

/* =====================================
   SIX GRID GALLERY SECTION
===================================== */

.gallery-six-section {
  background-color: #fafafa;
  padding: 3.2rem 1.2rem;
}

/* ===============================
   HEADER
================================ */

.gallery-six-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.gallery-six-eyebrow {
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--hero-color);
  display: inline-block;
  margin-bottom: 10px;
}

.gallery-six-header h2 {
  font-family: var(--font-accent);
  font-size: var(--fs-3xl);
  color: var(--black);
  margin-bottom: 12px;
}

.gallery-six-header p {
  font-size: var(--fs-base);
  color: var(--muted-text);
}

/* ===============================
   GRID
================================ */

.gallery-six-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  /* Desktop: 6 columns */
  gap: 1.2rem;
}

/* ===============================
   ITEMS
================================ */

.gallery-six-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  background-color: #f0f0f0;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-soft);
}

.gallery-six-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

/* Subtle premium hover */
.gallery-six-item:hover img {
  transform: scale(1.05);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
  .gallery-six-grid {
    grid-template-columns: repeat(4, 1fr);
    /* Tablet: 4 columns */
  }
}

@media (max-width: 600px) {
  .gallery-six-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Mobile: 2 columns */
    gap: 0.9rem;
  }

  .gallery-six-header h2 {
    font-size: 26px;
  }
}

/* =====================================
   IMAGE LIGHTBOX
===================================== */

.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(12, 40, 54, 0.95);
  /* brand dark */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 9999;
}

.image-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

/* ===============================
   IMAGE
================================ */

.lightbox-content {
  max-width: 90vw;
  max-height: 80vh;
}

.lightbox-content img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* ===============================
   CLOSE BUTTON (BOTTOM)
================================ */

.lightbox-close {
  margin-top: 24px;
  padding: 14px 42px;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;

  background: transparent;
  color: var(--hero-color-light);
  border-radius: 999px;
  border: 1.5px solid rgba(216, 193, 152, 0.6);

  cursor: pointer;
  transition: all 0.35s ease;
}

.lightbox-close:hover {
  background-color: var(--hero-color-light);
  color: var(--black);
  box-shadow: 0 10px 30px rgba(216, 193, 152, 0.35);
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 600px) {
  .lightbox-close {
    width: 80%;
  }
}

/* =====================================
   SPLIT HERO — PREMIUM TYPOGRAPHY & CONTENT
===================================== */

.split-hero {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  padding: 5rem 1.2rem;
}

/* ===============================
   GRID
================================ */

.split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

/* ===============================
   LEFT SIDE — BRAND
================================ */

.split-left {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.brand-poster {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.brand-text {
  max-width: 620px;
}

.brand-text h1 {
  font-family: var(--font-accent);
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1.15;
  letter-spacing: 0.35px;
  color: var(--black);
  margin-bottom: 20px;
  position: relative;
}

/* Gold underline accent */
.brand-text h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  background-color: var(--hero-color-light);
  margin-top: 18px;
}

.brand-sub {
  font-family: var(--font-primary);
  font-size: 18px;
  line-height: 1.75;
  color: #4a4a4a;
  margin-bottom: 28px;
  max-width: 520px;
}

/* CTA spacing */
.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

/* ===============================
   RIGHT SIDE — TRUST
================================ */

.split-right {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.founder-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.trust-content {
  max-width: 520px;
}

.trust-content h2 {
  font-family: var(--font-accent);
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: 0.4px;
  color: var(--black);
  margin-bottom: 18px;
}

.trust-content p {
  font-family: var(--font-primary);
  font-size: 16.5px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 18px;
}

/* ===============================
   TRUST POINTS
================================ */

.trust-points {
  list-style: none;
  padding: 0;
  margin-top: 22px;
}

.trust-points li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: #222;
  font-weight: 500;
}

/* Gold dot instead of ticks */
.trust-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--hero-color-light);
  position: absolute;
  left: 0;
  top: 9px;
}

/* ===============================
   RESPONSIVE
================================ */

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

  .brand-text,
  .trust-content {
    max-width: 100%;
    text-align: center;
  }

  .brand-text h1::after {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .split-hero {
    padding: 3.8rem 1.2rem;
  }

  .brand-text h1 {
    font-size: 34px;
  }

  .trust-content h2 {
    font-size: 26px;
  }

  .brand-sub,
  .trust-content p {
    font-size: 15.5px;
  }
}

/* =====================================
   PREMIUM BUTTON BASE
===================================== */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--hero-color);
  padding: 14px 38px;
  font-family: var(--font-primary);
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: white;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;

  transition: all 0.35s ease;
}

/* =====================================
   MOBILE SHOWROOM VIDEO
===================================== */

.mobile-showroom-video {
  width: 100%;
  overflow: hidden;
  display: none;
  /* hidden by default */
}

/* Video styling */
.showroom-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0;
  /* keep edge-to-edge on mobile */
}

/* ===============================
   SHOW ONLY ON MOBILE
================================ */

@media (max-width: 768px) {
  .mobile-showroom-video {
    display: block;
  }
}

/* ===============================
   HIDE ON LAPTOP & ABOVE
================================ */

@media (min-width: 769px) {
  .mobile-showroom-video {
    display: none;
  }
}

/* =====================================
   MOBILE FULL IMAGE SECTION
===================================== */

.mobile-full-image {
  width: 100%;
  background-color: #000;
  display: none;
  /* hidden by default */
}

.mobile-image {
  width: 60%;
  margin: 0 auto;
  height: auto;
  /* natural height */
  display: block;
  object-fit: cover;
}

/* ===============================
   SHOW ONLY ON MOBILE
================================ */

@media (max-width: 768px) {
  .mobile-full-image {
    display: block;
  }
}

/* ===============================
   HIDE ON LAPTOP & ABOVE
================================ */

@media (min-width: 769px) {
  .mobile-full-image {
    display: none;
  }
}

.google-review-float {
  position: fixed;
  right: 10px;
  bottom: 64px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: rgb(255, 255, 255);
  color: var(--hero-color);

  padding: 8px 12px;
  border-radius: 40px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1;

  text-decoration: none;
  z-index: 2;

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.google-review-float:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

/* TEXT – perfectly centered */
.review-text-star {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  opacity: 1;
  transition: opacity 0.35s ease, max-width 0.35s ease;
}

/* ICON – reduced size */
.review-icon-star {
  width: 22px;
  height: 22px;
  background: #fbbc04;
  color: #000;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  line-height: 1;
  flex-shrink: 0;
}

/* Hide text animation */
.google-review-float.hide-text .review-text-star {
  opacity: 0;
  max-width: 0;
}