/** Shopify CDN: Minification failed

Line 23:13 Expected identifier but found whitespace
Line 23:15 Unexpected "{"
Line 23:24 Expected ":"
Line 37:8 Expected identifier but found whitespace
Line 37:10 Unexpected "{"
Line 37:19 Expected ":"
Line 75:8 Expected identifier but found whitespace
Line 75:10 Unexpected "{"
Line 75:19 Expected ":"
Line 96:8 Expected identifier but found whitespace
... and 2 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:packages (INDEX:66) */
.wedding-packages {
  padding: 80px 20px;
  background: {{ section.settings.bg_color }};
  text-align: center;
}

.wp-heading {
  font-size: 38px;
  font-style: italic;
  margin-bottom: 10px;
}

.wp-subheading {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 50px;
  color: {{ section.settings.subheading_color }};
}

.wp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.wp-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wp-title {
  font-style: italic;
  font-size: 20px;
  margin-bottom: 10px;
}

.wp-price {
  font-size: 26px;
  color: #ff2d7a;
  margin-bottom: 15px;
}

.wp-label {
  font-size: 12px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: {{ section.settings.label_color }};
}

.wp-feature {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}

.wp-feature::before {
  content: "✔";
  color: #ff2d7a;
  margin-right: 10px;
}

/* NEW SMALL TEXT */
.wp-small-text {
  font-size: 12px;
  text-align: center;
  margin-bottom: 10px;
  color: {{ section.settings.small_text_color }};
}

.wp-button {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 30px;
  border: 2px solid #ff2d7a;
  color: #ff2d7a;
  text-decoration: none;
  transition: 0.3s;
}

.wp-button:hover {
  background: #ff2d7a;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .wp-grid {
    grid-template-columns: 1fr;
  }

  .wp-heading {
    font-size: 28px;
  }
}
/* END_SECTION:packages */