body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  /*  font-family: Arial, sans-serif;*/

  background-color: #F9FAFB;
  color: #333333;

}



/* Nos realisations in the index page Section */

.product-section {
  width: 100%;
  height: auto;
  background-color: #0b004a !important;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #fffefe;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 20px;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 150px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.product-container h1 {
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #222;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.product-name {
  padding: 15px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.3;
  color: #222;
}

.product-name br {
  display: none;
}

.product-name::after {
  content: attr(data-price);
  display: block;
  margin-top: 8px;
  font-weight: 500;
  color: #007BFF;
  font-size: 1rem;
}

/* Responsive styles */
@media (max-width: 1100px) {
  .product-container {
    padding: 20px 40px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

@media (max-width: 700px) {
  .product-container {
    padding: 10px 5px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-title {
    font-size: 1.3rem;
    padding: 12px;
  }

  .product-card {
    font-size: 0.98rem;
  }

  .product-img {
    height: 150px;
  }
}

.visible {
  display: block;
  color: red;
}

.hidden {
  display: none;
}

/* show ONe page design*/

.product-detail-card {
  max-width: 1000px;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  padding: 24px;
}

.detail-image {
  flex: 1 1 400px;
  padding: 10px;
  text-align: center;
}

.detail-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

.detail-info {
  flex: 1 1 500px;
  padding: 20px;
}

.detail-info h1 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: #222;
}

.detail-description {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 20px;
}

/* Gallery Images */
.product-detail-card img[src*="images/"] {

  margin: 8px;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.product-detail-card img[src*="images/"]:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media(max-width: 768px) {
  .product-detail-card {
    flex-direction: column;
  }

  .detail-image,
  .detail-info {
    flex: 1 1 100%;
  }
}

.image-gallery-show-page {

  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.image-gallery-show-page img {
  /* width: calc(33.333% - 8px); */
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 100;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  z-index: 20000;
}

.modal-content {
  margin: 3% auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  animation: fadeIn 0.4s;
}

.close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  z-index: 20001;
}

.close:hover {
  color: #ccc;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


/* Mobile adjustments */
@media screen and (max-width: 600px) {
  .modal {
    padding-top: 30px;
  }

  .modal-content {
    max-width: 95%;
    max-height: 70vh;
    border-radius: 6px;
    box-shadow: 0 0 12px rgba(7, 7, 7, 0.2);
  }

  .close {
    top: 15px;
    right: 20px;
    font-size: 32px;
  }
}

.container-test {
  display: flex;
  flex-direction: column;
  /* Stack on mobile */


}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  color: #fff;
  font-weight: bold;
  font-size: 40px;
  user-select: none;
  border-radius: 0 3px 3px 0;
  background: rgba(0, 0, 0, 0.3);
  transform: translateY(-50%);
}

.next {
  right: 20px;
  border-radius: 3px 0 0 3px;
}

.prev {
  left: 20px;
}

/* Box shared styles */
.box {
  flex: 1;
  color: #0f0f0f;
  text-align: left;
  display: flex;
  flex-direction: column;
  /* Ensure inner content flows vertically */
  box-sizing: border-box;
}

/* Left box */
.left-box {
  box-shadow: 0 0px 40px rgba(124, 124, 207, 0.8);
  background-color: #fff;
  font-family: 'Cormorant Garamond', Georgia, "Times New Roman", serif;
  padding-top: 20px;
  margin-top: 60px;
}

.left-box p {
  padding: 0 20px;
  font-size: 1.05rem;
  color: #0b004a !important;
  font-family: 'Karla', Helvetica, Arial, Lucida, sans-serif;
  line-height: 1.8em;
}

.left-box h2 {
  margin-top: 86px;
  color: #0b004a;
  font-size: 32px;
  line-height: 1.3em;
  padding: 0 20px;
}

/* Button */


/* Right box */
.right-box {
  box-shadow: 0 0px 40px rgba(124, 124, 207, 0.8);
  background-color: #fff;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  /* Make sure inner image fills the height */
}

.right-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Fill while keeping proportions */

  display: block;
}

/* 🖥 Responsive layout with equal height */
@media (min-width: 981px) {
  .container-test {
    flex-direction: row;
    /* Side-by-side layout */
    align-items: stretch;
    /* Ensures equal height for both children */
  }

  .left-box,
  .right-box {
    margin-top: 95px;
    padding-top: 40px;
  }

  .left-box h2 {
    font-size: 56px;
    margin-top: 86px;
    padding: 0 80px;
  }

  .left-box p {
    font-size: 1.2rem;
    padding: 0 80px;
  }

  .btn {
    margin-left: 80px;
  }
}

/* second box on the index page*/
.container-test2 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0b004a !important;
  color: #ffffff;
  width: 100%;
  height: 500px;
  box-sizing: border-box;
  text-align: center;
  padding: 20px;
}

.container-test2 .content {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  /* space between elements */
}

.container-test2 .logo2 {
  width: 200px;
  height: auto;
}

.container-test2 h2 {
  font-size: 2rem;
  margin: 0;
  font-family: 'Karla', Helvetica, Arial, Lucida, sans-serif;
  font-weight: bold;
}

.container-test2 p {
  font-size: 1.2rem;
  margin: 0;
  color: #ffffffB3;
  font-family: 'Karla', Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .container-test2 {
    height: auto;
    padding: 40px 20px;
  }

  .container-test2 h2 {
    font-size: 1.5rem;
  }

  .container-test2 p {
    font-size: 1rem;
  }

  .container-test2 .logo2 {
    width: 100px;
  }
}


/* login page design*/

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 20px;
}

