 :root {
     --black: #0a0a0b;
     --header-bg: rgba(9, 9, 10, 0.62);
     --header-bg-solid: rgba(8, 8, 9, 0.94);
     --gold: #c9a866;
     --gold-light: #e0c993;
     --gold-dark: #a1804f;
     --white: #ffffff;
     --gray: #c9c8c6;
     --gray-dim: #8f8d8a;
     --font-head: 'Hanken Grotesk', sans-serif;
     --font-body: 'Hanken Grotesk', sans-serif;
     --container: 1360px;
     --header-h: 82px;
     --header-h-mobile: 68px;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Hanken Grotesk', sans-serif;
 }

 html {
     scroll-behavior: smooth;
 }

 body {
     font-family: "Hanken Grotesk", sans-serif;
     /* background: var(--black); */
     color: var(--white);
     overflow-x: hidden;
     -webkit-font-smoothing: antialiased;
 }

 body.menu-open {
     overflow: hidden;
 }

 img {
     max-width: 100%;
     display: block;
 }

 a {
     color: inherit;
     text-decoration: none;
 }

 ul {
     list-style: none;
 }

 button {
     cursor: pointer;
     background: none;
     border: none;
     color: inherit;
 }

 svg {
     display: block;
 }

 :focus-visible {
     outline: 2px solid var(--gold-light);
     outline-offset: 3px;
 }

 /* ================= HEADER ================= */
 .site-header {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1500;
     height: var(--header-h);
     display: flex;
     align-items: center;
     background: var(--header-bg);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(14px);
     /* border-bottom: 1px solid rgba(255, 255, 255, 0.07); */
     transition: 1s ease;
 }

 .site-header.scrolled {
     background: var(--header-bg-solid);
 }

 .header-inner {
     max-width: var(--container);
     margin: 0 auto;
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 20px;
     padding: 10 40px;
 }

 /* ---- Logo ---- */
 /* ---- Logo ---- */
 .logo {
     display: flex;
     align-items: center;
     flex-shrink: 0;
 }

 .logo-img {
     max-height: 65px;
     /* Adjust this value to make your logo bigger or smaller */
     width: auto;
     object-fit: contain;
 }



 /* ---- Desktop nav ---- */
 .main-nav {
     display: flex;
 }

 .nav-list {
     display: flex;
     align-items: center;
     gap: 32px;
 }

 .nav-item {
     position: relative;
 }

 .nav-link {
     display: flex;
     align-items: center;
     gap: 6px;
     color: var(--white);
     font-size: 14px;
     font-weight: 300;
     letter-spacing: .7px;
     text-transform: uppercase;
     padding: 12px 1px;
     position: relative;
 }

 .nav-link .chev {
     color: var(--gray-dim);
     transition: transform .3s ease, color .3s ease;
 }

 .nav-item:hover .nav-link,
 .nav-item.open .nav-link {
     color: var(--gold-light);
 }

 .nav-item:hover .chev,
 .nav-item.open .chev {
     transform: rotate(180deg);
     color: var(--gold);
 }

 .nav-link.is-active {
     color: var(--gold);
 }

 .nav-link.is-active::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 4px;
     width: 100%;
     height: 2px;
     background: var(--gold);
     border-radius: 1px;
 }

 /* ---- Dropdown ---- */
 .dropdown {
     position: absolute;
     top: calc(100% + 24px);
     left: 50%;
     transform: translate(-50%, 10px);
     min-width: 225px;
     z-index: 20;
     background: linear-gradient(165deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-dark) 100%);
     border-radius: 6px;
     overflow: hidden;
     box-shadow: 0 30px 60px -10px rgba(0, 0, 0, .55);
     opacity: 0;
     visibility: hidden;
     transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
 }

 .nav-item.open .dropdown,
 .nav-item:hover .dropdown {
     opacity: 1;
     visibility: visible;
     transform: translate(-50%, 0);
 }

 .dropdown li a {
     display: block;
     padding: 13px 26px;
     font-size: 12.5px;
     font-weight: 700;
     letter-spacing: .9px;
     color: white;
     text-transform: uppercase;
     border-bottom: 1px solid rgba(0, 0, 0, .13);
     transition: background .2s ease, padding-left .2s ease;
 }

 .dropdown li:last-child a {
     border-bottom: none;
 }

 .dropdown li a:hover {
     background: rgba(0, 0, 0, .16);
     padding-left: 32px;
 }

 /* ---- CTA ---- */
 .cta {
     display: inline-flex;
     align-items: center;
     gap: 9px;
     background: var(--gold);
     color: #161616;
     font-size: 13.5px;
     font-weight: 700;
     padding: 13px 22px 13px 26px;
     border-radius: 8px;
     flex-shrink: 0;
     white-space: nowrap;
     transition: .3s ease, transform .3s ease;
     font-family: "Hanken Grotesk", sans-serif;
 }

 .cta:hover {
     color: white;
     background: var(--gold-light);
     transform: translateY(-2px);
 }

 .cta svg {
     width: 14px;
     height: 14px;
     flex-shrink: 0;
 }

 /* ---- Hamburger ---- */
 .hamburger {
     display: none;
     flex-direction: column;
     justify-content: center;
     gap: 5px;
     width: 34px;
     height: 34px;
     flex-shrink: 0;
     position: relative;
     z-index: 10;
 }

 .hamburger span {
     width: 100%;
     height: 2px;
     background: var(--white);
     border-radius: 2px;
     transition: transform .3s ease, opacity .3s ease, width .3s ease;
 }

 .hamburger.active span:nth-child(1) {
     transform: translateY(7px) rotate(45deg);
     width: 100%;
 }

 .hamburger.active span:nth-child(2) {
     opacity: 0;
 }

 .hamburger.active span:nth-child(3) {
     transform: translateY(-7px) rotate(-45deg);
     width: 100%;
 }

 /* ================= MOBILE MENU ================= */
 .mobile-backdrop {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, .6);
     z-index: 1300;
     opacity: 0;
     visibility: hidden;
     transition: opacity .35s ease, visibility .35s ease;
 }

 .mobile-backdrop.active {
     opacity: 1;
     visibility: visible;
 }

 .mobile-menu {
     position: fixed;
     top: 0;
     right: -100%;
     width: min(84%, 360px);
     height: 100%;
     background: #101010;
     z-index: 1400;
     padding: calc(var(--header-h) + 16px) 30px 40px;
     overflow-y: auto;
     transition: right .4s cubic-bezier(.4, 0, .2, 1);
     border-left: 1px solid rgba(255, 255, 255, .06);
 }

 .mobile-menu.active {
     right: 0;
 }

 .mobile-nav-list {
     display: flex;
     flex-direction: column;
 }

 .mobile-nav-list>li {
     border-bottom: 1px solid rgba(255, 255, 255, .09);
 }

 .mobile-nav-link {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     color: #fff;
     font-size: 16px;
     font-weight: 300;
     font-family: "Hanken Grotesk", sans-serif;
     letter-spacing: .5px;
     text-transform: uppercase;
     padding: 17px 2px;
 }

 .mobile-nav-link.is-active {
     color: var(--gold);
 }

 .mobile-nav-link .chev {
     transition: transform .3s ease, color .3s ease;
     color: var(--gray-dim);
 }

 .mobile-item.open .mobile-nav-link .chev {
     transform: rotate(180deg);
     color: var(--gold);
 }

 .mobile-dropdown {
     max-height: 0;
     overflow: hidden;
     transition: max-height .4s ease;
 }

 .mobile-item.open .mobile-dropdown {
     max-height: 420px;
 }

 .mobile-dropdown li a {
     display: block;
     padding: 11px 14px 11px 6px;
     font-size: 13.5px;
     font-weight: 600;
     letter-spacing: .6px;
     color: var(--gold-light);
     text-transform: uppercase;
 }

 .mobile-dropdown li:first-child a {
     padding-top: 14px;
 }

 .mobile-cta {
     margin-top: 30px;
     justify-content: center;
     width: 100%;
 }

 /* ================= HERO ================= */
 .hero {
     position: relative;
     /* Sets hero height to 75% of the viewport height */
     min-height: 75vh;
     display: flex;
     align-items: center;
     justify-content: center;
     padding-top: var(--header-h, 80px);
     background-image: url('..//assets/MSInteriorsAssets/HOMEPAGEIMAGES/SERVICESIMAGES/KITCHEN\ LANDSCAPE\ BANNER.png');
     /* Fixed path syntax */
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
 }

 #hero {
     position: relative;
     z-index: 1;
 }

 .hero-overlay {
     position: absolute;
     inset: 0;
     background:
         linear-gradient(90deg, rgba(3, 3, 3, .93) 0%, rgba(3, 3, 3, .74) 30%, rgba(3, 3, 3, .38) 62%, rgba(3, 3, 3, .14) 100%),
         linear-gradient(0deg, rgba(0, 0, 0, .5) 0%, transparent 40%);
 }

 .hero-inner {
     position: relative;
     z-index: 2;
     max-width: var(--container, 1200px);
     width: 100%;
     margin: 0 auto;
     padding: 0 40px;
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .hero-content {
     max-width: 660px;
     width: 100%;
     margin: 0 auto;
     text-align: center;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .hero-title {
     font-family: "Hanken Grotesk", sans-serif;
     font-size: clamp(2rem, 4.3vw, 3.55rem);
     font-weight: 700;
     line-height: 1.22;
     letter-spacing: -.5px;
     margin-bottom: 0;
     text-align: center;
     width: 100%;
     color: #ffffff;
 }

 /* ================= RESPONSIVE MEDIA QUERIES ================= */
 @media (max-width: 1200px) {
     .header-inner {
         padding: 0 28px;
     }

     .nav-list {
         gap: 22px;
     }

     .hero-inner {
         padding: 0 28px;
     }
 }

 @media (max-width: 992px) {

     .main-nav,
     .cta.desktop-cta {
         display: none;
     }

     .hamburger {
         display: flex;
     }

     .site-header {
         height: var(--header-h-mobile, 70px);
     }

     .hero {
         min-height: 65vh;
         /* Slightly smaller on tablets so content fits nicely */
         padding-top: var(--header-h-mobile, 70px);
     }

     .mobile-menu {
         padding-top: calc(var(--header-h-mobile, 70px) + 16px);
     }
 }

 @media (max-width: 600px) {
     .header-inner {
         padding: 0 20px;
     }

     .hero {
         min-height: 55vh;
         /* Keeps hero proportional on mobile screens */
         background-image: url('..//assets/MSInteriorsAssets/HOMEPAGEIMAGES/SERVICESIMAGES/KITCHEN\ PORTRAIT\ BANNER.png');
         /* Fixed path syntax */
         background-size: fill;
         background-position: center;
         background-repeat: no-repeat;
     }

     .hero-inner {
         padding: 0 22px;
     }

     .hero-title {
         font-size: clamp(1.65rem, 7vw, 2.3rem);
     }

     .mobile-menu {
         width: 100%;
         padding-left: 26px;
         padding-right: 26px;
     }

     .logo-img {
         max-height: 50px;
         width: auto;
         object-fit: contain;
     }
 }

 @media (prefers-reduced-motion: reduce) {
     * {
         transition-duration: 0.01ms !important;
         scroll-behavior: auto !important;
     }
 }

 /* ================= FIXED SOCIAL MEDIA ICONS ================= */
 .floating-widget-wrapper {
     position: fixed;
     bottom: 25px;
     right: 20px;
     z-index: 99999;
     display: flex;
     flex-direction: column;
     gap: 12px;
     align-items: center;
 }

 .floating-btn {
     position: relative;
     width: 52px;
     height: 52px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
     transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
     -webkit-tap-highlight-color: transparent;
 }

 .floating-btn:hover {
     transform: scale(1.1);
     box-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
 }

 .floating-btn:active {
     transform: scale(0.95);
 }

 .whatsapp-btn {
     background-color: #25D366;
 }

 .instagram-btn {
     background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
 }

 .notification-badge {
     position: absolute;
     top: -2px;
     left: -2px;
     background-color: #ff3b30;
     color: #ffffff;
     font-size: 11px;
     font-weight: 700;
     width: 20px;
     height: 20px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     border: 2px solid #ffffff;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
     line-height: 1;
 }

 @media (max-width: 576px) {
     .floating-widget-wrapper {
         bottom: 18px;
         right: 14px;
         gap: 10px;
     }

     .floating-btn {
         width: 46px;
         height: 46px;
     }

     .floating-btn svg {
         width: 22px;
         height: 22px;
     }

     .notification-badge {
         width: 18px;
         height: 18px;
         font-size: 10px;
         top: -2px;
         left: -2px;
     }
 }

 /* FOOTER */
 .footer-section-wrapper {
     position: relative;
     z-index: 40;
     /* Sits cleanly above FAQ section */
     isolation: isolate;
     width: 100%;
     background-color: #0b0b0b;
     /* Matte black background */
     color: #ffffff;
     padding: 4.5rem 2rem 2rem;
     clear: both;
 }

 .footer-container {
     max-width: 1240px;
     width: 100%;
     margin: 0 auto;
 }

 /* Footer Layout Grid */
 .footer-grid {
     display: grid;
     grid-template-columns: 2.2fr 1fr 1fr;
     gap: 4rem;
     align-items: start;
 }

 /* Brand Column & Logo */
 .footer-brand-col {
     display: flex;
     flex-direction: column;
     gap: 1.5rem;
     max-width: 440px;
 }

 .footer-logo-link {
     display: inline-block;
     max-width: 150px;
     width: 100%;
     height: auto;
     transition: opacity 0.25s ease;
 }

 .footer-logo-link:hover {
     opacity: 0.88;
 }

 .footer-logo-img {
     width: 100%;
     height: auto;
     max-height: 80px;
     display: block;
     object-fit: contain;
 }

 .footer-about-text {
     font-size: 0.95rem;
     line-height: 1.65;
     color: #cccccc;
     font-weight: 300;
     margin: 0;
 }

 /* Social Icons Styling */
 .footer-social-icons {
     display: flex;
     align-items: center;
     gap: 1.15rem;
     margin-top: 0.25rem;
 }

 .social-icon-btn {
     color: #ffffff;
     display: flex;
     align-items: center;
     justify-content: center;
     width: 24px;
     height: 24px;
     transition: transform 0.25s ease, color 0.25s ease;
     text-decoration: none;
 }

 .social-icon-btn:hover {
     color: #D4AF37;
     /* Metallic Gold Accent */
     transform: translateY(-3px);
 }

 /* Navigation Columns */
 .footer-nav-col {
     display: flex;
     flex-direction: column;
 }

 .footer-heading {
     font-size: 0.9rem;
     font-weight: 700;
     letter-spacing: 0.08em;
     color: #ffffff;
     margin-bottom: 1.5rem;
     text-transform: uppercase;
 }

 .footer-menu {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-direction: column;
     gap: 1.1rem;
 }

 .footer-menu li a {
     color: #e0e0e0;
     text-decoration: none;
     font-size: 0.85rem;
     font-weight: 400;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     transition: color 0.25s ease, padding-left 0.25s ease;
     display: inline-block;
 }

 .footer-menu li a:hover {
     color: #D4AF37;
     padding-left: 4px;
 }

 /* Footer Bottom Bar & Divider */
 .footer-bottom {
     margin-top: 4rem;
     width: 100%;
     text-align: center;
 }

 .footer-divider {
     border: 0;
     height: 1px;
     background: rgba(255, 255, 255, 0.18);
     margin-bottom: 1.75rem;
     width: 100%;
 }

 .copyright-text {
     font-size: 0.85rem;
     color: #888888;
     font-weight: 300;
     letter-spacing: 0.02em;
     margin: 0;
 }


 /* ==========================================================================
   3. 100% RESPONSIVE BREAKPOINTS (ALL DEVICES & MOBILES)
   ========================================================================== */

 /* Tablet Devices (< 992px) */
 @media (max-width: 992px) {

     /* FAQ Section Tablet Adjustments */
     .faq-section-wrapper {
         padding: 4rem 1.25rem;
     }

     .faq-grid {
         grid-template-columns: 1fr;
         gap: 3rem;
     }

     .faq-title {
         font-size: 2.1rem;
     }

     .faq-image-wrapper {
         order: 2;
     }

     .faq-image-wrapper img {
         max-width: 520px;
     }

     /* Footer Section Tablet Adjustments */
     .footer-section-wrapper {
         padding: 3.5rem 1.5rem 1.75rem;
     }

     .footer-grid {
         grid-template-columns: 1fr 1fr;
         gap: 3rem 2rem;
     }

     .footer-brand-col {
         grid-column: 1 / -1;
         max-width: 100%;
     }

     .footer-bottom {
         margin-top: 3rem;
     }
 }

 /* Mobile Devices (< 576px) */
 @media (max-width: 576px) {

     /* FAQ Section Mobile Adjustments */
     .faq-section-wrapper {
         padding: 3rem 1rem;
     }

     .faq-header {
         margin-bottom: 1.75rem;
     }

     .faq-title {
         font-size: 1.75rem;
     }

     .faq-subtitle {
         font-size: 0.95rem;
     }

     .faq-question {
         padding: 1.2rem 0;
         font-size: 1rem;
     }

     .faq-icon-badge {
         width: 32px;
         height: 32px;
     }

     .faq-icon-badge svg {
         width: 12px;
         height: 12px;
     }

     .faq-answer-text {
         font-size: 0.9rem;
         padding-bottom: 1.25rem;
         padding-right: 0.5rem;
     }

     .faq-image-wrapper img {
         max-width: 100%;
     }

     /* Footer Section Mobile Adjustments */
     .footer-section-wrapper {
         padding: 3rem 1.25rem 1.5rem;
     }

     .footer-grid {
         grid-template-columns: 1fr;
         gap: 2.5rem;
     }

     .footer-brand-col {
         gap: 1.25rem;
     }

     .footer-logo-link {
         max-width: 130px;
     }

     .footer-about-text {
         font-size: 0.875rem;
         line-height: 1.6;
     }

     .footer-heading {
         margin-bottom: 1.15rem;
         font-size: 0.85rem;
     }

     .footer-menu {
         gap: 0.95rem;
     }

     .footer-menu li a {
         font-size: 0.825rem;
         padding: 4px 0;
         /* Expanded touch targets for mobile fingers */
     }

     .footer-social-icons {
         gap: 1.5rem;
     }

     .social-icon-btn {
         width: 28px;
         height: 28px;
     }

     .footer-bottom {
         margin-top: 2.5rem;
     }

     .copyright-text {
         font-size: 0.78rem;
     }
 }

 /* ------------------------------------------- */

 /* IMAGES AND VIDEOS */
 .gallery-section {
     position: relative;
     z-index: 10;
     width: 100%;
     background-color: #ffffff;
     padding: 3rem 1.5rem 5rem 1.5rem;
     clear: both;
 }

 .gallery-section * {
     box-sizing: border-box;
 }

 .gallery-container {
     max-width: 1200px;
     margin: 0 auto;
 }

 /* --- 3-Column Grid Layout --- */
 .gallery-grid {
     display: grid;
     grid-template-columns: repeat(3, 2fr);
     gap: 1.5rem;
 }

 /* Individual Image Card */
 .gallery-item {
     position: relative;
     width: 100%;
     aspect-ratio: 4 / 3;
     /* Matches standard landscape photo ratio */
     border-radius: 12px;
     overflow: hidden;
     background-color: #f3f4f6;
     box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
     cursor: pointer;
     transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s ease;
 }

 .gallery-item img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
     display: block;
     transition: transform 0.4s ease;
 }

 /* Hover Overlay & Effect */
 .gallery-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.35);
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .zoom-icon {
     font-size: 1.75rem;
     color: #ffffff;
     transform: scale(0.8);
     transition: transform 0.3s ease;
 }

 .gallery-item:hover {
     transform: translateY(-4px);
     box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
 }

 .gallery-item:hover img {
     transform: scale(1.05);
 }

 .gallery-item:hover .gallery-overlay {
     opacity: 1;
 }

 .gallery-item:hover .zoom-icon {
     transform: scale(1);
 }


 /* --- Lightbox Full-Screen Modal --- */
 .lightbox-modal {
     display: none;
     position: fixed;
     z-index: 99999;
     top: 0;
     left: 0;
     width: 100vw;
     height: 100vh;
     background-color: rgba(0, 0, 0, 0.88);
     backdrop-filter: blur(8px);
     -webkit-backdrop-filter: blur(8px);
     justify-content: center;
     align-items: center;
     padding: 2rem;
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .lightbox-modal.active {
     display: flex;
     opacity: 1;
 }

 .lightbox-wrapper {
     position: relative;
     max-width: 90vw;
     max-height: 85vh;
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .lightbox-content {
     max-width: 100%;
     max-height: 80vh;
     border-radius: 12px;
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
     object-fit: contain;
     transform: scale(0.92);
     transition: transform 0.3s ease;
 }

 .lightbox-modal.active .lightbox-content {
     transform: scale(1);
 }

 .lightbox-caption {
     color: #f3f4f6;
     font-size: 0.95rem;
     margin-top: 0.85rem;
     text-align: center;
     font-weight: 500;
     letter-spacing: 0.3px;
 }

 /* Close Button */
 .lightbox-close {
     position: absolute;
     top: 25px;
     right: 35px;
     background: rgba(255, 255, 255, 0.15);
     border: none;
     color: #ffffff;
     font-size: 2.2rem;
     width: 48px;
     height: 48px;
     border-radius: 50%;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     line-height: 1;
     transition: background-color 0.2s ease, transform 0.2s ease;
 }

 .lightbox-close:hover {
     background: rgba(255, 255, 255, 0.3);
     transform: scale(1.08);
 }


 /* ==========================================================================
   100% RESPONSIVE BREAKPOINTS (ALL MOBILE & TABLET DEVICES)
   ========================================================================== */

 @media (max-width: 992px) {
     .gallery-section {
         padding: 2.5rem 1.25rem 4rem 1.25rem;
     }

     .gallery-grid {
         grid-template-columns: repeat(2, 1fr);
         /* 2 columns on tablets */
         gap: 1.25rem;
     }
 }

 @media (max-width: 576px) {
     .gallery-section {
         padding: 2rem 1rem 3.5rem 1rem;
     }

     .gallery-grid {
         grid-template-columns: 1fr;
         /* 1 column on mobile phones */
         gap: 1rem;
     }

     .gallery-item {
         border-radius: 10px;
     }

     .lightbox-modal {
         padding: 1rem;
     }

     .lightbox-close {
         top: 15px;
         right: 15px;
         width: 40px;
         height: 40px;
         font-size: 1.8rem;
     }

     .lightbox-content {
         max-height: 75vh;
         border-radius: 8px;
     }
 }