/** Shopify CDN: Minification failed

Line 20:19 Expected identifier but found whitespace
Line 20:21 Unexpected "{"
Line 20:30 Expected ":"
Line 21:10 Expected identifier but found whitespace
Line 21:12 Unexpected "{"
Line 21:21 Expected ":"
Line 21:70 Unexpected "0"
Line 21:73 Unexpected "{"
Line 21:82 Expected ":"
Line 21:133 Expected ":"
... and 248 more hidden warnings

**/


/* CSS from section stylesheet tags */
.product-grid-section {
  background-color: {{ section.settings.background_color | default: '#F7F4F1' }};
  padding: {{ section.settings.section_padding_top | default: 50 }}px 0 {{ section.settings.section_padding_bottom | default: 50 }}px 0;
  text-align: center;
  position: relative;
}

.section-header {
  margin-bottom: {{ section.settings.header_margin_bottom | default: 30 }}px;
  padding: 0 {{ section.settings.container_padding | default: 20 }}px;
  text-align: center;
}

.section-header h2 {
  margin: 0;
  font-size: 36px;
  font-weight: bold;
  font-family: Cardo, serif;
  color: #000000;
}

.main-container {
  padding: 0 {{ section.settings.container_padding | default: 20 }}px;
  max-width: {{ section.settings.container_max_width | default: 1400 }}px;
  margin: 0 auto;
  width: 100%;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  justify-items: start;
  gap: 20px;
  max-width: 1450px;
  margin: auto;
}