.login-card {
  margin-top: 90px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.login-card h1 {
  margin-bottom: 30px;
  font-size: 2rem;
  color: #333;
}

.login-card form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-card label {
  text-align: left;
  font-weight: 600;
  color: #555;
}

.login-card input[type="email"],
.login-card input[type="password"] {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.login-card input[type="email"]:focus,
.login-card input[type="password"]:focus {
  border-color: #007bff;
  outline: none;
}

.btn-primary {
  background-color: #007bff;
  color: #fff;
  padding: 14px 0;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #6c757d;
  color: #fff;
  padding: 14px 0;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-secondary:hover {
  background-color: #5a6268;
  transform: translateY(-2px);
}

.success,
.error {
  padding: 12px 15px;
  border-radius: 8px;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.error {
  background-color: #ffe3e3;
  color: #d93025;
}

.success {
  background-color: #e6f4ea;
  color: #188038;
}

/* showOne not logget div*/
.auth-warning {
  background-color: #fff4f4;
  border: 1px solid #f5c6cb;
  color: #721c24;
  padding: 20px;

  max-width: 500px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.page-404 .error-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  text-align: center;
}

.page-404 .error-box {
  max-width: 600px;
  padding: 40px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.page-404 .error-code {
  font-size: 120px;
  color: #ff4c4c;
  margin-bottom: 10px;
}

.page-404 .error-title {
  font-size: 28px;
  margin-bottom: 20px;
}

.page-404 .error-message {
  font-size: 18px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 30px;
}

.page-404 .btn-home {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  background-color: #007BFF;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.page-404 .btn-home:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.page-404 footer {
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: #777;
}

/* confirmation page*/
.thank-you-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
}

.thank-you-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  max-width: 500px;
  text-align: center;
  animation: fadeIn 1s ease-in-out;
}

.thank-you-card h1 {
  color: #2c3e50;
  font-size: 28px;
  margin-bottom: 20px;
}

.thank-you-card p {
  color: #555555;
  font-size: 16px;
  line-height: 1.6;
}

.back-home-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 12px 24px;
  background-color: #3498db;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.back-home-btn:hover {
  background-color: #2c80b4;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* section index awesone design*/
/* nos services Section */
.services-container {
  gap: 20px;
  background-color: #ffffff;
  text-align: center;
}

.services-container h2 {
  font-size: 2.5rem;

  color: #0b004a;
  font-family: 'Cormorant Garamond', Georgia, serif;
}

.services-wrapper {
  display: flex;
  flex-direction: column;
}

/* Left side: Image */
.services-left img {
  width: 100%;
  height: auto;
  display: block;
}

.services-left {
  box-shadow: 5px 0px 20px rgba(124, 124, 207, 0.8);

}

/* Right side: Service list */


.services-right .service-list {
  display: grid;
  /* Add this line */
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;

}

.icon-index {
  font-size: 2rem;
  color: #ca8c43;
  margin-bottom: 10px;
}

.service-item h3 {
  font-size: 1.2rem;
  margin: 0 0 10px;
  font-family: 'Karla', Helvetica, sans-serif;
}

.service-item p {
  margin: 0;
  font-family: 'Karla', Helvetica, sans-serif;
  color: #333;
  size: 17px;
}

hr.renov {
  border: 1px #ca8c43 solid;
  width: 50%;
  align-items: center;
}

/* 🖥 Desktop: two columns */
@media (min-width: 961px) {
  .services-wrapper {
    flex-direction: row;
    align-items: flex-start;
  }

  .services-left,
  .services-right {
    flex: 1;
  }

  .services-right .service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.btn {
  width: 80%;
  max-width: 300px;
  height: 50px;
  background-color: #ca8c43;
  border: none;
  margin: 20px auto;
  /* Center on small screens */
  text-align: center;
  font-family: 'Karla', Helvetica, Arial, Lucida, sans-serif !important;

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;

}

.btn a {
  color: #fff;
  text-decoration: none;
}


/*design for page nos realisations */

.realisations {
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
  background: #f8f8f8;
}

/* Sidebar styles */
.sidebar {
  width: 260px;
  min-width: 200px;
  background: #fff;
  border-right: 1px solid #e0e0e0;
  padding: 30px 20px 20px 20px;
  box-sizing: border-box;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  margin-top: 140px;
}

.sidebar h2 {
  font-size: 22px;
  margin-bottom: 24px;
  color: #0b004a;
}

.sidebar-link {
  display: block;
  padding: 12px 10px;
  margin-bottom: 6px;
  color: #222;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.sidebar-link.active,
.sidebar-link:hover {
  background: #e6f0fa;
  color: #0b004a;
  font-weight: bold;
}

.content-area {
  flex: 1;
  padding: 40px 40px 40px 40px;
  margin-top: 120px;
  min-width: 0;
}

.realisation-category {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 32px 24px;
  margin-bottom: 32px;
}

.category-title {
  font-size: 32px;
  margin-top: 0px;
  font-weight: bold;
  color: #333;
 /* border-bottom: 2px solid #16a085; */
  padding-bottom: 10px;
}

.category-description {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin-top: 20px;
  margin-bottom: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}

.inspiration-item {
  background: #fafafa;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s;
  margin: 0 0 18px 0;
}

.inspiration-item:hover {
  transform: scale(1.03);
}

.gallery-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .realisations {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    min-width: 0;
    height: auto;
    position: static;
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .content-area {
    padding: 20px 10px;
  }
}

/*  inspirez- vous design page*/
.inspiration-page {
  max-width: 1300px;
  margin: 0 auto;
  padding: 40px 20px;
  margin-top: 100px;
}

.inspiration-header h1 {
  text-align: center;
  font-size: 50px;
  margin-bottom: 30px;
  color: #222;
}

.inspiration-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 50px;
}

.inspiration-filter {
  padding: 10px 24px;
  border: none;
  border-radius: 30px;
  background: #ddd;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}

.inspiration-filter:hover,
.inspiration-filter.active {
  background: #333;
  color: #fff;
}

.gallery-category {
  margin-bottom: 60px;
}

.gallery-category h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #444;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 5px;
}

.image-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.image-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.inspiration-item img {
  width: 100%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.inspiration-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive styles */
@media (max-width: 1200px) {
  .image-gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 900px) {
  .inspiration-header h1 {
    font-size: 2rem;
  }

  .gallery-category h2 {
    font-size: 1.4rem;
  }

  .image-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .inspiration-page {
    padding: 24px 8px;
    margin-top: 140px;
  }
}

@media (max-width: 700px) {
  .inspiration-header h1 {
    font-size: 1.2rem;
    margin-bottom: 18px;
  }

  .gallery-category h2 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .inspiration-filter {
    padding: 8px 14px;
    font-size: 0.95rem;
  }
}



/* Lightbox styles */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s ease;
}

.lightbox-overlay .close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  z-index: 20001;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* testrealisation page design */


.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: 20px;
  margin-top: 150px;
}

.category-card {
  
  width: 500px;
  height: 500px;
  border: 2px solid #ccc;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform 0.2s;
}
/*.categories-grid .category-card:nth-child(-n+3) {
  margin-top: 150px;
}
  */

.category-card:hover {
  transform: scale(1.02);
}

.image-grid {  
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
  width: 100%;
  height: 100%;
  background: #fcfdfd;
  box-sizing: border-box;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0; /* pour bien coller bord à bord si besoin */
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 48px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  user-select: none;
}

/* Title */
.category-title {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.6);
  color: white;
  width: 100%;
  padding: 10px;
  text-align: center;
  font-size: 1.2rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  z-index: 999;
  justify-content: center;
  align-items: center;
  padding: 40px;
}

.lightbox-content {
  background: #fff;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  border-radius: 12px;
  padding: 20px;
  position: relative;
}

.lightbox-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.lightbox-grid img {
  width: 250px;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
@media (max-width: 700px) {
  .categories-grid {
    flex-direction: column;
    gap: 16px;
    margin-left: 0;
    margin-top: 170px; /* space for navbar */
  }
  .category-card {
    width: 100%;
    height: 300px;
    margin-top: 0;
  }
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 3px;
    width: 100%;
    height: 100%;
  }
  .lightbox-grid img {
    width: 100%;
    height: auto;
  }
}

