/* ── SMJ JEWELLERS – SHARED STYLES ── */
*,
*::before,
*::after {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
}
:root {
   --gold: #c8a96e;
   --gold-light: #e8d5a3;
   --gold-dark: #9a7a45;
   --dark: #1a1209;
   --dark-2: #2c1f0e;
   --cream: #faf6ee;
   --cream-2: #f2ebd9;
   --text: #3d2b0e;
   --text-light: #7a6044;
   --white: #ffffff;
}
html {
   scroll-behavior: smooth;
}
body {
   font-family: 'Red Hat Display';
   background: var(--cream);
   color: #ffffff;
   overflow-x: hidden;
}
p {
   font-family: "Red Hat Display", sans-serif;
}
::-webkit-scrollbar {
   width: 6px;
}
::-webkit-scrollbar-track {
   background: var(--cream-2);
}
::-webkit-scrollbar-thumb {
   background: var(--gold);
   border-radius: 3px;
}

/* NAV */
nav {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 0 5%;
   height: 72px;
   background: rgba(250, 246, 238, 0.95);
   backdrop-filter: blur(14px);
   border-bottom: 1px solid rgba(200, 169, 110, 0.18);
   transition: box-shadow 0.3s;
}
nav.scrolled {
   box-shadow: 0 4px 30px rgba(0, 0, 0, 0.07);
}
.nav-logo {
   font-family: "Playfair Display", serif;
   font-size: 1.5rem;
   font-weight: 700;
   color: var(--dark);
   text-decoration: none;
   letter-spacing: 1px;
}
.nav-logo span {
   color: var(--gold);
}
.nav-links {
   display: flex;
   gap: 2.2rem;
   list-style: none;
}
.nav-links a {
   text-decoration: none;
   font-size: 0.8rem;
   font-weight: 500;
   letter-spacing: 1.8px;
   text-transform: uppercase;
   color: var(--text-light);
   position: relative;
   padding-bottom: 4px;
   transition: color 0.3s;
}
.nav-links a::after {
   content: "";
   position: absolute;
   bottom: 0;
   left: 0;
   width: 0;
   height: 1.5px;
   background: var(--gold);
   transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
   color: var(--dark);
}
.nav-links a:hover::after,
.nav-links a.active::after {
   width: 100%;
}
.nav-actions {
   display: flex;
   gap: 1rem;
   align-items: center;
}
.nav-icon {
   background: none;
   border: none;
   cursor: pointer;
   font-size: 1rem;
   color: var(--text-light);
   transition: color 0.3s;
}
.nav-icon:hover {
   color: var(--gold);
}
.nav-enquire-btn {
   display: inline-flex;
   align-items: center;
   gap: 7px;
   padding: 9px 20px;
   background: #923231;
   color: #ffffff;
   border: none;
   cursor: pointer;
   border-radius: 2px;
   font-size: 0.72rem;
   font-family: "Jost", sans-serif;
   font-weight: 600;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   transition: all 0.3s;
}
.nav-enquire-btn:hover {
   background: #ecbc3b;
   box-shadow: 0 4px 16px rgba(200, 169, 110, 0.35);
}
.hamburger {
   display: none;
   flex-direction: column;
   gap: 5px;
   cursor: pointer;
   background: none;
   border: none;
}
.hamburger span {
   display: block;
   width: 24px;
   height: 2px;
   background: var(--text);
   transition: 0.3s;
}
.mobile-menu {
   display: none;
   position: fixed;
   top: 72px;
   left: 0;
   right: 0;
   background: var(--cream);
   z-index: 999;
   border-top: 1px solid rgba(200, 169, 110, 0.2);
   padding: 16px 5%;
   flex-direction: column;
   box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.mobile-menu.open {
   display: flex;
}
.mobile-menu a {
   display: block;
   padding: 13px 0;
   border-bottom: 1px solid rgba(200, 169, 110, 0.12);
   text-decoration: none;
   color: var(--text);
   font-size: 0.88rem;
   letter-spacing: 1.5px;
   text-transform: uppercase;
}

/* SHARED BUTTONS */
.btn {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   padding: 13px 30px;
   font-size: 0.78rem;
   font-family: "Jost", sans-serif;
   font-weight: 600;
   letter-spacing: 1.8px;
   text-transform: uppercase;
   text-decoration: none;
   cursor: pointer;
   border: none;
   transition: all 0.3s;
   border-radius: 2px;
}
.btn-gold {
   background: #881818;
   color: #ffffff;
}
.btn-gold:hover {
   background: #ecbc3b;
   box-shadow: 0 8px 24px rgba(200, 169, 110, 0.4);
   transform: translateY(-2px);
}
.btn-dark {
   background: #923231;
   color: #ffffff;
}
.btn-dark:hover {
   background: var(--dark-2);
   transform: translateY(-2px);
}
.btn-outline-light {
   background: transparent;
   color: var(--cream);
   border: 1px solid rgba(200, 169, 110, 0.45);
}
.btn-outline-light:hover {
   border-color: var(--gold);
   color: var(--gold);
   transform: translateY(-2px);
}
.btn-outline-dark {
   background: transparent;
   color: var(--dark);
   border: 1px solid rgba(200, 169, 110, 0.5);
}
.btn-outline-dark:hover {
   background: var(--gold);
   color: var(--dark);
   border-color: var(--gold);
}
.btn-group {
   display: flex;
   gap: 14px;
   flex-wrap: wrap;
}

/* SECTION COMMON */
section {
   padding: 90px 5%;
}
.section-header {
   text-align: center;
   margin-bottom: 56px;
}
.section-tag {
   font-size: 0.72rem;
   letter-spacing: 3.5px;
   text-transform: uppercase;
   color: var(--gold);
   font-weight: 500;
   display: inline-flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 12px;
}
.section-tag::before,
.section-tag::after {
   content: "◆";
   font-size: 0.42rem;
}
.section-title {
   font-family: "Playfair Display", serif;
   font-size: clamp(1.9rem, 3.5vw, 2.9rem);
   color: #2e2e2e;
   line-height: 1.18;
}
.section-title em {
   color: #973331 !important;
   font-style: italic;
}
.section-sub {
   color: #000000;
   font-size: 0.93rem;
   line-height: 1.85;
   max-width: 520px;
   margin: 14px auto 0;
}
.divider {
   width: 52px;
   height: 1px;
   background: var(--gold);
   margin: 16px auto 0;
}

/* PAGE HERO BANNER (inner pages) */
.page-hero {
   height: 52vh;
   min-height: 290px;
   background-size: cover;
   background-position: center;
   display: flex;
   align-items: flex-end;
   position: relative;
   overflow: hidden;
   padding-top: 72px;
}
.page-hero::before {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(
      to top,
      rgba(26, 18, 9, 0.85) 0%,
      rgba(26, 18, 9, 0.3) 60%,
      rgba(26, 18, 9, 0.2) 100%
   );
}
.page-hero-content {
   position: relative;
   z-index: 2;
   padding: 0 5% 50px;
}
.page-hero-tag {
   font-size: 0.7rem;
   letter-spacing: 3.5px;
   text-transform: uppercase;
   color: var(--gold);
   font-weight: 500;
   margin-bottom: 10px;
   display: flex;
   align-items: center;
   gap: 10px;
}
.page-hero-tag::before {
   content: "";
   width: 30px;
   height: 1px;
   background: var(--gold-dark);
}
.page-hero h1 {
   font-family: "Playfair Display", serif;
   font-size: clamp(2.2rem, 5vw, 3.8rem);
   color: var(--cream);
   line-height: 1.1;
}
.page-hero h1 em {
   color: var(--gold);
   font-style: italic;
}
.page-hero-breadcrumb {
   display: flex;
   gap: 8px;
   margin-top: 16px;
   font-size: 0.74rem;
   letter-spacing: 1px;
   color: rgba(250, 246, 238, 0.45);
}
.page-hero-breadcrumb a {
   color: rgba(250, 246, 238, 0.45);
   text-decoration: none;
   transition: color 0.3s;
}
.page-hero-breadcrumb a:hover {
   color: var(--gold);
}
.page-hero-breadcrumb span {
   color: var(--gold);
}

/* MARQUEE */
.marquee-strip {
   background: var(--dark);
   padding: 13px 0;
   overflow: hidden;
}
.marquee-track {
   display: flex;
   animation: marquee 30s linear infinite;
   white-space: nowrap;
}
.marquee-track span {
   font-size: 0.7rem;
   letter-spacing: 3px;
   text-transform: uppercase;
   color: var(--gold);
   padding: 0 26px;
}
.marquee-track span i {
   margin-right: 8px;
   font-size: 0.45rem;
   vertical-align: middle;
}
@keyframes marquee {
   0% {
      transform: translateX(0);
   }
   100% {
      transform: translateX(-50%);
   }
}

/* FOOTER */
footer {
   background: radial-gradient(ellipse at center, #a52020 0%, #6b0f0f 100%);
   padding: 60px 5% 5px;
}
.footer-grid {
   display: grid;
   grid-template-columns: 1.5fr 1fr 1fr 1fr;
   gap: 36px;
   margin-bottom: 44px;
}
.footer-brand p {
   color: #ffffff;
   font-size: 0.84rem;
   line-height: 1.9;
   margin-bottom: 22px;
}
.social-links {
   display: flex;
   gap: 10px;
}
.social-link {
   width: 36px;
   height: 36px;
   border: 1px solid #ffffff;
   border-radius: 2px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #ffffff;
   font-size: 0.84rem;
   text-decoration: none;
   transition: all 0.3s;
}
.social-link:hover {
   border-color: var(--gold);
   color: var(--gold);
}
.footer-col h4 {
   font-family: "Playfair Display", serif;
   font-size: 0.95rem;
   color: var(--cream);
   margin-bottom: 20px;
   position: relative;
   padding-bottom: 10px;
}
.footer-col h4::after {
   content: "";
   position: absolute;
   bottom: 0;
   left: 0;
   width: 26px;
   height: 1px;
   background: var(--gold);
}
.footer-col ul {
   list-style: none;
}
.footer-col ul li {
   margin-bottom: 9px;
}
.footer-col ul li a {
   text-decoration: none;
   color: rgb(250, 246, 238);
   font-size: 0.82rem;
   transition: color 0.3s;
}
.footer-col ul li a:hover {
   color: var(--gold);
}
.footer-contact-item {
   display: flex;
   gap: 10px;
   margin-bottom: 12px;
   color: #ffffff;
   font-size: 0.82rem;
   line-height: 1.6;
}
.footer-contact-item i {
   color: var(--gold);
   margin-top: 3px;
   flex-shrink: 0;
}
.footer-bottom {
   border-top: 1px solid rgba(200, 169, 110, 0.1);
   padding-top: 5px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 12px;
}
.footer-bottom p {
   font-size: 14px;
   color: #ffffff;
}
.footer-bottom-links {
   display: flex;
   gap: 20px;
}
.footer-bottom-links a {
   font-size: 0.76rem;
   color: rgba(250, 246, 238, 0.28);
   text-decoration: none;
   transition: color 0.3s;
}
.footer-bottom-links a:hover {
   color: var(--gold);
}

/* REVIEWS CAROUSEL */
.reviews-container {
   position: relative;
   overflow: hidden;
   padding: 0 40px;
}
.reviews-carousel {
   display: flex;
   transition: transform 0.5s ease-in-out;
   gap: 24px;
}
.reviews-carousel .review-card {
   min-width: calc(33.333% - 16px);
   flex: 1;
   max-width: 400px;
}
.carousel-btn {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   background: var(--gold);
   color: var(--dark);
   border: none;
   width: 50px;
   height: 50px;
   border-radius: 50%;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1rem;
   z-index: 10;
   transition: all 0.3s;
}
.carousel-btn:hover {
   background: var(--gold-light);
   box-shadow: 0 4px 16px rgba(200, 169, 110, 0.35);
}
.prev-btn {
   left: 20px;
}
.next-btn {
   right: 20px;
}
.carousel-dots {
   display: flex;
   justify-content: center;
   gap: 8px;
   margin-top: 20px;
}
.carousel-dot {
   width: 10px;
   height: 10px;
   border-radius: 50%;
   background: rgba(200, 169, 110, 0.3);
   border: none;
   cursor: pointer;
   transition: all 0.3s;
}
.carousel-dot.active {
   background: var(--gold);
}

/* Testimonials Responsive */
@media (max-width: 1024px) {
   .reviews-carousel .review-card {
      min-width: calc(50% - 12px); /* 2 cards per row on tablets */
   }
}

@media (max-width: 768px) {
   .reviews-container {
      padding: 0 30px;
   }
   
   .reviews-carousel .review-card {
      min-width: calc(50% - 12px); /* 2 cards per row on tablets */
   }
   
   .carousel-btn {
      display: none; /* Hide navigation buttons on tablets */
   }
   
   .carousel-dots {
      margin-top: 15px;
      gap: 8px;
   }
   
   .carousel-dot {
      width: 10px;
      height: 10px;
   }
}

@media (max-width: 480px) {
   .reviews-container {
      padding: 0 20px;
   }
   
   .reviews-carousel .review-card {
      min-width: 100%; /* 1 card per row on mobile */
   }
   
   .reviews-container .carousel-btn {
      display: none !important; /* Hide navigation buttons on mobile with !important */
   }
   
   .carousel-dots {
      margin-top: 15px;
      gap: 6px;
   }
   
   .carousel-dot {
      width: 8px;
      height: 8px;
   }
}

/* WHY CHOOSE US */
#why-choose-us {
   background: var(--cream);
   padding: 40px 5%;
}

.why-choose-grid {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 32px;
   margin-top: 40px;
}

.why-card {
   background: var(--white);
   border: 1px solid rgba(200, 169, 110, 0.15);
   border-radius: 8px;
   padding: 32px;
   text-align: center;
   transition: all 0.3s ease;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.why-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
   border-color: var(--gold);
}

.why-icon {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   background: rgba(200, 169, 110, 0.1);
   border: 2px solid #8b1e1e;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 20px;
   font-size: 1.3rem;
   color: #8b1e1e;
   transition: all 0.3s ease;
}

.why-card:hover .why-icon {
   background: #921a1a;
   color: var(--white);
   transform: scale(1.05);
}

.why-card h3 {
   font-family: 'Playfair Display', serif;
   font-size: 1.3rem;
   color: var(--dark);
   margin-bottom: 12px;
   font-weight: 600;
}

.why-card p {
   color: #000000;
   font-size: 16px;
   line-height: 1.4;
   margin: 0;
}

@media (max-width: 768px) {
   #why-choose-us {
      padding: 60px 4%;
   }
   
   .why-choose-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 32px;
   }
   
   .why-card {
      padding: 24px;
   }
   
   .why-icon {
      width: 50px;
      height: 50px;
      margin: 0 auto 16px;
      font-size: 1.1rem;
   }
   
   .why-card h3 {
      font-size: 1.1rem;
   }
   
   .why-card p {
      font-size: 0.85rem;
   }
}