.product-card {
  background: white;
  border-radius: {{ section.settings.card_border_radius | default: 20 }}px;
  padding: {{ section.settings.card_padding | default: 20 }}px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  margin-bottom: {{ section.settings.card_margin_bottom | default: 0 }}px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.product-badge {
  background: #003b73;
  color: white;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  position: absolute;
  top: {{ section.settings.card_padding | default: 20 }}px;
  left: {{ section.settings.card_padding | default: 20 }}px;
  z-index: 5;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sale-badge {
  background: linear-gradient(135deg, #e74c3c, #c0392b) !important;
}

.new-badge {
  background: linear-gradient(135deg, #27ae60, #2ecc71) !important;
}

.product-image-container {
  position: relative;
  border-radius: {{ section.settings.image_border_radius | default: 15 }}px;
  overflow: hidden;
  margin-bottom: {{ section.settings.image_margin_bottom | default: 15 }}px;
  width: 100%;
  aspect-ratio: 5 / 4.3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: {{ section.settings.product_info_gap | default: 8 }}px;
}

.product-vendor {
  font-size: 14px;
  color: #888;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-title {
  font-size: {{ section.settings.title_font_size | default: 18 }}px;
  font-weight: 700;
  color: {{ section.settings.text_color | default: '#333' }};
  line-height: 1.4;
  margin: {{ section.settings.title_margin | default: 8 }}px 0;
}

.product-price {
  font-size: {{ section.settings.price_font_size | default: 20 }}px;
  font-weight: 700;
  color: {{ section.settings.text_color | default: '#333' }};
  margin: {{ section.settings.price_margin | default: 8 }}px 0;
}

.compare-price {
  text-decoration: line-through;
  color: #999;
  font-size: {{ section.settings.price_font_size | default: 20 | minus: 4 }}px;
  margin-right: 8px;
  font-weight: 500;
}

.product-variants {
  margin: {{ section.settings.variants_margin | default: 15 }}px 0;
}

.variant-selector {
  margin: 8px 0;
  text-align: left;
}

.variant-selector label {
  display: block;
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.variant-selector select {
  width: 100%;
  padding: 8px 12px;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 14px;
  background: white;
  cursor: pointer;
  transition: border-color 0.3s;
}

.variant-selector select:focus {
  outline: none;
  border-color: {{ section.settings.button_color | default: '#000' }};
}

.quantity-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: {{ section.settings.quantity_margin | default: 15 }}px 0;
}

.quantity-btn {
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
  color: #495057;
}

.quantity-btn:hover:not(:disabled) {
  background: {{ section.settings.button_color | default: '#000' }};
  color: {{ section.settings.button_text_color | default: '#fff' }};
  border-color: {{ section.settings.button_color | default: '#000' }};
}

.quantity-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.quantity-input {
  width: 60px;
  text-align: center;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  padding: 8px;
  font-size: 14px;
  font-weight: 600;
}

.quantity-input:focus {
  outline: none;
  border-color: {{ section.settings.button_color | default: '#000' }};
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: {{ section.settings.actions_gap | default: 12 }}px;
  margin-top: auto;
  padding-top: {{ section.settings.actions_padding_top | default: 0 }}px;
}

.add-to-cart-btn {
  background: {{ section.settings.button_color | default: '#000' }};
  color: {{ section.settings.button_text_color | default: '#fff' }};
  padding: {{ section.settings.button_padding_vertical | default: 16 }}px {{ section.settings.button_padding_horizontal | default: 24 }}px;
  border-radius: {{ section.settings.button_border_radius | default: 12 }}px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  font-size: {{ section.settings.button_font_size | default: 14 }}px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.add-to-cart-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.add-to-cart-btn:hover::before {
  left: 100%;
}

.add-to-cart-btn:hover:not(:disabled) {
  background-color: #ffffff !important;
  outline: 2px solid {{ section.settings.button_color | default: '#111' }} !important;
  color: {{ section.settings.button_color | default: '#000' }} !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.add-to-cart-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.add-to-cart-btn.loading {
  color: transparent;
}

.add-to-cart-btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid {{ section.settings.button_text_color | default: '#fff' }};
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.product-link {
  color: #666;
  text-decoration: none;
  font-size: {{ section.settings.link_font_size | default: 14 }}px;
  padding: {{ section.settings.link_padding | default: 8 }}px 16px;
  border-radius: 8px;
  transition: all 0.3s;
  font-weight: 500;
}

.product-link:hover {
  color: {{ section.settings.button_color | default: '#000' }};
  background: #f8f9fa;
}

.no-products {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.no-products h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: {{ section.settings.text_color | default: '#333' }};
}

.no-products p {
  font-size: 16px;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .main-container {
    padding: 0 {{ section.settings.container_padding | default: 20 | minus: 5 }}px;
  }
  
  .product-grid {
    grid-template-columns: repeat({{ section.settings.grid_columns_tablet | default: 3 }}, 1fr);
    gap: {{ section.settings.grid_gap | default: 20 | minus: 5 }}px;
  }
}

@media (max-width: 768px) {
  .product-grid-section {
    padding: {{ section.settings.section_padding_top | default: 50 | times: 0.6 }}px 0 {{ section.settings.section_padding_bottom | default: 50 | times: 0.6 }}px 0;
  }
  
  .section-header {
    padding: 0 {{ section.settings.container_padding | default: 20 | minus: 5 }}px;
  }
  
  .section-header h2 {
    font-size: {{ section.settings.heading_font_size | default: 36 | times: 0.78 }}px;
  }
  
  .main-container {
    padding: 0 {{ section.settings.container_padding | default: 20 | minus: 5 }}px;
  }
  
  .product-card {
    padding: {{ section.settings.card_padding | default: 20 | minus: 5 }}px;
    max-width: none;
  }
  
  .product-grid {
    grid-template-columns: repeat({{ section.settings.grid_columns_mobile | default: 2 }}, 1fr);
    gap: {{ section.settings.grid_gap | default: 20 | minus: 5 }}px;
  }
  
  .product-title {
    font-size: {{ section.settings.title_font_size | default: 18 | minus: 2 }}px;
  }
  
  .product-price {
    font-size: {{ section.settings.price_font_size | default: 20 | minus: 2 }}px;
  }
}

@media (max-width: 480px) {
  .product-card {
    padding: {{ section.settings.card_padding | default: 20 | minus: 8 }}px;
  }
  
  .main-container {
    padding: 0 {{ section.settings.container_padding | default: 20 | minus: 10 }}px;
  }
  
  .product-grid {
    grid-template-columns: repeat({{ section.settings.grid_columns_mobile_small | default: 1 }}, 1fr);
    gap: {{ section.settings.grid_gap | default: 20 | minus: 8 }}px;
  }
  
  .section-header {
    padding: 0 {{ section.settings.container_padding | default: 20 | minus: 10 }}px;
  }
  
  .section-header h2 {
    font-size: {{ section.settings.heading_font_size | default: 36 | times: 0.67 }}px;
  }
  
  .add-to-cart-btn {
    padding: {{ section.settings.button_padding_vertical | default: 16 | minus: 4 }}px {{ section.settings.button_padding_horizontal | default: 24 | minus: 4 }}px;
    font-size: {{ section.settings.button_font_size | default: 14 | minus: 2 }}px;
  }
  
  .product-title {
    font-size: {{ section.settings.title_font_size | default: 18 | minus: 4 }}px;
  }
  
  .product-price {
    font-size: {{ section.settings.price_font_size | default: 20 | minus: 4 }}px;
  }
}

@media (max-width: 360px) {
  .product-card {
    padding: {{ section.settings.card_padding | default: 20 | minus: 10 }}px;
  }
  
  .section-header h2 {
    font-size: {{ section.settings.heading_font_size | default: 36 | times: 0.56 }}px;
  }
}
.product-slider-section {
  background-color: #F7F4F1;
  padding: 50px 0;
  text-align: center;
  position: relative;
}

.product-slider-section h2 {
  margin: 0px 0px 25px;
  font-size: 36px;
  font-weight: bold;
  font-family: Cardo, serif;
  color: black;
}

.slider-container {
  position: relative;
  overflow: hidden;
  padding: 0 50px;
  max-width: 100%;
  margin: 0 auto;
}

.product-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
  align-items: stretch;
}

.product-card {
  background: white;
  border-radius: 20px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.06);
  transition: all 0.3s ease-in-out;
  min-width: 400;
  max-width: 450px;
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.product-badge {
  background: #003b73;
  color: white;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 12px;
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 5;
}

.sale-badge {
  background: #e74c3c !important;
}

.product-image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  width: 100%;
  aspect-ratio: 5 / 4.3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-title {
  font-size: 26px !important;
  font-weight: bold;
  margin: 8px 0 6px;
  line-height: 1.3;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-price {
  color: #333;
  font-weight: 600;
  font-size: 20px !important;
  margin-bottom: 8px;
}

.compare-price {
  text-decoration: line-through;
  color: #999;
  font-size: 14px;
  margin-right: 8px;
}

.product-vendor {
  font-size: 15px !important;
  color: #666;
  margin-bottom: 8px;
}

.product-variants {
  margin: 8px 0;
}

.variant-selector {
  margin: 6px 0;
}

.variant-selector label {
  display: block;
  font-size: 11px;
  color: #666;
  margin-bottom: 3px;
  text-align: left;
}

.variant-selector select {
  width: 100%;
  padding: 4px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 12px;
}

.quantity-selector {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 8px 0;
}

.quantity-btn {
  background: #f0f0f0;
  border: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 14px;
  user-select: none;
  transition: background 0.2s;
}

.quantity-btn:hover {
  background: #e0e0e0;
}

.quantity-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.quantity-input {
  width: 50px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 4px;
  font-size: 12px;
  font-weight: bold;
}

.add-to-cart-btn {
  background-color: #000000;
  text-transform:uppercase;
  color: #fff;
  padding: 16px 16px !important;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-top: auto;
  font-size: 15px !important;
  position: relative;
}

.add-to-cart-btn:hover:not(:disabled) {
  background-color: #ffffff !important;
  outline:2px solid #111111 !important;
  color:black !important;
}

.add-to-cart-btn:disabled {
  background-color: #ccc;
  border:2px solid #111111
  cursor: not-allowed;
}

.add-to-cart-btn.loading {
  color: transparent;
}

.add-to-cart-btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.product-link {
  color: #003b73;
  text-decoration: none;
  font-size: 14px !important;
  margin-top: 6px;
  display: inline-block;
}

.product-link:hover {
  text-decoration: underline;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s;
  z-index: 2;
  user-select: none;
}

.slider-nav:hover {
  background: rgba(0, 0, 0, 1);
  transform: translateY(-50%) scale(1.1);
}

.slider-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.slider-nav.prev {
  left: 10px;
}

.slider-nav.next {
  right: 10px;
}

.no-products {
  text-align: center;
  padding: 40px;
  color: #666;
  font-style: italic;
}

/* Full-screen overlay styles for mobile/tablet */
.fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.fullscreen-overlay.active {
  display: flex;
}

.fullscreen-content {
  position: relative;
  width: 90vw;
  max-width: 400px;
  height: 80vh;
  background: white;
  border-radius: 20px;
  padding: 20px;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.fullscreen-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 10;
  transition: all 0.3s;
}

.fullscreen-close:hover {
  background: rgba(0, 0, 0, 1);
  transform: scale(1.1);
}

/* Full-screen product card styling */
.fullscreen-product-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fullscreen-product-card .product-image-container {
  aspect-ratio: 5 / 4.3;
  margin-bottom: 20px;
}

.fullscreen-product-card .product-image {
  object-fit: cover;
  object-position: center bottom;
  border-radius: 15px;
}

.fullscreen-product-card .product-title {
  font-size: 24px !important;
  margin: 15px 0 10px;
  min-height: auto;
}

.fullscreen-product-card .product-price {
  font-size: 22px !important;
  margin-bottom: 15px;
}

.fullscreen-product-card .product-vendor {
  font-size: 16px !important;
  margin-bottom: 15px;
}

.fullscreen-product-card .variant-selector {
  margin: 10px 0;
}

.fullscreen-product-card .variant-selector label {
  font-size: 14px;
  margin-bottom: 5px;
}

.fullscreen-product-card .variant-selector select {
  padding: 8px 12px;
  font-size: 14px;
  border-radius: 8px;
}

.fullscreen-product-card .quantity-selector {
  display: flex;
  margin: 15px 0;
}

.fullscreen-product-card .quantity-btn {
  width: 35px;
  height: 35px;
  font-size: 16px;
}

.fullscreen-product-card .quantity-input {
  width: 60px;
  padding: 8px;
  font-size: 14px;
}

.fullscreen-product-card .add-to-cart-btn {
  padding: 18px 20px !important;
  font-size: 16px !important;
  margin-top: auto;
}

.fullscreen-product-card .product-link {
  font-size: 16px !important;
  margin-top: 15px;
  padding: 10px;
  text-align: center;
}

/* Full-screen button for mobile/tablet */
.fullscreen-btn {
  display: none;
  position: absolute;
  top: 15px;
  right: 45px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  z-index: 6;
  transition: all 0.3s;
}

.fullscreen-btn:hover {
  background: rgba(0, 0, 0, 1);
  transform: scale(1.1);
}
@media (min-width: 1024px) {
.product-slider-section h2
  {
    font-size:48px;
  }
}
@media (max-width: 768px) {
  .slider-container {
    padding: 0 20px;
  }
  
  .product-card {
    min-width: 300px;
    max-width: 300px;
  }
  
  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .product-slider-section h2 {
    font-size: 28px;
  }
  
  /* Show full-screen button on tablet */
  .fullscreen-btn {
    display: flex;
  }
  
  /* Adjust full-screen content for tablet */
  .fullscreen-content {
    width: 85vw;
    max-width: 500px;
    height: 85vh;
  }
}

@media (max-width: 480px) {
  .product-card {
    min-width: 250px;
    max-width: 350px;
  }
  
  .slider-container {
    padding: 0 10px;
  }
  
  /* Show full-screen button on mobile */
  .fullscreen-btn {
    display: flex;
  }
  
  /* Adjust full-screen content for mobile */
  .fullscreen-content {
    width: 95vw;
    max-width: 350px;
    height: 90vh;
    padding: 15px;
  }
  
  .fullscreen-product-card .product-image-container {
    aspect-ratio: 5 / 4.3;
  }
  
  .fullscreen-product-card .product-title {
    font-size: 20px !important;
  }
  
  .fullscreen-product-card .product-price {
    font-size: 18px !important;
  }
}
.best-sellers-section {
  background-color: #eaf3f9;
  padding: 40px 0;
  text-align: center;
}
.best-sellers-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  padding: 20px;
}
.product-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.product-title {
  font-weight: bold;
  font-size: 16px;
  margin-top: 10px;
}
.product-price {
  font-size: 14px;
  color: #333;
  font-weight: 600;
}
.product-buttons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.product-buttons a,
.product-buttons button {
  background-color: #184e3f;
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}
.product-buttons a:hover,
.product-buttons button:hover {
  background-color: #0f2e24;
}
.organic-tag {
  background: #003b73;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  display: inline-block;
  border-radius: 8px;
  margin-bottom: 10px;
}
.services-section {
  background-color: #F7F4F1;
  padding: 70px 0;
  text-align: center;
}
  .services-section h2{
margin:0px 0px 30px;
    font-size:50px;
    font-weight:bold;
    font-family:Cardo, serif;
    color:black;
  }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  padding: 0 20px;
}
.service-card {
  background: white;
  border-radius: 30px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0,0,0,0.06);
  transition: all 0.3s ease-in-out;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}
.service-badge {
  background: #003b73;
  color: white;
  padding: 4px 12px;
  font-size: 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 12px;
}
.service-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}
.service-title {
  font-size: 24px;
  font-weight: bold;
  margin: 10px 0 4px;
}
.service-price {
  color: #333;
  font-weight: 600;
}
.review-stars {
  margin-top: 10px;
  font-size: 14px;
}
.service-buttons {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.service-buttons a {
  background-color: #000000;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}
.service-buttons a:hover {
  background-color: #ffffff;
  color: #000000;
  border:1px solid #000000;
}