/*
Theme Name: DB Sales Clean
Theme URI: https://example.com/market
Author: Your Name
Author URI: https://example.com
Description: A clean, fast starter theme called Market.
Version: 1.0.1
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: market
Tags: custom-logo, custom-menu, featured-images, translation-ready, blog
*/

:root {
  --market-bg: #ffffff;
  --market-fg: #121212;
  --market-muted: #5f6368;
  --market-link: #1a73e8;
  --market-border: #e5e7eb;
  --market-max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.6;
  color: var(--market-fg);
  background: var(--market-bg);
}

a {
  color: var(--market-link);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.site-header,
.site-footer {
  border-bottom: 1px solid var(--market-border);
}

.site-footer {
  border-top: 1px solid var(--market-border);
  border-bottom: 0;
}

.container {
  max-width: var(--market-max);
  margin: 0 auto;
  padding: 20px;
}

.site-title {
  margin: 0;
  font-size: 1.25rem;
}

.site-title a {
  color: inherit;
}

.site-description {
  margin: 0.25rem 0 0;
  color: var(--market-muted);
  font-size: 0.95rem;
}

.nav {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.content {
  padding: 24px 0;
}

.post-card {
  padding: 16px 0;
  border-bottom: 1px solid var(--market-border);
}

.post-card:last-child {
  border-bottom: 0;
}

.post-card h2 {
  margin: 0 0 8px;
}

.meta {
  color: var(--market-muted);
  font-size: 0.9rem;
}

.wp-block-image img,
img {
  max-width: 100%;
  height: auto;
}

.section-template--25767949369378__main-padding {
  padding-top: 21px;
  padding-bottom: 21px;
}

@media screen and (min-width: 750px) {
  .section-template--25767949369378__main-padding {
    padding-top: 28px;
    padding-bottom: 28px;
  }
}

.footer-policies, .footer-copyright{
  display: flex;
  justify-content: center;
 }

 .footer-policies>li{
  padding: 10px ;
 }
 .shopify-policy__container { max-width: 65ch; margin: 0px auto; padding-left: 20px; padding-right: 20px; }
.shopify-policy__title { text-align: center; }
.shopify-policy__remote-policy-heading-wrapper {
  text-align: center;
  & h1 { margin-bottom: 20px; }
}
.shopify-policy__remote-policy-body { margin-bottom: 20px; }

/* Home "Best Sellers" / featured collection: force 3 items in one row on desktop */
@media screen and (min-width: 990px) {
  #shopify-section-template--25767949238306__featured-collection slider-component ul#Slider-template--25767949238306__featured-collection {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  #shopify-section-template--25767949238306__featured-collection .slider-buttons {
    display: none;
  }
}

/* Home "Best Sellers" / featured collection: make images fill slide width */
#shopify-section-template--25767949238306__featured-collection .card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Home "Best Sellers" / featured collection: each slide fills the ul width */
@media screen and (max-width: 989px) {
  #shopify-section-template--25767949238306__featured-collection ul#Slider-template--25767949238306__featured-collection > li {
    width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
  }
}