@media (max-width: 480px) {
   #why-choose-us {
      padding: 40px 3%;
   }
   
   .why-choose-grid {
      grid-template-columns: 1fr;
      gap: 20px;
   }
   
   .why-card {
      padding: 20px;
   }
   
   .why-icon {
      width: 45px;
      height: 45px;
      margin: 0 auto 12px;
      font-size: 1rem;
   }
}

/* LIGHTBOX */
.lightbox {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.9);
   z-index: 9999;
   display: none;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: opacity 0.3s ease;
}

.lightbox.open {
   display: flex;
   opacity: 1;
}

.lightbox-content {
   position: relative;
   max-width: 90%;
   max-height: 90%;
   display: flex;
   align-items: center;
   justify-content: center;
}

.lightbox-img {
   max-width: 100%;
   max-height: 100%;
   object-fit: contain;
   border-radius: 4px;
}

.lightbox-close {
   position: absolute;
   top: 20px;
   right: 20px;
   background: var(--gold);
   color: var(--dark);
   border: 2px solid var(--gold);
   width: 40px;
   height: 40px;
   border-radius: 50%;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.1rem;
   transition: all 0.3s;
   z-index: 10;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.lightbox-close:hover {
   background: var(--gold-light);
   transform: scale(1.1);
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.lightbox-close:active {
   transform: scale(0.95);
}

.lightbox-nav {
   position: absolute;
   bottom: 20px;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   gap: 15px;
}

.lightbox-btn {
   background: var(--gold);
   color: var(--dark);
   border: 2px solid var(--gold);
   width: 45px;
   height: 45px;
   border-radius: 50%;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1rem;
   transition: all 0.3s;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
   z-index: 10;
}

.lightbox-btn:hover {
   background: var(--gold-light);
   transform: scale(1.1);
   box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.lightbox-btn:active {
   transform: scale(0.95);
}

@media (max-width: 768px) {
   .lightbox-close {
      width: 35px;
      height: 35px;
      top: 15px;
      right: 15px;
      font-size: 1rem;
   }
   
   .lightbox-btn {
      width: 40px;
      height: 40px;
      font-size: 0.9rem;
   }
   
   .lightbox-nav {
      bottom: 15px;
      gap: 12px;
   }
}

/* ENQUIRY PANEL */
.enq-overlay {
   position: fixed;
   inset: 0;
   background: rgba(0, 0, 0, 0.5);
   z-index: 2000;
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.3s;
}
.enq-overlay.open {
   opacity: 1;
   pointer-events: all;
}
.enq-drawer {
   position: fixed;
   top: 0;
   right: -460px;
   bottom: 0;
   width: 440px;
   max-width: 96vw;
   background: var(--cream);
   z-index: 2001;
   display: flex;
   flex-direction: column;
   transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
   box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}
.enq-drawer.open {
   right: 0;
}
.enq-header {
   background: #923231;
   padding: 22px 26px;
   display: flex;
   align-items: center;
   justify-content: space-between;
}
.enq-header-tag {
   font-size: 0.66rem;
   letter-spacing: 3px;
   text-transform: uppercase;
   color: var(--gold);
   margin-bottom: 4px;
}
.enq-header h3 {
   font-family: "Playfair Display", serif;
   font-size: 1.2rem;
   color: var(--cream);
}
.enq-close {
   background: none;
   border: none;
   cursor: pointer;
   font-size: 1.1rem;
   color: rgba(250, 246, 238, 0.45);
   transition: color 0.3s;
}
.enq-close:hover {
   color: var(--gold);
}
.enq-body {
   flex: 1;
   overflow-y: auto;
   padding: 26px;
}
.enq-contact-quick {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 10px;
   margin-bottom: 26px;
}
.enq-quick-btn {
   display: flex;
   align-items: center;
   gap: 9px;
   padding: 13px 14px;
   border: 1px solid rgba(200, 169, 110, 0.3);
   border-radius: 3px;
   background: var(--white);
   cursor: pointer;
   text-decoration: none;
   transition: all 0.25s;
}
.enq-quick-btn:hover {
   border-color: var(--gold);
   background: var(--cream-2);
}
.enq-quick-btn i {
   color: var(--gold);
   font-size: 0.95rem;
}
.enq-quick-btn span {
   font-size: 0.76rem;
   font-weight: 600;
   color: var(--dark);
}
.enq-quick-btn small {
   font-size: 0.66rem;
   color: var(--text-light);
   display: block;
}
.enq-divider {
   display: flex;
   align-items: center;
   gap: 12px;
   margin-bottom: 20px;
   color: var(--text-light);
   font-size: 0.75rem;
   letter-spacing: 1px;
   text-transform: uppercase;
}
.enq-divider::before,
.enq-divider::after {
   content: "";
   flex: 1;
   height: 1px;
   background: rgba(200, 169, 110, 0.25);
}
.enq-form {
   display: flex;
   flex-direction: column;
   gap: 14px;
}
.enq-field {
   display: flex;
   flex-direction: column;
   gap: 6px;
}
.enq-field label {
   font-size: 0.68rem;
   letter-spacing: 1.5px;
   text-transform: uppercase;
   color: var(--text-light);
}
.enq-field input,
.enq-field select,
.enq-field textarea {
   padding: 11px 14px;
   border: 1px solid rgba(200, 169, 110, 0.28);
   border-radius: 2px;
   background: var(--white);
   font-family: "Jost", sans-serif;
   font-size: 0.88rem;
   color: var(--text);
   outline: none;
   transition: border-color 0.3s;
}
.enq-field input:focus,
.enq-field select:focus,
.enq-field textarea:focus {
   border-color: var(--gold);
}
.enq-field textarea {
   resize: none;
   min-height: 88px;
}
.enq-submit {
   width: 100%;
   padding: 14px;
   background: #923231;
   color: #ffffff;
   border: none;
   cursor: pointer;
   border-radius: 2px;
   font-size: 0.78rem;
   font-family: "Jost", sans-serif;
   font-weight: 600;
   letter-spacing: 2px;
   text-transform: uppercase;
   transition: background 0.3s;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   margin-top: 4px;
}
.enq-submit:hover {
   background: var(--dark-2);
}
.enq-footer-note {
   padding: 14px 24px;
   background: var(--cream-2);
   border-top: 1px solid rgba(200, 169, 110, 0.15);
   text-align: center;
   font-size: 0.74rem;
   color: var(--text-light);
   line-height: 1.6;
}
.enq-footer-note i {
   color: var(--gold);
}

/* TOAST */
.toast {
   position: fixed;
   bottom: 28px;
   left: 50%;
   transform: translateX(-50%) translateY(18px);
   background: var(--dark);
   color: var(--cream);
   padding: 13px 24px;
   border-radius: 3px;
   font-size: 0.83rem;
   letter-spacing: 0.5px;
   display: flex;
   align-items: center;
   gap: 9px;
   opacity: 0;
   transition: all 0.3s;
   z-index: 4000;
   white-space: nowrap;
   box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}
.toast.show {
   opacity: 1;
   transform: translateX(-50%) translateY(0);
}
.toast i {
   color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
   .footer-grid {
      grid-template-columns: 1fr 1fr;
   }
}
@media (max-width: 768px) {
   .nav-links {
      display: none;
   }
   .hamburger {
      display: flex;
   }
   .footer-grid {
      grid-template-columns: 1fr;
   }
   .footer-bottom {
      flex-direction: column;
      text-align: center;
   }
}
