/** Shopify CDN: Minification failed

Line 23:19 Expected identifier but found whitespace
Line 23:21 Unexpected "{"
Line 23:30 Expected ":"
Line 24:14 Expected identifier but found whitespace
Line 24:16 Unexpected "{"
Line 24:25 Expected ":"
Line 24:59 Expected ":"
Line 25:17 Expected identifier but found whitespace
Line 25:19 Unexpected "{"
Line 25:28 Expected ":"
... and 8 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:photo-fix-services (INDEX:59) */
.photo-restoration-section {
  text-align: center;
  background-color: {{ section.settings.section_background_color }};
  padding-top: {{ section.settings.section_padding_top }}px;
  padding-bottom: {{ section.settings.section_padding_bottom }}px;
}

.photo-restoration-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.photo-restoration-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 600;
}
.photo-restoration-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* first row aligned left */
  gap: 20px; /* gap between all cards */
}

/* Card wrapper */
.photo-restoration-card {
  flex: 1 1 calc(25% - 15px); /* 4 cards per row width */
  max-width: calc(25% - 15px); /* prevent stretching */
  background: {{ section.settings.card_background_color }};
  border-radius: {{ section.settings.card_border_radius }}px;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: left;
  min-width: 250px; /* ensures card doesn't shrink too much */
}

.photo-restoration-card:hover {
  transform: translateY(-5px);
}

.photo-restoration-card img {
  width: 100%;
  display: block;
}

.photo-restoration-card-content {
  padding: 15px 20px;
}

.photo-restoration-card-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;text-align:center;
  text-transform: uppercase;
}

.photo-restoration-card-content p {
  font-size: 14px;
  line-height: 1.5;
  color: #555;text-align:center;
}

/* Center the last row */
.photo-restoration-grid .last-row {
  flex: 1 1 100%;
  display: flex;
  justify-content: center; /* center the two cards */
  gap: 20px;
}

.photo-restoration-grid .last-row .photo-restoration-card {
  flex: 1 1 calc(25% - 15px); /* same width as top row */
  max-width: calc(25% - 15px);
}

/* Responsive adjustments */
@media (max-width: 1100px) {
.photo-restoration-card {
    min-width: 220px;
}
.photo-restoration-grid .last-row {
  gap: 8px;
}}
/* Medium screens - 2 cards per row */
@media (max-width: 991px) {
.photo-restoration-card {
    min-width: 220px;
}
.photo-restoration-grid .last-row {
  gap: 8px;
}
  .photo-restoration-card,
  .photo-restoration-grid .last-row .photo-restoration-card {
    flex: 1 1 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

/* Small screens - 1 card per row */
@media (max-width: 575px) {
  .photo-restoration-card,
  .photo-restoration-grid .last-row .photo-restoration-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .photo-restoration-grid .last-row {
    justify-content: flex-start; /* stacked cards aligned left on mobile */
  }.photo-restoration-grid .last-row {
    flex: 1 1 100%;
    display: block;
    justify-content: center;
    gap: 20px;
}
.dfdh2{font-size: 21px;}
}
/* END_SECTION:photo-fix-services */